[SCM] musescore/master: New upstream version 2.0.2

tiago at users.alioth.debian.org tiago at users.alioth.debian.org
Fri Jul 17 14:11:28 UTC 2015


The following commit has been merged in the master branch:
commit 623d62e964743d4cb862553f3680162e3cee9100
Author: Tiago Bortoletto Vaz <tiago at debian.org>
Date:   Fri Jul 17 10:02:20 2015 -0400

    New upstream version 2.0.2

diff --git a/.travis.yml b/.travis.yml
index 33045cb..45f6fc8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -44,6 +44,7 @@ before_install:
   - "unzip -qq qt5.zip -d qt5"
   - "export PATH=`pwd`/qt5/bin:$PATH"
   - "export QT_PLUGIN_PATH=`pwd`/qt5/plugins"
+  - "export QML2_IMPORT_PATH=`pwd`/qt5/qml"
 before_script:
   #compatibility between ruby travis artefact and GO one
   - "export ARTIFACTS_KEY=$ARTIFACTS_AWS_ACCESS_KEY_ID"
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 635e49a..66bbb14 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -50,7 +50,6 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/build" ${CMAKE_MODULE_PATH})
 include (UsePkgConfig1)
 include (TargetDoc)
 include (FindPulseAudio)
-include (FindLame)
 include (GetCompilerVersion)
 include (CreatePrecompiledHeader)
 
@@ -71,8 +70,9 @@ option(OMR           "enable PDF import"  OFF)                 # OMR - optical m
 # for installation see: http://ubuntuforums.org/showthread.php?t=1647350
 option(OCR           "enable OCR, requires OMR" OFF)           # requires tesseract 3.0, needs work on mac/win
 option(SOUNDFONT3    "ogg vorbis compressed fonts" ON)         # enable ogg vorbis compressed fonts, require ogg & vorbis
-option(HAS_AUDIOFILE "enable audio export" ON)               # requires libsndfile
+option(HAS_AUDIOFILE "enable audio export" ON)                 # requires libsndfile
 option(USE_SYSTEM_QTSINGLEAPPLICATION "Use system QtSingleApplication" OFF)
+option(BUILD_LAME    "enable mp3 export" ON)                   # requires libmp3lame
 
 SET(JACK_LONGNAME "jack (jack audio connection kit)")
 SET(JACK_MIN_VERSION "0.98.0")
@@ -137,7 +137,7 @@ set(CMAKE_SKIP_RULE_DEPENDENCY TRUE)
 SET (MUSESCORE_NAME "MuseScore")
 SET(MUSESCORE_VERSION_MAJOR  "2")
 SET(MUSESCORE_VERSION_MINOR  "0")
-SET(MUSESCORE_VERSION_PATCH  "1")
+SET(MUSESCORE_VERSION_PATCH  "2")
 SET(MUSESCORE_VERSION       "${MUSESCORE_VERSION_MAJOR}.${MUSESCORE_VERSION_MINOR}")
 SET(MUSESCORE_NAME_VERSION "${MUSESCORE_NAME} ${MUSESCORE_VERSION_MAJOR}")
 #
@@ -169,11 +169,26 @@ SET(QT_USE_QTNETWORK     TRUE)
 SET(QT_USE_QTDESIGNER    TRUE)
 SET(QT_USE_QTWEBKIT      TRUE)
 SET(QT_USE_QTXMLPATTERNS TRUE)
-SET(QT_USE_QTDECLARATIVE TRUE)
 SET(QT_USE_QTHELP        TRUE)
 
 #find_package(Qt5 COMPONENTS Widgets Xml Svg Network Designer WebKit Declarative)
 
+##
+## freetype2 >= 2.5.2
+##
+
+if (APPLE)
+      PKGCONFIG (freetype2 2.5.2 FREETYPE_INCLUDE_DIRS FREETYPE_LIBDIR FREETYPE_LIBRARIES FREETYPE_CPP)
+      if (FREETYPE_INCLUDE_DIRS)
+          STRING(REGEX REPLACE  "\"" "" FREETYPE_INCLUDE_DIRS ${FREETYPE_INCLUDE_DIRS})
+          STRING(REGEX REPLACE  "\"" "" FREETYPE_LIBDIR ${FREETYPE_LIBDIR})
+          message("freetype2 detected ${FREETYPE_INCLUDE_DIRS} ${FREETYPE_LIBDIR} ${FREETYPE_LIBRARIES}")
+      else (FREETYPE_INCLUDE_DIRS)
+          message(FATAL_ERROR "freetype >= 2.5.2 is required\n")
+      endif (FREETYPE_INCLUDE_DIRS)
+else (APPLE)
+    find_package(Freetype REQUIRED)
+endif (APPLE)
 
 ##
 ## alsa >= 1.0.0
@@ -210,6 +225,28 @@ else (APPLE OR MINGW)
       endif (PULSEAUDIO_FOUND)
 endif (APPLE OR MINGW)
 
+##
+## lame
+##
+if (APPLE OR MINGW)
+      IF (BUILD_LAME)
+            include (FindLame)
+            set (USE_LAME 1)
+      ENDIF (BUILD_LAME)
+else (APPLE OR MINGW)
+      IF (BUILD_LAME)
+            include (FindLame)
+            IF (LAME_FOUND)
+                  set(USE_LAME 1)
+                  MESSAGE("LAME found.")
+            ELSE (LAME_FOUND)
+                  set(USE_LAME 0)
+                  MESSAGE("LAME not found.")
+            ENDIF (LAME_FOUND)
+      ELSE (BUILD_LAME)
+            MESSAGE(STATUS "LAME mp3 support disabled")
+      ENDIF (BUILD_LAME)
+endif (APPLE OR MINGW)
 
 ##
 ## find jack >= JACK_MIN_VERSION
@@ -364,6 +401,40 @@ if (NOT MINGW AND NOT APPLE)
     set (CMAKE_EXE_LINKER_FLAGS "-Wl,-rpath=${_qt5Core_install_prefix}/lib")
     # install desktop file
     install( FILES build/mscore.desktop DESTINATION share/applications)
+    # compress man pages if gzip is installed (don't on OpenBSD)
+    # note: compressing man pages is normal on Linux but not OpenBSD
+    set(MAN_TARGET ${PROJECT_SOURCE_DIR}/build/mscore.1)
+    find_program( GZIP_EXECUTABLE gzip DOC "A tool for compressing manpages (optional)." )
+    if (GZIP_EXECUTABLE AND NOT CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
+        message(STATUS "Found gzip. Man pages will be compressed.")
+        set(MAN_BUILD ${PROJECT_BINARY_DIR}/mscore.1.gz)
+        add_custom_command(
+            OUTPUT ${MAN_BUILD}
+            DEPENDS ${MAN_TARGET}
+            COMMAND ${GZIP_EXECUTABLE} < ${MAN_TARGET} > ${MAN_BUILD}
+            )
+        add_custom_target(manpages
+            DEPENDS ${MAN_BUILD}
+            COMMAND echo "Man pages have been compressed ready for installation."
+            VERBATIM
+            )
+        set(MAN_TARGET ${MAN_BUILD})
+    else (GZIP_EXECUTABLE AND NOT CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
+        if (CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
+            message(STATUS "System is OpenBSD: Man pages will not be compressed.")
+        else (CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
+            message(STATUS "gzip not found (it is optional). Man pages will not be compressed.")
+        endif (CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
+        add_custom_target(manpages
+            COMMAND echo "Man pages will be installed uncompressed."
+            VERBATIM
+            )
+    endif (GZIP_EXECUTABLE AND NOT CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
+    # install man pages in either compressed or uncompressed form
+    install( FILES ${MAN_TARGET} DESTINATION share/man/man1 COMPONENT doc)
+    # add .MSCZ and .MSCX to MIME database (informs system that filetypes .MSCZ & .MSCX are MuseScore files)
+    install( FILES ${PROJECT_SOURCE_DIR}/build/musescore.xml DESTINATION share/mime/packages COMPONENT doc)
+    # Note: must now run "update-mime-database" to apply changes. This is done in the Makefile.
 endif (NOT MINGW AND NOT APPLE)
 
 #
@@ -444,6 +515,7 @@ include_directories(
    ${VORBIS_INCDIR}
    ${SNDFILE_INCDIR}
    ${LAME_INCLUDE_DIR}
+   ${FREETYPE_INCLUDE_DIRS}
 )
 
 ##
@@ -458,9 +530,9 @@ include(Packaging)
 
 add_custom_target(lupdate
    COMMAND ${PROJECT_SOURCE_DIR}/build/gen-qt-projectfile ${PROJECT_SOURCE_DIR} > mscore.pro
-   COMMAND ${QT_LUPDATE_EXECUTABLE} -noobsolete ${PROJECT_BINARY_DIR}/mscore.pro
+   COMMAND ${QT_LUPDATE_EXECUTABLE} ${PROJECT_BINARY_DIR}/mscore.pro
    COMMAND ${PROJECT_SOURCE_DIR}/build/gen-instruments-projectfile ${PROJECT_SOURCE_DIR}/share/instruments > instruments.pro
-   COMMAND ${QT_LUPDATE_EXECUTABLE} -noobsolete ${PROJECT_BINARY_DIR}/instruments.pro
+   COMMAND ${QT_LUPDATE_EXECUTABLE} ${PROJECT_BINARY_DIR}/instruments.pro
    WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
    )
 
diff --git a/Makefile b/Makefile
index c0a46b8..ac3ff04 100644
--- a/Makefile
+++ b/Makefile
@@ -20,10 +20,14 @@
 
 REVISION  = `cat mscore/revision.h`
 CPUS      = `grep -c processor /proc/cpuinfo`
+# Avoid build errors when processor=0 (as in m68k)
+ifeq ($(CPUS), 0)
+  CPUS=1
+endif
 
 PREFIX    = "/usr/local"
-#VERSION   = "2.0.1b-${REVISION}"
-VERSION = 2.0.1
+#VERSION   = "2.0.2b-${REVISION}"
+VERSION = 2.0.2
 
 #
 # change path to include your Qt5 installation
@@ -37,6 +41,7 @@ release:
       cmake -DCMAKE_BUILD_TYPE=RELEASE	       \
   	  -DCMAKE_INSTALL_PREFIX="${PREFIX}" ..;   \
       make lrelease;                             \
+      make manpages;                             \
       make -j ${CPUS};                           \
 
 
@@ -47,6 +52,7 @@ debug:
       cmake -DCMAKE_BUILD_TYPE=DEBUG	                  \
   	  -DCMAKE_INSTALL_PREFIX="${PREFIX}" ..;              \
       make lrelease;                                        \
+      make manpages;                                        \
       make -j ${CPUS};                                      \
 
 
@@ -89,10 +95,28 @@ version:
 	@echo ${VERSION}
 
 install: release
-	cd build.release; make install/strip
+	cd build.release \
+	&& make install/strip \
+	&& update-mime-database "${PREFIX}/share/mime" \
+	&& gtk-update-icon-cache -f -t "${PREFIX}/share/icons/hicolor"
 
 installdebug: debug
-	cd build.debug; make install
+	cd build.debug \
+	&& make install \
+	&& update-mime-database "${PREFIX}/share/mime" \
+	&& gtk-update-icon-cache -f -t "${PREFIX}/share/icons/hicolor"
+
+uninstall:
+	cd build.release \
+	&& xargs rm < install_manifest.txt \
+	&& update-mime-database "${PREFIX}/share/mime" \
+	&& gtk-update-icon-cache -f -t "${PREFIX}/share/icons/hicolor"
+
+uninstalldebug:
+	cd build.debug \
+	&& xargs rm < install_manifest.txt \
+	&& update-mime-database "${PREFIX}/share/mime" \
+	&& gtk-update-icon-cache -f -t "${PREFIX}/share/icons/hicolor"
 
 #
 #  linux
diff --git a/Makefile.mingw b/Makefile.mingw
index 92034d4..996287d 100644
--- a/Makefile.mingw
+++ b/Makefile.mingw
@@ -20,8 +20,8 @@
 
 
 REVISION  = $(shell type mscore\revision.h)
-#VERSION   = 2.0.1b-${REVISION}
-VERSION = 2.0.1
+#VERSION   = 2.0.2b-${REVISION}
+VERSION = 2.0.2
 CPUS = 1
 
 release:
diff --git a/Makefile.osx b/Makefile.osx
index a33a48a..ea171ec 100644
--- a/Makefile.osx
+++ b/Makefile.osx
@@ -19,8 +19,8 @@
 #=============================================================================
 
 REVISION  = `cat mscore/revision.h`
-#VERSION   = "2.0.1b-${REVISION}"
-VERSION = 2.0.1
+#VERSION   = "2.0.2b-${REVISION}"
+VERSION = 2.0.2
 PREFIX=../applebuild
 
 XCODEPROJ = mscore.xcodeproj
diff --git a/all.h b/all.h
index 261b2b4..dc52e2b 100644
--- a/all.h
+++ b/all.h
@@ -162,5 +162,16 @@
 #include <QWidgetAction>
 #include <QHelpIndexModel>
 #include <QTextBrowser>
+
+
+// change Q_ASSERT to NOP if not debugging
+
+#ifdef QT_NO_DEBUG
+#undef Q_ASSERT_X
+#define Q_ASSERT_X(a,b,c)
+#undef Q_ASSERT
+#define Q_ASSERT(a)
+#endif
+
 #endif
 
diff --git a/assets/msc-icon-master.svg b/assets/msc-icon-master.svg
new file mode 100644
index 0000000..db62703
--- /dev/null
+++ b/assets/msc-icon-master.svg
@@ -0,0 +1,735 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+MuseScore custom icon for MusicXML files. Modified: 2015-06-09
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License version 2.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+CREDIT:
+Background file image and text adapted from Ubuntu Humanity theme icon audio-x-wav.svg (GNU GPL Version 2)
+-->
+
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2677"
+   height="48"
+   width="48"
+   version="1.0"
+   inkscape:version="0.91 r"
+   sodipodi:docname="musescore-icon-master.svg"
+   inkscape:export-filename="/home/peter/src/MuseScore/assets/musicxml-icon-master.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata71">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1366"
+     inkscape:window-height="744"
+     id="namedview69"
+     showgrid="false"
+     inkscape:zoom="5.6568543"
+     inkscape:cx="16.89437"
+     inkscape:cy="11.721288"
+     inkscape:window-x="0"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="layer1" />
+  <defs
+     id="defs2679">
+    <linearGradient
+       id="linearGradient2642"
+       y2="609.51"
+       gradientUnits="userSpaceOnUse"
+       x2="302.86"
+       gradientTransform="matrix(.067325 0 0 0.0147 -.34114 37.04)"
+       y1="366.65"
+       x1="302.86">
+      <stop
+         id="stop5050"
+         style="stop-opacity:0"
+         offset="0" />
+      <stop
+         id="stop5056"
+         offset=".5" />
+      <stop
+         id="stop5052"
+         style="stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <radialGradient
+       id="radialGradient2639"
+       xlink:href="#linearGradient5060"
+       gradientUnits="userSpaceOnUse"
+       cy="486.65"
+       cx="605.71"
+       gradientTransform="matrix(-.023040 0 0 0.0147 21.623 37.04)"
+       r="117.14" />
+    <linearGradient
+       id="linearGradient5060">
+      <stop
+         id="stop5062"
+         offset="0" />
+      <stop
+         id="stop5064"
+         style="stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <radialGradient
+       id="radialGradient2636"
+       xlink:href="#linearGradient5060"
+       gradientUnits="userSpaceOnUse"
+       cy="486.65"
+       cx="605.71"
+       gradientTransform="matrix(.023040 0 0 0.0147 26.361 37.04)"
+       r="117.14" />
+    <linearGradient
+       id="linearGradient2633"
+       y2="2.9062"
+       gradientUnits="userSpaceOnUse"
+       x2="-51.786"
+       gradientTransform="matrix(.80750 0 0 .89483 59.41 -2.9806)"
+       y1="50.786"
+       x1="-51.786">
+      <stop
+         id="stop3106"
+         offset="0"
+         style="stop-color:#aaa" />
+      <stop
+         id="stop3108"
+         style="stop-color:#c8c8c8"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2631"
+       y2="47.013"
+       gradientUnits="userSpaceOnUse"
+       x2="25.132"
+       gradientTransform="matrix(1 0 0 .95617 -1.0065e-7 -1.9149)"
+       y1=".98521"
+       x1="25.132">
+      <stop
+         id="stop3602"
+         offset="0"
+         style="stop-color:#f8f2e5;stop-opacity:1" />
+      <stop
+         id="stop3604"
+         offset="1"
+         style="stop-color:#efe2c7;stop-opacity:1" />
+    </linearGradient>
+    <radialGradient
+       id="radialGradient2628"
+       gradientUnits="userSpaceOnUse"
+       cy="112.3"
+       cx="102"
+       gradientTransform="matrix(.36170 0 0 -.39078 .85106 47.517)"
+       r="139.56">
+      <stop
+         id="stop41"
+         offset="0"
+         style="stop-color:#000000;stop-opacity:0.28125" />
+      <stop
+         id="stop47"
+         offset="0.18851"
+         style="stop-color:#000000;stop-opacity:0.078125" />
+      <stop
+         id="stop49"
+         offset="0.25718001"
+         style="stop-color:#000000;stop-opacity:0.0234375" />
+      <stop
+         id="stop51"
+         offset="0.30111"
+         style="stop-color:#000000;stop-opacity:0" />
+      <stop
+         id="stop57"
+         offset="1"
+         style="stop-color:#e1e2e3;stop-opacity:0" />
+    </radialGradient>
+    <linearGradient
+       id="linearGradient2625"
+       y2="46.017"
+       gradientUnits="userSpaceOnUse"
+       x2="24"
+       gradientTransform="matrix(1 0 0 .97778 0 -.96667)"
+       y1="2"
+       x1="24">
+      <stop
+         id="stop3213"
+         style="stop-color:#fff"
+         offset="0" />
+      <stop
+         id="stop3215"
+         style="stop-color:#fff;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <filter
+       id="filter3212"
+       height="1.3287"
+       width="1.2969"
+       color-interpolation-filters="sRGB"
+       y="-.16434"
+       x="-.14846">
+      <feGaussianBlur
+         id="feGaussianBlur3214"
+         stdDeviation="0.77391625" />
+    </filter>
+    <linearGradient
+       id="linearGradient2621"
+       y2="5.4565"
+       gradientUnits="userSpaceOnUse"
+       x2="36.358"
+       gradientTransform="matrix(.99770 0 0 1.0407 .16380 -1.1058)"
+       y1="8.059"
+       x1="32.892">
+      <stop
+         id="stop8591"
+         style="stop-color:#fefefe"
+         offset="0" />
+      <stop
+         id="stop8593"
+         style="stop-color:#cbcbcb"
+         offset="1" />
+    </linearGradient>
+    <radialGradient
+       id="radialGradient2675"
+       gradientUnits="userSpaceOnUse"
+       cy="45.867"
+       cx="22.902"
+       gradientTransform="matrix(.69765 0 0 .29961 12.507 18.89)"
+       r="7.9059">
+      <stop
+         id="stop3197"
+         offset="0" />
+      <stop
+         id="stop3199"
+         style="stop-opacity:0"
+         offset="1" />
+    </radialGradient>
+    <radialGradient
+       id="radialGradient2672"
+       gradientUnits="userSpaceOnUse"
+       cy="45.867"
+       cx="22.902"
+       gradientTransform="matrix(.75875 0 0 .32584 -.80598 19.479)"
+       r="7.9059">
+      <stop
+         id="stop3203"
+         offset="0" />
+      <stop
+         id="stop3205"
+         style="stop-opacity:0"
+         offset="1" />
+    </radialGradient>
+    <radialGradient
+       id="radialGradient2668"
+       fx="14.638"
+       fy="38.175"
+       gradientUnits="userSpaceOnUse"
+       cy="41.059"
+       cx="17.059"
+       gradientTransform="matrix(.66498 0 -.10886 .63739 9.9382 5.2626)"
+       r="5.7385">
+      <stop
+         id="stop3877"
+         style="stop-color:#aaa"
+         offset="0" />
+      <stop
+         id="stop3879"
+         style="stop-color:#4d4d4d"
+         offset="1" />
+    </radialGradient>
+    <radialGradient
+       id="radialGradient2665"
+       fx="14.109"
+       fy="38.981"
+       gradientUnits="userSpaceOnUse"
+       cy="41.059"
+       cx="17.059"
+       gradientTransform="matrix(.66333 0 -.10859 .63580 21.997 3.4975)"
+       r="5.7385">
+      <stop
+         id="stop3871"
+         style="stop-color:#aaa"
+         offset="0" />
+      <stop
+         id="stop3873"
+         style="stop-color:#4d4d4d"
+         offset="1" />
+    </radialGradient>
+    <linearGradient
+       id="linearGradient2662"
+       y2="119.86"
+       gradientUnits="userSpaceOnUse"
+       x2="25.4"
+       gradientTransform="matrix(.22147 0 0 .22311 14.032 -16.079)"
+       y1="144.12"
+       x1="28.739">
+      <stop
+         id="stop3239"
+         style="stop-color:#fff"
+         offset="0" />
+      <stop
+         id="stop3241"
+         style="stop-color:#fff;stop-opacity:.37931"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2659"
+       y2="125.39"
+       gradientUnits="userSpaceOnUse"
+       x2="26.257"
+       gradientTransform="matrix(.44563 0 0 .22311 20.716 -17.657)"
+       y1="144.12"
+       x1="28.739">
+      <stop
+         id="stop3245"
+         style="stop-color:#fff"
+         offset="0" />
+      <stop
+         id="stop3247"
+         style="stop-color:#fff;stop-opacity:.37931"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient-1"
+       y2="5%"
+       x2="50%"
+       y1="0%"
+       x1="50%">
+      <stop
+         id="stop4463"
+         offset="0%"
+         stop-color="#FFFFFF" />
+      <stop
+         id="stop4465"
+         offset="100%"
+         stop-opacity="0"
+         stop-color="#FFFFFF" />
+    </linearGradient>
+    <filter
+       id="filter-2"
+       filterUnits="objectBoundingBox"
+       height="200%"
+       width="200%"
+       y="-50%"
+       x="-50%">
+      <feOffset
+         id="feOffset4468"
+         result="shadowOffsetInner1"
+         in="SourceAlpha"
+         dy="0"
+         dx="0" />
+      <feGaussianBlur
+         id="feGaussianBlur4470"
+         result="shadowBlurInner1"
+         in="shadowOffsetInner1"
+         stdDeviation="15" />
+      <feComposite
+         id="feComposite4472"
+         result="shadowInnerInner1"
+         k3="1"
+         k2="-1"
+         operator="arithmetic"
+         in2="SourceAlpha"
+         in="shadowBlurInner1" />
+      <feColorMatrix
+         id="feColorMatrix4474"
+         result="shadowMatrixInner1"
+         type="matrix"
+         in="shadowInnerInner1"
+         values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.028 0" />
+      <feOffset
+         id="feOffset4476"
+         result="shadowOffsetInner2"
+         in="SourceAlpha"
+         dy="1"
+         dx="0" />
+      <feGaussianBlur
+         id="feGaussianBlur4478"
+         result="shadowBlurInner2"
+         in="shadowOffsetInner2"
+         stdDeviation="0" />
+      <feComposite
+         id="feComposite4480"
+         result="shadowInnerInner2"
+         k3="1"
+         k2="-1"
+         operator="arithmetic"
+         in2="SourceAlpha"
+         in="shadowBlurInner2" />
+      <feColorMatrix
+         id="feColorMatrix4482"
+         result="shadowMatrixInner2"
+         type="matrix"
+         in="shadowInnerInner2"
+         values="0 0 0 0 1   0 0 0 0 1   0 0 0 0 1  0 0 0 0.7 0" />
+      <feMorphology
+         id="feMorphology4484"
+         result="shadowSpreadInner3"
+         operator="dilate"
+         in="SourceAlpha"
+         radius="1" />
+      <feOffset
+         id="feOffset4486"
+         result="shadowOffsetInner3"
+         in="shadowSpreadInner3"
+         dy="0"
+         dx="0" />
+      <feGaussianBlur
+         id="feGaussianBlur4488"
+         result="shadowBlurInner3"
+         in="shadowOffsetInner3"
+         stdDeviation="0" />
+      <feComposite
+         id="feComposite4490"
+         result="shadowInnerInner3"
+         k3="1"
+         k2="-1"
+         operator="arithmetic"
+         in2="SourceAlpha"
+         in="shadowBlurInner3" />
+      <feColorMatrix
+         id="feColorMatrix4492"
+         result="shadowMatrixInner3"
+         type="matrix"
+         in="shadowInnerInner3"
+         values="0 0 0 0 1   0 0 0 0 1   0 0 0 0 1  0 0 0 0.28 0" />
+      <feMerge
+         id="feMerge4494">
+        <feMergeNode
+           id="feMergeNode4496"
+           in="SourceGraphic" />
+        <feMergeNode
+           id="feMergeNode4498"
+           in="shadowMatrixInner1" />
+        <feMergeNode
+           id="feMergeNode4500"
+           in="shadowMatrixInner2" />
+        <feMergeNode
+           id="feMergeNode4502"
+           in="shadowMatrixInner3" />
+      </feMerge>
+    </filter>
+    <rect
+       rx="8"
+       height="1023.00098"
+       width="1023.00098"
+       y="0.827317073"
+       x="0.827317073"
+       id="path-3" />
+    <linearGradient
+       id="linearGradient-4"
+       y2="100%"
+       x2="50%"
+       y1="0%"
+       x1="50%">
+      <stop
+         id="stop4506"
+         offset="0%"
+         stop-color="#FFFFFF" />
+      <stop
+         id="stop4508"
+         offset="100%"
+         stop-color="#FFFFFF" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient-5"
+       y2="100%"
+       x2="50%"
+       y1="0%"
+       x1="50%">
+      <stop
+         id="stop4511"
+         offset="0%"
+         stop-opacity="0.510501585"
+         stop-color="#F8F2E5" />
+      <stop
+         id="stop4513"
+         offset="100%"
+         stop-color="#EFE2C7" />
+    </linearGradient>
+    <filter
+       id="filter-6"
+       filterUnits="objectBoundingBox"
+       height="200%"
+       width="200%"
+       y="-50%"
+       x="-50%">
+      <feMorphology
+         id="feMorphology4516"
+         result="shadowSpreadOuter1"
+         operator="dilate"
+         in="SourceAlpha"
+         radius="1" />
+      <feOffset
+         id="feOffset4518"
+         result="shadowOffsetOuter1"
+         in="shadowSpreadOuter1"
+         dy="0"
+         dx="0" />
+      <feGaussianBlur
+         id="feGaussianBlur4520"
+         result="shadowBlurOuter1"
+         in="shadowOffsetOuter1"
+         stdDeviation="1" />
+      <feColorMatrix
+         id="feColorMatrix4522"
+         result="shadowMatrixOuter1"
+         type="matrix"
+         in="shadowBlurOuter1"
+         values="0 0 0 0 1   0 0 0 0 1   0 0 0 0 1  0 0 0 0.35 0" />
+      <feOffset
+         id="feOffset4524"
+         result="shadowOffsetInner1"
+         in="SourceAlpha"
+         dy="0"
+         dx="0" />
+      <feGaussianBlur
+         id="feGaussianBlur4526"
+         result="shadowBlurInner1"
+         in="shadowOffsetInner1"
+         stdDeviation="1.5" />
+      <feComposite
+         id="feComposite4528"
+         result="shadowInnerInner1"
+         k3="1"
+         k2="-1"
+         operator="arithmetic"
+         in2="SourceAlpha"
+         in="shadowBlurInner1" />
+      <feColorMatrix
+         id="feColorMatrix4530"
+         result="shadowMatrixInner1"
+         type="matrix"
+         in="shadowInnerInner1"
+         values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.35 0" />
+      <feMerge
+         id="feMerge4532">
+        <feMergeNode
+           id="feMergeNode4534"
+           in="shadowMatrixOuter1" />
+        <feMergeNode
+           id="feMergeNode4536"
+           in="SourceGraphic" />
+        <feMergeNode
+           id="feMergeNode4538"
+           in="shadowMatrixInner1" />
+      </feMerge>
+    </filter>
+    <rect
+       rx="8"
+       height="986.872842"
+       width="986.872842"
+       y="18.7270663"
+       x="18.7270663"
+       id="path-7" />
+    <linearGradient
+       id="linearGradient-8"
+       y2="100%"
+       x2="50%"
+       y1="0%"
+       x1="50%">
+      <stop
+         id="stop4542"
+         offset="0%"
+         stop-color="#1B75C0" />
+      <stop
+         id="stop4544"
+         offset="100%"
+         stop-color="#2A567B" />
+    </linearGradient>
+    <filter
+       id="filter-9"
+       filterUnits="objectBoundingBox"
+       height="200%"
+       width="200%"
+       y="-50%"
+       x="-50%">
+      <feMorphology
+         id="feMorphology4547"
+         result="shadowSpreadOuter1"
+         operator="dilate"
+         in="SourceAlpha"
+         radius="1" />
+      <feOffset
+         id="feOffset4549"
+         result="shadowOffsetOuter1"
+         in="shadowSpreadOuter1"
+         dy="10"
+         dx="0" />
+      <feGaussianBlur
+         id="feGaussianBlur4551"
+         result="shadowBlurOuter1"
+         in="shadowOffsetOuter1"
+         stdDeviation="2.5" />
+      <feColorMatrix
+         id="feColorMatrix4553"
+         result="shadowMatrixOuter1"
+         type="matrix"
+         in="shadowBlurOuter1"
+         values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.28 0" />
+      <feMerge
+         id="feMerge4555">
+        <feMergeNode
+           id="feMergeNode4557"
+           in="shadowMatrixOuter1" />
+        <feMergeNode
+           id="feMergeNode4559"
+           in="SourceGraphic" />
+      </feMerge>
+    </filter>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.1101259,0,0,0.9007987,-645.09884,241.26587)"
+       id="linearGradient-8-1"
+       y2="631.6411"
+       x2="314.00338"
+       y1="-12.580042"
+       x1="314.00338">
+      <stop
+         id="stop4542-6"
+         offset="0%"
+         stop-color="#1B75C0" />
+      <stop
+         id="stop4544-7"
+         offset="100%"
+         stop-color="#2A567B" />
+    </linearGradient>
+  </defs>
+  <g
+     id="layer1">
+    <rect
+       id="rect2879"
+       style="opacity:.3;fill:url(#linearGradient2642)"
+       height="3.5701"
+       width="32.508"
+       y="42.43"
+       x="7.7378" />
+    <path
+       id="path2881"
+       style="opacity:.3;fill:url(#radialGradient2639)"
+       d="m7.7378 42.43v3.5699c-1.1865 0.0067-2.8684-0.79982-2.8684-1.7852 0-0.98533 1.324-1.7847 2.8684-1.7847z" />
+    <path
+       id="path2883"
+       style="opacity:.3;fill:url(#radialGradient2636)"
+       d="m40.246 42.43v3.5699c1.1865 0.0067 2.8684-0.79982 2.8684-1.7852 0-0.98533-1.324-1.7847-2.8684-1.7847z" />
+    <path
+       id="path4160"
+       style="stroke-linejoin:round;stroke:url(#linearGradient2633);stroke-width:.99992;fill:url(#linearGradient2631)"
+       d="m6.5 0.4972h24.061c1.4069 0.47465 8.9655 5.8822 10.939 9.6264v34.379h-35v-44.006z" />
+    <path
+       id="path4191"
+       style="fill:url(#radialGradient2628)"
+       d="m7.3617 44c-0.1993 0-0.3617-0.17546-0.3617-0.39078v-42.204c0-0.21571 0.1624-0.39078 0.3617-0.39078 7.4833 0.1082 15.775-0.16138 23.249 0.0271l10.283 8.866 0.106 33.702c0 0.216-0.162 0.391-0.362 0.391h-33.276z" />
+    <path
+       id="path2435"
+       style="opacity:.6;stroke-linejoin:round;stroke:url(#linearGradient2625);stroke-width:.99992;fill:none"
+       d="m40.5 10.259v33.263h-33v-42.045h22.866" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;opacity:0.4;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="23.899687"
+       y="40.916"
+       id="text4464"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan4466"
+         x="23.899687"
+         y="40.916"
+         style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:10px;font-family:'URW Gothic L';-inkscape-font-specification:'URW Gothic L Semi-Bold';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1">MSCZ</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="-13.375105"
+       y="51.164005"
+       id="text4193"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="51.164005"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4201">When exporting:</tspan><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="54.289005"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4205">- change "MSCZ" text object to a path (makes image font-independent)</tspan><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="57.414005"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4213">- delete this message</tspan><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="60.539005"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4211">- save as an "optimized SVG" (don't overwrite master image)</tspan><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="63.664005"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4215">- export as a 48x48 PNG for systems that do not support SVG</tspan><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="66.789001"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4197" /><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="69.914001"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4199">Retain this message when editing master image.</tspan></text>
+    <path
+       style="fill:url(#linearGradient-8-1);fill-rule:evenodd;stroke:url(#linearGradient-8-1);stroke-width:18;filter:url(#filter-9)"
+       id="Logo-3"
+       d="m 114.40476,558.09727 -0.461,-109.0053 c 0,-16.8179 -1.5479,-32.0675 -4.6454,-45.8344 -2.6977,-13.6377 -7.8732,-25.4007 -15.525703,-35.1386 -7.1649,-9.6935 -17.0735,-17.21 -29.6356,-22.5471 -12.1197,-5.337 -27.6462,-7.9505 -46.4893,-7.9505 -16.6312004,0 -31.671,3.3112 -45.1178,9.9327 -13.4468,6.1867 -24.9477,14.8357 -34.4139,25.9019 -9.3768,11.0225 -16.5869,23.8752 -21.4965,38.4724 -4.9539,14.1154 -7.4317,29.1468 -7.4317,45.136 l 0,216.2745 -13.445997,0 0,-218.9325 c 0,-15.9464 -1.3714,-31.0214 -4.07,-45.1377 -2.2118,-14.159 -6.7242,-26.5323 -13.4468,-37.2064 -6.7233,-10.5657 -16.1896,-18.9738 -28.3093,-25.1613 -12.1197,-6.1649 -27.867,-9.2796 -47.1524,-9.2796 -17.0744,0 -33.2402,3.6194 -47.1293,11.5489 -13.9779,7.5157 -26.2611,18.1521 -36.1246,31.4178 -9.4663,12.8527 -16.8085,27.8849 -22.2056,45.1377 -4.9539,17.2536 -6.3622,35.4768 -6.3622,54.5606 l 0,193.0525 -13.4911,0 0,-193.0525 c 0,-64.1133 18.3102,-88.6305 25.0344,-99.6983 6.7234,-11.0661 17.8516,-21.4961 27.6716,-29.9051 9.9078,-8.4081 21.4663,-14.796 33.1436,-19.1961 12.1197,-4.8794 25.9712,-7.1766 39.4632,-7.1766 26.9814,-0.8706 49.4077,5.991 67.3669,20.6085 18.445,14.1599 30.521197,33.8096 37.686997,59.0356 6.7669,-23.876 20.0372,-43.111 39.765,-57.7284 19.773,-14.5957 43.0832996,-21.9157 70.0655,-21.9157 21.1428,0 38.6152,3.1156 52.5496,9.3022 13.9335,6.2303 25.1241,14.8349 33.661303,25.8582 8.5372,10.6741 14.5966,23.7014 18.2242,39.2121 3.5825,15.0314 5.3963,31.8039 5.3963,50.4092 l 0.1207,114.2146 c 0.1781,16.9149 1.2204,31.9473 6.3819,44.3306 5.837,13.7233 13.7119,25.226 23.5311,34.5056 10.351,8.8892 22.0283,15.5124 35.0327,19.8688 13.4911,4.0517 27.6454,6.0112 42.4636,6.0112 20.7012,0 38.8377,-3.7452 54.5842,-11.2407 15.7029,-8.0144 28.7517,-18.3417 39.0575,-31.1944 10.7483,-13.244 18.844,-28.5381 24.2837,-45.8345 5.3528,-17.2092 8.0505,-35.3342 8.0505,-54.3736 l 0,-193.0516 13.4477,0 0,193.0516 c 0,44.6023 -9.4138,64.1898 -9.4138,64.1898 -6.2819,26.5769 -24.0942,47.9361 -45.5915,65.1469 -21.1428,17.2964 -50.2694,25.8981 -84.4183,25.8981 -17.9583,0 -34.5903,-2.4397 -49.851,-7.2755 -14.773,-5.3161 -27.8226,-13.0257 -39.0567,-23.1792 -10.7491,-10.6732 -19.2863,-23.5276 -25.6116,-38.5573 -4.2908,-11.3289 -5.3528,-23.5267 -6.0603,-37.0763 -0.044,-5.0977 -0.044,-11.1534 -0.044,-16.4258 l 0.019,0 0,0 z m 116.4914,-323.6468 c 0,-8.3871 6.9442,-15.1833 15.4362,-15.1833 8.5373,0 15.4371,6.7962 15.4371,15.1833 0,8.409 -6.8998,15.2052 -15.4371,15.2052 -8.492,0 -15.4362,-6.7962 -15.4362,-15.2052 z m -77.4425,-84.9278 c -27.9894,22.7316 -42.7835,54.5629 -42.7835,92.0514 l 12.2221,0 c 0,-73.0261 61.8813,-111.2348 123.0086,-111.2348 31.0335,0 59.624,9.7241 80.507,27.3816 23.5421,19.9063 35.9872,48.9018 35.9872,83.8532 l 12.2221,0 c 0,-38.5697 -13.9179,-70.7245 -40.2481,-92.9882 -23.0975,-19.5294 -54.5159,-30.285 -88.4682,-30.285 -34.3212,0 -68.0168,11.3793 -92.4472,31.2218 z"
+       inkscape:connector-curvature="0"
+       transform="matrix(0.03626816,0,0,0.03626816,23.110772,6.023917)" />
+    <g
+       id="g4695">
+      <path
+         d="m28.617 0.92126c4.2825 0 2.1532 8.4832 2.1532 8.4832s10.358-1.8023 10.358 2.8187c0-2.6097-11.302-10.729-12.511-11.302z"
+         style="opacity:.4;fill-rule:evenodd;filter:url(#filter3212)"
+         id="path12038" />
+      <path
+         d="m28.617 0.92126c3.1865 0 2.3358 7.6619 2.3358 7.6619s10.175-0.98105 10.175 3.64c0-1.1259 0.08591-1.9322-0.13378-2.2836-1.578-2.5243-8.395-8.1885-10.857-8.9309-0.184-0.05556-0.593-0.08754-1.52-0.08754z"
+         style="fill:url(#linearGradient2621);fill-rule:evenodd"
+         id="path4474" />
+    </g>
+  </g>
+</svg>
diff --git a/assets/mscx-icon-48.png b/assets/mscx-icon-48.png
new file mode 100644
index 0000000..9836fc3
Binary files /dev/null and b/assets/mscx-icon-48.png differ
diff --git a/assets/mscx-icon.svg b/assets/mscx-icon.svg
new file mode 100644
index 0000000..6704427
--- /dev/null
+++ b/assets/mscx-icon.svg
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <defs>
+  <linearGradient id="f" x1="302.86" gradientUnits="userSpaceOnUse" y1="366.65" gradientTransform="matrix(.067325 0 0 .0147 -.34114 37.04)" x2="302.86" y2="609.51">
+   <stop stop-opacity="0" offset="0"/>
+   <stop offset=".5"/>
+   <stop stop-opacity="0" offset="1"/>
+  </linearGradient>
+  <radialGradient id="c" xlink:href="#a" gradientUnits="userSpaceOnUse" cy="486.65" cx="605.71" gradientTransform="matrix(-.023040 0 0 .0147 21.623 37.04)" r="117.14"/>
+  <linearGradient id="a">
+   <stop offset="0"/>
+   <stop stop-opacity="0" offset="1"/>
+  </linearGradient>
+  <radialGradient id="d" xlink:href="#a" gradientUnits="userSpaceOnUse" cy="486.65" cx="605.71" gradientTransform="matrix(.023040 0 0 .0147 26.361 37.04)" r="117.14"/>
+  <linearGradient id="g" x1="-51.786" gradientUnits="userSpaceOnUse" y1="50.786" gradientTransform="matrix(.80750 0 0 .89483 59.41 -2.9806)" x2="-51.786" y2="2.9062">
+   <stop stop-color="#aaa" offset="0"/>
+   <stop stop-color="#c8c8c8" offset="1"/>
+  </linearGradient>
+  <linearGradient id="h" x1="25.132" gradientUnits="userSpaceOnUse" y1=".98521" gradientTransform="matrix(1 0 0 .95617 -1.0065e-7 -1.9149)" x2="25.132" y2="47.013">
+   <stop stop-color="#f8f2e5" offset="0"/>
+   <stop stop-color="#efe2c7" offset="1"/>
+  </linearGradient>
+  <radialGradient id="e" gradientUnits="userSpaceOnUse" cy="112.3" cx="102" gradientTransform="matrix(.36170 0 0 -.39078 .85106 47.517)" r="139.56">
+   <stop stop-opacity=".28125" offset="0"/>
+   <stop stop-opacity=".078125" offset=".18851"/>
+   <stop stop-opacity=".023438" offset=".25718"/>
+   <stop stop-opacity="0" offset=".30111"/>
+   <stop stop-color="#e1e2e3" stop-opacity="0" offset="1"/>
+  </radialGradient>
+  <linearGradient id="i" x1="24" gradientUnits="userSpaceOnUse" y1="2" gradientTransform="matrix(1 0 0 .97778 0 -.96667)" x2="24" y2="46.017">
+   <stop stop-color="#fff" offset="0"/>
+   <stop stop-color="#fff" stop-opacity="0" offset="1"/>
+  </linearGradient>
+  <filter id="k" width="1.2969" y="-.16434" x="-.14846" height="1.3287" color-interpolation-filters="sRGB">
+   <feGaussianBlur stdDeviation="0.77391625"/>
+  </filter>
+  <linearGradient id="j" x1="32.892" gradientUnits="userSpaceOnUse" y1="8.059" gradientTransform="matrix(.99770 0 0 1.0407 .16380 -1.1058)" x2="36.358" y2="5.4565">
+   <stop stop-color="#fefefe" offset="0"/>
+   <stop stop-color="#cbcbcb" offset="1"/>
+  </linearGradient>
+  <filter id="l" height="200%" width="200%" y="-50%" x="-50%" filterUnits="objectBoundingBox">
+   <feMorphology operator="dilate" in="SourceAlpha" radius="1" result="shadowSpreadOuter1"/>
+   <feOffset dy="10" in="shadowSpreadOuter1" dx="0" result="shadowOffsetOuter1"/>
+   <feGaussianBlur in="shadowOffsetOuter1" stdDeviation="2.5" result="shadowBlurOuter1"/>
+   <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.28 0" in="shadowBlurOuter1" type="matrix" result="shadowMatrixOuter1"/>
+   <feMerge>
+    <feMergeNode in="shadowMatrixOuter1"/>
+    <feMergeNode in="SourceGraphic"/>
+   </feMerge>
+  </filter>
+  <linearGradient id="b" x1="314" gradientUnits="userSpaceOnUse" y1="-12.58" gradientTransform="matrix(1.1101 0 0 .90080 -645.1 241.27)" x2="314" y2="631.64">
+   <stop stop-color="#1B75C0" offset="0"/>
+   <stop stop-color="#2A567B" offset="1"/>
+  </linearGradient>
+ </defs>
+ <rect opacity=".3" height="3.5701" width="32.508" y="42.43" x="7.7378" fill="url(#f)"/>
+ <path opacity=".3" fill="url(#c)" d="m7.7378 42.43v3.5699c-1.1865 0.0067-2.8684-0.79982-2.8684-1.7852 0-0.98533 1.324-1.7847 2.8684-1.7847z"/>
+ <path opacity=".3" fill="url(#d)" d="m40.246 42.43v3.5699c1.1865 0.0067 2.8684-0.79982 2.8684-1.7852 0-0.98533-1.324-1.7847-2.8684-1.7847z"/>
+ <path stroke-linejoin="round" d="m6.5 0.4972h24.061c1.4069 0.47465 8.9655 5.8822 10.939 9.6264v34.379h-35v-44.006z" stroke="url(#g)" stroke-width=".99992" fill="url(#h)"/>
+ <path fill="url(#e)" d="m7.3617 44c-0.1993 0-0.3617-0.17546-0.3617-0.39078v-42.204c0-0.21571 0.1624-0.39078 0.3617-0.39078 7.4833 0.1082 15.775-0.16138 23.249 0.0271l10.283 8.866 0.106 33.702c0 0.216-0.162 0.391-0.362 0.391h-33.276z"/>
+ <path opacity=".6" stroke-linejoin="round" d="m40.5 10.259v33.263h-33v-42.045h22.866" stroke="url(#i)" stroke-width=".99992" fill="none"/>
+ <g opacity=".4">
+  <path d="m10.185 40.916h1.37v-5.54l1.93 5.54h1.12l1.93-5.54v5.54h1.37v-7.39h-1.88l-1.97 5.6-1.99-5.6h-1.88v7.39z"/>
+  <path d="m18.649 38.806c0.05 0.58 0.18 0.95 0.48 1.34 0.44 0.57 1.17 0.9 1.95 0.9 1.33 0 2.36-1.03 2.36-2.37 0-0.61-0.23-1.14-0.66-1.54-0.29-0.27-0.53-0.4-1.25-0.67-0.7-0.26-0.72-0.27-0.82-0.33-0.27-0.17-0.41-0.4-0.41-0.67 0-0.44 0.31-0.75 0.76-0.75 0.46 0 0.74 0.28 0.78 0.78h1.42c-0.03-0.56-0.16-0.94-0.46-1.31-0.4-0.5-1.04-0.79-1.73-0.79-1.19 0-2.15 0.93-2.15 2.1 0 0.93 0.55 1.64 1.54 2.01s1.05 0.4 1.28 0.57c0.22 0.18 0.34 0.44 0.34 0.75 0 0.53-0.41 0.9-1 0.9-0.61 0-0.94-0.3-1-0.92h-1.43z"/>
+  <path d="m29.694 38.856c-0.6 0.63-1.12 0.87-1.83 0.87-1.36 0-2.48-1.14-2.48-2.52 0-0.6 0.23-1.24 0.61-1.68 0.45-0.53 1.09-0.81 1.84-0.81 0.86 0 1.44 0.28 1.94 0.93h1.53c-0.29-0.64-0.55-0.99-1.05-1.4-0.68-0.55-1.55-0.85-2.45-0.85-2.09 0-3.8 1.71-3.8 3.8 0 2.13 1.73 3.85 3.89 3.85 1.51 0 2.83-0.84 3.41-2.19h-1.61z"/>
+  <path d="m31.547 40.916h1.63l1.72-2.55 1.77 2.55h1.59l-2.56-3.68 2.56-3.71h-1.59l-1.77 2.58-1.72-2.58h-1.63l2.54 3.71-2.54 3.68z"/>
+ </g>
+ <path d="m114.4 558.1-0.461-109.01c0-16.818-1.5479-32.068-4.6454-45.834-2.6977-13.638-7.8732-25.401-15.526-35.139-7.1649-9.6935-17.074-17.21-29.636-22.547-12.12-5.337-27.646-7.9505-46.489-7.9505-16.631 0-31.671 3.3112-45.118 9.9327-13.447 6.1867-24.948 14.836-34.414 25.902-9.3768 11.022-16.587 23.875-21.496 38.472-4.9539 14.115-7.4317 29.147-7.4317 45.136v216.27h-13.446v-218.93c0-15.946-1.3714-31.021-4.07-45.138-2.2118-14.159-6.7242-26.532-13.447-37.206-6.7233-10.566-16.19-18.974-28.309-25.161-12.12-6.1649-27.867-9.2796-47.152-9.2796-17.074 0-33.24 3.6194-47.129 11.549-13.978 7.5157-26.261 18.152-36.125 31.418-9.4663 12.853-16.808 27.885-22.206 45.138-4.9539 17.254-6.3622 35.477-6.3622 54.561v193.05h-13.491v-193.05c0-64.113 18.31-88.63 25.034-99.698 6.7234-11.066 17.852-21.496 27.672-29.905 9.9078-8.4081 21.466-14.796 33.144-19.196 12.12-4.8794 25.971-7.1766 39.463-7.1766 26.981-0.8706 49.408 5.991 67.367 20.608 18.445 14.16 30.521 33.81 37.687 59.036 6.7669-23.876 20.037-43.111 39.765-57.728 19.773-14.596 43.083-21.916 70.066-21.916 21.143 0 38.615 3.1156 52.55 9.3022 13.934 6.2303 25.124 14.835 33.661 25.858 8.5372 10.674 14.597 23.701 18.224 39.212 3.5825 15.031 5.3963 31.804 5.3963 50.409l0.1207 114.21c0.1781 16.915 1.2204 31.947 6.3819 44.331 5.837 13.723 13.712 25.226 23.531 34.506 10.351 8.8892 22.028 15.512 35.033 19.869 13.491 4.0517 27.645 6.0112 42.464 6.0112 20.701 0 38.838-3.7452 54.584-11.241 15.703-8.0144 28.752-18.342 39.058-31.194 10.748-13.244 18.844-28.538 24.284-45.834 5.3528-17.209 8.0505-35.334 8.0505-54.374v-193.05h13.448v193.05c0 44.602-9.4138 64.19-9.4138 64.19-6.2819 26.577-24.094 47.936-45.592 65.147-21.143 17.296-50.269 25.898-84.418 25.898-17.958 0-34.59-2.4397-49.851-7.2755-14.773-5.3161-27.823-13.026-39.057-23.179-10.749-10.673-19.286-23.528-25.612-38.557-4.2908-11.329-5.3528-23.527-6.0603-37.076-0.044-5.0977-0.044-11.153-0.044-16.426h0.019zm116.49-323.65c0-8.3871 6.9442-15.183 15.436-15.183 8.5373 0 15.437 6.7962 15.437 15.183 0 8.409-6.8998 15.205-15.437 15.205-8.492 0-15.436-6.7962-15.436-15.205zm-77.442-84.928c-27.989 22.732-42.784 54.563-42.784 92.051h12.222c0-73.026 61.881-111.23 123.01-111.23 31.034 0 59.624 9.7241 80.507 27.382 23.542 19.906 35.987 48.902 35.987 83.853h12.222c0-38.57-13.918-70.724-40.248-92.988-23.098-19.529-54.516-30.285-88.468-30.285-34.321 0-68.017 11.379-92.447 31.222z" fill-rule="evenodd" transform="matrix(.036268 0 0 .036268 23.111 6.0239)" filter="url(#l)" stroke="url(#b)" stroke-width="18" fill="url(#b)"/>
+ <g fill-rule="evenodd">
+  <path opacity=".4" d="m28.617 0.92126c4.2825 0 2.1532 8.4832 2.1532 8.4832s10.358-1.8023 10.358 2.8187c0-2.6097-11.302-10.729-12.511-11.302z" filter="url(#k)"/>
+  <path fill="url(#j)" d="m28.617 0.92126c3.1865 0 2.3358 7.6619 2.3358 7.6619s10.175-0.98105 10.175 3.64c0-1.1259 0.08591-1.9322-0.13378-2.2836-1.578-2.5243-8.395-8.1885-10.857-8.9309-0.184-0.05556-0.593-0.08754-1.52-0.08754z"/>
+ </g>
+</svg>
diff --git a/assets/mscz-icon-48.png b/assets/mscz-icon-48.png
new file mode 100644
index 0000000..5239292
Binary files /dev/null and b/assets/mscz-icon-48.png differ
diff --git a/assets/mscz-icon.svg b/assets/mscz-icon.svg
new file mode 100644
index 0000000..ce5aa5c
--- /dev/null
+++ b/assets/mscz-icon.svg
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <defs>
+  <linearGradient id="f" x1="302.86" gradientUnits="userSpaceOnUse" y1="366.65" gradientTransform="matrix(.067325 0 0 .0147 -.34114 37.04)" x2="302.86" y2="609.51">
+   <stop stop-opacity="0" offset="0"/>
+   <stop offset=".5"/>
+   <stop stop-opacity="0" offset="1"/>
+  </linearGradient>
+  <radialGradient id="c" xlink:href="#a" gradientUnits="userSpaceOnUse" cy="486.65" cx="605.71" gradientTransform="matrix(-.023040 0 0 .0147 21.623 37.04)" r="117.14"/>
+  <linearGradient id="a">
+   <stop offset="0"/>
+   <stop stop-opacity="0" offset="1"/>
+  </linearGradient>
+  <radialGradient id="d" xlink:href="#a" gradientUnits="userSpaceOnUse" cy="486.65" cx="605.71" gradientTransform="matrix(.023040 0 0 .0147 26.361 37.04)" r="117.14"/>
+  <linearGradient id="g" x1="-51.786" gradientUnits="userSpaceOnUse" y1="50.786" gradientTransform="matrix(.80750 0 0 .89483 59.41 -2.9806)" x2="-51.786" y2="2.9062">
+   <stop stop-color="#aaa" offset="0"/>
+   <stop stop-color="#c8c8c8" offset="1"/>
+  </linearGradient>
+  <linearGradient id="h" x1="25.132" gradientUnits="userSpaceOnUse" y1=".98521" gradientTransform="matrix(1 0 0 .95617 -1.0065e-7 -1.9149)" x2="25.132" y2="47.013">
+   <stop stop-color="#f8f2e5" offset="0"/>
+   <stop stop-color="#efe2c7" offset="1"/>
+  </linearGradient>
+  <radialGradient id="e" gradientUnits="userSpaceOnUse" cy="112.3" cx="102" gradientTransform="matrix(.36170 0 0 -.39078 .85106 47.517)" r="139.56">
+   <stop stop-opacity=".28125" offset="0"/>
+   <stop stop-opacity=".078125" offset=".18851"/>
+   <stop stop-opacity=".023438" offset=".25718"/>
+   <stop stop-opacity="0" offset=".30111"/>
+   <stop stop-color="#e1e2e3" stop-opacity="0" offset="1"/>
+  </radialGradient>
+  <linearGradient id="i" x1="24" gradientUnits="userSpaceOnUse" y1="2" gradientTransform="matrix(1 0 0 .97778 0 -.96667)" x2="24" y2="46.017">
+   <stop stop-color="#fff" offset="0"/>
+   <stop stop-color="#fff" stop-opacity="0" offset="1"/>
+  </linearGradient>
+  <filter id="k" width="1.2969" y="-.16434" x="-.14846" height="1.3287" color-interpolation-filters="sRGB">
+   <feGaussianBlur stdDeviation="0.77391625"/>
+  </filter>
+  <linearGradient id="j" x1="32.892" gradientUnits="userSpaceOnUse" y1="8.059" gradientTransform="matrix(.99770 0 0 1.0407 .16380 -1.1058)" x2="36.358" y2="5.4565">
+   <stop stop-color="#fefefe" offset="0"/>
+   <stop stop-color="#cbcbcb" offset="1"/>
+  </linearGradient>
+  <filter id="l" height="200%" width="200%" y="-50%" x="-50%" filterUnits="objectBoundingBox">
+   <feMorphology operator="dilate" in="SourceAlpha" radius="1" result="shadowSpreadOuter1"/>
+   <feOffset dy="10" in="shadowSpreadOuter1" dx="0" result="shadowOffsetOuter1"/>
+   <feGaussianBlur in="shadowOffsetOuter1" stdDeviation="2.5" result="shadowBlurOuter1"/>
+   <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.28 0" in="shadowBlurOuter1" type="matrix" result="shadowMatrixOuter1"/>
+   <feMerge>
+    <feMergeNode in="shadowMatrixOuter1"/>
+    <feMergeNode in="SourceGraphic"/>
+   </feMerge>
+  </filter>
+  <linearGradient id="b" x1="314" gradientUnits="userSpaceOnUse" y1="-12.58" gradientTransform="matrix(1.1101 0 0 .90080 -645.1 241.27)" x2="314" y2="631.64">
+   <stop stop-color="#1B75C0" offset="0"/>
+   <stop stop-color="#2A567B" offset="1"/>
+  </linearGradient>
+ </defs>
+ <rect opacity=".3" height="3.5701" width="32.508" y="42.43" x="7.7378" fill="url(#f)"/>
+ <path opacity=".3" fill="url(#c)" d="m7.7378 42.43v3.5699c-1.1865 0.0067-2.8684-0.79982-2.8684-1.7852 0-0.98533 1.324-1.7847 2.8684-1.7847z"/>
+ <path opacity=".3" fill="url(#d)" d="m40.246 42.43v3.5699c1.1865 0.0067 2.8684-0.79982 2.8684-1.7852 0-0.98533-1.324-1.7847-2.8684-1.7847z"/>
+ <path stroke-linejoin="round" d="m6.5 0.4972h24.061c1.4069 0.47465 8.9655 5.8822 10.939 9.6264v34.379h-35v-44.006z" stroke="url(#g)" stroke-width=".99992" fill="url(#h)"/>
+ <path fill="url(#e)" d="m7.3617 44c-0.1993 0-0.3617-0.17546-0.3617-0.39078v-42.204c0-0.21571 0.1624-0.39078 0.3617-0.39078 7.4833 0.1082 15.775-0.16138 23.249 0.0271l10.283 8.866 0.106 33.702c0 0.216-0.162 0.391-0.362 0.391h-33.276z"/>
+ <path opacity=".6" stroke-linejoin="round" d="m40.5 10.259v33.263h-33v-42.045h22.866" stroke="url(#i)" stroke-width=".99992" fill="none"/>
+ <g opacity=".4">
+  <path d="m11.084 40.916h1.37v-5.54l1.93 5.54h1.12l1.93-5.54v5.54h1.37v-7.39h-1.88l-1.97 5.6-1.99-5.6h-1.88v7.39z"/>
+  <path d="m19.547 38.806c0.05 0.58 0.18 0.95 0.48 1.34 0.44 0.57 1.17 0.9 1.95 0.9 1.33 0 2.36-1.03 2.36-2.37 0-0.61-0.23-1.14-0.66-1.54-0.29-0.27-0.53-0.4-1.25-0.67-0.7-0.26-0.72-0.27-0.82-0.33-0.27-0.17-0.41-0.4-0.41-0.67 0-0.44 0.31-0.75 0.76-0.75 0.46 0 0.74 0.28 0.78 0.78h1.42c-0.03-0.56-0.16-0.94-0.46-1.31-0.4-0.5-1.04-0.79-1.73-0.79-1.19 0-2.15 0.93-2.15 2.1 0 0.93 0.55 1.64 1.54 2.01s1.05 0.4 1.28 0.57c0.22 0.18 0.34 0.44 0.34 0.75 0 0.53-0.41 0.9-1 0.9-0.61 0-0.94-0.3-1-0.92h-1.43z"/>
+  <path d="m30.593 38.856c-0.6 0.63-1.12 0.87-1.83 0.87-1.36 0-2.48-1.14-2.48-2.52 0-0.6 0.23-1.24 0.61-1.68 0.45-0.53 1.09-0.81 1.84-0.81 0.86 0 1.44 0.28 1.94 0.93h1.53c-0.29-0.64-0.55-0.99-1.05-1.4-0.68-0.55-1.55-0.85-2.45-0.85-2.09 0-3.8 1.71-3.8 3.8 0 2.13 1.73 3.85 3.89 3.85 1.51 0 2.83-0.84 3.41-2.19h-1.61z"/>
+  <path d="m32.576 39.756v1.16h4.62v-1.31h-2.97l2.78-4.85v-1.23h-4.28v1.31h2.65l-2.8 4.92z"/>
+ </g>
+ <path d="m114.4 558.1-0.461-109.01c0-16.818-1.5479-32.068-4.6454-45.834-2.6977-13.638-7.8732-25.401-15.526-35.139-7.1649-9.6935-17.074-17.21-29.636-22.547-12.12-5.337-27.646-7.9505-46.489-7.9505-16.631 0-31.671 3.3112-45.118 9.9327-13.447 6.1867-24.948 14.836-34.414 25.902-9.3768 11.022-16.587 23.875-21.496 38.472-4.9539 14.115-7.4317 29.147-7.4317 45.136v216.27h-13.446v-218.93c0-15.946-1.3714-31.021-4.07-45.138-2.2118-14.159-6.7242-26.532-13.447-37.206-6.7233-10.566-16.19-18.974-28.309-25.161-12.12-6.1649-27.867-9.2796-47.152-9.2796-17.074 0-33.24 3.6194-47.129 11.549-13.978 7.5157-26.261 18.152-36.125 31.418-9.4663 12.853-16.808 27.885-22.206 45.138-4.9539 17.254-6.3622 35.477-6.3622 54.561v193.05h-13.491v-193.05c0-64.113 18.31-88.63 25.034-99.698 6.7234-11.066 17.852-21.496 27.672-29.905 9.9078-8.4081 21.466-14.796 33.144-19.196 12.12-4.8794 25.971-7.1766 39.463-7.1766 26.981-0.8706 49.408 5.991 67.367 20.608 18.445 14.16 30.521 33.81 37.687 59.036 6.7669-23.876 20.037-43.111 39.765-57.728 19.773-14.596 43.083-21.916 70.066-21.916 21.143 0 38.615 3.1156 52.55 9.3022 13.934 6.2303 25.124 14.835 33.661 25.858 8.5372 10.674 14.597 23.701 18.224 39.212 3.5825 15.031 5.3963 31.804 5.3963 50.409l0.1207 114.21c0.1781 16.915 1.2204 31.947 6.3819 44.331 5.837 13.723 13.712 25.226 23.531 34.506 10.351 8.8892 22.028 15.512 35.033 19.869 13.491 4.0517 27.645 6.0112 42.464 6.0112 20.701 0 38.838-3.7452 54.584-11.241 15.703-8.0144 28.752-18.342 39.058-31.194 10.748-13.244 18.844-28.538 24.284-45.834 5.3528-17.209 8.0505-35.334 8.0505-54.374v-193.05h13.448v193.05c0 44.602-9.4138 64.19-9.4138 64.19-6.2819 26.577-24.094 47.936-45.592 65.147-21.143 17.296-50.269 25.898-84.418 25.898-17.958 0-34.59-2.4397-49.851-7.2755-14.773-5.3161-27.823-13.026-39.057-23.179-10.749-10.673-19.286-23.528-25.612-38.557-4.2908-11.329-5.3528-23.527-6.0603-37.076-0.044-5.0977-0.044-11.153-0.044-16.426h0.019zm116.49-323.65c0-8.3871 6.9442-15.183 15.436-15.183 8.5373 0 15.437 6.7962 15.437 15.183 0 8.409-6.8998 15.205-15.437 15.205-8.492 0-15.436-6.7962-15.436-15.205zm-77.442-84.928c-27.989 22.732-42.784 54.563-42.784 92.051h12.222c0-73.026 61.881-111.23 123.01-111.23 31.034 0 59.624 9.7241 80.507 27.382 23.542 19.906 35.987 48.902 35.987 83.853h12.222c0-38.57-13.918-70.724-40.248-92.988-23.098-19.529-54.516-30.285-88.468-30.285-34.321 0-68.017 11.379-92.447 31.222z" fill-rule="evenodd" transform="matrix(.036268 0 0 .036268 23.111 6.0239)" filter="url(#l)" stroke="url(#b)" stroke-width="18" fill="url(#b)"/>
+ <g fill-rule="evenodd">
+  <path opacity=".4" d="m28.617 0.92126c4.2825 0 2.1532 8.4832 2.1532 8.4832s10.358-1.8023 10.358 2.8187c0-2.6097-11.302-10.729-12.511-11.302z" filter="url(#k)"/>
+  <path fill="url(#j)" d="m28.617 0.92126c3.1865 0 2.3358 7.6619 2.3358 7.6619s10.175-0.98105 10.175 3.64c0-1.1259 0.08591-1.9322-0.13378-2.2836-1.578-2.5243-8.395-8.1885-10.857-8.9309-0.184-0.05556-0.593-0.08754-1.52-0.08754z"/>
+ </g>
+</svg>
diff --git a/assets/musescore-icon-round.svg b/assets/musescore-icon-round.svg
new file mode 100644
index 0000000..5d4ce88
--- /dev/null
+++ b/assets/musescore-icon-round.svg
@@ -0,0 +1,96 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg width="1024px" height="1024px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
+    <!-- Generator: Sketch 3.0.4 (8054) - http://www.bohemiancoding.com/sketch -->
+    <title>musescore-icon-round</title>
+    <desc>Created with Sketch.</desc>
+    <defs>
+        <linearGradient x1="50%" y1="0%" x2="50%" y2="5%" id="linearGradient-1">
+            <stop stop-color="#FFFFFF" offset="0%"></stop>
+            <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
+        </linearGradient>
+        <filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-2">
+            <feOffset dx="0" dy="22" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
+            <feGaussianBlur stdDeviation="7.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+            <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.21 0" in="shadowBlurOuter1" type="matrix" result="shadowMatrixOuter1"></feColorMatrix>
+            <feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetInner1"></feOffset>
+            <feGaussianBlur stdDeviation="15" in="shadowOffsetInner1" result="shadowBlurInner1"></feGaussianBlur>
+            <feComposite in="shadowBlurInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
+            <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.028 0" in="shadowInnerInner1" type="matrix" result="shadowMatrixInner1"></feColorMatrix>
+            <feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetInner2"></feOffset>
+            <feGaussianBlur stdDeviation="0" in="shadowOffsetInner2" result="shadowBlurInner2"></feGaussianBlur>
+            <feComposite in="shadowBlurInner2" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner2"></feComposite>
+            <feColorMatrix values="0 0 0 0 1   0 0 0 0 1   0 0 0 0 1  0 0 0 0.7 0" in="shadowInnerInner2" type="matrix" result="shadowMatrixInner2"></feColorMatrix>
+            <feMorphology radius="1" in="SourceAlpha" operator="dilate" result="shadowSpreadInner3"></feMorphology>
+            <feOffset dx="0" dy="0" in="shadowSpreadInner3" result="shadowOffsetInner3"></feOffset>
+            <feGaussianBlur stdDeviation="0" in="shadowOffsetInner3" result="shadowBlurInner3"></feGaussianBlur>
+            <feComposite in="shadowBlurInner3" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner3"></feComposite>
+            <feColorMatrix values="0 0 0 0 1   0 0 0 0 1   0 0 0 0 1  0 0 0 0.28 0" in="shadowInnerInner3" type="matrix" result="shadowMatrixInner3"></feColorMatrix>
+            <feMerge>
+                <feMergeNode in="shadowMatrixOuter1"></feMergeNode>
+                <feMergeNode in="SourceGraphic"></feMergeNode>
+                <feMergeNode in="shadowMatrixInner1"></feMergeNode>
+                <feMergeNode in="shadowMatrixInner2"></feMergeNode>
+                <feMergeNode in="shadowMatrixInner3"></feMergeNode>
+            </feMerge>
+        </filter>
+        <ellipse id="path-3" cx="479.96542" cy="479.480789" rx="479.765625" ry="479.757424"></ellipse>
+        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-4">
+            <stop stop-color="#FFFFFF" offset="0%"></stop>
+            <stop stop-color="#FFFFFF" offset="100%"></stop>
+        </linearGradient>
+        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-5">
+            <stop stop-color="#F8F2E5" stop-opacity="0.510501585" offset="0%"></stop>
+            <stop stop-color="#EFE2C7" offset="100%"></stop>
+        </linearGradient>
+        <filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-6">
+            <feMorphology radius="1" in="SourceAlpha" operator="dilate" result="shadowSpreadOuter1"></feMorphology>
+            <feOffset dx="0" dy="0" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
+            <feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+            <feColorMatrix values="0 0 0 0 1   0 0 0 0 1   0 0 0 0 1  0 0 0 0.35 0" in="shadowBlurOuter1" type="matrix" result="shadowMatrixOuter1"></feColorMatrix>
+            <feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetInner1"></feOffset>
+            <feGaussianBlur stdDeviation="1.5" in="shadowOffsetInner1" result="shadowBlurInner1"></feGaussianBlur>
+            <feComposite in="shadowBlurInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
+            <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.35 0" in="shadowInnerInner1" type="matrix" result="shadowMatrixInner1"></feColorMatrix>
+            <feMerge>
+                <feMergeNode in="shadowMatrixOuter1"></feMergeNode>
+                <feMergeNode in="SourceGraphic"></feMergeNode>
+                <feMergeNode in="shadowMatrixInner1"></feMergeNode>
+            </feMerge>
+        </filter>
+        <ellipse id="path-7" cx="479.96542" cy="479.480789" rx="441.298893" ry="441.29135"></ellipse>
+        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-8">
+            <stop stop-color="#1B75C0" offset="0%"></stop>
+            <stop stop-color="#2A567B" offset="100%"></stop>
+        </linearGradient>
+        <filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-9">
+            <feMorphology radius="1" in="SourceAlpha" operator="dilate" result="shadowSpreadOuter1"></feMorphology>
+            <feOffset dx="0" dy="10" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
+            <feGaussianBlur stdDeviation="2.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+            <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.28 0" in="shadowBlurOuter1" type="matrix" result="shadowMatrixOuter1"></feColorMatrix>
+            <feMerge>
+                <feMergeNode in="shadowMatrixOuter1"></feMergeNode>
+                <feMergeNode in="SourceGraphic"></feMergeNode>
+            </feMerge>
+        </filter>
+    </defs>
+    <g id="Circle" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
+        <g id="musescore-icon-round" sketch:type="MSArtboardGroup">
+            <g id="Icon" sketch:type="MSLayerGroup" transform="translate(32.000000, 14.000000)">
+                <g id="Base" filter="url(#filter-2)">
+                    <use fill="#D8D8D8" sketch:type="MSShapeGroup" xlink:href="#path-3"></use>
+                    <use fill="url(#linearGradient-1)" xlink:href="#path-3"></use>
+                </g>
+                <g id="Gradients" transform="translate(38.666527, 38.189439)" fill="url(#linearGradient-4)" sketch:type="MSShapeGroup">
+                    <ellipse id="Gradient---Grey" cx="441.298893" cy="441.29135" rx="441.298893" ry="441.29135"></ellipse>
+                </g>
+                <g id="Inner-Circle" filter="url(#filter-6)">
+                    <use fill="none" sketch:type="MSShapeGroup" xlink:href="#path-7"></use>
+                    <use fill="url(#linearGradient-5)" fill-rule="evenodd" xlink:href="#path-7"></use>
+                </g>
+                <g transform="translate(167.957486, 202.866257)" stroke="url(#linearGradient-8)" filter="url(#filter-9)" id="Logo" stroke-width="18" fill="url(#linearGradient-8)" sketch:type="MSShapeGroup">
+                    <path d="M391.257804,394.136351 L390.844972,296.532438 C390.844972,281.473598 389.458967,267.819007 386.685431,255.491988 C384.269844,243.280736 379.635581,232.748118 372.783405,224.028695 C366.36779,215.349114 357.495375,208.618793 346.24706,203.839987 C335.394856,199.061181 321.492067,196.721017 304.619595,196.721017 C289.727675,196.721017 276.260684,199.685876 264.220149,205.614843 C252.179613,211.154409 241.881506,218.898827 233.405201,228.807501 C225.009034,238.677085 218.552968,250.185461 214.15683,263.25595 C209.721003,275.894941 207.502327,289.35408 207.502327,303.670953 L207.502327,497.324234 L195.462555,497.324234 L195.462555,301.290947 C195.462555,287.012412 194.234536,273.514183 191.818186,260.87444 C189.837634,248.196359 185.797155,237.117226 179.777651,227.559614 C173.757383,218.098976 165.281078,210.570308 154.428874,205.02999 C143.57667,199.509969 129.476207,196.721017 112.207625,196.721017 C96.9188313,196.721017 82.4436984,199.961819 70.0070525,207.061996 C57.4910319,213.791565 46.4923539,223.315421 37.6603891,235.193652 C29.1840841,246.702027 22.6097197,260.161918 17.7770199,275.610159 C13.3411939,291.059151 12.0802229,307.376276 12.0802229,324.46406 L12.0802229,497.324234 L0,497.324234 L0,324.464063 C0,267.056608 16.3952816,245.103831 22.4163126,235.193653 C28.4365803,225.284979 38.4009993,215.945874 47.1940399,208.416455 C56.0656921,200.887786 66.4154104,195.16805 76.8715042,191.228185 C87.7237085,186.859076 100.126639,184.802192 112.207625,184.802192 C136.367307,184.022638 156.44835,190.166603 172.529365,203.255134 C189.045414,215.933967 199.858694,233.528423 206.275072,256.115931 C212.334264,234.73722 224.216813,217.514123 241.881506,204.425592 C259.586649,191.356606 280.45915,184.802192 304.619595,184.802192 C323.551231,184.802192 339.196448,187.591896 351.673544,193.131462 C364.149877,198.710119 374.170173,206.414694 381.81457,216.285029 C389.458967,225.842642 394.884688,237.507379 398.132946,251.395761 C401.340753,264.854899 402.964882,279.873145 402.964882,296.532438 L403.072976,398.800743 C403.232458,413.946493 404.165722,427.406496 408.787476,438.494628 C414.013997,450.782557 421.065373,461.082136 429.85765,469.391109 C439.126176,477.350524 449.58227,483.280994 461.226695,487.181769 C473.306918,490.809662 485.980925,492.564222 499.249479,492.564222 C517.785767,492.564222 534.025531,489.210713 548.12523,482.499185 C562.186005,475.323083 573.870118,466.075939 583.098193,454.567564 C592.722379,442.708878 599.971428,429.014445 604.842289,413.527113 C609.635301,398.117963 612.050888,381.888666 612.050888,364.840724 L612.050888,191.981301 L624.092187,191.981301 L624.092187,364.840721 C624.092187,404.777836 615.662933,422.316648 615.662933,422.316648 C610.038013,446.113705 594.088433,465.238817 574.839299,480.649471 C555.907663,496.136802 529.827066,503.838806 499.249479,503.838806 C483.169228,503.838806 468.276545,501.654252 454.61188,497.324234 C441.383776,492.564222 429.698901,485.661001 419.639681,476.569467 C410.014732,467.012606 402.370335,455.502727 396.70649,442.045092 C392.864448,431.901123 391.913478,420.979104 391.280006,408.846785 C391.240319,404.282225 391.240319,398.85993 391.240319,394.139008 L391.257804,394.136351 L391.257804,394.136351 Z M495.566631,104.341289 C495.566631,96.8314148 501.784573,90.746086 509.388519,90.746086 C517.032916,90.746086 523.21117,96.8314148 523.21117,104.341289 C523.21117,111.870709 517.032916,117.956038 509.388519,117.956038 C501.784573,117.956038 495.566631,111.870709 495.566631,104.341289 Z M426.22297,28.2964082 C401.160702,48.6504571 387.913768,77.1523238 387.913768,110.719797 L398.857691,110.719797 C398.857691,45.3317743 454.267456,11.1195635 509.002119,11.1195635 C536.790108,11.1195635 562.390679,19.8265583 581.08974,35.6371244 C602.169787,53.4614019 613.313437,79.4240652 613.313437,110.719797 L624.25736,110.719797 C624.25736,76.1842062 611.794967,47.3926453 588.218337,27.4576424 C567.536375,9.9708923 539.403653,0.340244555 509.002119,0.340244555 C478.270215,0.340244555 448.098504,10.5293958 426.22297,28.2964082 Z"></path>
+                </g>
+            </g>
+        </g>
+    </g>
+</svg>
\ No newline at end of file
diff --git a/assets/musescore-icon-square.svg b/assets/musescore-icon-square.svg
new file mode 100644
index 0000000..a6c70d3
--- /dev/null
+++ b/assets/musescore-icon-square.svg
@@ -0,0 +1,90 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg width="1024px" height="1024px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
+    <!-- Generator: Sketch 3.0.4 (8054) - http://www.bohemiancoding.com/sketch -->
+    <title>musescore-icon-square</title>
+    <desc>Created with Sketch.</desc>
+    <defs>
+        <linearGradient x1="50%" y1="0%" x2="50%" y2="5%" id="linearGradient-1">
+            <stop stop-color="#FFFFFF" offset="0%"></stop>
+            <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
+        </linearGradient>
+        <filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-2">
+            <feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetInner1"></feOffset>
+            <feGaussianBlur stdDeviation="15" in="shadowOffsetInner1" result="shadowBlurInner1"></feGaussianBlur>
+            <feComposite in="shadowBlurInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
+            <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.028 0" in="shadowInnerInner1" type="matrix" result="shadowMatrixInner1"></feColorMatrix>
+            <feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetInner2"></feOffset>
+            <feGaussianBlur stdDeviation="0" in="shadowOffsetInner2" result="shadowBlurInner2"></feGaussianBlur>
+            <feComposite in="shadowBlurInner2" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner2"></feComposite>
+            <feColorMatrix values="0 0 0 0 1   0 0 0 0 1   0 0 0 0 1  0 0 0 0.7 0" in="shadowInnerInner2" type="matrix" result="shadowMatrixInner2"></feColorMatrix>
+            <feMorphology radius="1" in="SourceAlpha" operator="dilate" result="shadowSpreadInner3"></feMorphology>
+            <feOffset dx="0" dy="0" in="shadowSpreadInner3" result="shadowOffsetInner3"></feOffset>
+            <feGaussianBlur stdDeviation="0" in="shadowOffsetInner3" result="shadowBlurInner3"></feGaussianBlur>
+            <feComposite in="shadowBlurInner3" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner3"></feComposite>
+            <feColorMatrix values="0 0 0 0 1   0 0 0 0 1   0 0 0 0 1  0 0 0 0.28 0" in="shadowInnerInner3" type="matrix" result="shadowMatrixInner3"></feColorMatrix>
+            <feMerge>
+                <feMergeNode in="SourceGraphic"></feMergeNode>
+                <feMergeNode in="shadowMatrixInner1"></feMergeNode>
+                <feMergeNode in="shadowMatrixInner2"></feMergeNode>
+                <feMergeNode in="shadowMatrixInner3"></feMergeNode>
+            </feMerge>
+        </filter>
+        <rect id="path-3" x="0.827317073" y="0.827317073" width="1023.00098" height="1023.00098" rx="8"></rect>
+        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-4">
+            <stop stop-color="#FFFFFF" offset="0%"></stop>
+            <stop stop-color="#FFFFFF" offset="100%"></stop>
+        </linearGradient>
+        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-5">
+            <stop stop-color="#F8F2E5" stop-opacity="0.510501585" offset="0%"></stop>
+            <stop stop-color="#EFE2C7" offset="100%"></stop>
+        </linearGradient>
+        <filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-6">
+            <feMorphology radius="1" in="SourceAlpha" operator="dilate" result="shadowSpreadOuter1"></feMorphology>
+            <feOffset dx="0" dy="0" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
+            <feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+            <feColorMatrix values="0 0 0 0 1   0 0 0 0 1   0 0 0 0 1  0 0 0 0.35 0" in="shadowBlurOuter1" type="matrix" result="shadowMatrixOuter1"></feColorMatrix>
+            <feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetInner1"></feOffset>
+            <feGaussianBlur stdDeviation="1.5" in="shadowOffsetInner1" result="shadowBlurInner1"></feGaussianBlur>
+            <feComposite in="shadowBlurInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
+            <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.35 0" in="shadowInnerInner1" type="matrix" result="shadowMatrixInner1"></feColorMatrix>
+            <feMerge>
+                <feMergeNode in="shadowMatrixOuter1"></feMergeNode>
+                <feMergeNode in="SourceGraphic"></feMergeNode>
+                <feMergeNode in="shadowMatrixInner1"></feMergeNode>
+            </feMerge>
+        </filter>
+        <rect id="path-7" x="18.7270663" y="18.7270663" width="986.872842" height="986.872842" rx="8"></rect>
+        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-8">
+            <stop stop-color="#1B75C0" offset="0%"></stop>
+            <stop stop-color="#2A567B" offset="100%"></stop>
+        </linearGradient>
+        <filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-9">
+            <feMorphology radius="1" in="SourceAlpha" operator="dilate" result="shadowSpreadOuter1"></feMorphology>
+            <feOffset dx="0" dy="10" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
+            <feGaussianBlur stdDeviation="2.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+            <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.28 0" in="shadowBlurOuter1" type="matrix" result="shadowMatrixOuter1"></feColorMatrix>
+            <feMerge>
+                <feMergeNode in="shadowMatrixOuter1"></feMergeNode>
+                <feMergeNode in="SourceGraphic"></feMergeNode>
+            </feMerge>
+        </filter>
+    </defs>
+    <g id="Square" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
+        <g id="musescore-icon-square" sketch:type="MSArtboardGroup">
+            <g id="Icon-2" sketch:type="MSLayerGroup">
+                <g id="Base" filter="url(#filter-2)">
+                    <use fill="#D8D8D8" sketch:type="MSShapeGroup" xlink:href="#path-3"></use>
+                    <use fill="url(#linearGradient-1)" xlink:href="#path-3"></use>
+                </g>
+                <rect id="Rectangle-2" fill="url(#linearGradient-4)" sketch:type="MSShapeGroup" x="18.7270663" y="18.7270663" width="986.872842" height="986.872842" rx="8"></rect>
+                <g id="Rectangle-1" filter="url(#filter-6)">
+                    <use fill="none" sketch:type="MSShapeGroup" xlink:href="#path-7"></use>
+                    <use fill="url(#linearGradient-5)" fill-rule="evenodd" xlink:href="#path-7"></use>
+                </g>
+                <g id="Icon" transform="translate(160.731744, 202.965662)" stroke="url(#linearGradient-8)" filter="url(#filter-9)" stroke-width="18" fill="url(#linearGradient-8)" sketch:type="MSShapeGroup">
+                    <path d="M436.954197,437.464388 L436.493148,328.459103 C436.493148,311.6412 434.945267,296.391581 431.8478,282.624609 C429.150088,268.986929 423.974573,257.223968 416.322107,247.486006 C409.15719,237.79254 399.248533,230.276033 386.686488,224.939001 C374.566816,219.60197 359.040271,216.988445 340.197203,216.988445 C323.566003,216.988445 308.526154,220.299638 295.079361,226.921183 C281.632569,233.107841 270.131708,241.756904 260.665426,252.823037 C251.28864,263.845513 244.078548,276.698213 239.168968,291.295501 C234.215066,305.410886 231.737263,320.442223 231.737263,336.431488 L231.737263,552.705922 L218.291323,552.705922 L218.291323,333.773466 C218.291323,317.827019 216.91988,302.752025 214.221316,288.635801 C212.009448,274.476759 207.497067,262.103443 200.774523,251.429381 C194.051127,240.863621 184.584844,232.455509 172.465172,226.268012 C160.3455,220.103183 144.598195,216.988445 125.312753,216.988445 C108.238327,216.988445 92.0725916,220.607814 78.1834255,228.537382 C64.2056142,236.05305 51.9223615,246.689412 42.05888,259.955171 C32.5925972,272.80787 25.2503894,287.840046 19.8532614,305.092837 C14.8993594,322.346467 13.4911151,340.569639 13.4911151,359.653492 L13.4911151,552.705922 L5.68434189e-14,552.705922 L5.68434189e-14,359.653495 C5.68434189e-14,295.540123 18.3101449,271.022984 25.0343936,259.955172 C31.7577898,248.889039 42.8859887,238.45901 52.706,230.050058 C62.613804,221.641946 74.1723027,215.254072 85.849601,210.853981 C97.9692728,205.974506 111.820786,203.677351 125.312753,203.677351 C152.294131,202.806735 174.72051,209.668393 192.679684,224.28583 C211.124701,238.445712 223.200902,258.095423 230.366672,283.321437 C237.133539,259.445422 250.403893,240.21045 270.131708,225.593012 C289.904699,210.997403 313.214973,203.677351 340.197203,203.677351 C361.339932,203.677351 378.812409,206.792928 392.74675,212.979585 C406.680239,219.2099 417.870841,227.814466 426.408054,238.837782 C434.945267,249.511845 441.004677,262.539171 444.63231,278.049891 C448.214769,293.081228 450.028586,309.853795 450.028586,328.459103 L450.149304,442.673641 C450.327413,459.588605 451.369676,474.620908 456.531222,487.004273 C462.368166,500.727588 470.243097,512.230288 480.062256,521.509854 C490.413286,530.399029 502.090585,537.022254 515.095003,541.378688 C528.586119,545.430366 542.740368,547.38988 557.558604,547.38988 C578.259811,547.38988 596.396275,543.644639 612.142728,536.14912 C627.845711,528.134758 640.894453,517.807431 651.200308,504.954731 C661.948536,491.710801 670.044228,476.416685 675.483974,459.120237 C680.836779,441.911103 683.534491,423.786018 683.534491,404.746662 L683.534491,211.695071 L696.982136,211.695071 L696.982136,404.746658 C696.982136,449.348934 687.5684,468.936501 687.5684,468.936501 C681.286525,495.513355 663.474137,516.872523 641.976828,534.083336 C620.834099,551.379783 591.707456,559.981478 557.558604,559.981478 C539.600283,559.981478 522.96823,557.541741 507.707621,552.705922 C492.93456,547.38988 479.884966,539.680275 468.650894,529.526735 C457.901813,518.853512 449.364599,505.999134 443.039254,490.969477 C438.748486,479.640564 437.686449,467.442715 436.978992,453.893188 C436.934669,448.795429 436.934669,442.739741 436.934669,437.467355 L436.954197,437.464388 L436.954197,437.464388 Z M553.445623,113.817597 C553.445623,105.430474 560.38978,98.6343018 568.881819,98.6343018 C577.419032,98.6343018 584.318866,105.430474 584.318866,113.817597 C584.318866,122.226548 577.419032,129.022721 568.881819,129.022721 C560.38978,129.022721 553.445623,122.226548 553.445623,113.817597 Z M476.003069,28.8897115 C448.01369,51.6213709 433.219598,83.4526162 433.219598,120.941195 L445.441701,120.941195 C445.441701,47.9150239 507.322971,9.706394 568.45029,9.706394 C599.483736,9.706394 628.07429,19.430476 648.95728,37.0879162 C672.499341,56.9942949 684.944498,85.9897258 684.944498,120.941195 L697.1666,120.941195 C697.1666,82.3714102 683.248681,50.2166308 656.918452,27.9529673 C633.82097,8.4235435 602.402527,-2.33208575 568.45029,-2.33208575 C534.129097,-2.33208575 500.433524,9.04728724 476.003069,28.8897115 Z" id="Logo"></path>
+                </g>
+            </g>
+        </g>
+    </g>
+</svg>
\ No newline at end of file
diff --git a/assets/musicxml-icon-master.svg b/assets/musicxml-icon-master.svg
new file mode 100644
index 0000000..e1cffe8
--- /dev/null
+++ b/assets/musicxml-icon-master.svg
@@ -0,0 +1,435 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+MuseScore custom icon for MusicXML files. Modified: 2015-06-09
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License version 2.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+CREDIT:
+Treble Clef adapted from http://commons.wikimedia.org/wiki/File:Treble_clef_with_ref.svg (Public Domain)
+Background file image and text adapted from Ubuntu Humanity theme icon audio-x-wav.svg (GNU GPL Version 2)
+-->
+
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2677"
+   height="48"
+   width="48"
+   version="1.0"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="musicxml-icon-master.svg"
+   inkscape:export-filename="/home/peter/src/MuseScore/assets/musicxml-icon-master.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <metadata
+     id="metadata71">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1366"
+     inkscape:window-height="744"
+     id="namedview69"
+     showgrid="false"
+     inkscape:zoom="6.9532167"
+     inkscape:cx="16.909684"
+     inkscape:cy="18.950361"
+     inkscape:window-x="0"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="layer1" />
+  <defs
+     id="defs2679">
+    <linearGradient
+       id="linearGradient2642"
+       y2="609.51"
+       gradientUnits="userSpaceOnUse"
+       x2="302.86"
+       gradientTransform="matrix(.067325 0 0 0.0147 -.34114 37.04)"
+       y1="366.65"
+       x1="302.86">
+      <stop
+         id="stop5050"
+         style="stop-opacity:0"
+         offset="0" />
+      <stop
+         id="stop5056"
+         offset=".5" />
+      <stop
+         id="stop5052"
+         style="stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <radialGradient
+       id="radialGradient2639"
+       xlink:href="#linearGradient5060"
+       gradientUnits="userSpaceOnUse"
+       cy="486.65"
+       cx="605.71"
+       gradientTransform="matrix(-.023040 0 0 0.0147 21.623 37.04)"
+       r="117.14" />
+    <linearGradient
+       id="linearGradient5060">
+      <stop
+         id="stop5062"
+         offset="0" />
+      <stop
+         id="stop5064"
+         style="stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <radialGradient
+       id="radialGradient2636"
+       xlink:href="#linearGradient5060"
+       gradientUnits="userSpaceOnUse"
+       cy="486.65"
+       cx="605.71"
+       gradientTransform="matrix(.023040 0 0 0.0147 26.361 37.04)"
+       r="117.14" />
+    <linearGradient
+       id="linearGradient2633"
+       y2="2.9062"
+       gradientUnits="userSpaceOnUse"
+       x2="-51.786"
+       gradientTransform="matrix(.80750 0 0 .89483 59.41 -2.9806)"
+       y1="50.786"
+       x1="-51.786">
+      <stop
+         id="stop3106"
+         style="stop-color:#aaa"
+         offset="0" />
+      <stop
+         id="stop3108"
+         style="stop-color:#c8c8c8"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2631"
+       y2="47.013"
+       gradientUnits="userSpaceOnUse"
+       x2="25.132"
+       gradientTransform="matrix(1 0 0 .95617 -1.0065e-7 -1.9149)"
+       y1=".98521"
+       x1="25.132">
+      <stop
+         id="stop3602"
+         style="stop-color:#f4f4f4"
+         offset="0" />
+      <stop
+         id="stop3604"
+         style="stop-color:#dbdbdb"
+         offset="1" />
+    </linearGradient>
+    <radialGradient
+       id="radialGradient2628"
+       gradientUnits="userSpaceOnUse"
+       cy="112.3"
+       cx="102"
+       gradientTransform="matrix(.36170 0 0 -.39078 .85106 47.517)"
+       r="139.56">
+      <stop
+         id="stop41"
+         style="stop-color:#b7b8b9"
+         offset="0" />
+      <stop
+         id="stop47"
+         style="stop-color:#ececec"
+         offset=".18851" />
+      <stop
+         id="stop49"
+         style="stop-color:#fafafa;stop-opacity:0"
+         offset=".25718" />
+      <stop
+         id="stop51"
+         style="stop-color:#fff;stop-opacity:0"
+         offset=".30111" />
+      <stop
+         id="stop53"
+         style="stop-color:#fafafa;stop-opacity:0"
+         offset=".53130" />
+      <stop
+         id="stop55"
+         style="stop-color:#ebecec;stop-opacity:0"
+         offset=".84490" />
+      <stop
+         id="stop57"
+         style="stop-color:#e1e2e3;stop-opacity:0"
+         offset="1" />
+    </radialGradient>
+    <linearGradient
+       id="linearGradient2625"
+       y2="46.017"
+       gradientUnits="userSpaceOnUse"
+       x2="24"
+       gradientTransform="matrix(1 0 0 .97778 0 -.96667)"
+       y1="2"
+       x1="24">
+      <stop
+         id="stop3213"
+         style="stop-color:#fff"
+         offset="0" />
+      <stop
+         id="stop3215"
+         style="stop-color:#fff;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <filter
+       id="filter3212"
+       height="1.3287"
+       width="1.2969"
+       color-interpolation-filters="sRGB"
+       y="-.16434"
+       x="-.14846">
+      <feGaussianBlur
+         id="feGaussianBlur3214"
+         stdDeviation="0.77391625" />
+    </filter>
+    <linearGradient
+       id="linearGradient2621"
+       y2="5.4565"
+       gradientUnits="userSpaceOnUse"
+       x2="36.358"
+       gradientTransform="matrix(.99770 0 0 1.0407 .16380 -1.1058)"
+       y1="8.059"
+       x1="32.892">
+      <stop
+         id="stop8591"
+         style="stop-color:#fefefe"
+         offset="0" />
+      <stop
+         id="stop8593"
+         style="stop-color:#cbcbcb"
+         offset="1" />
+    </linearGradient>
+    <radialGradient
+       id="radialGradient2675"
+       gradientUnits="userSpaceOnUse"
+       cy="45.867"
+       cx="22.902"
+       gradientTransform="matrix(.69765 0 0 .29961 12.507 18.89)"
+       r="7.9059">
+      <stop
+         id="stop3197"
+         offset="0" />
+      <stop
+         id="stop3199"
+         style="stop-opacity:0"
+         offset="1" />
+    </radialGradient>
+    <radialGradient
+       id="radialGradient2672"
+       gradientUnits="userSpaceOnUse"
+       cy="45.867"
+       cx="22.902"
+       gradientTransform="matrix(.75875 0 0 .32584 -.80598 19.479)"
+       r="7.9059">
+      <stop
+         id="stop3203"
+         offset="0" />
+      <stop
+         id="stop3205"
+         style="stop-opacity:0"
+         offset="1" />
+    </radialGradient>
+    <radialGradient
+       id="radialGradient2668"
+       fx="14.638"
+       fy="38.175"
+       gradientUnits="userSpaceOnUse"
+       cy="41.059"
+       cx="17.059"
+       gradientTransform="matrix(.66498 0 -.10886 .63739 9.9382 5.2626)"
+       r="5.7385">
+      <stop
+         id="stop3877"
+         style="stop-color:#aaa"
+         offset="0" />
+      <stop
+         id="stop3879"
+         style="stop-color:#4d4d4d"
+         offset="1" />
+    </radialGradient>
+    <radialGradient
+       id="radialGradient2665"
+       fx="14.109"
+       fy="38.981"
+       gradientUnits="userSpaceOnUse"
+       cy="41.059"
+       cx="17.059"
+       gradientTransform="matrix(.66333 0 -.10859 .63580 21.997 3.4975)"
+       r="5.7385">
+      <stop
+         id="stop3871"
+         style="stop-color:#aaa"
+         offset="0" />
+      <stop
+         id="stop3873"
+         style="stop-color:#4d4d4d"
+         offset="1" />
+    </radialGradient>
+    <linearGradient
+       id="linearGradient2662"
+       y2="119.86"
+       gradientUnits="userSpaceOnUse"
+       x2="25.4"
+       gradientTransform="matrix(.22147 0 0 .22311 14.032 -16.079)"
+       y1="144.12"
+       x1="28.739">
+      <stop
+         id="stop3239"
+         style="stop-color:#fff"
+         offset="0" />
+      <stop
+         id="stop3241"
+         style="stop-color:#fff;stop-opacity:.37931"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2659"
+       y2="125.39"
+       gradientUnits="userSpaceOnUse"
+       x2="26.257"
+       gradientTransform="matrix(.44563 0 0 .22311 20.716 -17.657)"
+       y1="144.12"
+       x1="28.739">
+      <stop
+         id="stop3245"
+         style="stop-color:#fff"
+         offset="0" />
+      <stop
+         id="stop3247"
+         style="stop-color:#fff;stop-opacity:.37931"
+         offset="1" />
+    </linearGradient>
+  </defs>
+  <g
+     id="layer1">
+    <rect
+       id="rect2879"
+       style="opacity:.3;fill:url(#linearGradient2642)"
+       height="3.5701"
+       width="32.508"
+       y="42.43"
+       x="7.7378" />
+    <path
+       id="path2881"
+       style="opacity:.3;fill:url(#radialGradient2639)"
+       d="m7.7378 42.43v3.5699c-1.1865 0.0067-2.8684-0.79982-2.8684-1.7852 0-0.98533 1.324-1.7847 2.8684-1.7847z" />
+    <path
+       id="path2883"
+       style="opacity:.3;fill:url(#radialGradient2636)"
+       d="m40.246 42.43v3.5699c1.1865 0.0067 2.8684-0.79982 2.8684-1.7852 0-0.98533-1.324-1.7847-2.8684-1.7847z" />
+    <path
+       id="path4160"
+       style="stroke-linejoin:round;stroke:url(#linearGradient2633);stroke-width:.99992;fill:url(#linearGradient2631)"
+       d="m6.5 0.4972h24.061c1.4069 0.47465 8.9655 5.8822 10.939 9.6264v34.379h-35v-44.006z" />
+    <path
+       id="path4191"
+       style="fill:url(#radialGradient2628)"
+       d="m7.3617 44c-0.1993 0-0.3617-0.17546-0.3617-0.39078v-42.204c0-0.21571 0.1624-0.39078 0.3617-0.39078 7.4833 0.1082 15.775-0.16138 23.249 0.0271l10.283 8.866 0.106 33.702c0 0.216-0.162 0.391-0.362 0.391h-33.276z" />
+    <path
+       id="path2435"
+       style="opacity:.6;stroke-linejoin:round;stroke:url(#linearGradient2625);stroke-width:.99992;fill:none"
+       d="m40.5 10.259v33.263h-33v-42.045h22.866" />
+    <path
+       id="path12038"
+       style="opacity:.4;fill-rule:evenodd;filter:url(#filter3212)"
+       d="m28.617 0.92126c4.2825 0 2.1532 8.4832 2.1532 8.4832s10.358-1.8023 10.358 2.8187c0-2.6097-11.302-10.729-12.511-11.302z" />
+    <path
+       id="path4474"
+       style="fill:url(#linearGradient2621);fill-rule:evenodd"
+       d="m28.617 0.92126c3.1865 0 2.3358 7.6619 2.3358 7.6619s10.175-0.98105 10.175 3.64c0-1.1259 0.08591-1.9322-0.13378-2.2836-1.578-2.5243-8.395-8.1885-10.857-8.9309-0.184-0.05556-0.593-0.08754-1.52-0.08754z" />
+    <path
+       inkscape:connector-curvature="0"
+       d="m 24.685886,20.29914 c -0.442145,0.09405 -0.851909,0.345684 -1.243007,0.74653 -0.391589,0.408208 -0.60121,0.8738 -0.635474,1.388912 -0.0215,0.323781 0.06064,0.699353 0.24096,1.104127 0.179817,0.412128 0.47365,0.721511 0.866788,0.934491 0.133173,0.03912 0.192284,0.117271 0.18543,0.220295 -0.0024,0.03681 -0.05471,0.07004 -0.17754,0.09081 -0.635924,-0.215569 -1.145332,-0.61432 -1.522089,-1.181024 -0.376267,-0.574066 -0.54851,-1.207469 -0.51574,-1.914925 0.07178,-0.756418 0.339228,-1.447078 0.801905,-2.064609 0.470283,-0.624391 1.048747,-1.048797 1.735379,-1.273227 l -0.316942,-2.647456 c -1.157894,0.86353 -2.111994,1.778619 -2.870386,2.759467 -0.757902,0.973486 -1.187414,2.059207 -1.29566,3.256637 -0.0215,0.538203 0.05044,1.068303 0.216262,1.582953 0.165357,0.521997 0.433703,0.99962 0.804072,1.447564 0.748328,0.889051 1.764899,1.398036 3.034999,1.53329 0.43579,0.0016 0.903448,-0.04621 1.410096,-0.143071 l -0.719053,-5.840763 z m 0.516958,-0.03697 0.733015,5.738242 c 1.125591,-0.377851 1.739292,-1.332087 1.840138,-2.847983 -0.0302,-0.512331 -0.142122,-0.978752 -0.357001,-1.400784 -0.207281,-0.428885 -0.498672,-0.775063 -0.881271,-1.039046 -0.382608,-0.263982 -0.822824,-0.413785 -1.334881,-0.450429 z m -0.948842,-7.757402 c 0.244486,-0.130378 0.531869,-0.368592 0.847451,-0.7083 0.315084,-0.332347 0.627465,-0.731439 0.929046,-1.183056 0.309186,-0.458461 0.561965,-0.928356 0.758337,-1.4096854 0.195881,-0.473966 0.304957,-0.931973 0.333346,-1.358778 0.01225,-0.183961 0.01028,-0.368951 -0.01455,-0.533391 -0.01083,-0.266946 -0.07534,-0.478588 -0.20117,-0.628072 -0.126319,-0.14213 -0.292111,-0.227936 -0.505463,-0.243202 -0.426722,-0.03052 -0.82888,0.214247 -1.206476,0.734363 -0.294473,0.452127 -0.552146,0.995613 -0.750707,1.617263 -0.206159,0.628502 -0.340715,1.2547344 -0.397526,1.8939224 -0.01289,0.731056 0.06119,1.335257 0.2077,1.818936 z m -0.476441,0.394742 c -0.240738,-1.215014 -0.337765,-2.441925 -0.291082,-3.6807404 0.06001,-0.794225 0.187651,-1.531855 0.383019,-2.21289 0.18826,-0.681536 0.434153,-1.262837 0.738675,-1.758604 0.297407,-0.496276 0.629164,-0.864398 0.988165,-1.104883 0.321472,-0.213594 0.550265,-0.322912 0.671168,-0.314259 0.09246,0.0064 0.168242,0.049 0.234951,0.12033 0.06672,0.07131 0.15183,0.188312 0.255831,0.343629 0.763586,1.30419 1.090442,2.835902 0.973935,4.58728 -0.05534,0.8315304 -0.215844,1.6333574 -0.48305,2.4275434 -0.259602,0.787341 -0.616326,1.530764 -1.069192,2.215543 -0.460471,0.691632 -0.985691,1.282511 -1.583264,1.779488 l 0.383193,2.940561 c 0.315369,-0.01442 0.53069,-0.02853 0.651593,-0.01992 0.540501,0.03864 1.016286,0.191029 1.448668,0.458581 0.43239,0.267544 0.795383,0.611451 1.081382,1.038575 0.286489,0.419761 0.497945,0.893313 0.634367,1.420632 0.129306,0.526818 0.18603,1.070622 0.148826,1.629884 -0.05779,0.868327 -0.331102,1.647286 -0.819528,2.329524 -0.488426,0.682237 -1.184592,1.157375 -2.096103,1.432257 0.03289,0.364648 0.09772,0.894238 0.202522,1.574571 0.0972,0.687178 0.168148,1.232003 0.212831,1.634458 0.04467,0.402463 0.04767,0.78715 0.02269,1.162443 -0.03866,0.581341 -0.208064,1.08678 -0.508673,1.52368 -0.307716,0.436391 -0.701028,0.763135 -1.187058,0.979741 -0.478924,0.217115 -0.999305,0.305566 -1.554036,0.265863 -0.782315,-0.05601 -1.449886,-0.332968 -2.003203,-0.823587 -0.552826,-0.497974 -0.825116,-1.131138 -0.801676,-1.913204 0.04435,-0.34433 0.144114,-0.66251 0.30691,-0.961399 0.162803,-0.298889 0.371468,-0.535343 0.633109,-0.70885 0.255024,-0.18138 0.553467,-0.263536 0.889201,-0.261688 0.277358,0.01984 0.535118,0.119629 0.773753,0.291973 0.231038,0.179197 0.415978,0.406854 0.547214,0.689808 0.124128,0.282459 0.182291,0.589763 0.160747,0.913543 -0.02886,0.434168 -0.195596,0.791915 -0.500142,1.073267 -0.304546,0.281345 -0.67754,0.409929 -1.111369,0.378879 l -0.16357,-0.01171 c 0.247996,0.461369 0.687983,0.722061 1.320943,0.767366 0.320041,0.02287 0.652083,-0.02725 0.988046,-0.136314 0.343561,-0.1159 0.633165,-0.280013 0.883517,-0.498698 0.25036,-0.218685 0.423472,-0.457681 0.505099,-0.718013 0.140976,-0.293049 0.225773,-0.708428 0.260527,-1.230895 0.02348,-0.353222 0.01146,-0.708978 -0.02909,-1.066781 -0.04103,-0.350442 -0.109724,-0.821165 -0.206665,-1.404817 -0.09744,-0.576289 -0.167634,-1.024942 -0.204459,-1.330715 -0.434058,0.07984 -0.878915,0.107151 -1.341189,0.0741 -0.7752,-0.05546 -1.496957,-0.26979 -2.164788,-0.650302 -0.667832,-0.380512 -1.241996,-0.880015 -1.72911,-1.506383 -0.480014,-0.625849 -0.841339,-1.317146 -1.082995,-2.0886 -0.23503,-0.763589 -0.332492,-1.554301 -0.285761,-2.364271 0.07842,-0.748553 0.261483,-1.460033 0.56255,-2.11871 0.301558,-0.666039 0.671785,-1.290191 1.117306,-1.864592 0.445522,-0.574401 0.901834,-1.096278 1.368464,-1.558261 0.473247,-0.454119 1.090925,-1.038384 1.866765,-1.744414 z"
+       style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#333333;stroke-width:0.75;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path9" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;opacity:0.4;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
+       x="23.899687"
+       y="40.916"
+       id="text4464"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan4466"
+         x="23.899687"
+         y="40.916"
+         style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:10px;font-family:'URW Gothic L';-inkscape-font-specification:'URW Gothic L Semi-Bold';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;">mxl</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="-13.375105"
+       y="51.164005"
+       id="text4193"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="51.164005"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4201">When exporting:</tspan><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="54.289005"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4205">- change "mxl" text object to a path (makes image font-independent)</tspan><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="57.414005"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4213">- delete this message</tspan><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="60.539005"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4211">- save as an "optimized SVG" (don't overwrite master image)</tspan><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="63.664005"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4215">- export as a 48x48 PNG for systems that do not support SVG</tspan><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="66.789001"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4197" /><tspan
+         sodipodi:role="line"
+         x="-13.375105"
+         y="69.914001"
+         style="font-size:2.5px;fill:#ff0000;fill-opacity:1"
+         id="tspan4199">Retain this message when editing master image.</tspan></text>
+  </g>
+</svg>
diff --git a/assets/mxl-icon-48.png b/assets/mxl-icon-48.png
new file mode 100644
index 0000000..931b426
Binary files /dev/null and b/assets/mxl-icon-48.png differ
diff --git a/assets/mxl-icon.svg b/assets/mxl-icon.svg
new file mode 100644
index 0000000..44ec607
--- /dev/null
+++ b/assets/mxl-icon.svg
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <defs>
+  <linearGradient id="e" x1="302.86" gradientUnits="userSpaceOnUse" y1="366.65" gradientTransform="matrix(.067325 0 0 .0147 -.34114 37.04)" x2="302.86" y2="609.51">
+   <stop stop-opacity="0" offset="0"/>
+   <stop offset=".5"/>
+   <stop stop-opacity="0" offset="1"/>
+  </linearGradient>
+  <radialGradient id="b" xlink:href="#a" gradientUnits="userSpaceOnUse" cy="486.65" cx="605.71" gradientTransform="matrix(-.023040 0 0 .0147 21.623 37.04)" r="117.14"/>
+  <linearGradient id="a">
+   <stop offset="0"/>
+   <stop stop-opacity="0" offset="1"/>
+  </linearGradient>
+  <radialGradient id="c" xlink:href="#a" gradientUnits="userSpaceOnUse" cy="486.65" cx="605.71" gradientTransform="matrix(.023040 0 0 .0147 26.361 37.04)" r="117.14"/>
+  <linearGradient id="f" x1="-51.786" gradientUnits="userSpaceOnUse" y1="50.786" gradientTransform="matrix(.80750 0 0 .89483 59.41 -2.9806)" x2="-51.786" y2="2.9062">
+   <stop stop-color="#aaa" offset="0"/>
+   <stop stop-color="#c8c8c8" offset="1"/>
+  </linearGradient>
+  <linearGradient id="g" x1="25.132" gradientUnits="userSpaceOnUse" y1=".98521" gradientTransform="matrix(1 0 0 .95617 -1.0065e-7 -1.9149)" x2="25.132" y2="47.013">
+   <stop stop-color="#f4f4f4" offset="0"/>
+   <stop stop-color="#dbdbdb" offset="1"/>
+  </linearGradient>
+  <radialGradient id="d" gradientUnits="userSpaceOnUse" cy="112.3" cx="102" gradientTransform="matrix(.36170 0 0 -.39078 .85106 47.517)" r="139.56">
+   <stop stop-color="#b7b8b9" offset="0"/>
+   <stop stop-color="#ececec" offset=".18851"/>
+   <stop stop-color="#fafafa" stop-opacity="0" offset=".25718"/>
+   <stop stop-color="#fff" stop-opacity="0" offset=".30111"/>
+   <stop stop-color="#fafafa" stop-opacity="0" offset=".5313"/>
+   <stop stop-color="#ebecec" stop-opacity="0" offset=".8449"/>
+   <stop stop-color="#e1e2e3" stop-opacity="0" offset="1"/>
+  </radialGradient>
+  <linearGradient id="h" x1="24" gradientUnits="userSpaceOnUse" y1="2" gradientTransform="matrix(1 0 0 .97778 0 -.96667)" x2="24" y2="46.017">
+   <stop stop-color="#fff" offset="0"/>
+   <stop stop-color="#fff" stop-opacity="0" offset="1"/>
+  </linearGradient>
+  <filter id="j" width="1.2969" y="-.16434" x="-.14846" height="1.3287" color-interpolation-filters="sRGB">
+   <feGaussianBlur stdDeviation="0.77391625"/>
+  </filter>
+  <linearGradient id="i" x1="32.892" gradientUnits="userSpaceOnUse" y1="8.059" gradientTransform="matrix(.99770 0 0 1.0407 .16380 -1.1058)" x2="36.358" y2="5.4565">
+   <stop stop-color="#fefefe" offset="0"/>
+   <stop stop-color="#cbcbcb" offset="1"/>
+  </linearGradient>
+ </defs>
+ <rect opacity=".3" height="3.5701" width="32.508" y="42.43" x="7.7378" fill="url(#e)"/>
+ <path opacity=".3" fill="url(#b)" d="m7.7378 42.43v3.5699c-1.1865 0.0067-2.8684-0.79982-2.8684-1.7852 0-0.98533 1.324-1.7847 2.8684-1.7847z"/>
+ <path opacity=".3" fill="url(#c)" d="m40.246 42.43v3.5699c1.1865 0.0067 2.8684-0.79982 2.8684-1.7852 0-0.98533-1.324-1.7847-2.8684-1.7847z"/>
+ <path stroke-linejoin="round" d="m6.5 0.4972h24.061c1.4069 0.47465 8.9655 5.8822 10.939 9.6264v34.379h-35v-44.006z" stroke="url(#f)" stroke-width=".99992" fill="url(#g)"/>
+ <path fill="url(#d)" d="m7.3617 44c-0.1993 0-0.3617-0.17546-0.3617-0.39078v-42.204c0-0.21571 0.1624-0.39078 0.3617-0.39078 7.4833 0.1082 15.775-0.16138 23.249 0.0271l10.283 8.866 0.106 33.702c0 0.216-0.162 0.391-0.362 0.391h-33.276z"/>
+ <path opacity=".6" stroke-linejoin="round" d="m40.5 10.259v33.263h-33v-42.045h22.866" stroke="url(#h)" stroke-width=".99992" fill="none"/>
+ <g fill-rule="evenodd">
+  <path opacity=".4" d="m28.617 0.92126c4.2825 0 2.1532 8.4832 2.1532 8.4832s10.358-1.8023 10.358 2.8187c0-2.6097-11.302-10.729-12.511-11.302z" filter="url(#j)"/>
+  <path fill="url(#i)" d="m28.617 0.92126c3.1865 0 2.3358 7.6619 2.3358 7.6619s10.175-0.98105 10.175 3.64c0-1.1259 0.08591-1.9322-0.13378-2.2836-1.578-2.5243-8.395-8.1885-10.857-8.9309-0.184-0.05556-0.593-0.08754-1.52-0.08754z"/>
+  <path d="m24.686 20.299c-0.44214 0.09405-0.85191 0.34568-1.243 0.74653-0.39159 0.40821-0.60121 0.8738-0.63547 1.3889-0.0215 0.32378 0.06064 0.69935 0.24096 1.1041 0.17982 0.41213 0.47365 0.72151 0.86679 0.93449 0.13317 0.03912 0.19228 0.11727 0.18543 0.2203-0.0024 0.03681-0.05471 0.07004-0.17754 0.09081-0.63592-0.21557-1.1453-0.61432-1.5221-1.181-0.37627-0.57407-0.54851-1.2075-0.51574-1.9149 0.07178-0.75642 0.33923-1.4471 0.8019-2.0646 0.47028-0.62439 1.0487-1.0488 1.7354-1.2732l-0.31694-2.6475c-1.1579 0.86353-2.112 1.7786-2.8704 2.7595-0.7579 0.97349-1.1874 2.0592-1.2957 3.2566-0.0215 0.5382 0.05044 1.0683 0.21626 1.583 0.16536 0.522 0.4337 0.99962 0.80407 1.4476 0.74833 0.88905 1.7649 1.398 3.035 1.5333 0.43579 0.0016 0.90345-0.04621 1.4101-0.14307l-0.71905-5.8408zm0.51696-0.03697 0.73302 5.7382c1.1256-0.37785 1.7393-1.3321 1.8401-2.848-0.0302-0.51233-0.14212-0.97875-0.357-1.4008-0.20728-0.42888-0.49867-0.77506-0.88127-1.039-0.38261-0.26398-0.82282-0.41378-1.3349-0.45043zm-0.94884-7.7574c0.24449-0.13038 0.53187-0.36859 0.84745-0.7083 0.31508-0.33235 0.62746-0.73144 0.92905-1.1831 0.30919-0.45846 0.56196-0.92836 0.75834-1.4097 0.19588-0.47397 0.30496-0.93197 0.33335-1.3588 0.01225-0.18396 0.01028-0.36895-0.01455-0.53339-0.01083-0.26695-0.07534-0.47859-0.20117-0.62807-0.12632-0.14213-0.29211-0.22794-0.50546-0.2432-0.42672-0.03052-0.82888 0.21425-1.2065 0.73436-0.29447 0.45213-0.55215 0.99561-0.75071 1.6173-0.20616 0.6285-0.34072 1.2547-0.39753 1.8939-0.01289 0.73106 0.06119 1.3353 0.2077 1.8189zm-0.47644 0.39474c-0.24074-1.215-0.33776-2.4419-0.29108-3.6807 0.06001-0.79422 0.18765-1.5319 0.38302-2.2129 0.18826-0.68154 0.43415-1.2628 0.73868-1.7586 0.29741-0.49628 0.62916-0.8644 0.98816-1.1049 0.32147-0.21359 0.55026-0.32291 0.67117-0.31426 0.09246 0.0064 0.16824 0.049 0.23495 0.12033 0.06672 0.07131 0.15183 0.18831 0.25583 0.34363 0.76359 1.3042 1.0904 2.8359 0.97394 4.5873-0.05534 0.83153-0.21584 1.6334-0.48305 2.4275-0.2596 0.78734-0.61633 1.5308-1.0692 2.2155-0.46047 0.69163-0.98569 1.2825-1.5833 1.7795l0.38319 2.9406c0.31537-0.01442 0.53069-0.02853 0.65159-0.01992 0.5405 0.03864 1.0163 0.19103 1.4487 0.45858 0.43239 0.26754 0.79538 0.61145 1.0814 1.0386 0.28649 0.41976 0.49794 0.89331 0.63437 1.4206 0.12931 0.52682 0.18603 1.0706 0.14883 1.6299-0.05779 0.86833-0.3311 1.6473-0.81953 2.3295-0.48843 0.68224-1.1846 1.1574-2.0961 1.4323 0.03289 0.36465 0.09772 0.89424 0.20252 1.5746 0.0972 0.68718 0.16815 1.232 0.21283 1.6345 0.04467 0.40246 0.04767 0.78715 0.02269 1.1624-0.03866 0.58134-0.20806 1.0868-0.50867 1.5237-0.30772 0.43639-0.70103 0.76314-1.1871 0.97974-0.47892 0.21712-0.9993 0.30557-1.554 0.26586-0.78232-0.05601-1.4499-0.33297-2.0032-0.82359-0.55283-0.49797-0.82512-1.1311-0.80168-1.9132 0.04435-0.34433 0.14411-0.66251 0.30691-0.9614s0.37147-0.53534 0.63311-0.70885c0.25502-0.18138 0.55347-0.26354 0.8892-0.26169 0.27736 0.01984 0.53512 0.11963 0.77375 0.29197 0.23104 0.1792 0.41598 0.40685 0.54721 0.68981 0.12413 0.28246 0.18229 0.58976 0.16075 0.91354-0.02886 0.43417-0.1956 0.79192-0.50014 1.0733-0.30455 0.28134-0.67754 0.40993-1.1114 0.37888l-0.16357-0.01171c0.248 0.46137 0.68798 0.72206 1.3209 0.76737 0.32004 0.02287 0.65208-0.02725 0.98805-0.13631 0.34356-0.1159 0.63316-0.28001 0.88352-0.4987 0.25036-0.21868 0.42347-0.45768 0.5051-0.71801 0.14098-0.29305 0.22577-0.70843 0.26053-1.2309 0.02348-0.35322 0.01146-0.70898-0.02909-1.0668-0.04103-0.35044-0.10972-0.82116-0.20666-1.4048-0.09744-0.57629-0.16763-1.0249-0.20446-1.3307-0.43406 0.07984-0.87892 0.10715-1.3412 0.0741-0.7752-0.05546-1.497-0.26979-2.1648-0.6503-0.66783-0.38051-1.242-0.88002-1.7291-1.5064-0.48001-0.62585-0.84134-1.3171-1.083-2.0886-0.23503-0.76359-0.33249-1.5543-0.28576-2.3643 0.07842-0.74855 0.26148-1.46 0.56255-2.1187 0.30156-0.66604 0.67178-1.2902 1.1173-1.8646s0.90183-1.0963 1.3685-1.5583c0.47325-0.45412 1.0909-1.0384 1.8668-1.7444z" stroke="#333" stroke-width=".75" fill="#4d4d4d"/>
+ </g>
+ <g opacity=".4">
+  <path d="m15.739 40.916h1.33v-2.73c0-0.55 0.05-0.92 0.14-1.15 0.16-0.36 0.5-0.57 0.94-0.57 0.36 0 0.67 0.13 0.85 0.35 0.16 0.21 0.23 0.54 0.23 1.06v3.04h1.33v-2.73c0-0.62 0.05-0.93 0.19-1.19 0.17-0.34 0.51-0.53 0.93-0.53 0.33 0 0.61 0.12 0.79 0.34 0.18 0.21 0.25 0.52 0.25 1.07v3.04h1.33v-3.2c0-0.67-0.12-1.21-0.36-1.59-0.35-0.56-1.05-0.88-1.88-0.88-0.78 0-1.33 0.26-1.78 0.86-0.38-0.6-0.87-0.86-1.63-0.86-0.65 0-1.05 0.18-1.44 0.65v-0.52h-1.22v5.54z"/>
+  <path d="m24.603 40.916h1.6l1.16-1.9 1.16 1.9h1.6l-1.97-2.86 1.69-2.68h-1.5l-0.98 1.67-1-1.67h-1.5l1.7 2.68-1.96 2.86z"/>
+  <path d="m30.739 40.916h1.33v-7.39h-1.33v7.39z"/>
+ </g>
+</svg>
diff --git a/assets/xml-icon-48.png b/assets/xml-icon-48.png
new file mode 100644
index 0000000..35f6d52
Binary files /dev/null and b/assets/xml-icon-48.png differ
diff --git a/assets/xml-icon.svg b/assets/xml-icon.svg
new file mode 100644
index 0000000..37906e6
--- /dev/null
+++ b/assets/xml-icon.svg
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <defs>
+  <linearGradient id="e" x1="302.86" gradientUnits="userSpaceOnUse" y1="366.65" gradientTransform="matrix(.067325 0 0 .0147 -.34114 37.04)" x2="302.86" y2="609.51">
+   <stop stop-opacity="0" offset="0"/>
+   <stop offset=".5"/>
+   <stop stop-opacity="0" offset="1"/>
+  </linearGradient>
+  <radialGradient id="b" xlink:href="#a" gradientUnits="userSpaceOnUse" cy="486.65" cx="605.71" gradientTransform="matrix(-.023040 0 0 .0147 21.623 37.04)" r="117.14"/>
+  <linearGradient id="a">
+   <stop offset="0"/>
+   <stop stop-opacity="0" offset="1"/>
+  </linearGradient>
+  <radialGradient id="c" xlink:href="#a" gradientUnits="userSpaceOnUse" cy="486.65" cx="605.71" gradientTransform="matrix(.023040 0 0 .0147 26.361 37.04)" r="117.14"/>
+  <linearGradient id="f" x1="-51.786" gradientUnits="userSpaceOnUse" y1="50.786" gradientTransform="matrix(.80750 0 0 .89483 59.41 -2.9806)" x2="-51.786" y2="2.9062">
+   <stop stop-color="#aaa" offset="0"/>
+   <stop stop-color="#c8c8c8" offset="1"/>
+  </linearGradient>
+  <linearGradient id="g" x1="25.132" gradientUnits="userSpaceOnUse" y1=".98521" gradientTransform="matrix(1 0 0 .95617 -1.0065e-7 -1.9149)" x2="25.132" y2="47.013">
+   <stop stop-color="#f4f4f4" offset="0"/>
+   <stop stop-color="#dbdbdb" offset="1"/>
+  </linearGradient>
+  <radialGradient id="d" gradientUnits="userSpaceOnUse" cy="112.3" cx="102" gradientTransform="matrix(.36170 0 0 -.39078 .85106 47.517)" r="139.56">
+   <stop stop-color="#b7b8b9" offset="0"/>
+   <stop stop-color="#ececec" offset=".18851"/>
+   <stop stop-color="#fafafa" stop-opacity="0" offset=".25718"/>
+   <stop stop-color="#fff" stop-opacity="0" offset=".30111"/>
+   <stop stop-color="#fafafa" stop-opacity="0" offset=".5313"/>
+   <stop stop-color="#ebecec" stop-opacity="0" offset=".8449"/>
+   <stop stop-color="#e1e2e3" stop-opacity="0" offset="1"/>
+  </radialGradient>
+  <linearGradient id="h" x1="24" gradientUnits="userSpaceOnUse" y1="2" gradientTransform="matrix(1 0 0 .97778 0 -.96667)" x2="24" y2="46.017">
+   <stop stop-color="#fff" offset="0"/>
+   <stop stop-color="#fff" stop-opacity="0" offset="1"/>
+  </linearGradient>
+  <filter id="j" width="1.2969" y="-.16434" x="-.14846" height="1.3287" color-interpolation-filters="sRGB">
+   <feGaussianBlur stdDeviation="0.77391625"/>
+  </filter>
+  <linearGradient id="i" x1="32.892" gradientUnits="userSpaceOnUse" y1="8.059" gradientTransform="matrix(.99770 0 0 1.0407 .16380 -1.1058)" x2="36.358" y2="5.4565">
+   <stop stop-color="#fefefe" offset="0"/>
+   <stop stop-color="#cbcbcb" offset="1"/>
+  </linearGradient>
+ </defs>
+ <rect opacity=".3" height="3.5701" width="32.508" y="42.43" x="7.7378" fill="url(#e)"/>
+ <path opacity=".3" fill="url(#b)" d="m7.7378 42.43v3.5699c-1.1865 0.0067-2.8684-0.79982-2.8684-1.7852 0-0.98533 1.324-1.7847 2.8684-1.7847z"/>
+ <path opacity=".3" fill="url(#c)" d="m40.246 42.43v3.5699c1.1865 0.0067 2.8684-0.79982 2.8684-1.7852 0-0.98533-1.324-1.7847-2.8684-1.7847z"/>
+ <path stroke-linejoin="round" d="m6.5 0.4972h24.061c1.4069 0.47465 8.9655 5.8822 10.939 9.6264v34.379h-35v-44.006z" stroke="url(#f)" stroke-width=".99992" fill="url(#g)"/>
+ <path fill="url(#d)" d="m7.3617 44c-0.1993 0-0.3617-0.17546-0.3617-0.39078v-42.204c0-0.21571 0.1624-0.39078 0.3617-0.39078 7.4833 0.1082 15.775-0.16138 23.249 0.0271l10.283 8.866 0.106 33.702c0 0.216-0.162 0.391-0.362 0.391h-33.276z"/>
+ <path opacity=".6" stroke-linejoin="round" d="m40.5 10.259v33.263h-33v-42.045h22.866" stroke="url(#h)" stroke-width=".99992" fill="none"/>
+ <g fill-rule="evenodd">
+  <path opacity=".4" d="m28.617 0.92126c4.2825 0 2.1532 8.4832 2.1532 8.4832s10.358-1.8023 10.358 2.8187c0-2.6097-11.302-10.729-12.511-11.302z" filter="url(#j)"/>
+  <path fill="url(#i)" d="m28.617 0.92126c3.1865 0 2.3358 7.6619 2.3358 7.6619s10.175-0.98105 10.175 3.64c0-1.1259 0.08591-1.9322-0.13378-2.2836-1.578-2.5243-8.395-8.1885-10.857-8.9309-0.184-0.05556-0.593-0.08754-1.52-0.08754z"/>
+  <path d="m24.686 20.299c-0.44214 0.09405-0.85191 0.34568-1.243 0.74653-0.39159 0.40821-0.60121 0.8738-0.63547 1.3889-0.0215 0.32378 0.06064 0.69935 0.24096 1.1041 0.17982 0.41213 0.47365 0.72151 0.86679 0.93449 0.13317 0.03912 0.19228 0.11727 0.18543 0.2203-0.0024 0.03681-0.05471 0.07004-0.17754 0.09081-0.63592-0.21557-1.1453-0.61432-1.5221-1.181-0.37627-0.57407-0.54851-1.2075-0.51574-1.9149 0.07178-0.75642 0.33923-1.4471 0.8019-2.0646 0.47028-0.62439 1.0487-1.0488 1.7354-1.2732l-0.31694-2.6475c-1.1579 0.86353-2.112 1.7786-2.8704 2.7595-0.7579 0.97349-1.1874 2.0592-1.2957 3.2566-0.0215 0.5382 0.05044 1.0683 0.21626 1.583 0.16536 0.522 0.4337 0.99962 0.80407 1.4476 0.74833 0.88905 1.7649 1.398 3.035 1.5333 0.43579 0.0016 0.90345-0.04621 1.4101-0.14307l-0.71905-5.8408zm0.51696-0.03697 0.73302 5.7382c1.1256-0.37785 1.7393-1.3321 1.8401-2.848-0.0302-0.51233-0.14212-0.97875-0.357-1.4008-0.20728-0.42888-0.49867-0.77506-0.88127-1.039-0.38261-0.26398-0.82282-0.41378-1.3349-0.45043zm-0.94884-7.7574c0.24449-0.13038 0.53187-0.36859 0.84745-0.7083 0.31508-0.33235 0.62746-0.73144 0.92905-1.1831 0.30919-0.45846 0.56196-0.92836 0.75834-1.4097 0.19588-0.47397 0.30496-0.93197 0.33335-1.3588 0.01225-0.18396 0.01028-0.36895-0.01455-0.53339-0.01083-0.26695-0.07534-0.47859-0.20117-0.62807-0.12632-0.14213-0.29211-0.22794-0.50546-0.2432-0.42672-0.03052-0.82888 0.21425-1.2065 0.73436-0.29447 0.45213-0.55215 0.99561-0.75071 1.6173-0.20616 0.6285-0.34072 1.2547-0.39753 1.8939-0.01289 0.73106 0.06119 1.3353 0.2077 1.8189zm-0.47644 0.39474c-0.24074-1.215-0.33776-2.4419-0.29108-3.6807 0.06001-0.79422 0.18765-1.5319 0.38302-2.2129 0.18826-0.68154 0.43415-1.2628 0.73868-1.7586 0.29741-0.49628 0.62916-0.8644 0.98816-1.1049 0.32147-0.21359 0.55026-0.32291 0.67117-0.31426 0.09246 0.0064 0.16824 0.049 0.23495 0.12033 0.06672 0.07131 0.15183 0.18831 0.25583 0.34363 0.76359 1.3042 1.0904 2.8359 0.97394 4.5873-0.05534 0.83153-0.21584 1.6334-0.48305 2.4275-0.2596 0.78734-0.61633 1.5308-1.0692 2.2155-0.46047 0.69163-0.98569 1.2825-1.5833 1.7795l0.38319 2.9406c0.31537-0.01442 0.53069-0.02853 0.65159-0.01992 0.5405 0.03864 1.0163 0.19103 1.4487 0.45858 0.43239 0.26754 0.79538 0.61145 1.0814 1.0386 0.28649 0.41976 0.49794 0.89331 0.63437 1.4206 0.12931 0.52682 0.18603 1.0706 0.14883 1.6299-0.05779 0.86833-0.3311 1.6473-0.81953 2.3295-0.48843 0.68224-1.1846 1.1574-2.0961 1.4323 0.03289 0.36465 0.09772 0.89424 0.20252 1.5746 0.0972 0.68718 0.16815 1.232 0.21283 1.6345 0.04467 0.40246 0.04767 0.78715 0.02269 1.1624-0.03866 0.58134-0.20806 1.0868-0.50867 1.5237-0.30772 0.43639-0.70103 0.76314-1.1871 0.97974-0.47892 0.21712-0.9993 0.30557-1.554 0.26586-0.78232-0.05601-1.4499-0.33297-2.0032-0.82359-0.55283-0.49797-0.82512-1.1311-0.80168-1.9132 0.04435-0.34433 0.14411-0.66251 0.30691-0.9614s0.37147-0.53534 0.63311-0.70885c0.25502-0.18138 0.55347-0.26354 0.8892-0.26169 0.27736 0.01984 0.53512 0.11963 0.77375 0.29197 0.23104 0.1792 0.41598 0.40685 0.54721 0.68981 0.12413 0.28246 0.18229 0.58976 0.16075 0.91354-0.02886 0.43417-0.1956 0.79192-0.50014 1.0733-0.30455 0.28134-0.67754 0.40993-1.1114 0.37888l-0.16357-0.01171c0.248 0.46137 0.68798 0.72206 1.3209 0.76737 0.32004 0.02287 0.65208-0.02725 0.98805-0.13631 0.34356-0.1159 0.63316-0.28001 0.88352-0.4987 0.25036-0.21868 0.42347-0.45768 0.5051-0.71801 0.14098-0.29305 0.22577-0.70843 0.26053-1.2309 0.02348-0.35322 0.01146-0.70898-0.02909-1.0668-0.04103-0.35044-0.10972-0.82116-0.20666-1.4048-0.09744-0.57629-0.16763-1.0249-0.20446-1.3307-0.43406 0.07984-0.87892 0.10715-1.3412 0.0741-0.7752-0.05546-1.497-0.26979-2.1648-0.6503-0.66783-0.38051-1.242-0.88002-1.7291-1.5064-0.48001-0.62585-0.84134-1.3171-1.083-2.0886-0.23503-0.76359-0.33249-1.5543-0.28576-2.3643 0.07842-0.74855 0.26148-1.46 0.56255-2.1187 0.30156-0.66604 0.67178-1.2902 1.1173-1.8646s0.90183-1.0963 1.3685-1.5583c0.47325-0.45412 1.0909-1.0384 1.8668-1.7444z" stroke="#333" stroke-width=".75" fill="#4d4d4d"/>
+ </g>
+ <g opacity=".4">
+  <path d="m15.209 40.916h1.6l1.16-1.9 1.16 1.9h1.6l-1.97-2.86 1.69-2.68h-1.5l-0.98 1.67-1-1.67h-1.5l1.7 2.68-1.96 2.86z"/>
+  <path d="m21.344 40.916h1.33v-2.73c0-0.55 0.05-0.92 0.14-1.15 0.16-0.36 0.5-0.57 0.94-0.57 0.36 0 0.67 0.13 0.85 0.35 0.16 0.21 0.23 0.54 0.23 1.06v3.04h1.33v-2.73c0-0.62 0.05-0.93 0.19-1.19 0.17-0.34 0.51-0.53 0.93-0.53 0.33 0 0.61 0.12 0.79 0.34 0.18 0.21 0.25 0.52 0.25 1.07v3.04h1.33v-3.2c0-0.67-0.12-1.21-0.36-1.59-0.35-0.56-1.05-0.88-1.88-0.88-0.78 0-1.33 0.26-1.78 0.86-0.38-0.6-0.87-0.86-1.63-0.86-0.65 0-1.05 0.18-1.44 0.65v-0.52h-1.22v5.54z"/>
+  <path d="m30.739 40.916h1.33v-7.39h-1.33v7.39z"/>
+ </g>
+</svg>
diff --git a/build/ECMQt4To5Porting.cmake b/build/ECMQt4To5Porting.cmake
index a6318fc..5f4996a 100644
--- a/build/ECMQt4To5Porting.cmake
+++ b/build/ECMQt4To5Porting.cmake
@@ -153,10 +153,7 @@ set(QT_QTGUI_LIBRARY ${QT_QTGUI_LIBRARIES})
 
 set(_qt_modules
   Core
-  Declarative
   Widgets
-  Script
-  ScriptTools
   Network
   Test
   Designer
diff --git a/build/FindQt5Transitional.cmake b/build/FindQt5Transitional.cmake
index 791eb4a..7f7147e 100644
--- a/build/FindQt5Transitional.cmake
+++ b/build/FindQt5Transitional.cmake
@@ -7,9 +7,6 @@ if (Qt5Core_FOUND)
         Core
         Gui
         Designer
-        Declarative
-        Script
-        ScriptTools
         Network
         Test
         Qml
diff --git a/build/Packaging.cmake b/build/Packaging.cmake
index aaf30f7..b2ece1b 100644
--- a/build/Packaging.cmake
+++ b/build/Packaging.cmake
@@ -61,7 +61,7 @@ IF(MINGW)
 
   file(TO_CMAKE_PATH $ENV{PROGRAMFILES} PROGRAMFILES)
   SET(CPACK_WIX_ROOT "${PROGRAMFILES}/WiX Toolset v3.8")
-  SET(CPACK_WIX_PRODUCT_GUID "703926DE-F24B-11E4-AA68-472FB664A5DC")
+  SET(CPACK_WIX_PRODUCT_GUID "D0969A82-E79E-45D9-95D2-B2824880F780")
   SET(CPACK_WIX_UPGRADE_GUID "6CF17D7E-4CF1-42CF-A23A-B52F7E883D51")
   SET(CPACK_WIX_LICENSE_RTF   "${PROJECT_SOURCE_DIR}/LICENSE.rtf")
   SET(CPACK_WIX_PRODUCT_ICON "${PROJECT_SOURCE_DIR}/mscore/data/mscore.ico")
diff --git a/build/config.h.in b/build/config.h.in
index 8068681..93e79f2 100644
--- a/build/config.h.in
+++ b/build/config.h.in
@@ -23,6 +23,7 @@
 #cmakedefine USE_PORTAUDIO
 #cmakedefine USE_PORTMIDI
 #cmakedefine USE_PULSEAUDIO
+#cmakedefine USE_LAME
 
 #cmakedefine MSCORE_UNSTABLE
 
diff --git a/build/gen-qt-projectfile b/build/gen-qt-projectfile
index 484415c..41faacb 100755
--- a/build/gen-qt-projectfile
+++ b/build/gen-qt-projectfile
@@ -10,6 +10,7 @@ echo "      $1/share/locale/mscore_bg.ts \\"
 echo "      $1/share/locale/mscore_ca.ts \\"
 echo "      $1/share/locale/mscore_ca at valencia.ts \\"
 echo "      $1/share/locale/mscore_cs.ts \\"
+echo "      $1/share/locale/mscore_cy.ts \\"
 echo "      $1/share/locale/mscore_da.ts \\"
 echo "      $1/share/locale/mscore_de.ts \\"
 echo "      $1/share/locale/mscore_el.ts \\"
diff --git a/build/gen-qt-projectfile.bat b/build/gen-qt-projectfile.bat
index 75eb718..43f279e 100644
--- a/build/gen-qt-projectfile.bat
+++ b/build/gen-qt-projectfile.bat
@@ -12,6 +12,7 @@ echo       %1/share/locale/mscore_bg.ts \
 echo       %1/share/locale/mscore_ca.ts \
 echo       %1/share/locale/mscore_ca at valencia.ts \
 echo       %1/share/locale/mscore_cs.ts \
+echo       %1/share/locale/mscore_cy.ts \
 echo       %1/share/locale/mscore_da.ts \
 echo       %1/share/locale/mscore_de.ts \
 echo       %1/share/locale/mscore_el.ts \
diff --git a/build/mingw32.mingw.cmake b/build/mingw32.mingw.cmake
index 5959226..8f0d111 100644
--- a/build/mingw32.mingw.cmake
+++ b/build/mingw32.mingw.cmake
@@ -7,6 +7,14 @@ set (CMAKE_SYSTEM_NAME "Windows")
 set (CROSS C:/Qt/Tools/mingw491_32)
 set (CROSSQT C:/Qt/5.4/mingw491_32)
 
+set (ProgramW6432 $ENV(ProgramW6432))
+if ($ProgramW6432)
+    set (ENV{FREETYPE_DIR} "$ENV{PROGRAMFILES(x86)}/GnuWin32")
+else ($ProgramW6432)
+    set (ENV{FREETYPE_DIR} "$ENV{PROGRAMFILES}/GnuWin32")
+endif ($ProgramW6432)
+
+
 set (CMAKE_C_COMPILER     ${CROSS}/bin/gcc.exe)
 set (CMAKE_CXX_COMPILER   ${CROSS}/bin/g++.exe)
 set (CMAKE_STRIP          ${CROSS}/bin/strip.exe)
diff --git a/build/mscore.1 b/build/mscore.1
index cd1dded..e126c60 100644
--- a/build/mscore.1
+++ b/build/mscore.1
@@ -1,8 +1,9 @@
 .\"                                      Hey, EMACS: -*- nroff -*-
+.\" To preview the page formatting without installing use "man -l mscore.1"
 .\" First parameter, NAME, should be all caps
 .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
 .\" other parameters are allowed: see man(7), man(1)
-.TH MSCORE 1 "December 2, 2007"
+.TH MSCORE 1 "4th June 2015" https://musescore.org/ "MuseScore \- Create, play and share sheet music!"
 .\" Please adjust this date whenever revising the manpage.
 .\"
 .\" Some roff macros, for reference:
@@ -15,54 +16,108 @@
 .\" .br        insert line break
 .\" .sp <n>    insert n+1 empty lines
 .\" for manpage-specific macros, see man(7)
+.\" TeX users may be more comfortable with the \fB<whatever>\fP and
+.\" \fI<whatever>\fP escape sequences to invode bold face and italics, 
+.\" respectively.
 .SH NAME
-mscore \- Full featured WYSIWYG score editor
+\fBmscore\fP \- MuseScore sheet music editor.
+
+MuseScore is a free and open source WYSIWYG typesetting program for musical scores, released under the GNU General Public Licence.
+
 .SH SYNOPSIS
 .B mscore
-.RI [ options ]  scorefile
+.RI [ options ]
+.RI [ filename(s) ]
+
+\fBMuseScore\fP or \fBmusescore\fP is set as an alias for \fBmscore\fP on some systems.
+
 .SH DESCRIPTION
-This manual page documents briefly the
-.B mscore
-command.
-.PP
-.\" TeX users may be more comfortable with the \fB<whatever>\fP and
-.\" \fI<whatever>\fP escape sequences to invode bold face and italics, 
-.\" respectively.
-\fBMuseScore\fP is a free WYSIWYG music score typesetter for Linux,
-licenced under GNU GPL. Features:
-  * WYSIWYG, notes are entered on a "virtual note sheet"
-  * unlimited number of staves
-  * up to four voices/staff
-  * easy and fast note entry with mouse, keyboard or midi
-  * integrated sequencer and FluidSynth software synthesizer
-  * import and export of MusicXml and standard midifiles (SMF)
-  * platform independent code for Linux, Windows and Mac
+This manual page documents command line useage of \fBmscore\fP. See also:
+
+    <https://musescore.org/handbook/command-line-options-0>
+
+For help with the full MuseScore program see the Online Handbook:
+
+    <https://musescore.org/handbook>
+
 .SH OPTIONS
-A summary of options is included below.
+A summary of options is included below. Running \fBmscore\fP without options
+launches the full MuseScore program and opens any specified file(s).
+
 .TP
 .B \-v
-Show version of program.
+Displays MuseScore's current version and revision number in the command line without starting the graphical interface.
 .TP
 .B \-d
-Debug mode.
+Starts MuseScore in debug mode.
+.TP
+.B \-L
+Starts MuseScore in layout debug mode.
 .TP
 .B \-s
-Disable the synthesizer.
+Disables the integrated software synthesizer.
 .TP
 .B \-m
-Disable MIDI I/O support.
+Disables MIDI input.
+.TP
+.B \-a <driver>
+Use audio driver: jack, alsa, pulse, portaudio.
+.TP
+.B \-n
+Starts with the new score wizard regardless of preference setting for start mode.
+.TP
+.B \-I
+Displays all MIDI input on the console.
+.TP
+.B \-O
+Displays all MIDI output on the console.
+.TP
+.B \-o <filename>
+Exports the currently opened file to the specified <filename>. The file type depends on the filename extension. This option switches to the "converter" mode and avoids any graphical interface. You can also add a filename before the \-o if you want to import and export files from the command line. For example mscore "My Score.mscz" \-o "My Score.pdf".
+.TP
+.B \-r <dpi>
+Determines the output resolution for the output to "*.png" files in the converter mode. The default resolution is 300 dpi.
+.TP
+.B \-T <margin>
+Trims exported PNG and SVG images to remove surrounding whitespace around the score. The specified number of pixels of whitespace will be added as a margin; use 0 for a tightly cropped image. For SVG, this option works only with single\-page scores.
+.TP
+.B \-x <factor>
+Scales the score display and other GUI elements by the specified factor, for use with high resolution displays.
+.TP
+.B \-S <style>
+Loads a style file; useful when you convert with the \-o option.
+.TP
+.B \-p <name>
+Execute the named plugin.
+.TP
+.B \-F
+Use only the standard built\-in presets or "factory\-settings" and delete preferences.
+.TP
+.B \-R
+Use only the standard built\-in presets or "factory\-settings", but do not delete preferences.
 .TP
 .B \-i
-Dump MIDI input.
+Load icons from the file system. Useful if you want to edit the MuseScore icons and preview the changes.
 .TP
-.B \-L
-Layout debug mode.
+.B \-e
+Enable experimental features.
+.TP
+.B \-c <pathname>
+Set config path.
+.TP
+.B \-t
+Enable Test Mode.
+.TP
+.B \-M <file>
+Specify MIDI import operations file.
 .TP
-.B \-o file
-Export to file, format dependent on extension.
+.B \-w
+No web view in Start Center.
+
 .br
 .SH AUTHOR
-mscore was written by Werner Schweer <ws at seh.de>.
-.PP
-This manual page was written by Toby Smithe <tsmithe at ubuntu.com>,
-for the Ubuntu project (but may be used by others).
+MuseScore was written by Werner Schweer and others. If you find any bugs in the latest version please report them via the Issue Tracker:
+
+    <https://musescore.org/project/issues>
+
+This manual page is maintained by the MuseScore development team. Please report mistakes via the Issue Tracker.
diff --git a/build/musescore.xml b/build/musescore.xml
new file mode 100644
index 0000000..4591165
--- /dev/null
+++ b/build/musescore.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
+  <mime-type type="application/x-musescore">
+    <comment>MuseScore file</comment>
+    <sub-class-of type="application/zip"/>
+    <glob pattern="*.mscz"/>
+  </mime-type>
+  <mime-type type="application/x-musescore+xml">
+    <comment>uncompressed MuseScore file</comment>
+    <sub-class-of type="application/xml"/>
+    <glob pattern="*.mscx" />
+  </mime-type>
+  <mime-type type="application/vnd.recordare.musicxml">
+    <!-- http://www.musicxml.com/for-developers/musicxml-dtd/ -->
+    <_comment>MusicXML file</_comment>
+    <sub-class-of type="application/zip"/>
+<!-- Note: a custom icon is used for MusicXML files. You can change this below -->
+<!--  <icon name="application-x-musescore"/> Uncomment to use MuseScore file icon -->
+<!--  <generic-icon name="audio-x-generic"/> Uncomment to use generic audio file icon -->
+    <glob pattern="*.mxl"/>
+  </mime-type>
+  <mime-type type="application/vnd.recordare.musicxml+xml">
+    <!-- http://www.musicxml.com/for-developers/musicxml-dtd/ -->
+    <_comment>uncompressed MusicXML file</_comment>
+    <sub-class-of type="application/xml"/>
+<!--  <icon name="application-x-musescore"/> Uncomment to use MuseScore file icon -->
+<!--  <generic-icon name="audio-x-generic"/> Uncomment to use generic audio file icon -->
+    <magic>
+      <match type="string" value="<?xml" offset="0">
+        <match type="string" value="score-partwise" offset="0:128"/>
+        <match type="string" value="score-timewise" offset="0:128"/>
+      </match>
+      <match type="string" value="<!--" offset="0">
+        <match type="string" value="score-partwise" offset="0:128"/>
+        <match type="string" value="score-timewise" offset="0:128"/>
+      </match>
+    </magic>
+    <glob pattern="*.xml" weight="40"/>
+  </mime-type>
+</mime-info>
diff --git a/build/package_mac b/build/package_mac
index 43aaca4..c454f57 100755
--- a/build/package_mac
+++ b/build/package_mac
@@ -1,4 +1,4 @@
-VERSION=2.0.1
+VERSION=2.0.2
 APPNAME=mscore
 LONG_NAME=MuseScore
 LONGER_NAME="MuseScore 2"
@@ -104,6 +104,9 @@ rm -rf ${VOLUME}/${APPNAME}.app/Contents/Frameworks/QtPurchasing.*
 rm -rf ${VOLUME}/${APPNAME}.app/Contents/Frameworks/QtQuickParticles.*
 rm -rf ${VOLUME}/${APPNAME}.app/Contents/Frameworks/QtWebEngine.*
 rm -rf ${VOLUME}/${APPNAME}.app/Contents/Frameworks/QtWebEngineCore.*
+rm -rf ${VOLUME}/${APPNAME}.app/Contents/Frameworks/QtScript.*
+rm -rf ${VOLUME}/${APPNAME}.app/Contents/Frameworks/QtScriptTools.*
+rm -rf ${VOLUME}/${APPNAME}.app/Contents/Frameworks/QtDeclarative.*
 
 rm -rf ${VOLUME}/${APPNAME}.app/Contents/Resources/qml/Enginio
 rm -rf ${VOLUME}/${APPNAME}.app/Contents/Resources/qml/QtBluetooth
@@ -129,6 +132,7 @@ mv ${VOLUME}/Pictures ${VOLUME}/.Pictures
 
 #codesign
 codesign --deep -s "Developer ID Application: MuseScore" "${VOLUME}/${LONGER_NAME}.app"
+#codesign --deep -s "3rd Party Mac Developer Application: MuseScore (6EPAF2X3PR)" --entitlements build/mscore.entitlements "${VOLUME}/${LONGER_NAME}.app"
 codesign -v "${VOLUME}/${LONGER_NAME}.app"
 spctl --assess --type execute "${VOLUME}/${LONGER_NAME}.app"
  
diff --git a/demos/Amazing_grace.mscz b/demos/Amazing_grace.mscz
new file mode 100644
index 0000000..83f978d
Binary files /dev/null and b/demos/Amazing_grace.mscz differ
diff --git a/demos/goldberg.mscz b/demos/goldberg.mscz
new file mode 100644
index 0000000..e5e5c0a
Binary files /dev/null and b/demos/goldberg.mscz differ
diff --git a/fluid/chan.cpp b/fluid/chan.cpp
index 9881c75..08b1ce8 100644
--- a/fluid/chan.cpp
+++ b/fluid/chan.cpp
@@ -69,7 +69,7 @@ void Channel::initCtrl()
       key_pressure     = 0;
       channel_pressure = 0;
       pitch_bend       = 0x2000; // Range is 0x4000, pitch bend wheel starts in centered position
-      pitch_wheel_sensitivity = 2; /* two semi-tones */
+      pitch_wheel_sensitivity = 12; /* twelve semi-tones */
       bank_msb         = 0;
 
       for (int i = 0; i < GEN_LAST; i++) {
diff --git a/fluid/fluid.cpp b/fluid/fluid.cpp
index cfd9f4e..9fb5c39 100644
--- a/fluid/fluid.cpp
+++ b/fluid/fluid.cpp
@@ -179,14 +179,11 @@ void Fluid::play(const PlayEvent& event)
                   err = !cp->preset()->noteon(this, noteid++, ch, key, vel, event.tuning());
                   }
             }
-      else if (type == ME_CONTROLLER)  {
+      else if (type == ME_CONTROLLER) {
             switch(event.dataA()) {
                   case CTRL_PROGRAM:
                         program_change(ch, event.dataB());
                         break;
-                  case CTRL_PITCH:
-                        cp->pitchBend(event.dataB());
-                        break;
                   case CTRL_PRESS:
                         break;
                   default:
@@ -194,6 +191,10 @@ void Fluid::play(const PlayEvent& event)
                         break;
                   }
             }
+      else if (type == ME_PITCHBEND){
+            int midiPitch = event.dataB() * 128 + event.dataA();  // msb * 128 + lsb
+            cp->pitchBend(midiPitch);
+            }
       if (err)
             qWarning("FluidSynth error: event 0x%2x channel %d: %s",
                type, ch, qPrintable(error()));
diff --git a/fonts/MuseJazz.sfd b/fonts/MuseJazz.sfd
index d532708..8cdebd3 100644
--- a/fonts/MuseJazz.sfd
+++ b/fonts/MuseJazz.sfd
@@ -22,7 +22,7 @@ OS2Version: 3
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1271071127
-ModificationTime: 1428078558
+ModificationTime: 1432999827
 PfmFamily: 65
 TTFWeight: 400
 TTFWidth: 5
@@ -90,7 +90,7 @@ Grid
   Named: "x-height" 
 EndSplineSet
 TeXData: 1 0 0 250880 125440 83626 530944 -1048576 83626 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
-BeginChars: 1114112 302
+BeginChars: 1114112 308
 
 StartChar: parenleft
 Encoding: 40 40 0
@@ -15478,5 +15478,65 @@ SplineSet
  53.8676 1371.16 53.8676 1371.16 110 1388 c 24,0,1
 EndSplineSet
 EndChar
+
+StartChar: uniECA2
+Encoding: 60578 60578 302
+Width: 1228
+VWidth: 0
+Flags: W
+LayerCount: 2
+Fore
+Refer: 287 119133 N 1 0 0 1 0 0 2
+EndChar
+
+StartChar: uniECA3
+Encoding: 60579 60579 303
+Width: 1034
+VWidth: 0
+Flags: W
+LayerCount: 2
+Fore
+Refer: 288 119134 S 1 0 0 1 0 0 2
+EndChar
+
+StartChar: uniECA5
+Encoding: 60581 60581 304
+Width: 1034
+VWidth: 0
+Flags: W
+LayerCount: 2
+Fore
+Refer: 289 119135 N 1 0 0 1 0 0 2
+EndChar
+
+StartChar: uniECA7
+Encoding: 60583 60583 305
+Width: 1464
+VWidth: 0
+Flags: W
+LayerCount: 2
+Fore
+Refer: 290 119136 N 1 0 0 1 0 0 2
+EndChar
+
+StartChar: uniECA9
+Encoding: 60585 60585 306
+Width: 1479
+VWidth: 0
+Flags: W
+LayerCount: 2
+Fore
+Refer: 291 119137 N 1 0 0 1 0 0 2
+EndChar
+
+StartChar: uniECB7
+Encoding: 60599 60599 307
+Width: 379
+VWidth: 0
+Flags: W
+LayerCount: 2
+Fore
+Refer: 292 119149 N 1 0 0 1 0 0 2
+EndChar
 EndChars
 EndSplineFont
diff --git a/fonts/MuseJazz.ttf b/fonts/MuseJazz.ttf
index 6470493..087e2e9 100644
Binary files a/fonts/MuseJazz.ttf and b/fonts/MuseJazz.ttf differ
diff --git a/fonts/bravura/Bravura.otf b/fonts/bravura/Bravura.otf
index 8fdb645..adae4b8 100644
Binary files a/fonts/bravura/Bravura.otf and b/fonts/bravura/Bravura.otf differ
diff --git a/fonts/bravura/BravuraText.otf b/fonts/bravura/BravuraText.otf
index fe2cb89..ea23992 100644
Binary files a/fonts/bravura/BravuraText.otf and b/fonts/bravura/BravuraText.otf differ
diff --git a/fonts/bravura/FONTLOG.txt b/fonts/bravura/FONTLOG.txt
index 7c0eae3..91c3c28 100644
--- a/fonts/bravura/FONTLOG.txt
+++ b/fonts/bravura/FONTLOG.txt
@@ -10,7 +10,7 @@ Basic font information
 ----------------------
 Bravura is a Unicode typeface designed by Steinberg for its in-development music notation and scoring application.
 
-It is compliant with version 1.12 of the Standard Music Font Layout (SMuFL), a community-driven standard for how music symbols should be laid out in the Unicode Private Use Area (PUA) in the Basic Multilingual Plane (BMP) for compatibility between different scoring applications.
+It is compliant with version 1.18 of the Standard Music Font Layout (SMuFL), a community-driven standard for how music symbols should be laid out in the Unicode Private Use Area (PUA) in the Basic Multilingual Plane (BMP) for compatibility between different scoring applications.
 
 More information about Steinberg's scoring application can be found at:
 
@@ -275,4 +275,35 @@ Changelog
 – Added new ligatures for common time signatures (2/4, 2/2, 3/2, 3/4, 3/8, 4/4, 5/4, 5/8, 6/4, 6/8, 7/8, 9/8, 12/8) for Bravura Text. To produce e.g. the 3/4 ligature, the string "timeSigCombNumerator timeSig3 timeSigCombDenominator timeSig4" should be used. These ligatures provide correct alignment of the numerator and denominator digits relative to each other.
 – Improved metadata for flat-like accidentals, adding 'cutOutSE' points for more of them.
 – Added new 'noteheadOrigin' point to metadata to assist in the alignment of noteheads of different rhythmic values, e.g. the double whole note (breve) with two vertical lines to either side of the oval notehead.
-– Added new 'opticalCenter' point to metadata for dynamics glyphs, to assist in their correct alignment with noteheads and stems.
\ No newline at end of file
+– Added new 'opticalCenter' point to metadata for dynamics glyphs, to assist in their correct alignment with noteheads and stems.
+
+26 February 2015 (Daniel Spreadbury) Bravura 1.15
+– Improved U+EB2A (elecPowerOnOff) so that it more closely matches the standard appearance of the IEEE 5009 symbol.
+– Improved consistency of registration of U+EB2E–U+EB33 (elecVolumeLevel...) glyphs.
+– Corrected typo in metadata for dynamicSforzadoFF glyph.
+– Improved U+E26A (accidentalParensLeft) and U+E26B (accidentalParensRight).
+– Fixed contour direction for many glyphs; this may have resulted in incorrect appearance of some glyphs in some display contexts, and when printed on some printers.
+– Resized all notehead glyphs, except for those in the 'Note name noteheads' (U+E150–U+E1AF), 'Individual notes' (U+E1D0–U+E1EF), and 'Beamed groups of notes' (U+E1F0–U+E20F) ranges, such that they are exactly 0.25 em (equivalent to one staff space) in height; previously, many of the notehead glyphs had been optically sized and were taller.
+– Added a new stylistic set (ss05) containing optically-sized versions of the most common noteheads (double whole, square double whole, whole, half, and black). These glyphs are oversized, and are designed to be the largest possible noteheads that will work with staff lines of the thickness recommended in the Bravura font-specific metadata.
+– Many glyphs have small improvements to outline quality (via 'checkOutlines -i -e' from the Adobe FDK).
+
+14 April 2015 (Daniel Spreadbury) Bravura 1.16
+– Improved versions of bold dynamics characters; thanks to Tucker Meyers.
+– Improved versions of keyboard pedalling characters; thanks to Tucker Meyers.
+– Improved versions of trill, turn etc. characters; thanks to Tucker Meyers.
+– Improved symmetry of the whole note name noteheads; removed counters from noteWholeEmpty and noteHalfEmpty, since these are designed to be printed in white underneath note name noteheads, so that stave lines and ledger lines are blanked out, making the note names in the counters of the note name noteheads clearer to read.
+– Corrected side-bearings on Sagittal accidentals.
+– Corrected registration of glyphs designed to be combined with stems (descriptions ending '...for stem'), now consistently visually centered around both x=0 and y=0.
+– Corrected vertical registration of precomposed square (U+E120, U+E121), round (U+E122, U+E123), and diamond (U+E138–U+E13B) cluster noteheads, so they are consistent with the cluster notehead components in the same range.
+
+29 April 2015 (Daniel Spreadbury) Bravura 1.17
+– Added new 'Metronome marks' for notes with 2.75sp stems to balance with text.
+– Reverted notes in 'Individual notes' range to have 3.5sp stems.
+– Added separate glyphs for v, b, a, m, both superscript and on the baseline, to 'Octaves supplement' range.
+– Added marcato-tenuto above and below to 'Articulations' range.
+– Added 6 with slashed stem (figbass6Raised2) to 'Figured bass' range.
+
+18 May 2015 (Daniel Spreadbury) Bravura 1.18
+– Added side-bearings to figured bass digits, function symbols, and tuplet digits.
+– Corrected triangular clefs at U+E06F–U+E072 to match the actual usage by the Polish composer Schäffer.
+– Added z-style quarter (crotchet) rest.
\ No newline at end of file
diff --git a/fonts/bravura/classes.json b/fonts/bravura/classes.json
index c21bbf6..45e74e3 100644
--- a/fonts/bravura/classes.json
+++ b/fonts/bravura/classes.json
@@ -895,10 +895,10 @@
         "semipitchedPercussionClef2", 
         "6stringTabClef", 
         "4stringTabClef", 
-        "cClefTriangular", 
-        "fClefTriangular", 
-        "cClefTriangularToFClef", 
-        "fClefTriangularToCClef", 
+        "schaefferClef", 
+        "schaefferPreviousClef", 
+        "schaefferGClefToFClef", 
+        "schaefferFClefToGClef", 
         "gClefReversed", 
         "gClefTurned", 
         "cClefReversed", 
@@ -2733,6 +2733,25 @@
         "noteEmptyHalf", 
         "noteEmptyBlack"
     ], 
+    "octaves": [
+        "ottava", 
+        "ottavaAlta", 
+        "ottavaBassa", 
+        "ottavaBassaBa", 
+        "quindicesima", 
+        "quindicesimaAlta", 
+        "quindicesimaBassa", 
+        "ventiduesima", 
+        "ventiduesimaAlta", 
+        "ventiduesimaBassa", 
+        "octaveParensLeft", 
+        "octaveParensRight", 
+        "ottavaBassaVb", 
+        "quindicesimaBassaMb", 
+        "ventiduesimaBassaMb", 
+        "octaveBassa", 
+        "octaveLoco"
+    ], 
     "ornaments": [
         "graceNoteAcciaccaturaStemUp", 
         "graceNoteAcciaccaturaStemDown", 
@@ -2855,7 +2874,8 @@
         "restQuarterOld", 
         "restDoubleWholeLegerLine", 
         "restWholeLegerLine", 
-        "restHalfLegerLine"
+        "restHalfLegerLine", 
+        "restQuarterZ"
     ], 
     "stemDecorations": [
         "tremolo1", 
@@ -2961,6 +2981,32 @@
         "harpPedalLowered", 
         "harpPedalDivider"
     ], 
+    "tf_metronomeMarks": [
+        "metNoteDoubleWhole", 
+        "metNoteDoubleWholeSquare", 
+        "metNoteWhole", 
+        "metNoteHalfUp", 
+        "metNoteHalfDown", 
+        "metNoteQuarterUp", 
+        "metNoteQuarterDown", 
+        "metNote8thUp", 
+        "metNote8thDown", 
+        "metNote16thUp", 
+        "metNote16thDown", 
+        "metNote32ndUp", 
+        "metNote32ndDown", 
+        "metNote64thUp", 
+        "metNote64thDown", 
+        "metNote128thUp", 
+        "metNote128thDown", 
+        "metNote256thUp", 
+        "metNote256thDown", 
+        "metNote512thUp", 
+        "metNote512thDown", 
+        "metNote1024thUp", 
+        "metNote1024thDown", 
+        "metAugmentationDot"
+    ], 
     "tf_ornaments": [
         "graceNoteAcciaccaturaStemUp", 
         "graceNoteAcciaccaturaStemDown", 
@@ -3042,11 +3088,11 @@
         "ornamentPrecompPortDeVoixMordent", 
         "ornamentPrecompTrillWithMordent", 
         "ornamentPrecompCadence", 
-        "ornamentPrecompCadenceWithTurn ", 
+        "ornamentPrecompCadenceWithTurn", 
         "ornamentPrecompDoubleCadenceLowerPrefix", 
-        "ornamentPrecompCadenceUpperPrefix ", 
+        "ornamentPrecompCadenceUpperPrefix", 
         "ornamentPrecompCadenceUpperPrefixTurn", 
-        "ornamentPrecompDoubleCadenceUpperPrefix ", 
+        "ornamentPrecompDoubleCadenceUpperPrefix", 
         "ornamentPrecompDoubleCadenceUpperPrefixTurn", 
         "ornamentPrecompMordentRelease", 
         "ornamentPrecompMordentUpperPrefix", 
diff --git a/fonts/bravura/glyphnames.json b/fonts/bravura/glyphnames.json
index 19f1b1c..bc4d8da 100644
--- a/fonts/bravura/glyphnames.json
+++ b/fonts/bravura/glyphnames.json
@@ -1538,7 +1538,7 @@
     }, 
     "accidentalQuarterToneSharpBusotti": {
         "codepoint": "U+E472", 
-        "description": "Quarter tone sharp (Busotti)"
+        "description": "Quarter tone sharp (Bussotti)"
     }, 
     "accidentalQuarterToneSharpNaturalArrowUp": {
         "alternateCodepoint": "U+1D12E", 
@@ -1660,11 +1660,11 @@
     }, 
     "accidentalTavenerFlat": {
         "codepoint": "U+E477", 
-        "description": "Byzantine-style slashed flat (Tavener)"
+        "description": "Byzantine-style Bakiye flat (Tavener)"
     }, 
     "accidentalTavenerSharp": {
         "codepoint": "U+E476", 
-        "description": "Byzantine-style slashed sharp (Tavener)"
+        "description": "Byzantine-style Bu\u0308yu\u0308k mu\u0308cenneb sharp (Tavener)"
     }, 
     "accidentalThreeQuarterTonesFlatArrowDown": {
         "alternateCodepoint": "U+1D12D", 
@@ -1702,7 +1702,7 @@
     }, 
     "accidentalThreeQuarterTonesSharpBusotti": {
         "codepoint": "U+E474", 
-        "description": "Three quarter tones sharp (Busotti)"
+        "description": "Three quarter tones sharp (Bussotti)"
     }, 
     "accidentalThreeQuarterTonesSharpStein": {
         "codepoint": "U+E283", 
@@ -1828,11 +1828,19 @@
         "codepoint": "U+E471", 
         "description": "Two-third-tones sharp (Xenakis)"
     }, 
+    "analyticsChoralmelodie": {
+        "codepoint": "U+E86A", 
+        "description": "Choralmelodie (Berg)"
+    }, 
     "analyticsEndStimme": {
         "alternateCodepoint": "U+1D1A8", 
         "codepoint": "U+E863", 
         "description": "End of stimme"
     }, 
+    "analyticsHauptrhythmus": {
+        "codepoint": "U+E86B", 
+        "description": "Hauptrhythmus (Berg)"
+    }, 
     "analyticsHauptstimme": {
         "alternateCodepoint": "U+1D1A6", 
         "codepoint": "U+E860", 
@@ -2117,6 +2125,14 @@
         "codepoint": "U+E4AF", 
         "description": "Marcato-staccato below"
     }, 
+    "articMarcatoTenutoAbove": {
+        "codepoint": "U+E4BC", 
+        "description": "Marcato-tenuto above"
+    }, 
+    "articMarcatoTenutoBelow": {
+        "codepoint": "U+E4BD", 
+        "description": "Marcato-tenuto below"
+    }, 
     "articStaccatissimoAbove": {
         "alternateCodepoint": "U+1D17E", 
         "codepoint": "U+E4A6", 
@@ -2418,6 +2434,18 @@
         "codepoint": "U+E5D1", 
         "description": "Lift, short"
     }, 
+    "brassLiftSmoothLong": {
+        "codepoint": "U+E5EE", 
+        "description": "Smooth lift, long"
+    }, 
+    "brassLiftSmoothMedium": {
+        "codepoint": "U+E5ED", 
+        "description": "Smooth lift, medium"
+    }, 
+    "brassLiftSmoothShort": {
+        "codepoint": "U+E5EC", 
+        "description": "Smooth lift, short"
+    }, 
     "brassMuteClosed": {
         "codepoint": "U+E5E5", 
         "description": "Muted (closed)"
@@ -2501,14 +2529,6 @@
         "codepoint": "U+E060", 
         "description": "C clef (19th century)"
     }, 
-    "cClefTriangular": {
-        "codepoint": "U+E06F", 
-        "description": "Triangular C clef"
-    }, 
-    "cClefTriangularToFClef": {
-        "codepoint": "U+E071", 
-        "description": "C clef to F clef change"
-    }, 
     "caesura": {
         "alternateCodepoint": "U+1D113", 
         "codepoint": "U+E4D1", 
@@ -2551,6 +2571,7 @@
         "description": "Caesura"
     }, 
     "chantCclef": {
+        "alternateCodepoint": "U+1D1D0", 
         "codepoint": "U+E906", 
         "description": "Plainchant C clef"
     }, 
@@ -2655,6 +2676,7 @@
         "description": "Episema"
     }, 
     "chantFclef": {
+        "alternateCodepoint": "U+1D1D1", 
         "codepoint": "U+E902", 
         "description": "Plainchant F clef"
     }, 
@@ -3472,14 +3494,6 @@
         "codepoint": "U+E076", 
         "description": "Reversed F clef"
     }, 
-    "fClefTriangular": {
-        "codepoint": "U+E070", 
-        "description": "Triangular F clef"
-    }, 
-    "fClefTriangularToCClef": {
-        "codepoint": "U+E072", 
-        "description": "F clef to C clef change"
-    }, 
     "fClefTurned": {
         "codepoint": "U+E077", 
         "description": "Turned F clef"
@@ -3594,6 +3608,10 @@
         "codepoint": "U+EA5C", 
         "description": "Figured bass 6 raised by half-step"
     }, 
+    "figbass6Raised2": {
+        "codepoint": "U+EA6F", 
+        "description": "Figured bass 6 raised by half-step 2"
+    }, 
     "figbass7": {
         "codepoint": "U+EA5D", 
         "description": "Figured bass 7"
@@ -4248,6 +4266,14 @@
         "codepoint": "U+E680", 
         "description": "Harp pedal raised (flat)"
     }, 
+    "harpSalzedoAeolianAscending": {
+        "codepoint": "U+E695", 
+        "description": "Ascending aeolian chords (Salzedo)"
+    }, 
+    "harpSalzedoAeolianDescending": {
+        "codepoint": "U+E696", 
+        "description": "Descending aeolian chords (Salzedo)"
+    }, 
     "harpSalzedoFluidicSoundsLeft": {
         "codepoint": "U+E68D", 
         "description": "Fluidic sounds, left hand (Salzedo)"
@@ -4980,9 +5006,10 @@
     }, 
     "medRenFlatHardB": {
         "codepoint": "U+E9E1", 
-        "description": "Natural, hard b (mi)"
+        "description": "Flat, hard b (mi)"
     }, 
     "medRenFlatSoftB": {
+        "alternateCodepoint": "U+1D1D2", 
         "codepoint": "U+E9E0", 
         "description": "Flat, soft b (fa)"
     }, 
@@ -5626,10 +5653,106 @@
         "description": "White mensural minima"
     }, 
     "mensuralWhiteSemiminima": {
-        "alternateCodepoint": "U+1D1BE", 
+        "alternateCodepoint": "U+1D1BC", 
         "codepoint": "U+E960", 
         "description": "White mensural semiminima"
     }, 
+    "metAugmentationDot": {
+        "codepoint": "U+ECB7", 
+        "description": "Augmentation dot"
+    }, 
+    "metNote1024thDown": {
+        "codepoint": "U+ECB6", 
+        "description": "1024th note (semihemidemisemihemidemisemiquaver) stem down"
+    }, 
+    "metNote1024thUp": {
+        "codepoint": "U+ECB5", 
+        "description": "1024th note (semihemidemisemihemidemisemiquaver) stem up"
+    }, 
+    "metNote128thDown": {
+        "codepoint": "U+ECB0", 
+        "description": "128th note (semihemidemisemiquaver) stem down"
+    }, 
+    "metNote128thUp": {
+        "codepoint": "U+ECAF", 
+        "description": "128th note (semihemidemisemiquaver) stem up"
+    }, 
+    "metNote16thDown": {
+        "codepoint": "U+ECAA", 
+        "description": "16th note (semiquaver) stem down"
+    }, 
+    "metNote16thUp": {
+        "codepoint": "U+ECA9", 
+        "description": "16th note (semiquaver) stem up"
+    }, 
+    "metNote256thDown": {
+        "codepoint": "U+ECB2", 
+        "description": "256th note (demisemihemidemisemiquaver) stem down"
+    }, 
+    "metNote256thUp": {
+        "codepoint": "U+ECB1", 
+        "description": "256th note (demisemihemidemisemiquaver) stem up"
+    }, 
+    "metNote32ndDown": {
+        "codepoint": "U+ECAC", 
+        "description": "32nd note (demisemiquaver) stem down"
+    }, 
+    "metNote32ndUp": {
+        "codepoint": "U+ECAB", 
+        "description": "32nd note (demisemiquaver) stem up"
+    }, 
+    "metNote512thDown": {
+        "codepoint": "U+ECB4", 
+        "description": "512th note (hemidemisemihemidemisemiquaver) stem down"
+    }, 
+    "metNote512thUp": {
+        "codepoint": "U+ECB3", 
+        "description": "512th note (hemidemisemihemidemisemiquaver) stem up"
+    }, 
+    "metNote64thDown": {
+        "codepoint": "U+ECAE", 
+        "description": "64th note (hemidemisemiquaver) stem down"
+    }, 
+    "metNote64thUp": {
+        "codepoint": "U+ECAD", 
+        "description": "64th note (hemidemisemiquaver) stem up"
+    }, 
+    "metNote8thDown": {
+        "codepoint": "U+ECA8", 
+        "description": "Eighth note (quaver) stem down"
+    }, 
+    "metNote8thUp": {
+        "codepoint": "U+ECA7", 
+        "description": "Eighth note (quaver) stem up"
+    }, 
+    "metNoteDoubleWhole": {
+        "codepoint": "U+ECA0", 
+        "description": "Double whole note (breve)"
+    }, 
+    "metNoteDoubleWholeSquare": {
+        "codepoint": "U+ECA1", 
+        "description": "Double whole note (square)"
+    }, 
+    "metNoteHalfDown": {
+        "codepoint": "U+ECA4", 
+        "description": "Half note (minim) stem down"
+    }, 
+    "metNoteHalfUp": {
+        "codepoint": "U+ECA3", 
+        "description": "Half note (minim) stem up"
+    }, 
+    "metNoteQuarterDown": {
+        "codepoint": "U+ECA6", 
+        "description": "Quarter note (crotchet) stem down"
+    }, 
+    "metNoteQuarterUp": {
+        "codepoint": "U+ECA5", 
+        "description": "Quarter note (crotchet) stem up"
+    }, 
+    "metNoteWhole": {
+        "codepoint": "U+ECA2", 
+        "description": "Whole note (semibreve)"
+    }, 
     "metricModulationArrowLeft": {
         "codepoint": "U+EC63", 
         "description": "Left-pointing arrow for metric modulation"
@@ -6160,11 +6283,11 @@
     }, 
     "noteShapeSquareBlack": {
         "codepoint": "U+E1B3", 
-        "description": "Square black (4-shape la; Aiken 7-shape la)"
+        "description": "Square black (4-shape la; Aikin 7-shape la)"
     }, 
     "noteShapeSquareWhite": {
         "codepoint": "U+E1B2", 
-        "description": "Square white (4-shape la; Aiken 7-shape la)"
+        "description": "Square white (4-shape la; Aikin 7-shape la)"
     }, 
     "noteShapeTriangleLeftBlack": {
         "codepoint": "U+E1B7", 
@@ -6893,6 +7016,30 @@
         "codepoint": "U+E0A7", 
         "description": "X notehead whole"
     }, 
+    "octaveBaselineA": {
+        "codepoint": "U+EC91", 
+        "description": "a (baseline)"
+    }, 
+    "octaveBaselineB": {
+        "codepoint": "U+EC93", 
+        "description": "b (baseline)"
+    }, 
+    "octaveBaselineM": {
+        "codepoint": "U+EC95", 
+        "description": "m (baseline)"
+    }, 
+    "octaveBaselineV": {
+        "codepoint": "U+EC97", 
+        "description": "v (baseline)"
+    }, 
+    "octaveBassa": {
+        "codepoint": "U+E51F", 
+        "description": "Bassa"
+    }, 
+    "octaveLoco": {
+        "codepoint": "U+EC90", 
+        "description": "Loco"
+    }, 
     "octaveParensLeft": {
         "codepoint": "U+E51A", 
         "description": "Left parenthesis for octave signs"
@@ -6901,6 +7048,22 @@
         "codepoint": "U+E51B", 
         "description": "Right parenthesis for octave signs"
     }, 
+    "octaveSuperscriptA": {
+        "codepoint": "U+EC92", 
+        "description": "a (superscript)"
+    }, 
+    "octaveSuperscriptB": {
+        "codepoint": "U+EC94", 
+        "description": "b (superscript)"
+    }, 
+    "octaveSuperscriptM": {
+        "codepoint": "U+EC96", 
+        "description": "m (superscript)"
+    }, 
+    "octaveSuperscriptV": {
+        "codepoint": "U+EC98", 
+        "description": "v (superscript)"
+    }, 
     "ornamentBottomLeftConcaveStroke": {
         "codepoint": "U+E59A", 
         "description": "Ornament bottom left concave stroke"
@@ -7064,7 +7227,7 @@
         "codepoint": "U+E5BE", 
         "description": "Cadence"
     }, 
-    "ornamentPrecompCadenceUpperPrefix ": {
+    "ornamentPrecompCadenceUpperPrefix": {
         "codepoint": "U+E5C1", 
         "description": "Cadence with upper prefix"
     }, 
@@ -7072,7 +7235,7 @@
         "codepoint": "U+E5C2", 
         "description": "Cadence with upper prefix and turn"
     }, 
-    "ornamentPrecompCadenceWithTurn ": {
+    "ornamentPrecompCadenceWithTurn": {
         "codepoint": "U+E5BF", 
         "description": "Cadence with turn"
     }, 
@@ -7084,7 +7247,7 @@
         "codepoint": "U+E5C0", 
         "description": "Double cadence with lower prefix"
     }, 
-    "ornamentPrecompDoubleCadenceUpperPrefix ": {
+    "ornamentPrecompDoubleCadenceUpperPrefix": {
         "codepoint": "U+E5C3", 
         "description": "Double cadence with upper prefix"
     }, 
@@ -7279,6 +7442,10 @@
         "codepoint": "U+E513", 
         "description": "Ottava bassa (ba)"
     }, 
+    "ottavaBassaVb": {
+        "codepoint": "U+E51C", 
+        "description": "Ottava bassa (8vb)"
+    }, 
     "pendereckiTremolo": {
         "codepoint": "U+E22B", 
         "description": "Penderecki unmeasured tremolo"
@@ -8117,7 +8284,7 @@
     }, 
     "pictRimShotOnStem": {
         "codepoint": "U+E7FD", 
-        "description": "Rim shot (on stem)"
+        "description": "Rim shot for stem"
     }, 
     "pictSandpaperBlocks": {
         "codepoint": "U+E762", 
@@ -8391,7 +8558,7 @@
     }, 
     "pluckedDampOnStem": {
         "codepoint": "U+E63B", 
-        "description": "Damp (on stem)"
+        "description": "Damp for stem"
     }, 
     "pluckedFingernailFlick": {
         "codepoint": "U+E637", 
@@ -8433,6 +8600,10 @@
         "codepoint": "U+E516", 
         "description": "Quindicesima bassa"
     }, 
+    "quindicesimaBassaMb": {
+        "codepoint": "U+E51D", 
+        "description": "Quindicesima bassa (mb)"
+    }, 
     "repeat1Bar": {
         "alternateCodepoint": "U+1D10E", 
         "codepoint": "U+E500", 
@@ -8559,6 +8730,10 @@
         "codepoint": "U+E4F2", 
         "description": "Old-style quarter (crotchet) rest"
     }, 
+    "restQuarterZ": {
+        "codepoint": "U+E4F6", 
+        "description": "Z-style quarter (crotchet) rest"
+    }, 
     "restWhole": {
         "alternateCodepoint": "U+1D13B", 
         "codepoint": "U+E4E3", 
@@ -8584,6 +8759,22 @@
         "codepoint": "U+E04D", 
         "description": "Right repeat sign within bar"
     }, 
+    "schaefferClef": {
+        "codepoint": "U+E06F", 
+        "description": "Sch\u00e4ffer clef"
+    }, 
+    "schaefferFClefToGClef": {
+        "codepoint": "U+E072", 
+        "description": "Sch\u00e4ffer F clef to G clef change"
+    }, 
+    "schaefferGClefToFClef": {
+        "codepoint": "U+E071", 
+        "description": "Sch\u00e4ffer G clef to F clef change"
+    }, 
+    "schaefferPreviousClef": {
+        "codepoint": "U+E070", 
+        "description": "Sch\u00e4ffer previous clef"
+    }, 
     "segno": {
         "alternateCodepoint": "U+1D10B", 
         "codepoint": "U+E047", 
@@ -8635,11 +8826,19 @@
     }, 
     "smnSharp": {
         "codepoint": "U+EC50", 
-        "description": "Sharp"
+        "description": "Sharp stem up"
+    }, 
+    "smnSharpDown": {
+        "codepoint": "U+EC59", 
+        "description": "Sharp stem down"
     }, 
     "smnSharpWhite": {
         "codepoint": "U+EC51", 
-        "description": "Sharp (white)"
+        "description": "Sharp (white) stem up"
+    }, 
+    "smnSharpWhiteDown": {
+        "codepoint": "U+EC5A", 
+        "description": "Sharp (white) stem down"
     }, 
     "splitBarDivider": {
         "codepoint": "U+E00A", 
@@ -9092,6 +9291,22 @@
         "codepoint": "U+E089", 
         "description": "Time signature 9"
     }, 
+    "timeSigBracketLeft": {
+        "codepoint": "U+EC80", 
+        "description": "Left bracket for whole time signature"
+    }, 
+    "timeSigBracketLeftSmall": {
+        "codepoint": "U+EC82", 
+        "description": "Left bracket for numerator only"
+    }, 
+    "timeSigBracketRight": {
+        "codepoint": "U+EC81", 
+        "description": "Right bracket for whole time signature"
+    }, 
+    "timeSigBracketRightSmall": {
+        "codepoint": "U+EC83", 
+        "description": "Right bracket for numerator only"
+    }, 
     "timeSigCombDenominator": {
         "codepoint": "U+E09F", 
         "description": "Control character for denominator digit"
@@ -9109,6 +9324,10 @@
         "codepoint": "U+E08A", 
         "description": "Common time"
     }, 
+    "timeSigCut2": {
+        "codepoint": "U+EC85", 
+        "description": "Cut time (Bach)"
+    }, 
     "timeSigCutCommon": {
         "alternateCodepoint": "U+1D135", 
         "codepoint": "U+E08B", 
@@ -9178,6 +9397,10 @@
         "codepoint": "U+E08D", 
         "description": "Time signature + (for numerators)"
     }, 
+    "timeSigSlash": {
+        "codepoint": "U+EC84", 
+        "description": "Time signature slash separator"
+    }, 
     "timeSigX": {
         "codepoint": "U+E09C", 
         "description": "Open time signature"
@@ -9327,6 +9550,10 @@
         "codepoint": "U+E519", 
         "description": "Ventiduesima bassa"
     }, 
+    "ventiduesimaBassaMb": {
+        "codepoint": "U+E51E", 
+        "description": "Ventiduesima bassa (mb)"
+    }, 
     "vocalMouthClosed": {
         "codepoint": "U+E640", 
         "description": "Mouth closed"
@@ -9689,7 +9916,7 @@
     }, 
     "windFlatEmbouchure": {
         "codepoint": "U+E5FB", 
-        "description": "Sharper embouchure"
+        "description": "Flatter embouchure"
     }, 
     "windHalfClosedHole1": {
         "codepoint": "U+E5F6", 
@@ -9745,7 +9972,7 @@
     }, 
     "windSharpEmbouchure": {
         "codepoint": "U+E5FC", 
-        "description": "Flatter embouchure"
+        "description": "Sharper embouchure"
     }, 
     "windStrongAirPressure": {
         "codepoint": "U+E603", 
diff --git a/fonts/bravura/metadata.json b/fonts/bravura/metadata.json
index 09134b4..e0ed847 100644
--- a/fonts/bravura/metadata.json
+++ b/fonts/bravura/metadata.json
@@ -1,6 +1,6 @@
 {
     "fontName": "Bravura", 
-    "fontVersion": 1.12, 
+    "fontVersion": 1.18, 
 
     "engravingDefaults": {
         "arrowShaftThickness": 0.16, 
@@ -2785,7 +2785,7 @@
         }, 
         "accidental1CommaFlat": {
             "bBoxNE": [
-                0.996, 
+                1.076, 
                 1.976
             ], 
             "bBoxSW": [
@@ -2795,7 +2795,7 @@
         }, 
         "accidental1CommaSharp": {
             "bBoxNE": [
-                1.5, 
+                1.58, 
                 2.076
             ], 
             "bBoxSW": [
@@ -2805,7 +2805,7 @@
         }, 
         "accidental2CommaFlat": {
             "bBoxNE": [
-                1.288, 
+                1.368, 
                 1.944
             ], 
             "bBoxSW": [
@@ -2815,7 +2815,7 @@
         }, 
         "accidental2CommaSharp": {
             "bBoxNE": [
-                1.82, 
+                1.9, 
                 2.068
             ], 
             "bBoxSW": [
@@ -2825,7 +2825,7 @@
         }, 
         "accidental3CommaFlat": {
             "bBoxNE": [
-                1.196, 
+                1.276, 
                 1.912
             ], 
             "bBoxSW": [
@@ -2835,7 +2835,7 @@
         }, 
         "accidental3CommaSharp": {
             "bBoxNE": [
-                1.748, 
+                1.828, 
                 2.044
             ], 
             "bBoxSW": [
@@ -2845,7 +2845,7 @@
         }, 
         "accidental4CommaFlat": {
             "bBoxNE": [
-                1.292, 
+                1.368, 
                 1.968
             ], 
             "bBoxSW": [
@@ -2855,7 +2855,7 @@
         }, 
         "accidental5CommaSharp": {
             "bBoxNE": [
-                1.752, 
+                1.828, 
                 2.04
             ], 
             "bBoxSW": [
@@ -3095,12 +3095,12 @@
         }, 
         "accidentalDoubleFlatParens": {
             "bBoxNE": [
-                2.972, 
+                2.772, 
                 1.748
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.004
+                -0.992
             ]
         }, 
         "accidentalDoubleFlatReversed": {
@@ -3206,11 +3206,11 @@
         "accidentalDoubleSharpParens": {
             "bBoxNE": [
                 1.992, 
-                1.0
+                0.988
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.004
+                -0.992
             ]
         }, 
         "accidentalDoubleSharpThreeArrowsDown": {
@@ -3415,12 +3415,12 @@
         }, 
         "accidentalFlatParens": {
             "bBoxNE": [
-                2.184, 
+                2.024, 
                 1.756
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.004
+                -0.992
             ]
         }, 
         "accidentalFlatSmall": {
@@ -3855,7 +3855,7 @@
         }, 
         "accidentalNaturalParens": {
             "bBoxNE": [
-                2.16, 
+                2.164, 
                 1.364
             ], 
             "bBoxSW": [
@@ -3975,22 +3975,22 @@
         }, 
         "accidentalParensLeft": {
             "bBoxNE": [
-                0.652, 
-                1.0
+                0.564, 
+                0.988
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.004
+                -0.992
             ]
         }, 
         "accidentalParensRight": {
             "bBoxNE": [
-                0.652, 
-                1.0
+                0.564, 
+                0.988
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.004
+                -0.992
             ]
         }, 
         "accidentalQuarterToneFlat4": {
@@ -5713,6 +5713,26 @@
                 -2.036
             ]
         }, 
+        "articMarcatoTenutoAbove": {
+            "bBoxNE": [
+                1.352, 
+                1.708
+            ], 
+            "bBoxSW": [
+                -0.004, 
+                0.0
+            ]
+        }, 
+        "articMarcatoTenutoBelow": {
+            "bBoxNE": [
+                1.352, 
+                0.0
+            ], 
+            "bBoxSW": [
+                -0.004, 
+                -1.716
+            ]
+        }, 
         "articStaccatissimoAbove": {
             "bBoxNE": [
                 0.4, 
@@ -6853,26 +6873,6 @@
                 -1.996
             ]
         }, 
-        "cClefTriangular": {
-            "bBoxNE": [
-                1.856, 
-                1.5
-            ], 
-            "bBoxSW": [
-                0.0, 
-                -1.5
-            ]
-        }, 
-        "cClefTriangularToFClef": {
-            "bBoxNE": [
-                2.416, 
-                2.46
-            ], 
-            "bBoxSW": [
-                -0.016, 
-                -1.544
-            ]
-        }, 
         "caesura": {
             "bBoxNE": [
                 1.536, 
@@ -8125,72 +8125,72 @@
         }, 
         "dynamicFF": {
             "bBoxNE": [
-                2.684, 
-                1.82
+                2.44, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.54, 
+                -0.608
             ]
         }, 
         "dynamicFFF": {
             "bBoxNE": [
-                3.776, 
-                1.82
+                3.32, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.62, 
+                -0.608
             ]
         }, 
         "dynamicFFFF": {
             "bBoxNE": [
-                4.868, 
-                1.82
+                4.28, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.62, 
+                -0.608
             ]
         }, 
         "dynamicFFFFF": {
             "bBoxNE": [
-                5.952, 
-                1.82
+                5.24, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.62, 
+                -0.608
             ]
         }, 
         "dynamicFFFFFF": {
             "bBoxNE": [
-                7.012, 
-                1.82
+                6.2, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.62, 
+                -0.608
             ]
         }, 
         "dynamicForte": {
             "bBoxNE": [
-                1.576, 
-                1.82
+                1.456, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.564, 
+                -0.608
             ]
         }, 
         "dynamicFortePiano": {
             "bBoxNE": [
-                2.644, 
-                1.82
+                2.476, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.564, 
+                -0.608
             ]
         }, 
         "dynamicForteSmall": {
@@ -8205,32 +8205,32 @@
         }, 
         "dynamicForzando": {
             "bBoxNE": [
-                2.16, 
-                1.82
+                1.988, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.564, 
+                -0.608
             ]
         }, 
         "dynamicMF": {
             "bBoxNE": [
-                3.192, 
-                1.768
+                3.272, 
+                1.724
             ], 
             "bBoxSW": [
-                -0.152, 
-                -0.724
+                -0.08, 
+                -0.66
             ]
         }, 
         "dynamicMP": {
             "bBoxNE": [
-                3.18, 
-                1.108
+                3.3, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.14, 
-                -0.548
+                -0.08, 
+                -0.568
             ]
         }, 
         "dynamicMessaDiVoce": {
@@ -8245,12 +8245,12 @@
         }, 
         "dynamicMezzo": {
             "bBoxNE": [
-                1.724, 
-                1.092
+                1.784, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.152, 
-                -0.044
+                -0.08, 
+                -0.04
             ]
         }, 
         "dynamicMezzoSmall": {
@@ -8266,11 +8266,11 @@
         "dynamicNiente": {
             "bBoxNE": [
                 1.232, 
-                1.12
+                1.096
             ], 
             "bBoxSW": [
-                -0.152, 
-                -0.02
+                -0.092, 
+                -0.04
             ]
         }, 
         "dynamicNienteForHairpin": {
@@ -8295,72 +8295,72 @@
         }, 
         "dynamicPF": {
             "bBoxNE": [
-                3.088, 
-                1.82
+                3.08, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.672
+                -0.288, 
+                -0.608
             ]
         }, 
         "dynamicPP": {
             "bBoxNE": [
-                2.94, 
-                1.116
+                2.912, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.54
+                -0.328, 
+                -0.568
             ]
         }, 
         "dynamicPPP": {
             "bBoxNE": [
-                4.328, 
-                1.14
+                4.292, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.516
+                -0.368, 
+                -0.568
             ]
         }, 
         "dynamicPPPP": {
             "bBoxNE": [
-                5.716, 
-                1.12
+                5.672, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.536
+                -0.408, 
+                -0.568
             ]
         }, 
         "dynamicPPPPP": {
             "bBoxNE": [
-                7.108, 
-                1.12
+                7.092, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.536
+                -0.408, 
+                -0.568
             ]
         }, 
         "dynamicPPPPPP": {
             "bBoxNE": [
-                8.496, 
-                1.116
+                8.512, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.54
+                -0.408, 
+                -0.568
             ]
         }, 
         "dynamicPiano": {
             "bBoxNE": [
-                1.552, 
-                1.12
+                1.464, 
+                1.096
             ], 
             "bBoxSW": [
                 -0.356, 
-                -0.536
+                -0.568
             ]
         }, 
         "dynamicPianoSmall": {
@@ -8375,32 +8375,32 @@
         }, 
         "dynamicRinforzando": {
             "bBoxNE": [
-                1.224, 
-                1.148
+                1.108, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.052, 
+                -0.08, 
                 0.0
             ]
         }, 
         "dynamicRinforzando1": {
             "bBoxNE": [
-                2.82, 
-                1.82
+                2.5, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.052, 
-                -0.672
+                -0.08, 
+                -0.608
             ]
         }, 
         "dynamicRinforzando2": {
             "bBoxNE": [
-                3.42, 
-                1.82
+                2.976, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.052, 
-                -0.672
+                -0.08, 
+                -0.608
             ]
         }, 
         "dynamicRinforzandoSmall": {
@@ -8415,42 +8415,42 @@
         }, 
         "dynamicSforzando": {
             "bBoxNE": [
-                0.888, 
-                1.14
+                0.916, 
+                1.092
             ], 
             "bBoxSW": [
                 0.0, 
-                0.0
+                -0.04
             ]
         }, 
         "dynamicSforzando1": {
             "bBoxNE": [
-                2.456, 
-                1.82
+                2.416, 
+                1.776
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.672
+                -0.608
             ]
         }, 
         "dynamicSforzandoPianissimo": {
             "bBoxNE": [
-                4.984, 
-                1.82
+                4.796, 
+                1.776
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.672
+                -0.608
             ]
         }, 
         "dynamicSforzandoPiano": {
             "bBoxNE": [
-                3.468, 
-                1.82
+                3.38, 
+                1.776
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.672
+                -0.608
             ]
         }, 
         "dynamicSforzandoSmall": {
@@ -8465,42 +8465,42 @@
         }, 
         "dynamicSforzato": {
             "bBoxNE": [
-                3.0, 
-                1.82
+                2.932, 
+                1.776
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.672
+                -0.608
             ]
         }, 
         "dynamicSforzatoFF": {
             "bBoxNE": [
-                4.12, 
-                1.82
+                3.856, 
+                1.776
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.672
+                -0.608
             ]
         }, 
         "dynamicSforzatoPiano": {
             "bBoxNE": [
-                4.392, 
-                1.82
+                4.304, 
+                1.776
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.672
+                -0.608
             ]
         }, 
         "dynamicZ": {
             "bBoxNE": [
-                1.0, 
-                1.12
+                0.976, 
+                1.072
             ], 
             "bBoxSW": [
-                -0.116, 
-                -0.02
+                -0.12, 
+                -0.04
             ]
         }, 
         "dynamicZSmall": {
@@ -8935,8 +8935,8 @@
         }, 
         "elecPowerOnOff": {
             "bBoxNE": [
-                2.792, 
-                3.0
+                2.696, 
+                2.992
             ], 
             "bBoxSW": [
                 0.0, 
@@ -9116,11 +9116,11 @@
         "elecVolumeLevel100": {
             "bBoxNE": [
                 0.944, 
-                4.144
+                4.112
             ], 
             "bBoxSW": [
                 0.0, 
-                0.032
+                0.0
             ]
         }, 
         "elecVolumeLevel20": {
@@ -9146,21 +9146,21 @@
         "elecVolumeLevel60": {
             "bBoxNE": [
                 0.944, 
-                4.112
+                4.08
             ], 
             "bBoxSW": [
                 0.0, 
-                0.032
+                0.0
             ]
         }, 
         "elecVolumeLevel80": {
             "bBoxNE": [
                 0.944, 
-                4.112
+                4.08
             ], 
             "bBoxSW": [
                 0.0, 
-                0.032
+                0.0
             ]
         }, 
         "fClef": {
@@ -9293,26 +9293,6 @@
                 -2.508
             ]
         }, 
-        "fClefTriangular": {
-            "bBoxNE": [
-                1.264, 
-                1.004
-            ], 
-            "bBoxSW": [
-                0.0, 
-                -0.996
-            ]
-        }, 
-        "fClefTriangularToCClef": {
-            "bBoxNE": [
-                2.428, 
-                2.496
-            ], 
-            "bBoxSW": [
-                -0.004, 
-                -1.508
-            ]
-        }, 
         "fClefTurned": {
             "bBoxNE": [
                 2.756, 
@@ -9465,191 +9445,201 @@
         }, 
         "figbass0": {
             "bBoxNE": [
-                0.856, 
+                0.94, 
                 1.004
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.08, 
                 -0.004
             ]
         }, 
         "figbass1": {
             "bBoxNE": [
-                0.468, 
+                0.548, 
                 1.016
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass2": {
             "bBoxNE": [
-                0.808, 
+                0.888, 
                 1.012
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.012
             ]
         }, 
         "figbass2Raised": {
             "bBoxNE": [
-                0.816, 
+                0.892, 
                 1.024
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.192
             ]
         }, 
         "figbass3": {
             "bBoxNE": [
-                0.74, 
+                0.82, 
                 1.008
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass4": {
             "bBoxNE": [
-                0.788, 
+                0.864, 
                 1.012
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.004
             ]
         }, 
         "figbass4Raised": {
             "bBoxNE": [
-                0.944, 
+                1.024, 
                 1.004
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass5": {
             "bBoxNE": [
-                0.744, 
+                0.82, 
                 1.032
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass5Raised1": {
             "bBoxNE": [
-                0.756, 
+                0.832, 
                 1.224
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.004
             ]
         }, 
         "figbass5Raised2": {
             "bBoxNE": [
-                0.756, 
+                0.832, 
                 1.22
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass5Raised3": {
             "bBoxNE": [
-                1.0, 
+                1.08, 
                 1.036
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass6": {
             "bBoxNE": [
-                0.788, 
-                1.004
+                0.864, 
+                1.0
             ], 
             "bBoxSW": [
-                0.004, 
-                0.004
+                0.08, 
+                0.0
             ]
         }, 
         "figbass6Raised": {
             "bBoxNE": [
-                0.928, 
+                1.008, 
                 0.996
             ], 
             "bBoxSW": [
-                -0.144, 
+                -0.064, 
+                0.0
+            ]
+        }, 
+        "figbass6Raised2": {
+            "bBoxNE": [
+                0.784, 
+                1.052
+            ], 
+            "bBoxSW": [
+                -0.056, 
                 0.0
             ]
         }, 
         "figbass7": {
             "bBoxNE": [
-                0.788, 
+                0.868, 
                 0.98
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass7Raised1": {
             "bBoxNE": [
-                0.788, 
+                0.868, 
                 1.16
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.004
             ]
         }, 
         "figbass7Raised2": {
             "bBoxNE": [
-                0.908, 
+                0.988, 
                 0.976
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.004
             ]
         }, 
         "figbass8": {
             "bBoxNE": [
-                0.768, 
+                0.848, 
                 1.004
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass9": {
             "bBoxNE": [
-                0.784, 
+                0.864, 
                 1.0
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass9Raised": {
             "bBoxNE": [
-                0.944, 
+                1.024, 
                 1.0
             ], 
             "bBoxSW": [
-                -0.128, 
+                -0.048, 
                 0.0
             ]
         }, 
@@ -9695,41 +9685,41 @@
         }, 
         "figbassDoubleFlat": {
             "bBoxNE": [
-                1.284, 
+                1.36, 
                 1.9
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.008
             ]
         }, 
         "figbassDoubleSharp": {
             "bBoxNE": [
-                1.012, 
+                1.092, 
                 1.016
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.02
             ]
         }, 
         "figbassFlat": {
             "bBoxNE": [
-                0.7, 
+                0.776, 
                 1.868
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.012
             ]
         }, 
         "figbassNatural": {
             "bBoxNE": [
-                0.48, 
+                0.556, 
                 1.472
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.44
             ]
         }, 
@@ -9765,11 +9755,11 @@
         }, 
         "figbassSharp": {
             "bBoxNE": [
-                0.768, 
+                0.848, 
                 1.568
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.584
             ]
         }, 
@@ -9823,24 +9813,24 @@
                 -2.456
             ]
         }, 
-        "flag1024thUpStraight": {
+        "flag1024thUpSmall": {
             "bBoxNE": [
-                0.96, 
-                4.8
+                1.148, 
+                4.52
             ], 
             "bBoxSW": [
                 0.0, 
-                -2.22
+                -3.244
             ]
         }, 
-        "flag102thUpSmall": {
+        "flag1024thUpStraight": {
             "bBoxNE": [
-                1.148, 
-                4.52
+                0.96, 
+                4.8
             ], 
             "bBoxSW": [
                 0.0, 
-                -3.244
+                -2.22
             ]
         }, 
         "flag128thDown": {
@@ -10485,191 +10475,191 @@
         }, 
         "functionBracketLeft": {
             "bBoxNE": [
-                0.752, 
+                0.744, 
                 2.916
             ], 
             "bBoxSW": [
-                0.008, 
+                0.0, 
                 -0.848
             ]
         }, 
         "functionBracketRight": {
             "bBoxNE": [
-                0.756, 
+                0.744, 
                 2.916
             ], 
             "bBoxSW": [
-                0.012, 
+                0.0, 
                 -0.848
             ]
         }, 
         "functionDD": {
             "bBoxNE": [
-                3.168, 
+                3.248, 
                 2.916
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -1.024
             ]
         }, 
         "functionDLower": {
             "bBoxNE": [
-                1.888, 
+                1.956, 
                 2.916
             ], 
             "bBoxSW": [
-                0.012, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionDUpper": {
             "bBoxNE": [
-                2.312, 
+                2.392, 
                 2.916
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionEight": {
             "bBoxNE": [
-                1.908, 
+                1.984, 
                 2.836
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionFive": {
             "bBoxNE": [
-                1.912, 
+                1.992, 
                 2.776
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionFour": {
             "bBoxNE": [
-                1.968, 
+                2.048, 
                 2.836
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionGLower": {
             "bBoxNE": [
-                1.836, 
+                1.92, 
                 2.156
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.08, 
                 -0.872
             ]
         }, 
         "functionGUpper": {
             "bBoxNE": [
-                2.668, 
+                2.74, 
                 2.988
             ], 
             "bBoxSW": [
-                0.008, 
+                0.08, 
                 -0.072
             ]
         }, 
         "functionGreaterThan": {
             "bBoxNE": [
-                1.996, 
+                2.072, 
                 2.276
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.276
             ]
         }, 
         "functionLessThan": {
             "bBoxNE": [
-                1.992, 
+                2.068, 
                 2.276
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.276
             ]
         }, 
         "functionMinus": {
             "bBoxNE": [
-                0.952, 
+                1.032, 
                 1.248
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.96
             ]
         }, 
         "functionNLower": {
             "bBoxNE": [
-                1.668, 
+                1.748, 
                 2.156
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionNUpper": {
             "bBoxNE": [
-                2.288, 
+                2.36, 
                 2.916
             ], 
             "bBoxSW": [
-                0.008, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionNine": {
             "bBoxNE": [
-                1.88, 
+                1.964, 
                 2.836
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionOne": {
             "bBoxNE": [
-                0.988, 
+                1.06, 
                 2.836
             ], 
             "bBoxSW": [
-                0.008, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionPLower": {
             "bBoxNE": [
-                1.876, 
+                1.952, 
                 2.156
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.872
             ]
         }, 
         "functionPUpper": {
             "bBoxNE": [
-                2.108, 
+                2.184, 
                 2.916
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.0
             ]
         }, 
@@ -10695,181 +10685,181 @@
         }, 
         "functionPlus": {
             "bBoxNE": [
-                1.38, 
+                1.46, 
                 3.004
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 1.628
             ]
         }, 
         "functionRepetition1": {
             "bBoxNE": [
-                1.704, 
+                1.784, 
                 0.464
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionRepetition2": {
             "bBoxNE": [
-                2.0, 
+                2.084, 
                 3.132
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionRing": {
             "bBoxNE": [
-                1.376, 
+                1.456, 
                 3.012
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 1.636
             ]
         }, 
         "functionSLower": {
             "bBoxNE": [
-                1.708, 
+                1.78, 
                 2.156
             ], 
             "bBoxSW": [
-                0.008, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionSSLower": {
             "bBoxNE": [
-                2.312, 
+                2.392, 
                 2.216
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.892
             ]
         }, 
         "functionSSUpper": {
             "bBoxNE": [
-                3.088, 
+                3.168, 
                 3.06
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -1.096
             ]
         }, 
         "functionSUpper": {
             "bBoxNE": [
-                2.288, 
+                2.372, 
                 2.988
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.08, 
                 -0.072
             ]
         }, 
         "functionSeven": {
             "bBoxNE": [
-                1.9, 
+                1.976, 
                 2.776
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionSix": {
             "bBoxNE": [
-                1.892, 
+                1.96, 
                 2.836
             ], 
             "bBoxSW": [
-                0.012, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionSlashedDD": {
             "bBoxNE": [
-                3.168, 
+                3.248, 
                 3.2
             ], 
             "bBoxSW": [
-                -0.208, 
+                -0.128, 
                 -1.024
             ]
         }, 
         "functionTLower": {
             "bBoxNE": [
-                0.964, 
+                1.04, 
                 2.672
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.028
             ]
         }, 
         "functionTUpper": {
             "bBoxNE": [
-                2.292, 
+                2.368, 
                 2.916
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionThree": {
             "bBoxNE": [
-                1.9, 
+                1.976, 
                 2.836
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionTwo": {
             "bBoxNE": [
-                1.844, 
+                1.988, 
                 2.836
             ], 
             "bBoxSW": [
-                -0.064, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionVLower": {
             "bBoxNE": [
-                1.904, 
+                1.984, 
                 2.096
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionVUpper": {
             "bBoxNE": [
-                2.464, 
+                2.54, 
                 2.916
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionZero": {
             "bBoxNE": [
-                1.868, 
+                1.936, 
                 2.836
             ], 
             "bBoxSW": [
-                0.012, 
+                0.08, 
                 -0.06
             ]
         }, 
@@ -12366,11 +12356,11 @@
         "harpStringNoiseStem": {
             "bBoxNE": [
                 0.724, 
-                2.848
+                1.424
             ], 
             "bBoxSW": [
                 -0.728, 
-                0.0
+                -1.424
             ]
         }, 
         "harpTuningKey": {
@@ -12505,18 +12495,18 @@
         }, 
         "keyboardPedalD": {
             "bBoxNE": [
-                0.988, 
-                1.976
+                0.984, 
+                2.0
             ], 
             "bBoxSW": [
-                -0.596, 
-                0.032
+                -0.632, 
+                -0.012
             ]
         }, 
         "keyboardPedalDot": {
             "bBoxNE": [
-                0.296, 
-                0.296
+                0.344, 
+                0.344
             ], 
             "bBoxSW": [
                 0.0, 
@@ -12525,12 +12515,12 @@
         }, 
         "keyboardPedalE": {
             "bBoxNE": [
-                0.972, 
-                1.264
+                1.02, 
+                1.26
             ], 
             "bBoxSW": [
                 0.0, 
-                0.0
+                -0.024
             ]
         }, 
         "keyboardPedalHalf": {
@@ -12545,22 +12535,22 @@
         }, 
         "keyboardPedalHalf2": {
             "bBoxNE": [
-                1.896, 
-                1.0
+                1.8, 
+                0.944
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.004
+                0.0, 
+                0.0
             ]
         }, 
         "keyboardPedalHalf3": {
             "bBoxNE": [
-                1.896, 
-                1.972
+                1.8, 
+                1.968
             ], 
             "bBoxSW": [
-                0.004, 
-                0.968
+                0.0, 
+                1.024
             ]
         }, 
         "keyboardPedalHeel1": {
@@ -12615,62 +12605,62 @@
         }, 
         "keyboardPedalP": {
             "bBoxNE": [
-                2.14, 
-                2.224
+                2.0, 
+                2.22
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.012
+                0.0, 
+                -0.032
             ]
         }, 
         "keyboardPedalPed": {
             "bBoxNE": [
-                4.044, 
-                2.232
+                4.076, 
+                2.22
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.008
+                0.0, 
+                -0.032
             ]
         }, 
         "keyboardPedalPedNoDot": {
             "bBoxNE": [
-                3.644, 
-                2.232
+                3.692, 
+                2.22
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.008
+                0.0, 
+                -0.032
             ]
         }, 
         "keyboardPedalS": {
             "bBoxNE": [
-                1.66, 
+                1.676, 
                 2.364
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.02
+                0.0, 
+                -0.06
             ]
         }, 
         "keyboardPedalSost": {
             "bBoxNE": [
-                4.396, 
+                4.428, 
                 2.364
             ], 
             "bBoxSW": [
-                0.012, 
-                -0.056
+                0.0, 
+                -0.06
             ]
         }, 
         "keyboardPedalSostNoDot": {
             "bBoxNE": [
-                3.976, 
+                4.056, 
                 2.364
             ], 
             "bBoxSW": [
-                0.012, 
-                -0.02
+                0.0, 
+                -0.06
             ]
         }, 
         "keyboardPedalToe1": {
@@ -12695,12 +12685,12 @@
         }, 
         "keyboardPedalUp": {
             "bBoxNE": [
-                1.764, 
-                1.804
+                1.8, 
+                1.8
             ], 
             "bBoxSW": [
                 0.0, 
-                0.008
+                0.0
             ]
         }, 
         "keyboardPedalUpNotch": {
@@ -12715,11 +12705,11 @@
         }, 
         "keyboardPedalUpSpecial": {
             "bBoxNE": [
-                1.692, 
-                1.828
+                1.668, 
+                1.836
             ], 
             "bBoxSW": [
-                0.024, 
+                0.0, 
                 0.116
             ]
         }, 
@@ -13696,7 +13686,7 @@
         "luteGermanHUpper": {
             "bBoxNE": [
                 1.892, 
-                2.072
+                2.076
             ], 
             "bBoxSW": [
                 0.0, 
@@ -13925,101 +13915,101 @@
         }, 
         "luteItalianFret0": {
             "bBoxNE": [
-                1.024, 
+                1.124, 
                 1.2
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.096, 
                 -0.004
             ]
         }, 
         "luteItalianFret1": {
             "bBoxNE": [
-                0.552, 
+                0.648, 
                 1.2
             ], 
             "bBoxSW": [
-                0.0, 
+                0.096, 
                 0.0
             ]
         }, 
         "luteItalianFret2": {
             "bBoxNE": [
-                0.956, 
+                1.052, 
                 1.2
             ], 
             "bBoxSW": [
-                0.0, 
+                0.096, 
                 -0.012
             ]
         }, 
         "luteItalianFret3": {
             "bBoxNE": [
-                0.88, 
+                0.976, 
                 1.2
             ], 
             "bBoxSW": [
-                0.0, 
+                0.096, 
                 0.0
             ]
         }, 
         "luteItalianFret4": {
             "bBoxNE": [
-                0.936, 
+                1.028, 
                 1.204
             ], 
             "bBoxSW": [
-                0.004, 
+                0.096, 
                 0.004
             ]
         }, 
         "luteItalianFret5": {
             "bBoxNE": [
-                0.864, 
+                0.952, 
                 1.2
             ], 
             "bBoxSW": [
-                0.004, 
+                0.092, 
                 0.0
             ]
         }, 
         "luteItalianFret6": {
             "bBoxNE": [
-                0.944, 
-                1.204
+                1.036, 
+                1.2
             ], 
             "bBoxSW": [
-                0.004, 
-                0.004
+                0.096, 
+                0.0
             ]
         }, 
         "luteItalianFret7": {
             "bBoxNE": [
-                0.968, 
+                1.068, 
                 1.204
             ], 
             "bBoxSW": [
-                0.0, 
+                0.1, 
                 0.0
             ]
         }, 
         "luteItalianFret8": {
             "bBoxNE": [
-                0.92, 
+                1.016, 
                 1.204
             ], 
             "bBoxSW": [
-                0.0, 
+                0.096, 
                 0.0
             ]
         }, 
         "luteItalianFret9": {
             "bBoxNE": [
-                0.94, 
+                1.036, 
                 1.2
             ], 
             "bBoxSW": [
-                0.0, 
+                0.096, 
                 0.0
             ]
         }, 
@@ -14275,12 +14265,12 @@
         }, 
         "medRenLiquescenceCMN": {
             "bBoxNE": [
-                1.32, 
-                0.56
+                1.16, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.576
+                -0.5
             ]
         }, 
         "medRenLiquescentAscCMN": {
@@ -16483,6 +16473,246 @@
                 -0.736
             ]
         }, 
+        "metAugmentationDot": {
+            "bBoxNE": [
+                0.4, 
+                0.2
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.2
+            ]
+        }, 
+        "metNote1024thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -6.98
+            ]
+        }, 
+        "metNote1024thUp": {
+            "bBoxNE": [
+                2.164, 
+                7.028
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote128thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -4.988
+            ]
+        }, 
+        "metNote128thUp": {
+            "bBoxNE": [
+                2.148, 
+                5.072
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote16thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -2.824
+            ]
+        }, 
+        "metNote16thUp": {
+            "bBoxNE": [
+                2.084, 
+                2.8
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote256thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -5.608
+            ]
+        }, 
+        "metNote256thUp": {
+            "bBoxNE": [
+                2.16, 
+                5.696
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote32ndDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -3.52
+            ]
+        }, 
+        "metNote32ndUp": {
+            "bBoxNE": [
+                2.152, 
+                3.692
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote512thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -6.28
+            ]
+        }, 
+        "metNote512thUp": {
+            "bBoxNE": [
+                2.168, 
+                6.356
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote64thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -4.256
+            ]
+        }, 
+        "metNote64thUp": {
+            "bBoxNE": [
+                2.148, 
+                4.392
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote8thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -2.824
+            ]
+        }, 
+        "metNote8thUp": {
+            "bBoxNE": [
+                2.132, 
+                2.784
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNoteDoubleWhole": {
+            "bBoxNE": [
+                2.62, 
+                0.68
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.672
+            ]
+        }, 
+        "metNoteDoubleWholeSquare": {
+            "bBoxNE": [
+                1.664, 
+                0.792
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.76
+            ]
+        }, 
+        "metNoteHalfDown": {
+            "bBoxNE": [
+                1.364, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -2.752
+            ]
+        }, 
+        "metNoteHalfUp": {
+            "bBoxNE": [
+                1.364, 
+                2.752
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNoteQuarterDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -2.752
+            ]
+        }, 
+        "metNoteQuarterUp": {
+            "bBoxNE": [
+                1.328, 
+                2.752
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNoteWhole": {
+            "bBoxNE": [
+                1.836, 
+                0.592
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.5
+            ]
+        }, 
         "metricModulationArrowLeft": {
             "bBoxNE": [
                 3.308, 
@@ -16540,17 +16770,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -6.98
+                -7.968
             ]
         }, 
         "note1024thUp": {
             "bBoxNE": [
-                2.164, 
-                7.028
+                2.268, 
+                7.804
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "note128thDown": {
@@ -16560,17 +16790,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -4.988
+                -5.788
             ]
         }, 
         "note128thUp": {
             "bBoxNE": [
-                2.148, 
-                5.072
+                2.252, 
+                5.632
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "note16thDown": {
@@ -16580,17 +16810,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -2.824
+                -3.532
             ]
         }, 
         "note16thUp": {
             "bBoxNE": [
-                2.084, 
-                2.8
+                2.324, 
+                3.492
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "note256thDown": {
@@ -16600,17 +16830,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -5.608
+                -6.452
             ]
         }, 
         "note256thUp": {
             "bBoxNE": [
-                2.16, 
-                5.696
+                2.264, 
+                6.32
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "note32ndDown": {
@@ -16620,17 +16850,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -3.52
+                -4.192
             ]
         }, 
         "note32ndUp": {
             "bBoxNE": [
-                2.152, 
-                3.692
+                2.252, 
+                4.092
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "note512thDown": {
@@ -16640,17 +16870,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -6.28
+                -7.156
             ]
         }, 
         "note512thUp": {
             "bBoxNE": [
-                2.168, 
-                6.356
+                2.272, 
+                7.052
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "note64thDown": {
@@ -16660,17 +16890,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -4.256
+                -4.96
             ]
         }, 
         "note64thUp": {
             "bBoxNE": [
-                2.148, 
-                4.392
+                2.252, 
+                4.888
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "note8thDown": {
@@ -16680,17 +16910,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -2.824
+                -3.528
             ]
         }, 
         "note8thUp": {
             "bBoxNE": [
-                2.132, 
-                2.784
+                2.264, 
+                3.492
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "noteABlack": {
@@ -17105,12 +17335,12 @@
         }, 
         "noteDoubleWholeSquare": {
             "bBoxNE": [
-                2.132, 
-                1.0
+                1.664, 
+                0.792
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.0
+                -0.76
             ]
         }, 
         "noteEBlack": {
@@ -17506,21 +17736,21 @@
         "noteHalfDown": {
             "bBoxNE": [
                 1.364, 
-                0.564
+                0.58
             ], 
             "bBoxSW": [
                 0.0, 
-                -2.752
+                -3.5
             ]
         }, 
         "noteHalfUp": {
             "bBoxNE": [
                 1.364, 
-                2.752
+                3.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.58
             ]
         }, 
         "noteLaBlack": {
@@ -17590,13 +17820,13 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -2.752
+                -3.5
             ]
         }, 
         "noteQuarterUp": {
             "bBoxNE": [
                 1.328, 
-                2.752
+                3.5
             ], 
             "bBoxSW": [
                 0.0, 
@@ -17635,92 +17865,92 @@
         }, 
         "noteShapeArrowheadLeftBlack": {
             "bBoxNE": [
-                1.172, 
-                0.52
+                1.124, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.52
+                -0.5
             ]
         }, 
         "noteShapeArrowheadLeftWhite": {
             "bBoxNE": [
-                1.172, 
-                0.52
+                1.12, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.524
+                -0.5
             ]
         }, 
         "noteShapeDiamondBlack": {
             "bBoxNE": [
-                1.54, 
-                0.588
+                1.308, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.588
+                -0.5
             ]
         }, 
         "noteShapeDiamondWhite": {
             "bBoxNE": [
-                1.544, 
-                0.588
+                1.312, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.588
+                -0.5
             ]
         }, 
         "noteShapeIsoscelesTriangleBlack": {
             "bBoxNE": [
-                1.172, 
-                0.52
+                1.124, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.52
+                -0.5
             ]
         }, 
         "noteShapeIsoscelesTriangleWhite": {
             "bBoxNE": [
-                1.172, 
-                0.52
+                1.124, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.52
+                -0.5
             ]
         }, 
         "noteShapeKeystoneBlack": {
             "bBoxNE": [
-                1.224, 
-                0.52
+                1.176, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.52
+                -0.5
             ]
         }, 
         "noteShapeKeystoneWhite": {
             "bBoxNE": [
-                1.224, 
-                0.52
+                1.172, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.52
+                0.0, 
+                -0.5
             ]
         }, 
         "noteShapeMoonBlack": {
             "bBoxNE": [
-                1.596, 
-                0.524
+                1.516, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.528
+                -0.5
             ]
         }, 
         "noteShapeMoonLeftBlack": {
@@ -17745,132 +17975,132 @@
         }, 
         "noteShapeMoonWhite": {
             "bBoxNE": [
-                1.596, 
-                0.528
+                1.516, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.524
+                -0.5
             ]
         }, 
         "noteShapeQuarterMoonBlack": {
             "bBoxNE": [
-                1.04, 
+                1.036, 
                 0.5
             ], 
             "bBoxSW": [
-                0.004, 
+                0.0, 
                 -0.5
             ]
         }, 
         "noteShapeQuarterMoonWhite": {
             "bBoxNE": [
-                1.04, 
+                1.036, 
                 0.5
             ], 
             "bBoxSW": [
-                0.004, 
+                0.0, 
                 -0.5
             ]
         }, 
         "noteShapeRoundBlack": {
             "bBoxNE": [
-                1.328, 
-                0.564
+                1.18, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteShapeRoundWhite": {
             "bBoxNE": [
-                1.364, 
-                0.58
+                1.18, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.58
+                -0.5
             ]
         }, 
         "noteShapeSquareBlack": {
             "bBoxNE": [
-                1.616, 
-                0.56
+                1.44, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteShapeSquareWhite": {
             "bBoxNE": [
-                1.616, 
-                0.56
+                1.44, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteShapeTriangleLeftBlack": {
             "bBoxNE": [
-                1.62, 
-                0.56
+                1.44, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteShapeTriangleLeftWhite": {
             "bBoxNE": [
-                1.62, 
-                0.556
+                1.44, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteShapeTriangleRightBlack": {
             "bBoxNE": [
-                1.62, 
-                0.56
+                1.44, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteShapeTriangleRightWhite": {
             "bBoxNE": [
-                1.62, 
-                0.556
+                1.44, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteShapeTriangleRoundBlack": {
             "bBoxNE": [
-                1.584, 
-                0.556
+                1.424, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.556
+                -0.5
             ]
         }, 
         "noteShapeTriangleRoundLeftBlack": {
             "bBoxNE": [
                 1.292, 
-                0.504
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.504
+                -0.5
             ]
         }, 
         "noteShapeTriangleRoundLeftWhite": {
@@ -17880,37 +18110,37 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.504
+                -0.5
             ]
         }, 
         "noteShapeTriangleRoundWhite": {
             "bBoxNE": [
-                1.588, 
-                0.548
+                1.424, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.564
+                0.0, 
+                -0.5
             ]
         }, 
         "noteShapeTriangleUpBlack": {
             "bBoxNE": [
-                1.62, 
-                0.564
+                1.424, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.568
+                -0.5
             ]
         }, 
         "noteShapeTriangleUpWhite": {
             "bBoxNE": [
-                1.62, 
-                0.564
+                1.424, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.568
+                -0.5
             ]
         }, 
         "noteSiBlack": {
@@ -18015,6 +18245,16 @@
         }, 
         "noteheadBlack": {
             "bBoxNE": [
+                1.18, 
+                0.5
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.5
+            ]
+        }, 
+        "noteheadBlackOversized": {
+            "bBoxNE": [
                 1.328, 
                 0.564
             ], 
@@ -18045,632 +18285,632 @@
         }, 
         "noteheadCircleSlash": {
             "bBoxNE": [
-                1.128, 
-                0.564
+                1.0, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.564
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadCircleX": {
             "bBoxNE": [
-                1.128, 
-                0.564
+                0.996, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.564
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadCircleXDoubleWhole": {
             "bBoxNE": [
-                1.92, 
-                0.688
+                1.688, 
+                0.62
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.676
+                -0.62
             ]
         }, 
         "noteheadCircleXHalf": {
             "bBoxNE": [
-                1.14, 
-                0.568
+                1.0, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.568
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadCircleXWhole": {
             "bBoxNE": [
-                1.136, 
-                0.568
+                0.996, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.568
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadCircledBlack": {
             "bBoxNE": [
-                1.532, 
-                0.76
+                1.368, 
+                0.668
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.76
+                0.0, 
+                -0.684
             ]
         }, 
         "noteheadCircledBlackLarge": {
             "bBoxNE": [
-                1.868, 
-                0.928
+                1.66, 
+                0.824
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.932
+                0.0, 
+                -0.828
             ]
         }, 
         "noteheadCircledDoubleWhole": {
             "bBoxNE": [
-                2.62, 
-                0.924
+                2.412, 
+                0.852
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.948
+                -0.872
             ]
         }, 
         "noteheadCircledDoubleWholeLarge": {
             "bBoxNE": [
-                2.488, 
-                0.952
+                2.216, 
+                0.864
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.948
+                -0.828
             ]
         }, 
         "noteheadCircledHalf": {
             "bBoxNE": [
-                1.532, 
-                0.768
+                1.316, 
+                0.668
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.764
+                -0.648
             ]
         }, 
         "noteheadCircledHalfLarge": {
             "bBoxNE": [
-                1.864, 
-                0.932
+                1.612, 
+                0.808
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.932
+                -0.808
             ]
         }, 
         "noteheadCircledWhole": {
             "bBoxNE": [
-                2.032, 
-                1.016
+                1.748, 
+                0.844
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.012
+                -0.9
             ]
         }, 
         "noteheadCircledWholeLarge": {
             "bBoxNE": [
-                2.488, 
-                0.952
+                2.164, 
+                0.844
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.948
+                -0.808
             ]
         }, 
         "noteheadCircledXLarge": {
             "bBoxNE": [
-                1.864, 
-                0.932
+                1.828, 
+                0.912
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.932
+                -0.912
             ]
         }, 
         "noteheadClusterDoubleWhole2nd": {
             "bBoxNE": [
-                2.64, 
-                1.2
+                2.428, 
+                1.14
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.668
+                -0.62
             ]
         }, 
         "noteheadClusterDoubleWhole3rd": {
             "bBoxNE": [
-                2.644, 
-                1.688
+                2.428, 
+                1.62
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.68
+                0.0, 
+                -0.62
             ]
         }, 
         "noteheadClusterDoubleWholeBottom": {
             "bBoxNE": [
-                2.644, 
-                0.828
+                2.392, 
+                0.744
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.68
+                -0.62
             ]
         }, 
         "noteheadClusterDoubleWholeMiddle": {
             "bBoxNE": [
-                2.64, 
-                0.312
+                2.388, 
+                0.4
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.396
             ]
         }, 
         "noteheadClusterDoubleWholeTop": {
             "bBoxNE": [
-                2.644, 
-                0.684
+                2.392, 
+                0.62
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.732
+                -0.66
             ]
         }, 
         "noteheadClusterHalf2nd": {
             "bBoxNE": [
-                1.376, 
-                1.112
+                1.24, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadClusterHalf3rd": {
             "bBoxNE": [
-                1.376, 
-                1.616
+                1.264, 
+                1.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadClusterHalfBottom": {
             "bBoxNE": [
-                1.376, 
-                0.624
+                1.196, 
+                0.56
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.592
+                -0.5
             ]
         }, 
         "noteheadClusterHalfMiddle": {
             "bBoxNE": [
-                1.076, 
-                0.376
+                0.936, 
+                0.4
             ], 
             "bBoxSW": [
-                0.3, 
-                -0.5
+                0.26, 
+                -0.4
             ]
         }, 
         "noteheadClusterHalfTop": {
             "bBoxNE": [
-                1.376, 
-                0.568
+                1.196, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.7
+                -0.604
             ]
         }, 
         "noteheadClusterQuarter2nd": {
             "bBoxNE": [
-                1.42, 
-                1.08
+                1.308, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadClusterQuarter3rd": {
             "bBoxNE": [
-                1.544, 
-                1.584
+                1.44, 
+                1.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadClusterQuarterBottom": {
             "bBoxNE": [
-                1.34, 
-                0.904
+                1.18, 
+                0.804
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.576
+                -0.5
             ]
         }, 
         "noteheadClusterQuarterMiddle": {
             "bBoxNE": [
-                1.016, 
-                0.388
+                0.896, 
+                0.4
             ], 
             "bBoxSW": [
-                0.32, 
-                -0.5
+                0.28, 
+                -0.4
             ]
         }, 
         "noteheadClusterQuarterTop": {
             "bBoxNE": [
-                1.34, 
-                0.56
+                1.18, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.812
+                -0.708
             ]
         }, 
         "noteheadClusterRoundBlack": {
             "bBoxNE": [
                 1.328, 
-                3.124
+                2.5
             ], 
             "bBoxSW": [
                 0.0, 
-                0.0
+                -0.5
             ]
         }, 
         "noteheadClusterRoundWhite": {
             "bBoxNE": [
                 1.496, 
-                3.124
+                2.5
             ], 
             "bBoxSW": [
                 0.0, 
-                0.0
+                -0.5
             ]
         }, 
         "noteheadClusterSquareBlack": {
             "bBoxNE": [
                 1.328, 
-                3.112
+                2.5
             ], 
             "bBoxSW": [
                 0.0, 
-                0.0
+                -0.5
             ]
         }, 
         "noteheadClusterSquareWhite": {
             "bBoxNE": [
                 1.328, 
-                3.112
+                2.5
             ], 
             "bBoxSW": [
                 0.0, 
-                0.0
+                -0.5
             ]
         }, 
         "noteheadClusterWhole2nd": {
             "bBoxNE": [
-                1.852, 
-                1.052
+                1.728, 
+                1.0
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.552
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadClusterWhole3rd": {
             "bBoxNE": [
-                1.848, 
-                1.548
+                1.7, 
+                1.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadClusterWholeBottom": {
             "bBoxNE": [
-                1.852, 
-                0.916
+                1.696, 
+                0.844
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.552
+                -0.5
             ]
         }, 
         "noteheadClusterWholeMiddle": {
             "bBoxNE": [
-                1.396, 
-                0.368
+                1.276, 
+                0.4
             ], 
             "bBoxSW": [
-                0.46, 
-                -0.5
+                0.42, 
+                -0.4
             ]
         }, 
         "noteheadClusterWholeTop": {
             "bBoxNE": [
-                1.852, 
-                0.548
+                1.696, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.92
+                -0.84
             ]
         }, 
         "noteheadDiamondBlack": {
             "bBoxNE": [
-                1.124, 
-                0.568
+                1.0, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadDiamondBlackOld": {
             "bBoxNE": [
-                1.316, 
-                0.564
+                1.16, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.576
+                -0.5
             ]
         }, 
         "noteheadDiamondBlackWide": {
             "bBoxNE": [
-                1.572, 
-                0.568
+                1.4, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterBlack2nd": {
             "bBoxNE": [
-                1.18, 
-                1.664
+                1.068, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
-                0.004
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterBlack3rd": {
             "bBoxNE": [
-                1.18, 
-                2.128
+                1.096, 
+                1.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.032
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterBlackBottom": {
             "bBoxNE": [
-                1.364, 
-                0.7
+                1.184, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.444
+                -0.496
             ]
         }, 
         "noteheadDiamondClusterBlackMiddle": {
             "bBoxNE": [
-                1.02, 
-                0.5
+                0.88, 
+                0.4
             ], 
             "bBoxSW": [
-                0.388, 
-                -0.5
+                0.328, 
+                -0.4
             ]
         }, 
         "noteheadDiamondClusterBlackTop": {
             "bBoxNE": [
-                1.372, 
-                0.444
+                1.184, 
+                0.496
             ], 
             "bBoxSW": [
-                0.008, 
-                -0.7
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterWhite2nd": {
             "bBoxNE": [
-                1.18, 
-                1.664
+                1.06, 
+                0.996
             ], 
             "bBoxSW": [
                 0.0, 
-                0.004
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterWhite3rd": {
             "bBoxNE": [
-                1.18, 
-                2.132
+                1.092, 
+                1.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.028
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterWhiteBottom": {
             "bBoxNE": [
-                1.38, 
-                0.704
+                1.164, 
+                0.512
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.456
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterWhiteMiddle": {
             "bBoxNE": [
-                1.02, 
-                0.504
+                0.864, 
+                0.4
             ], 
             "bBoxSW": [
-                0.372, 
-                -0.5
+                0.324, 
+                -0.4
             ]
         }, 
         "noteheadDiamondClusterWhiteTop": {
             "bBoxNE": [
-                1.38, 
-                0.456
+                1.168, 
+                0.5
             ], 
             "bBoxSW": [
                 0.004, 
-                -0.704
+                -0.512
             ]
         }, 
         "noteheadDiamondDoubleWhole": {
             "bBoxNE": [
-                2.08, 
-                0.604
+                1.728, 
+                0.62
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.604
+                -0.62
             ]
         }, 
         "noteheadDiamondDoubleWholeOld": {
             "bBoxNE": [
-                2.068, 
+                1.8, 
                 0.62
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.58
+                -0.62
             ]
         }, 
         "noteheadDiamondHalf": {
             "bBoxNE": [
-                1.132, 
-                0.572
+                1.004, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.556
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadDiamondHalfFilled": {
             "bBoxNE": [
-                1.308, 
-                0.568
+                1.156, 
+                0.5
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.568
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadDiamondHalfOld": {
             "bBoxNE": [
-                1.324, 
-                0.564
+                1.164, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.572
+                -0.5
             ]
         }, 
         "noteheadDiamondHalfWide": {
             "bBoxNE": [
-                1.576, 
-                0.572
+                1.404, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.556
+                -0.5
             ]
         }, 
         "noteheadDiamondOpen": {
             "bBoxNE": [
-                1.296, 
-                0.564
+                1.152, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadDiamondWhite": {
             "bBoxNE": [
-                1.124, 
-                0.568
+                1.0, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadDiamondWhiteWide": {
             "bBoxNE": [
-                1.572, 
-                0.568
+                1.4, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadDiamondWhole": {
             "bBoxNE": [
-                1.3, 
-                0.6
+                1.08, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.608
+                -0.5
             ]
         }, 
         "noteheadDiamondWholeOld": {
             "bBoxNE": [
-                1.348, 
-                0.576
+                1.172, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.568
+                -0.5
             ]
         }, 
         "noteheadDoubleWhole": {
             "bBoxNE": [
-                2.62, 
-                0.668
+                2.396, 
+                0.62
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.684
+                -0.62
             ]
         }, 
         "noteheadDoubleWholeAlt": {
@@ -18683,6 +18923,16 @@
                 -0.676
             ]
         }, 
+        "noteheadDoubleWholeOversized": {
+            "bBoxNE": [
+                2.62, 
+                0.668
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.684
+            ]
+        }, 
         "noteheadDoubleWholeParens": {
             "bBoxNE": [
                 3.644, 
@@ -18705,6 +18955,16 @@
         }, 
         "noteheadDoubleWholeSquare": {
             "bBoxNE": [
+                1.664, 
+                0.792
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.76
+            ]
+        }, 
+        "noteheadDoubleWholeSquareOversized": {
+            "bBoxNE": [
                 2.132, 
                 1.0
             ], 
@@ -18715,26 +18975,36 @@
         }, 
         "noteheadDoubleWholeWithX": {
             "bBoxNE": [
-                2.64, 
-                0.68
+                2.388, 
+                0.616
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.68
+                -0.616
             ]
         }, 
         "noteheadHalf": {
             "bBoxNE": [
-                1.364, 
-                0.58
+                1.18, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.58
+                -0.5
             ]
         }, 
         "noteheadHalfFilled": {
             "bBoxNE": [
+                1.18, 
+                0.5
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.5
+            ]
+        }, 
+        "noteheadHalfOversized": {
+            "bBoxNE": [
                 1.364, 
                 0.58
             ], 
@@ -18765,32 +19035,32 @@
         }, 
         "noteheadHalfWithX": {
             "bBoxNE": [
-                1.376, 
-                0.58
+                1.176, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.588
+                -0.5
             ]
         }, 
         "noteheadHeavyX": {
             "bBoxNE": [
-                1.736, 
-                0.564
+                1.54, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.564
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadHeavyXHat": {
             "bBoxNE": [
-                2.06, 
-                1.168
+                1.828, 
+                1.04
             ], 
             "bBoxSW": [
-                -0.324, 
-                -0.564
+                -0.292, 
+                -0.5
             ]
         }, 
         "noteheadLargeArrowDownBlack": {
@@ -18800,37 +19070,37 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadLargeArrowDownDoubleWhole": {
             "bBoxNE": [
-                2.164, 
-                1.0
+                2.204, 
+                1.12
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.58
+                0.0, 
+                -0.64
             ]
         }, 
         "noteheadLargeArrowDownHalf": {
             "bBoxNE": [
-                1.256, 
-                0.996
+                1.44, 
+                1.0
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.556
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadLargeArrowDownWhole": {
             "bBoxNE": [
-                1.408, 
+                1.44, 
                 1.0
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.548
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadLargeArrowUpBlack": {
@@ -18840,62 +19110,62 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadLargeArrowUpDoubleWhole": {
             "bBoxNE": [
-                2.164, 
-                1.0
+                2.204, 
+                1.14
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.58
+                0.0, 
+                -0.62
             ]
         }, 
         "noteheadLargeArrowUpHalf": {
             "bBoxNE": [
-                1.256, 
-                0.996
+                1.44, 
+                1.0
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.556
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadLargeArrowUpWhole": {
             "bBoxNE": [
-                1.408, 
+                1.44, 
                 1.0
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.548
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadMoonBlack": {
             "bBoxNE": [
-                1.416, 
-                0.564
+                1.26, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadMoonWhite": {
             "bBoxNE": [
-                1.416, 
-                0.564
+                1.26, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadParenthesis": {
             "bBoxNE": [
-                1.592, 
+                1.472, 
                 0.728
             ], 
             "bBoxSW": [
@@ -18925,17 +19195,17 @@
         }, 
         "noteheadPlusBlack": {
             "bBoxNE": [
-                1.124, 
-                0.564
+                0.996, 
+                0.5
             ], 
             "bBoxSW": [
                 -0.004, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadPlusDoubleWhole": {
             "bBoxNE": [
-                2.352, 
+                1.892, 
                 0.62
             ], 
             "bBoxSW": [
@@ -18945,22 +19215,22 @@
         }, 
         "noteheadPlusHalf": {
             "bBoxNE": [
-                1.188, 
-                0.576
+                1.044, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadPlusWhole": {
             "bBoxNE": [
-                1.416, 
-                0.62
+                1.14, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.62
+                -0.5
             ]
         }, 
         "noteheadRectangularClusterBlackBottom": {
@@ -19025,98 +19295,98 @@
         }, 
         "noteheadRoundBlack": {
             "bBoxNE": [
-                1.12, 
-                0.56
+                1.004, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadRoundBlackLarge": {
             "bBoxNE": [
-                2.12, 
-                1.124
+                2.0, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.996
+                -1.0
             ]
         }, 
         "noteheadRoundBlackSlashed": {
             "bBoxNE": [
-                2.628, 
-                2.068
+                2.34, 
+                1.84
             ], 
             "bBoxSW": [
-                -1.508, 
-                -2.068
+                -1.344, 
+                -1.84
             ]
         }, 
         "noteheadRoundBlackSlashedLarge": {
             "bBoxNE": [
-                3.244, 
-                2.068
+                3.064, 
+                1.956
             ], 
             "bBoxSW": [
-                -0.892, 
-                -2.068
+                -0.844, 
+                -1.956
             ]
         }, 
         "noteheadRoundWhite": {
             "bBoxNE": [
-                1.124, 
-                0.56
+                1.004, 
+                0.5
             ], 
             "bBoxSW": [
                 0.004, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadRoundWhiteLarge": {
             "bBoxNE": [
-                2.124, 
-                1.12
+                2.0, 
+                1.0
             ], 
             "bBoxSW": [
-                0.004, 
+                0.0, 
                 -1.0
             ]
         }, 
         "noteheadRoundWhiteSlashed": {
             "bBoxNE": [
-                2.632, 
-                2.068
+                2.34, 
+                1.84
             ], 
             "bBoxSW": [
-                -1.504, 
-                -2.068
+                -1.344, 
+                -1.84
             ]
         }, 
         "noteheadRoundWhiteSlashedLarge": {
             "bBoxNE": [
-                3.116, 
-                2.068
+                2.944, 
+                1.956
             ], 
             "bBoxSW": [
-                -1.02, 
-                -2.068
+                -0.964, 
+                -1.956
             ]
         }, 
         "noteheadRoundWhiteWithDot": {
             "bBoxNE": [
-                1.12, 
-                0.56
+                1.004, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadRoundWhiteWithDotLarge": {
             "bBoxNE": [
-                2.12, 
-                1.12
+                2.004, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
@@ -19126,7 +19396,7 @@
         "noteheadSlashDiamondWhite": {
             "bBoxNE": [
                 2.0, 
-                0.988
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
@@ -19225,326 +19495,336 @@
         }, 
         "noteheadSlashedBlack1": {
             "bBoxNE": [
-                1.684, 
-                0.74
+                1.5, 
+                0.668
             ], 
             "bBoxSW": [
-                -0.36, 
-                -0.752
+                -0.32, 
+                -0.66
             ]
         }, 
         "noteheadSlashedBlack2": {
             "bBoxNE": [
-                1.688, 
-                0.744
+                1.504, 
+                0.672
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.748
+                -0.316, 
+                -0.656
             ]
         }, 
         "noteheadSlashedDoubleWhole1": {
             "bBoxNE": [
-                2.62, 
-                0.744
+                2.384, 
+                0.672
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.784
+                -0.716
             ]
         }, 
         "noteheadSlashedDoubleWhole2": {
             "bBoxNE": [
-                2.62, 
-                0.744
+                2.384, 
+                0.676
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.784
+                -0.712
             ]
         }, 
         "noteheadSlashedHalf1": {
             "bBoxNE": [
-                1.8, 
-                0.7
+                1.544, 
+                0.64
             ], 
             "bBoxSW": [
-                -0.308, 
-                -0.708
+                -0.268, 
+                -0.568
             ]
         }, 
         "noteheadSlashedHalf2": {
             "bBoxNE": [
-                1.772, 
-                0.7
+                1.52, 
+                0.672
             ], 
             "bBoxSW": [
-                -0.336, 
-                -0.708
+                -0.292, 
+                -0.536
             ]
         }, 
         "noteheadSlashedWhole1": {
             "bBoxNE": [
-                2.012, 
-                0.684
+                1.732, 
+                0.592
             ], 
             "bBoxSW": [
-                -0.1, 
-                -0.736
+                -0.088, 
+                -0.628
             ]
         }, 
         "noteheadSlashedWhole2": {
             "bBoxNE": [
-                2.028, 
-                0.7
+                1.744, 
+                0.604
             ], 
             "bBoxSW": [
-                -0.084, 
-                -0.72
+                -0.072, 
+                -0.616
             ]
         }, 
         "noteheadSquareBlack": {
             "bBoxNE": [
-                1.416, 
-                0.564
+                1.252, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadSquareBlackLarge": {
             "bBoxNE": [
-                2.144, 
-                1.048
+                2.0, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.056
+                -1.0
             ]
         }, 
         "noteheadSquareBlackWhite": {
             "bBoxNE": [
-                2.144, 
-                1.056
+                2.0, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.048
+                -1.0
             ]
         }, 
         "noteheadSquareWhite": {
             "bBoxNE": [
-                1.416, 
-                0.56
+                1.252, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.568
+                -0.5
             ]
         }, 
         "noteheadTriangleDownBlack": {
             "bBoxNE": [
-                1.312, 
-                0.568
+                1.168, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadTriangleDownDoubleWhole": {
             "bBoxNE": [
-                2.152, 
-                0.608
+                1.932, 
+                0.62
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.58
+                0.0, 
+                -0.62
             ]
         }, 
         "noteheadTriangleDownHalf": {
             "bBoxNE": [
-                1.256, 
-                0.548
+                1.14, 
+                0.5
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.556
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadTriangleDownWhite": {
             "bBoxNE": [
-                1.316, 
-                0.564
+                1.172, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.568
+                -0.5
             ]
         }, 
         "noteheadTriangleDownWhole": {
             "bBoxNE": [
-                1.416, 
-                0.556
+                1.276, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.548
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadTriangleLeftBlack": {
             "bBoxNE": [
-                1.524, 
-                0.572
+                1.356, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadTriangleLeftWhite": {
             "bBoxNE": [
-                1.524, 
-                0.572
+                1.356, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadTriangleRightBlack": {
             "bBoxNE": [
-                1.524, 
-                0.572
+                1.356, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadTriangleRightWhite": {
             "bBoxNE": [
-                1.528, 
-                0.572
+                1.356, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.56
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadTriangleRoundDownBlack": {
             "bBoxNE": [
-                1.272, 
-                0.576
+                1.112, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.572
+                -0.5
             ]
         }, 
         "noteheadTriangleRoundDownWhite": {
             "bBoxNE": [
-                1.272, 
-                0.572
+                1.112, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.576
+                -0.5
             ]
         }, 
         "noteheadTriangleUpBlack": {
             "bBoxNE": [
-                1.312, 
-                0.572
+                1.172, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadTriangleUpDoubleWhole": {
             "bBoxNE": [
-                2.152, 
-                0.608
+                1.932, 
+                0.62
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.58
+                0.0, 
+                -0.62
             ]
         }, 
         "noteheadTriangleUpHalf": {
             "bBoxNE": [
-                1.256, 
-                0.548
+                1.14, 
+                0.5
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.556
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadTriangleUpRightBlack": {
             "bBoxNE": [
-                1.524, 
-                0.568
+                1.356, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadTriangleUpRightWhite": {
             "bBoxNE": [
-                1.524, 
-                0.568
+                1.356, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadTriangleUpWhite": {
             "bBoxNE": [
-                1.316, 
-                0.568
+                1.172, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadTriangleUpWhole": {
             "bBoxNE": [
-                1.416, 
-                0.556
+                1.276, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.548
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadVoidWithX": {
             "bBoxNE": [
-                1.484, 
-                0.644
+                1.156, 
+                0.5
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.644
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadWhole": {
             "bBoxNE": [
-                1.836, 
-                0.548
+                1.688, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.544
+                -0.5
             ]
         }, 
         "noteheadWholeFilled": {
             "bBoxNE": [
+                1.688, 
+                0.5
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.5
+            ]
+        }, 
+        "noteheadWholeOversized": {
+            "bBoxNE": [
                 1.836, 
                 0.548
             ], 
@@ -19575,42 +19855,42 @@
         }, 
         "noteheadWholeWithX": {
             "bBoxNE": [
-                1.848, 
-                0.544
+                1.68, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.556
+                -0.5
             ]
         }, 
         "noteheadXBlack": {
             "bBoxNE": [
-                1.32, 
-                0.56
+                1.16, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.576
+                -0.5
             ]
         }, 
         "noteheadXDoubleWhole": {
             "bBoxNE": [
-                2.468, 
-                0.604
+                2.184, 
+                0.62
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.596
+                -0.62
             ]
         }, 
         "noteheadXHalf": {
             "bBoxNE": [
-                1.516, 
-                0.564
+                1.336, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.564
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadXOrnate": {
@@ -19635,12 +19915,52 @@
         }, 
         "noteheadXWhole": {
             "bBoxNE": [
-                1.704, 
-                0.564
+                1.508, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
+            ]
+        }, 
+        "octaveBaselineA": {
+            "bBoxNE": [
+                0.968, 
+                0.908
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.04
+            ]
+        }, 
+        "octaveBaselineB": {
+            "bBoxNE": [
+                0.796, 
+                1.352
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.04
+            ]
+        }, 
+        "octaveBaselineM": {
+            "bBoxNE": [
+                1.524, 
+                0.928
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.02
+            ]
+        }, 
+        "octaveBaselineV": {
+            "bBoxNE": [
+                0.856, 
+                0.9
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.04
             ]
         }, 
         "octaveBassa": {
@@ -19666,7 +19986,7 @@
         "octaveParensLeft": {
             "bBoxNE": [
                 0.652, 
-                1.936
+                1.94
             ], 
             "bBoxSW": [
                 0.0, 
@@ -19676,13 +19996,53 @@
         "octaveParensRight": {
             "bBoxNE": [
                 0.548, 
-                1.936
+                1.94
             ], 
             "bBoxSW": [
                 -0.104, 
                 -0.068
             ]
         }, 
+        "octaveSuperscriptA": {
+            "bBoxNE": [
+                0.968, 
+                1.812
+            ], 
+            "bBoxSW": [
+                0.0, 
+                0.864
+            ]
+        }, 
+        "octaveSuperscriptB": {
+            "bBoxNE": [
+                0.796, 
+                2.244
+            ], 
+            "bBoxSW": [
+                0.0, 
+                0.852
+            ]
+        }, 
+        "octaveSuperscriptM": {
+            "bBoxNE": [
+                1.524, 
+                1.812
+            ], 
+            "bBoxSW": [
+                0.0, 
+                0.864
+            ]
+        }, 
+        "octaveSuperscriptV": {
+            "bBoxNE": [
+                0.856, 
+                1.804
+            ], 
+            "bBoxSW": [
+                0.0, 
+                0.864
+            ]
+        }, 
         "ornamentBottomLeftConcaveStroke": {
             "bBoxNE": [
                 1.528, 
@@ -20073,7 +20433,7 @@
                 0.0
             ]
         }, 
-        "ornamentPrecompCadenceUpperPrefix ": {
+        "ornamentPrecompCadenceUpperPrefix": {
             "bBoxNE": [
                 4.052, 
                 0.988
@@ -20093,7 +20453,7 @@
                 -0.248
             ]
         }, 
-        "ornamentPrecompCadenceWithTurn ": {
+        "ornamentPrecompCadenceWithTurn": {
             "bBoxNE": [
                 4.424, 
                 1.332
@@ -20123,7 +20483,7 @@
                 0.0
             ]
         }, 
-        "ornamentPrecompDoubleCadenceUpperPrefix ": {
+        "ornamentPrecompDoubleCadenceUpperPrefix": {
             "bBoxNE": [
                 5.112, 
                 0.988
@@ -20445,48 +20805,48 @@
         }, 
         "ornamentTrill": {
             "bBoxNE": [
-                2.156, 
-                1.532
+                2.084, 
+                1.56
             ], 
             "bBoxSW": [
-                0.008, 
-                -0.008
+                0.0, 
+                -0.04
             ]
         }, 
         "ornamentTrillFlatAbove": {
             "bBoxNE": [
-                2.156, 
+                2.084, 
                 3.252
             ], 
             "bBoxSW": [
-                0.008, 
-                -0.008
+                0.0, 
+                -0.04
             ]
         }, 
         "ornamentTrillNaturalAbove": {
             "bBoxNE": [
-                2.156, 
+                2.084, 
                 3.384
             ], 
             "bBoxSW": [
-                0.008, 
-                -0.008
+                0.0, 
+                -0.04
             ]
         }, 
         "ornamentTrillSharpAbove": {
             "bBoxNE": [
-                2.156, 
+                2.084, 
                 3.524
             ], 
             "bBoxSW": [
-                0.008, 
-                -0.008
+                0.0, 
+                -0.04
             ]
         }, 
         "ornamentTurn": {
             "bBoxNE": [
-                1.828, 
-                0.86
+                1.84, 
+                0.872
             ], 
             "bBoxSW": [
                 0.0, 
@@ -20495,7 +20855,7 @@
         }, 
         "ornamentTurnFlatAbove": {
             "bBoxNE": [
-                1.828, 
+                1.84, 
                 2.692
             ], 
             "bBoxSW": [
@@ -20505,7 +20865,7 @@
         }, 
         "ornamentTurnFlatAboveSharpBelow": {
             "bBoxNE": [
-                1.828, 
+                1.84, 
                 2.692
             ], 
             "bBoxSW": [
@@ -20515,8 +20875,8 @@
         }, 
         "ornamentTurnFlatBelow": {
             "bBoxNE": [
-                1.828, 
-                0.86
+                1.84, 
+                0.872
             ], 
             "bBoxSW": [
                 0.0, 
@@ -20526,16 +20886,16 @@
         "ornamentTurnInverted": {
             "bBoxNE": [
                 1.828, 
-                0.86
+                0.872
             ], 
             "bBoxSW": [
-                0.0, 
+                -0.012, 
                 0.0
             ]
         }, 
         "ornamentTurnNaturalAbove": {
             "bBoxNE": [
-                1.828, 
+                1.84, 
                 2.824
             ], 
             "bBoxSW": [
@@ -20545,8 +20905,8 @@
         }, 
         "ornamentTurnNaturalBelow": {
             "bBoxNE": [
-                1.828, 
-                0.86
+                1.84, 
+                0.872
             ], 
             "bBoxSW": [
                 0.0, 
@@ -20555,7 +20915,7 @@
         }, 
         "ornamentTurnSharpAbove": {
             "bBoxNE": [
-                1.828, 
+                1.84, 
                 2.808
             ], 
             "bBoxSW": [
@@ -20565,7 +20925,7 @@
         }, 
         "ornamentTurnSharpAboveFlatBelow": {
             "bBoxNE": [
-                1.828, 
+                1.84, 
                 2.808
             ], 
             "bBoxSW": [
@@ -20575,8 +20935,8 @@
         }, 
         "ornamentTurnSharpBelow": {
             "bBoxNE": [
-                1.828, 
-                0.86
+                1.84, 
+                0.872
             ], 
             "bBoxSW": [
                 0.0, 
@@ -20585,7 +20945,7 @@
         }, 
         "ornamentTurnSlash": {
             "bBoxNE": [
-                1.832, 
+                1.84, 
                 1.224
             ], 
             "bBoxSW": [
@@ -20595,8 +20955,8 @@
         }, 
         "ornamentTurnUp": {
             "bBoxNE": [
-                0.86, 
-                1.828
+                0.872, 
+                1.84
             ], 
             "bBoxSW": [
                 0.0, 
@@ -20606,10 +20966,10 @@
         "ornamentTurnUpS": {
             "bBoxNE": [
                 0.86, 
-                1.828
+                1.84
             ], 
             "bBoxSW": [
-                0.0, 
+                -0.012, 
                 0.0
             ]
         }, 
@@ -23125,12 +23485,12 @@
         }, 
         "pictStickShot": {
             "bBoxNE": [
-                1.764, 
-                1.804
+                1.8, 
+                1.8
             ], 
             "bBoxSW": [
                 0.0, 
-                0.008
+                0.0
             ]
         }, 
         "pictSuperball": {
@@ -23735,12 +24095,12 @@
         }, 
         "pluckedDampOnStem": {
             "bBoxNE": [
-                1.464, 
-                1.216
+                0.864, 
+                0.608
             ], 
             "bBoxSW": [
-                -0.256, 
-                0.0
+                -0.856, 
+                -0.608
             ]
         }, 
         "pluckedFingernailFlick": {
@@ -24153,6 +24513,16 @@
                 -1.004
             ]
         }, 
+        "restQuarterZ": {
+            "bBoxNE": [
+                1.0, 
+                0.856
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.856
+            ]
+        }, 
         "restWhole": {
             "bBoxNE": [
                 1.128, 
@@ -24213,6 +24583,46 @@
                 0.5
             ]
         }, 
+        "schaefferClef": {
+            "bBoxNE": [
+                1.236, 
+                1.0
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.996
+            ]
+        }, 
+        "schaefferFClefToGClef": {
+            "bBoxNE": [
+                2.464, 
+                3.0
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.996
+            ]
+        }, 
+        "schaefferGClefToFClef": {
+            "bBoxNE": [
+                2.472, 
+                1.0
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -2.996
+            ]
+        }, 
+        "schaefferPreviousClef": {
+            "bBoxNE": [
+                1.236, 
+                1.0
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.996
+            ]
+        }, 
         "segno": {
             "bBoxNE": [
                 2.2, 
@@ -24796,7 +25206,7 @@
         "stringsChangeBowDirection": {
             "bBoxNE": [
                 3.784, 
-                1.704
+                1.708
             ], 
             "bBoxSW": [
                 0.0, 
@@ -25265,11 +25675,11 @@
         }, 
         "timeSig0Large": {
             "bBoxNE": [
-                1.868, 
+                1.936, 
                 2.024
             ], 
             "bBoxSW": [
-                0.012, 
+                0.08, 
                 -2.1
             ]
         }, 
@@ -25325,11 +25735,11 @@
         }, 
         "timeSig1Large": {
             "bBoxNE": [
-                0.988, 
+                1.06, 
                 2.0
             ], 
             "bBoxSW": [
-                0.0, 
+                0.072, 
                 -2.0
             ]
         }, 
@@ -25375,11 +25785,11 @@
         }, 
         "timeSig2Large": {
             "bBoxNE": [
-                1.908, 
+                2.052, 
                 2.0
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.14, 
                 -2.0
             ]
         }, 
@@ -25445,11 +25855,11 @@
         }, 
         "timeSig3Large": {
             "bBoxNE": [
-                1.9, 
+                1.976, 
                 1.976
             ], 
             "bBoxSW": [
-                0.0, 
+                0.076, 
                 -2.084
             ]
         }, 
@@ -25525,11 +25935,11 @@
         }, 
         "timeSig4Large": {
             "bBoxNE": [
-                1.968, 
+                2.048, 
                 2.0
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -2.0
             ]
         }, 
@@ -25585,11 +25995,11 @@
         }, 
         "timeSig5Large": {
             "bBoxNE": [
-                1.912, 
+                1.992, 
                 1.976
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -2.084
             ]
         }, 
@@ -25655,11 +26065,11 @@
         }, 
         "timeSig6Large": {
             "bBoxNE": [
-                1.892, 
+                1.96, 
                 1.976
             ], 
             "bBoxSW": [
-                0.0, 
+                0.068, 
                 -2.084
             ]
         }, 
@@ -25725,11 +26135,11 @@
         }, 
         "timeSig7Large": {
             "bBoxNE": [
-                1.9, 
+                1.976, 
                 2.0
             ], 
             "bBoxSW": [
-                0.0, 
+                0.076, 
                 -2.0
             ]
         }, 
@@ -25785,11 +26195,11 @@
         }, 
         "timeSig8Large": {
             "bBoxNE": [
-                1.908, 
+                1.984, 
                 1.976
             ], 
             "bBoxSW": [
-                0.0, 
+                0.076, 
                 -2.084
             ]
         }, 
@@ -25835,11 +26245,11 @@
         }, 
         "timeSig9Large": {
             "bBoxNE": [
-                1.88, 
+                1.964, 
                 2.04
             ], 
             "bBoxSW": [
-                0.0, 
+                0.084, 
                 -2.084
             ]
         }, 
@@ -26140,7 +26550,7 @@
             ], 
             "bBoxSW": [
                 -0.004, 
-                -0.532
+                -0.528
             ]
         }, 
         "timeSigSlash": {
@@ -26355,101 +26765,101 @@
         }, 
         "tuplet1": {
             "bBoxNE": [
-                0.984, 
+                1.024, 
                 1.488
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 0.0
             ]
         }, 
         "tuplet2": {
             "bBoxNE": [
-                1.276, 
+                1.316, 
                 1.5
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 -0.024
             ]
         }, 
         "tuplet3": {
             "bBoxNE": [
-                1.184, 
+                1.224, 
                 1.5
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 -0.032
             ]
         }, 
         "tuplet4": {
             "bBoxNE": [
-                1.212, 
+                1.252, 
                 1.488
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 0.0
             ]
         }, 
         "tuplet5": {
             "bBoxNE": [
-                1.268, 
+                1.308, 
                 1.492
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 -0.032
             ]
         }, 
         "tuplet6": {
             "bBoxNE": [
-                1.216, 
+                1.256, 
                 1.5
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 -0.032
             ]
         }, 
         "tuplet7": {
             "bBoxNE": [
-                1.212, 
+                1.332, 
                 1.488
             ], 
             "bBoxSW": [
-                0.0, 
+                0.12, 
                 -0.016
             ]
         }, 
         "tuplet8": {
             "bBoxNE": [
-                1.252, 
+                1.292, 
                 1.5
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 -0.032
             ]
         }, 
         "tuplet9": {
             "bBoxNE": [
-                1.216, 
+                1.256, 
                 1.5
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 -0.032
             ]
         }, 
         "tupletColon": {
             "bBoxNE": [
-                0.444, 
+                0.484, 
                 1.072
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 0.232
             ]
         }, 
@@ -27386,7 +27796,7 @@
         "wiggleVibratoStart": {
             "bBoxNE": [
                 1.96, 
-                1.268
+                1.272
             ], 
             "bBoxSW": [
                 0.0, 
@@ -28096,7 +28506,7 @@
                 }, 
                 {
                     "codepoint": "U+F499", 
-                    "name": "flag102thUpSmall"
+                    "name": "flag1024thUpSmall"
                 }
             ]
         }, 
@@ -28469,6 +28879,10 @@
                 {
                     "codepoint": "U+F46A", 
                     "name": "noteheadBlackSmall"
+                }, 
+                {
+                    "codepoint": "U+F4BE", 
+                    "name": "noteheadBlackOversized"
                 }
             ]
         }, 
@@ -28481,6 +28895,18 @@
                 {
                     "codepoint": "U+F467", 
                     "name": "noteheadDoubleWholeSmall"
+                }, 
+                {
+                    "codepoint": "U+F4BA", 
+                    "name": "noteheadDoubleWholeOversized"
+                }
+            ]
+        }, 
+        "noteheadDoubleWholeSquare": {
+            "alternates": [
+                {
+                    "codepoint": "U+F4BB", 
+                    "name": "noteheadDoubleWholeSquareOversized"
                 }
             ]
         }, 
@@ -28489,6 +28915,10 @@
                 {
                     "codepoint": "U+F469", 
                     "name": "noteheadHalfSmall"
+                }, 
+                {
+                    "codepoint": "U+F4BD", 
+                    "name": "noteheadHalfOversized"
                 }
             ]
         }, 
@@ -28497,6 +28927,10 @@
                 {
                     "codepoint": "U+F468", 
                     "name": "noteheadWholeSmall"
+                }, 
+                {
+                    "codepoint": "U+F4BC", 
+                    "name": "noteheadWholeOversized"
                 }
             ]
         }, 
@@ -30921,16 +31355,16 @@
                 4.256
             ]
         }, 
-        "flag1024thUpStraight": {
+        "flag1024thUpSmall": {
             "stemUpNW": [
                 0.0, 
-                4.644
+                4.252
             ]
         }, 
-        "flag102thUpSmall": {
+        "flag1024thUpStraight": {
             "stemUpNW": [
                 0.0, 
-                4.252
+                4.644
             ]
         }, 
         "flag128thDown": {
@@ -31853,7 +32287,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.54, 
+                1.308, 
                 0.0
             ]
         }, 
@@ -31863,7 +32297,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.544, 
+                1.312, 
                 0.0
             ]
         }, 
@@ -31873,7 +32307,7 @@
                 0.068
             ], 
             "stemUpSE": [
-                1.596, 
+                1.516, 
                 0.068
             ]
         }, 
@@ -31883,128 +32317,128 @@
                 0.072
             ], 
             "stemUpSE": [
-                1.596, 
-                0.072
+                1.516, 
+                0.068
             ]
         }, 
         "noteShapeRoundBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.188
+                -0.168
             ], 
             "stemUpSE": [
-                1.328, 
-                0.188
+                1.18, 
+                0.168
             ]
         }, 
         "noteShapeRoundWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.196
+                -0.168
             ], 
             "stemUpSE": [
-                1.364, 
-                0.192
+                1.18, 
+                0.168
             ]
         }, 
         "noteShapeSquareBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.616, 
-                0.56
+                1.44, 
+                0.5
             ]
         }, 
         "noteShapeSquareWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.616, 
-                0.56
+                1.44, 
+                0.5
             ]
         }, 
         "noteShapeTriangleLeftBlack": {
             "stemDownNW": [
                 0.0, 
-                0.56
+                0.5
             ], 
             "stemUpSE": [
-                1.62, 
-                0.56
+                1.44, 
+                0.5
             ]
         }, 
         "noteShapeTriangleLeftWhite": {
             "stemDownNW": [
                 0.0, 
-                0.556
+                0.5
             ], 
             "stemUpSE": [
-                1.624, 
-                0.552
+                1.44, 
+                0.5
             ]
         }, 
         "noteShapeTriangleRightBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.62, 
-                -0.56
+                1.44, 
+                -0.5
             ]
         }, 
         "noteShapeTriangleRightWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.564
+                -0.5
             ], 
             "stemUpSE": [
-                1.62, 
-                -0.564
+                1.44, 
+                -0.5
             ]
         }, 
         "noteShapeTriangleRoundBlack": {
             "stemDownNW": [
                 0.0, 
-                0.192
+                0.172
             ], 
             "stemUpSE": [
-                1.584, 
-                0.192
+                1.424, 
+                0.172
             ]
         }, 
         "noteShapeTriangleRoundWhite": {
             "stemDownNW": [
-                0.004, 
-                0.184
+                0.0, 
+                0.172
             ], 
             "stemUpSE": [
-                1.588, 
-                0.184
+                1.424, 
+                0.172
             ]
         }, 
         "noteShapeTriangleUpBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.568
+                -0.5
             ], 
             "stemUpSE": [
-                1.62, 
-                -0.568
+                1.424, 
+                -0.5
             ]
         }, 
         "noteShapeTriangleUpWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.568
+                -0.5
             ], 
             "stemUpSE": [
-                1.62, 
-                -0.568
+                1.424, 
+                -0.5
             ]
         }, 
         "noteSiBlack": {
@@ -32069,6 +32503,32 @@
         }, 
         "noteheadBlack": {
             "splitStemDownNE": [
+                0.968, 
+                -0.248
+            ], 
+            "splitStemDownNW": [
+                0.12, 
+                -0.416
+            ], 
+            "splitStemUpSE": [
+                1.092, 
+                0.392
+            ], 
+            "splitStemUpSW": [
+                0.312, 
+                0.356
+            ], 
+            "stemDownNW": [
+                0.0, 
+                -0.168
+            ], 
+            "stemUpSE": [
+                1.18, 
+                0.168
+            ]
+        }, 
+        "noteheadBlackOversized": {
+            "splitStemDownNE": [
                 1.056, 
                 -0.312
             ], 
@@ -32109,7 +32569,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.128, 
+                1.0, 
                 0.0
             ]
         }, 
@@ -32119,13 +32579,13 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.128, 
+                0.996, 
                 0.0
             ]
         }, 
         "noteheadCircleXDoubleWhole": {
             "noteheadOrigin": [
-                0.392, 
+                0.352, 
                 0.0
             ]
         }, 
@@ -32135,18 +32595,18 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.144, 
+                1.0, 
                 0.0
             ]
         }, 
         "noteheadCircledBlack": {
             "stemDownNW": [
-                0.088, 
-                -0.176
+                0.084, 
+                -0.164
             ], 
             "stemUpSE": [
-                1.416, 
-                0.2
+                1.264, 
+                0.168
             ]
         }, 
         "noteheadCircledBlackLarge": {
@@ -32155,13 +32615,13 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.868, 
+                1.66, 
                 0.0
             ]
         }, 
         "noteheadCircledDoubleWhole": {
             "noteheadOrigin": [
-                0.388, 
+                0.356, 
                 0.0
             ]
         }, 
@@ -32171,18 +32631,18 @@
                 0.0
             ], 
             "stemUpSE": [
-                2.488, 
-                0.0
+                2.216, 
+                -0.004
             ]
         }, 
         "noteheadCircledHalf": {
             "stemDownNW": [
-                0.084, 
-                -0.176
+                0.072, 
+                -0.144
             ], 
             "stemUpSE": [
-                1.448, 
-                0.172
+                1.244, 
+                0.156
             ]
         }, 
         "noteheadCircledHalfLarge": {
@@ -32191,7 +32651,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.864, 
+                1.612, 
                 0.0
             ]
         }, 
@@ -32201,8 +32661,8 @@
                 -0.004
             ], 
             "stemUpSE": [
-                2.488, 
-                0.0
+                2.164, 
+                -0.004
             ]
         }, 
         "noteheadCircledXLarge": {
@@ -32211,30 +32671,30 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.864, 
+                1.828, 
                 0.0
             ]
         }, 
         "noteheadClusterDoubleWhole2nd": {
             "noteheadOrigin": [
-                0.392, 
+                0.36, 
                 0.0
             ]
         }, 
         "noteheadClusterDoubleWhole3rd": {
             "noteheadOrigin": [
-                0.4, 
+                0.364, 
                 0.0
             ]
         }, 
         "noteheadClusterHalf2nd": {
             "stemDownNW": [
                 0.0, 
-                -0.18
+                -0.16
             ], 
             "stemUpSE": [
-                1.38, 
-                0.716
+                1.24, 
+                0.652
             ]
         }, 
         "noteheadClusterHalf3rd": {
@@ -32243,20 +32703,20 @@
                 -0.164
             ], 
             "stemUpSE": [
-                1.372, 
-                1.232
+                1.264, 
+                1.144
             ]
         }, 
         "noteheadClusterHalfBottom": {
             "stemDownNW": [
                 0.0, 
-                -0.208
+                -0.164
             ]
         }, 
         "noteheadClusterHalfTop": {
             "stemUpSE": [
-                1.376, 
-                0.18
+                1.196, 
+                0.16
             ]
         }, 
         "noteheadClusterQuarter2nd": {
@@ -32265,8 +32725,8 @@
                 0.06
             ], 
             "stemUpSE": [
-                1.424, 
-                0.464
+                1.308, 
+                0.448
             ]
         }, 
         "noteheadClusterQuarter3rd": {
@@ -32275,8 +32735,8 @@
                 0.26
             ], 
             "stemUpSE": [
-                1.552, 
-                0.78
+                1.44, 
+                0.744
             ]
         }, 
         "noteheadClusterQuarterBottom": {
@@ -32287,8 +32747,8 @@
         }, 
         "noteheadClusterQuarterTop": {
             "stemUpSE": [
-                1.34, 
-                0.18
+                1.18, 
+                0.168
             ]
         }, 
         "noteheadClusterRoundBlack": {
@@ -32298,17 +32758,17 @@
             ], 
             "stemUpSE": [
                 1.328, 
-                2.748
+                2.624
             ]
         }, 
         "noteheadClusterRoundWhite": {
             "stemDownNW": [
-                0.008, 
-                0.304
+                0.0, 
+                0.5
             ], 
             "stemUpSE": [
                 1.496, 
-                2.676
+                2.552
             ]
         }, 
         "noteheadClusterSquareBlack": {
@@ -32318,7 +32778,7 @@
             ], 
             "stemUpSE": [
                 1.328, 
-                3.112
+                3.0
             ]
         }, 
         "noteheadClusterSquareWhite": {
@@ -32328,17 +32788,17 @@
             ], 
             "stemUpSE": [
                 1.328, 
-                3.112
+                3.0
             ]
         }, 
         "noteheadDiamondBlack": {
             "stemDownNW": [
                 0.0, 
-                0.004
+                0.0
             ], 
             "stemUpSE": [
-                1.124, 
-                0.004
+                1.0, 
+                0.0
             ]
         }, 
         "noteheadDiamondBlackOld": {
@@ -32347,8 +32807,8 @@
                 -0.008
             ], 
             "stemUpSE": [
-                1.316, 
-                -0.02
+                1.16, 
+                -0.012
             ]
         }, 
         "noteheadDiamondBlackWide": {
@@ -32357,34 +32817,34 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.572, 
-                0.004
+                1.4, 
+                0.0
             ]
         }, 
         "noteheadDiamondClusterBlack2nd": {
             "stemDownNW": [
                 0.0, 
-                0.576
+                0.516
             ], 
             "stemUpSE": [
-                1.18, 
-                1.092
+                1.068, 
+                0.984
             ]
         }, 
         "noteheadDiamondClusterBlack3rd": {
             "stemDownNW": [
                 0.0, 
-                0.54
+                0.528
             ], 
             "stemUpSE": [
-                1.18, 
-                1.556
+                1.096, 
+                1.472
             ]
         }, 
         "noteheadDiamondClusterBlackBottom": {
             "stemDownNW": [
                 0.0, 
-                0.216
+                0.08
             ]
         }, 
         "noteheadDiamondClusterBlackTop": {
@@ -32396,44 +32856,44 @@
         "noteheadDiamondClusterWhite2nd": {
             "stemDownNW": [
                 0.0, 
-                0.576
+                0.524
             ], 
             "stemUpSE": [
-                1.18, 
-                1.092
+                1.06, 
+                0.98
             ]
         }, 
         "noteheadDiamondClusterWhite3rd": {
             "stemDownNW": [
                 0.0, 
-                0.544
+                0.532
             ], 
             "stemUpSE": [
-                1.18, 
-                1.56
+                1.092, 
+                1.468
             ]
         }, 
         "noteheadDiamondClusterWhiteBottom": {
             "stemDownNW": [
                 0.0, 
-                0.208
+                0.06
             ]
         }, 
         "noteheadDiamondClusterWhiteTop": {
             "stemUpSE": [
-                1.38, 
-                -0.212
+                1.168, 
+                -0.064
             ]
         }, 
         "noteheadDiamondDoubleWhole": {
             "noteheadOrigin": [
-                0.392, 
+                0.324, 
                 0.0
             ]
         }, 
         "noteheadDiamondDoubleWholeOld": {
             "noteheadOrigin": [
-                0.396, 
+                0.388, 
                 0.0
             ]
         }, 
@@ -32443,17 +32903,17 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.136, 
+                1.004, 
                 0.0
             ]
         }, 
         "noteheadDiamondHalfFilled": {
             "stemDownNW": [
-                -0.004, 
+                0.0, 
                 -0.004
             ], 
             "stemUpSE": [
-                1.308, 
+                1.156, 
                 -0.016
             ]
         }, 
@@ -32463,8 +32923,8 @@
                 -0.008
             ], 
             "stemUpSE": [
-                1.324, 
-                -0.016
+                1.164, 
+                -0.012
             ]
         }, 
         "noteheadDiamondHalfWide": {
@@ -32473,7 +32933,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.576, 
+                1.404, 
                 0.0
             ]
         }, 
@@ -32483,18 +32943,18 @@
                 0.028
             ], 
             "stemUpSE": [
-                1.296, 
-                -0.024
+                1.152, 
+                -0.02
             ]
         }, 
         "noteheadDiamondWhite": {
             "stemDownNW": [
                 0.0, 
-                0.004
+                0.0
             ], 
             "stemUpSE": [
-                1.124, 
-                0.004
+                1.0, 
+                0.0
             ]
         }, 
         "noteheadDiamondWhiteWide": {
@@ -32503,24 +32963,56 @@
                 0.004
             ], 
             "stemUpSE": [
-                1.572, 
-                0.004
+                1.4, 
+                0.0
             ]
         }, 
         "noteheadDoubleWhole": {
             "noteheadOrigin": [
+                0.36, 
+                0.0
+            ]
+        }, 
+        "noteheadDoubleWholeOversized": {
+            "noteheadOrigin": [
                 0.392, 
                 0.0
             ]
         }, 
         "noteheadDoubleWholeWithX": {
             "noteheadOrigin": [
-                0.392, 
+                0.356, 
                 0.0
             ]
         }, 
         "noteheadHalf": {
             "splitStemDownNE": [
+                0.956, 
+                -0.3
+            ], 
+            "splitStemDownNW": [
+                0.128, 
+                -0.428
+            ], 
+            "splitStemUpSE": [
+                1.108, 
+                0.372
+            ], 
+            "splitStemUpSW": [
+                0.328, 
+                0.38
+            ], 
+            "stemDownNW": [
+                0.0, 
+                -0.168
+            ], 
+            "stemUpSE": [
+                1.18, 
+                0.168
+            ]
+        }, 
+        "noteheadHalfOversized": {
+            "splitStemDownNE": [
                 1.056, 
                 -0.388
             ], 
@@ -32558,31 +33050,31 @@
         "noteheadHalfWithX": {
             "stemDownNW": [
                 0.0, 
-                -0.2
+                -0.168
             ], 
             "stemUpSE": [
-                1.376, 
-                0.188
+                1.176, 
+                0.164
             ]
         }, 
         "noteheadHeavyX": {
             "stemDownNW": [
                 0.0, 
-                -0.5
+                -0.436
             ], 
             "stemUpSE": [
-                1.736, 
-                0.496
+                1.54, 
+                0.44
             ]
         }, 
         "noteheadHeavyXHat": {
             "stemDownNW": [
                 0.0, 
-                -0.5
+                -0.436
             ], 
             "stemUpSE": [
-                1.744, 
-                0.52
+                1.54, 
+                0.456
             ]
         }, 
         "noteheadLargeArrowDownBlack": {
@@ -32607,18 +33099,18 @@
                 0.948
             ], 
             "stemUpSE": [
-                1.256, 
-                0.948
+                1.44, 
+                0.944
             ]
         }, 
         "noteheadLargeArrowUpBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
                 1.328, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadLargeArrowUpDoubleWhole": {
@@ -32629,12 +33121,12 @@
         }, 
         "noteheadLargeArrowUpHalf": {
             "stemDownNW": [
-                -0.004, 
-                -0.496
+                0.0, 
+                -0.444
             ], 
             "stemUpSE": [
-                1.256, 
-                -0.496
+                1.44, 
+                -0.444
             ]
         }, 
         "noteheadMoonBlack": {
@@ -32643,7 +33135,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.416, 
+                1.26, 
                 0.0
             ]
         }, 
@@ -32653,7 +33145,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.416, 
+                1.26, 
                 0.0
             ]
         }, 
@@ -32663,13 +33155,13 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.124, 
+                0.996, 
                 0.0
             ]
         }, 
         "noteheadPlusDoubleWhole": {
             "noteheadOrigin": [
-                0.392, 
+                0.372, 
                 0.0
             ]
         }, 
@@ -32689,7 +33181,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.12, 
+                1.004, 
                 0.0
             ]
         }, 
@@ -32699,8 +33191,8 @@
                 0.0
             ], 
             "stemUpSE": [
-                2.12, 
-                0.064
+                2.0, 
+                0.0
             ]
         }, 
         "noteheadRoundBlackSlashed": {
@@ -32709,7 +33201,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.12, 
+                0.996, 
                 0.0
             ]
         }, 
@@ -32719,7 +33211,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                2.12, 
+                2.004, 
                 0.0
             ]
         }, 
@@ -32728,28 +33220,28 @@
                 0.004, 
                 0.0
             ], 
-            "stemup": [
-                1.124, 
+            "stemUpSE": [
+                1.004, 
                 0.0
             ]
         }, 
         "noteheadRoundWhiteLarge": {
             "stemDownNW": [
-                0.004, 
-                0.06
+                0.0, 
+                0.0
             ], 
             "stemUpSE": [
-                2.124, 
-                0.06
+                2.0, 
+                0.0
             ]
         }, 
         "noteheadRoundWhiteSlashed": {
             "stemDownNW": [
-                0.004, 
+                0.0, 
                 0.0
             ], 
             "stemUpSE": [
-                1.124, 
+                0.996, 
                 0.0
             ]
         }, 
@@ -32759,7 +33251,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                2.12, 
+                2.004, 
                 0.0
             ]
         }, 
@@ -32769,18 +33261,18 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.12, 
+                1.004, 
                 0.0
             ]
         }, 
         "noteheadRoundWhiteWithDotLarge": {
             "stemDownNW": [
                 0.0, 
-                0.06
+                0.0
             ], 
             "stemUpSE": [
-                2.12, 
-                0.06
+                2.004, 
+                0.0
             ]
         }, 
         "noteheadSlashDiamondWhite": {
@@ -32876,63 +33368,63 @@
         "noteheadSlashedBlack1": {
             "stemDownNW": [
                 0.0, 
-                -0.2
+                -0.172
             ], 
             "stemUpSE": [
-                1.328, 
-                0.176
+                1.18, 
+                0.164
             ]
         }, 
         "noteheadSlashedBlack2": {
             "stemDownNW": [
                 0.0, 
-                -0.2
+                -0.172
             ], 
             "stemUpSE": [
-                1.328, 
-                0.176
+                1.18, 
+                0.164
             ]
         }, 
         "noteheadSlashedDoubleWhole1": {
             "noteheadOrigin": [
-                0.392, 
+                0.356, 
                 0.0
             ]
         }, 
         "noteheadSlashedDoubleWhole2": {
             "noteheadOrigin": [
-                0.392, 
+                0.356, 
                 0.0
             ]
         }, 
         "noteheadSlashedHalf1": {
             "stemDownNW": [
-                0.004, 
-                -0.24
+                0.0, 
+                -0.168
             ], 
             "stemUpSE": [
-                1.364, 
-                0.144
+                1.168, 
+                0.164
             ]
         }, 
         "noteheadSlashedHalf2": {
             "stemDownNW": [
-                0.004, 
-                -0.276
+                0.0, 
+                -0.164
             ], 
             "stemUpSE": [
-                1.368, 
-                0.112
+                1.172, 
+                0.168
             ]
         }, 
         "noteheadSquareBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.564
+                -0.5
             ], 
             "stemUpSE": [
-                1.416, 
-                0.564
+                1.252, 
+                0.5
             ]
         }, 
         "noteheadSquareBlackLarge": {
@@ -32941,38 +33433,38 @@
                 0.0
             ], 
             "stemUpSE": [
-                2.148, 
+                2.0, 
                 0.0
             ]
         }, 
         "noteheadSquareBlackWhite": {
             "stemDownNW": [
                 0.0, 
-                -1.048
+                -1.0
             ], 
             "stemUpSE": [
-                2.144, 
-                1.056
+                2.0, 
+                1.0
             ]
         }, 
         "noteheadSquareWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.568
+                -0.5
             ], 
             "stemUpSE": [
-                1.416, 
-                0.56
+                1.252, 
+                0.5
             ]
         }, 
         "noteheadTriangleDownBlack": {
             "stemDownNW": [
                 0.0, 
-                0.568
+                0.5
             ], 
             "stemUpSE": [
-                1.312, 
-                0.568
+                1.168, 
+                0.5
             ]
         }, 
         "noteheadTriangleDownDoubleWhole": {
@@ -32984,173 +33476,173 @@
         "noteheadTriangleDownHalf": {
             "stemDownNW": [
                 0.0, 
-                0.5
+                0.464
             ], 
             "stemUpSE": [
-                1.26, 
-                0.5
+                1.14, 
+                0.464
             ]
         }, 
         "noteheadTriangleDownWhite": {
             "stemDownNW": [
                 0.0, 
-                0.564
+                0.5
             ], 
             "stemUpSE": [
-                1.316, 
-                0.564
+                1.172, 
+                0.5
             ]
         }, 
         "noteheadTriangleLeftBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.524, 
-                -0.56
+                1.356, 
+                -0.5
             ]
         }, 
         "noteheadTriangleLeftWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.524, 
-                -0.56
+                1.356, 
+                -0.5
             ]
         }, 
         "noteheadTriangleRightBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.524, 
-                0.572
+                1.356, 
+                0.5
             ]
         }, 
         "noteheadTriangleRightWhite": {
             "stemDownNW": [
-                0.004, 
-                -0.56
+                0.0, 
+                -0.5
             ], 
             "stemUpSE": [
-                1.528, 
-                0.572
+                1.356, 
+                0.5
             ]
         }, 
         "noteheadTriangleRoundDownBlack": {
             "stemDownNW": [
                 0.0, 
-                0.36
+                0.312
             ], 
             "stemUpSE": [
-                1.272, 
-                0.36
+                1.112, 
+                0.312
             ]
         }, 
         "noteheadTriangleRoundDownWhite": {
             "stemDownNW": [
                 0.0, 
-                0.356
+                0.312
             ], 
             "stemUpSE": [
-                1.272, 
-                0.356
+                1.112, 
+                0.312
             ]
         }, 
         "noteheadTriangleUpBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.312, 
-                -0.56
+                1.172, 
+                -0.5
             ]
         }, 
         "noteheadTriangleUpDoubleWhole": {
             "noteheadOrigin": [
-                0.384, 
+                0.34, 
                 0.0
             ]
         }, 
         "noteheadTriangleUpHalf": {
             "stemDownNW": [
-                -0.004, 
-                -0.512
+                0.0, 
+                -0.46
             ], 
             "stemUpSE": [
-                1.256, 
-                -0.512
+                1.14, 
+                -0.46
             ]
         }, 
         "noteheadTriangleUpRightBlack": {
             "stemDownNW": [
                 0.0, 
-                0.568
+                0.5
             ], 
             "stemUpSE": [
-                1.524, 
-                0.568
+                1.356, 
+                0.5
             ]
         }, 
         "noteheadTriangleUpRightWhite": {
             "stemDownNW": [
                 0.0, 
-                0.568
+                0.5
             ], 
             "stemUpSE": [
-                1.524, 
-                0.568
+                1.356, 
+                0.5
             ]
         }, 
         "noteheadTriangleUpWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.564
+                -0.5
             ], 
             "stemUpSE": [
-                1.316, 
-                -0.564
+                1.172, 
+                -0.5
             ]
         }, 
         "noteheadVoidWithX": {
             "stemDownNW": [
-                -0.004, 
-                -0.192
+                0.0, 
+                -0.148
             ], 
             "stemUpSE": [
-                1.484, 
-                0.192
+                1.156, 
+                0.148
             ]
         }, 
         "noteheadXBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.516
+                -0.44
             ], 
             "stemUpSE": [
-                1.32, 
-                0.496
+                1.16, 
+                0.444
             ]
         }, 
         "noteheadXDoubleWhole": {
             "noteheadOrigin": [
-                0.392, 
+                0.348, 
                 0.0
             ]
         }, 
         "noteheadXHalf": {
             "stemDownNW": [
-                0.004, 
-                -0.464
+                0.0, 
+                -0.412
             ], 
             "stemUpSE": [
-                1.516, 
-                0.464
+                1.336, 
+                0.412
             ]
         }, 
         "noteheadXOrnate": {
@@ -33765,7 +34257,7 @@
 
     "ligatures": {
         "accidentalDoubleFlatParens": {
-            "codepoint": "U+F561", 
+            "codepoint": "U+F566", 
             "componentGlyphs": [
                 "accidentalParensLeft", 
                 "accidentalDoubleFlat", 
@@ -33773,7 +34265,7 @@
             ]
         }, 
         "accidentalDoubleSharpParens": {
-            "codepoint": "U+F560", 
+            "codepoint": "U+F565", 
             "componentGlyphs": [
                 "accidentalParensLeft", 
                 "accidentalDoubleSharp", 
@@ -33781,21 +34273,21 @@
             ]
         }, 
         "accidentalFlatJohnstonDown": {
-            "codepoint": "U+F567", 
+            "codepoint": "U+F56C", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "accidentalJohnstonDown"
             ]
         }, 
         "accidentalFlatJohnstonEl": {
-            "codepoint": "U+F565", 
+            "codepoint": "U+F56A", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "accidentalJohnstonEl"
             ]
         }, 
         "accidentalFlatJohnstonElDown": {
-            "codepoint": "U+F573", 
+            "codepoint": "U+F578", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "accidentalJohnstonEl", 
@@ -33803,14 +34295,14 @@
             ]
         }, 
         "accidentalFlatJohnstonUp": {
-            "codepoint": "U+F566", 
+            "codepoint": "U+F56B", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "accidentalJohnstonUp"
             ]
         }, 
         "accidentalFlatJohnstonUpEl": {
-            "codepoint": "U+F572", 
+            "codepoint": "U+F577", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "accidentalJohnstonUp", 
@@ -33818,7 +34310,7 @@
             ]
         }, 
         "accidentalFlatParens": {
-            "codepoint": "U+F55D", 
+            "codepoint": "U+F562", 
             "componentGlyphs": [
                 "accidentalParensLeft", 
                 "accidentalFlat", 
@@ -33826,28 +34318,28 @@
             ]
         }, 
         "accidentalJohnstonDownEl": {
-            "codepoint": "U+F56D", 
+            "codepoint": "U+F572", 
             "componentGlyphs": [
                 "accidentalJohnstonDown", 
                 "accidentalJohnstonEl"
             ]
         }, 
         "accidentalJohnstonSevenDown": {
-            "codepoint": "U+F56B", 
+            "codepoint": "U+F570", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalJohnstonDown"
             ]
         }, 
         "accidentalJohnstonSevenFlat": {
-            "codepoint": "U+F569", 
+            "codepoint": "U+F56E", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalFlat"
             ]
         }, 
         "accidentalJohnstonSevenFlatDown": {
-            "codepoint": "U+F575", 
+            "codepoint": "U+F57A", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalFlat", 
@@ -33855,7 +34347,7 @@
             ]
         }, 
         "accidentalJohnstonSevenFlatUp": {
-            "codepoint": "U+F574", 
+            "codepoint": "U+F579", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalFlat", 
@@ -33863,14 +34355,14 @@
             ]
         }, 
         "accidentalJohnstonSevenSharp": {
-            "codepoint": "U+F568", 
+            "codepoint": "U+F56D", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalSharp"
             ]
         }, 
         "accidentalJohnstonSevenSharpDown": {
-            "codepoint": "U+F571", 
+            "codepoint": "U+F576", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalSharp", 
@@ -33878,7 +34370,7 @@
             ]
         }, 
         "accidentalJohnstonSevenSharpUp": {
-            "codepoint": "U+F570", 
+            "codepoint": "U+F575", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalSharp", 
@@ -33886,21 +34378,21 @@
             ]
         }, 
         "accidentalJohnstonSevenUp": {
-            "codepoint": "U+F56A", 
+            "codepoint": "U+F56F", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalJohnstonUp"
             ]
         }, 
         "accidentalJohnstonUpEl": {
-            "codepoint": "U+F56C", 
+            "codepoint": "U+F571", 
             "componentGlyphs": [
                 "accidentalJohnstonUp", 
                 "accidentalJohnstonEl"
             ]
         }, 
         "accidentalNaturalParens": {
-            "codepoint": "U+F55E", 
+            "codepoint": "U+F563", 
             "componentGlyphs": [
                 "accidentalParensLeft", 
                 "accidentalNatural", 
@@ -33908,14 +34400,14 @@
             ]
         }, 
         "accidentalSharpJohnstonDown": {
-            "codepoint": "U+F564", 
+            "codepoint": "U+F569", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "accidentalJohnstonDown"
             ]
         }, 
         "accidentalSharpJohnstonDownEl": {
-            "codepoint": "U+F56F", 
+            "codepoint": "U+F574", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "accidentalJohnstonDown", 
@@ -33923,21 +34415,21 @@
             ]
         }, 
         "accidentalSharpJohnstonEl": {
-            "codepoint": "U+F562", 
+            "codepoint": "U+F567", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "accidentalJohnstonEl"
             ]
         }, 
         "accidentalSharpJohnstonUp": {
-            "codepoint": "U+F563", 
+            "codepoint": "U+F568", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "accidentalJohnstonUp"
             ]
         }, 
         "accidentalSharpJohnstonUpEl": {
-            "codepoint": "U+F56E", 
+            "codepoint": "U+F573", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "accidentalJohnstonUp", 
@@ -33945,7 +34437,7 @@
             ]
         }, 
         "accidentalSharpParens": {
-            "codepoint": "U+F55F", 
+            "codepoint": "U+F564", 
             "componentGlyphs": [
                 "accidentalParensLeft", 
                 "accidentalSharp", 
@@ -33953,21 +34445,21 @@
             ]
         }, 
         "fClef5Below": {
-            "codepoint": "U+F4BA", 
+            "codepoint": "U+F4BF", 
             "componentGlyphs": [
                 "fClef", 
                 "tuplet5"
             ]
         }, 
         "gClef0Below": {
-            "codepoint": "U+F4BB", 
+            "codepoint": "U+F4C0", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet0"
             ]
         }, 
         "gClef10Below": {
-            "codepoint": "U+F4BC", 
+            "codepoint": "U+F4C1", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -33975,7 +34467,7 @@
             ]
         }, 
         "gClef11Below": {
-            "codepoint": "U+F4BD", 
+            "codepoint": "U+F4C2", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -33983,7 +34475,7 @@
             ]
         }, 
         "gClef12Below": {
-            "codepoint": "U+F4BE", 
+            "codepoint": "U+F4C3", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -33991,7 +34483,7 @@
             ]
         }, 
         "gClef13Below": {
-            "codepoint": "U+F4BF", 
+            "codepoint": "U+F4C4", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -33999,7 +34491,7 @@
             ]
         }, 
         "gClef14Below": {
-            "codepoint": "U+F4C0", 
+            "codepoint": "U+F4C5", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34007,7 +34499,7 @@
             ]
         }, 
         "gClef15Below": {
-            "codepoint": "U+F4C1", 
+            "codepoint": "U+F4C6", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34015,7 +34507,7 @@
             ]
         }, 
         "gClef16Below": {
-            "codepoint": "U+F4C2", 
+            "codepoint": "U+F4C7", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34023,7 +34515,7 @@
             ]
         }, 
         "gClef17Below": {
-            "codepoint": "U+F4C3", 
+            "codepoint": "U+F4C8", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34031,119 +34523,119 @@
             ]
         }, 
         "gClef2Above": {
-            "codepoint": "U+F4C4", 
+            "codepoint": "U+F4C9", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet2"
             ]
         }, 
         "gClef2Below": {
-            "codepoint": "U+F4C5", 
+            "codepoint": "U+F4CA", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet2"
             ]
         }, 
         "gClef3Above": {
-            "codepoint": "U+F4C6", 
+            "codepoint": "U+F4CB", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet3"
             ]
         }, 
         "gClef3Below": {
-            "codepoint": "U+F4C7", 
+            "codepoint": "U+F4CC", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet3"
             ]
         }, 
         "gClef4Above": {
-            "codepoint": "U+F4C8", 
+            "codepoint": "U+F4CD", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet4"
             ]
         }, 
         "gClef4Below": {
-            "codepoint": "U+F4C9", 
+            "codepoint": "U+F4CE", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet4"
             ]
         }, 
         "gClef5Above": {
-            "codepoint": "U+F4CA", 
+            "codepoint": "U+F4CF", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet5"
             ]
         }, 
         "gClef5Below": {
-            "codepoint": "U+F4CB", 
+            "codepoint": "U+F4D0", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet5"
             ]
         }, 
         "gClef6Above": {
-            "codepoint": "U+F4CC", 
+            "codepoint": "U+F4D1", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet6"
             ]
         }, 
         "gClef6Below": {
-            "codepoint": "U+F4CD", 
+            "codepoint": "U+F4D2", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet6"
             ]
         }, 
         "gClef7Above": {
-            "codepoint": "U+F4CE", 
+            "codepoint": "U+F4D3", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet7"
             ]
         }, 
         "gClef7Below": {
-            "codepoint": "U+F4CF", 
+            "codepoint": "U+F4D4", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet7"
             ]
         }, 
         "gClef8Above": {
-            "codepoint": "U+F4D0", 
+            "codepoint": "U+F4D5", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet8"
             ]
         }, 
         "gClef8Below": {
-            "codepoint": "U+F4D1", 
+            "codepoint": "U+F4D6", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet8"
             ]
         }, 
         "gClef9Above": {
-            "codepoint": "U+F4D2", 
+            "codepoint": "U+F4D7", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet9"
             ]
         }, 
         "gClef9Below": {
-            "codepoint": "U+F4D3", 
+            "codepoint": "U+F4D8", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet9"
             ]
         }, 
         "gClefFlat10Below": {
-            "codepoint": "U+F4D4", 
+            "codepoint": "U+F4D9", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34152,7 +34644,7 @@
             ]
         }, 
         "gClefFlat11Below": {
-            "codepoint": "U+F4D5", 
+            "codepoint": "U+F4DA", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34161,7 +34653,7 @@
             ]
         }, 
         "gClefFlat13Below": {
-            "codepoint": "U+F4D6", 
+            "codepoint": "U+F4DB", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34170,7 +34662,7 @@
             ]
         }, 
         "gClefFlat14Below": {
-            "codepoint": "U+F4D7", 
+            "codepoint": "U+F4DC", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34179,7 +34671,7 @@
             ]
         }, 
         "gClefFlat15Below": {
-            "codepoint": "U+F4D8", 
+            "codepoint": "U+F4DD", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34188,7 +34680,7 @@
             ]
         }, 
         "gClefFlat16Below": {
-            "codepoint": "U+F4D9", 
+            "codepoint": "U+F4DE", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34197,7 +34689,7 @@
             ]
         }, 
         "gClefFlat1Below": {
-            "codepoint": "U+F4DA", 
+            "codepoint": "U+F4DF", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34205,7 +34697,7 @@
             ]
         }, 
         "gClefFlat2Above": {
-            "codepoint": "U+F4DB", 
+            "codepoint": "U+F4E0", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet2", 
@@ -34213,7 +34705,7 @@
             ]
         }, 
         "gClefFlat2Below": {
-            "codepoint": "U+F4DC", 
+            "codepoint": "U+F4E1", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34221,7 +34713,7 @@
             ]
         }, 
         "gClefFlat3Above": {
-            "codepoint": "U+F4DD", 
+            "codepoint": "U+F4E2", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet3", 
@@ -34229,7 +34721,7 @@
             ]
         }, 
         "gClefFlat3Below": {
-            "codepoint": "U+F4DE", 
+            "codepoint": "U+F4E3", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34237,7 +34729,7 @@
             ]
         }, 
         "gClefFlat4Below": {
-            "codepoint": "U+F4DF", 
+            "codepoint": "U+F4E4", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34245,7 +34737,7 @@
             ]
         }, 
         "gClefFlat5Above": {
-            "codepoint": "U+F4E0", 
+            "codepoint": "U+F4E5", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet5", 
@@ -34253,7 +34745,7 @@
             ]
         }, 
         "gClefFlat6Above": {
-            "codepoint": "U+F4E1", 
+            "codepoint": "U+F4E6", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet6", 
@@ -34261,7 +34753,7 @@
             ]
         }, 
         "gClefFlat6Below": {
-            "codepoint": "U+F4E2", 
+            "codepoint": "U+F4E7", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34269,7 +34761,7 @@
             ]
         }, 
         "gClefFlat7Above": {
-            "codepoint": "U+F4E3", 
+            "codepoint": "U+F4E8", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet7", 
@@ -34277,7 +34769,7 @@
             ]
         }, 
         "gClefFlat7Below": {
-            "codepoint": "U+F4E4", 
+            "codepoint": "U+F4E9", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34285,7 +34777,7 @@
             ]
         }, 
         "gClefFlat8Above": {
-            "codepoint": "U+F4E5", 
+            "codepoint": "U+F4EA", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet8", 
@@ -34293,7 +34785,7 @@
             ]
         }, 
         "gClefFlat9Above": {
-            "codepoint": "U+F4E6", 
+            "codepoint": "U+F4EB", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet9", 
@@ -34301,7 +34793,7 @@
             ]
         }, 
         "gClefFlat9Below": {
-            "codepoint": "U+F4E7", 
+            "codepoint": "U+F4EC", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34309,7 +34801,7 @@
             ]
         }, 
         "gClefNat2Below": {
-            "codepoint": "U+F4E8", 
+            "codepoint": "U+F4ED", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalNatural", 
@@ -34317,7 +34809,7 @@
             ]
         }, 
         "gClefNatural10Below": {
-            "codepoint": "U+F4E9", 
+            "codepoint": "U+F4EE", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34326,7 +34818,7 @@
             ]
         }, 
         "gClefNatural13Below": {
-            "codepoint": "U+F4EA", 
+            "codepoint": "U+F4EF", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34335,7 +34827,7 @@
             ]
         }, 
         "gClefNatural17Below": {
-            "codepoint": "U+F4EB", 
+            "codepoint": "U+F4F0", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34344,7 +34836,7 @@
             ]
         }, 
         "gClefNatural2Above": {
-            "codepoint": "U+F4EC", 
+            "codepoint": "U+F4F1", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet2", 
@@ -34352,7 +34844,7 @@
             ]
         }, 
         "gClefNatural3Above": {
-            "codepoint": "U+F4ED", 
+            "codepoint": "U+F4F2", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet3", 
@@ -34360,7 +34852,7 @@
             ]
         }, 
         "gClefNatural3Below": {
-            "codepoint": "U+F4EE", 
+            "codepoint": "U+F4F3", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalNatural", 
@@ -34368,7 +34860,7 @@
             ]
         }, 
         "gClefNatural6Above": {
-            "codepoint": "U+F4EF", 
+            "codepoint": "U+F4F4", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet6", 
@@ -34376,7 +34868,7 @@
             ]
         }, 
         "gClefNatural6Below": {
-            "codepoint": "U+F4F0", 
+            "codepoint": "U+F4F5", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalNatural", 
@@ -34384,7 +34876,7 @@
             ]
         }, 
         "gClefNatural7Above": {
-            "codepoint": "U+F4F1", 
+            "codepoint": "U+F4F6", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet7", 
@@ -34392,7 +34884,7 @@
             ]
         }, 
         "gClefNatural9Above": {
-            "codepoint": "U+F4F2", 
+            "codepoint": "U+F4F7", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet9", 
@@ -34400,7 +34892,7 @@
             ]
         }, 
         "gClefNatural9Below": {
-            "codepoint": "U+F4F3", 
+            "codepoint": "U+F4F8", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalNatural", 
@@ -34408,7 +34900,7 @@
             ]
         }, 
         "gClefSharp12Below": {
-            "codepoint": "U+F4F4", 
+            "codepoint": "U+F4F9", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34417,7 +34909,7 @@
             ]
         }, 
         "gClefSharp1Above": {
-            "codepoint": "U+F4F5", 
+            "codepoint": "U+F4FA", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet1", 
@@ -34425,7 +34917,7 @@
             ]
         }, 
         "gClefSharp4Above": {
-            "codepoint": "U+F4F6", 
+            "codepoint": "U+F4FB", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet4", 
@@ -34433,7 +34925,7 @@
             ]
         }, 
         "gClefSharp5Below": {
-            "codepoint": "U+F4F7", 
+            "codepoint": "U+F4FC", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalSharp", 
@@ -34441,469 +34933,469 @@
             ]
         }, 
         "mensuralFusaBlackStemDown": {
-            "codepoint": "U+F4F8", 
+            "codepoint": "U+F4FD", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDownFlagFusa"
             ]
         }, 
         "mensuralFusaBlackStemUp": {
-            "codepoint": "U+F4F9", 
+            "codepoint": "U+F4FE", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUpFlagFusa"
             ]
         }, 
         "mensuralFusaBlackVoidStemDown": {
-            "codepoint": "U+F4FA", 
+            "codepoint": "U+F4FF", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDownFlagFusa"
             ]
         }, 
         "mensuralFusaBlackVoidStemUp": {
-            "codepoint": "U+F4FB", 
+            "codepoint": "U+F500", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUpFlagFusa"
             ]
         }, 
         "mensuralFusaVoidStemDown": {
-            "codepoint": "U+F4FC", 
+            "codepoint": "U+F501", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDownFlagFusa"
             ]
         }, 
         "mensuralFusaVoidStemUp": {
-            "codepoint": "U+F4FD", 
+            "codepoint": "U+F502", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUpFlagFusa"
             ]
         }, 
         "mensuralLongaBlackStemDownLeft": {
-            "codepoint": "U+F4FE", 
+            "codepoint": "U+F503", 
             "componentGlyphs": [
                 "mensuralCombStemDown", 
                 "mensuralNoteheadLongaBlack"
             ]
         }, 
         "mensuralLongaBlackStemDownRight": {
-            "codepoint": "U+F4FF", 
+            "codepoint": "U+F504", 
             "componentGlyphs": [
                 "mensuralNoteheadLongaBlack", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralLongaBlackStemUpLeft": {
-            "codepoint": "U+F500", 
+            "codepoint": "U+F505", 
             "componentGlyphs": [
                 "mensuralCombStemUp", 
                 "mensuralNoteheadLongaBlack"
             ]
         }, 
         "mensuralLongaBlackStemUpRight": {
-            "codepoint": "U+F501", 
+            "codepoint": "U+F506", 
             "componentGlyphs": [
                 "mensuralNoteheadLongaBlack", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralLongaBlackVoidStemDownLeft": {
-            "codepoint": "U+F502", 
+            "codepoint": "U+F507", 
             "componentGlyphs": [
                 "mensuralCombStemDown", 
                 "mensuralNoteheadLongaBlackVoid"
             ]
         }, 
         "mensuralLongaBlackVoidStemDownRight": {
-            "codepoint": "U+F503", 
+            "codepoint": "U+F508", 
             "componentGlyphs": [
                 "mensuralNoteheadLongaBlackVoid", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralLongaBlackVoidStemUpLeft": {
-            "codepoint": "U+F504", 
+            "codepoint": "U+F509", 
             "componentGlyphs": [
                 "mensuralCombStemUp", 
                 "mensuralNoteheadLongaBlackVoid"
             ]
         }, 
         "mensuralLongaBlackVoidStemUpRight": {
-            "codepoint": "U+F505", 
+            "codepoint": "U+F50A", 
             "componentGlyphs": [
                 "mensuralNoteheadLongaBlackVoid", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralLongaVoidStemDownLeft": {
-            "codepoint": "U+F506", 
+            "codepoint": "U+F50B", 
             "componentGlyphs": [
                 "mensuralCombStemDown", 
                 "mensuralNoteheadLongaVoid"
             ]
         }, 
         "mensuralLongaVoidStemDownRight": {
-            "codepoint": "U+F507", 
+            "codepoint": "U+F50C", 
             "componentGlyphs": [
                 "mensuralNoteheadLongaVoid", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralLongaVoidStemUpLeft": {
-            "codepoint": "U+F508", 
+            "codepoint": "U+F50D", 
             "componentGlyphs": [
                 "mensuralCombStemUp", 
                 "mensuralNoteheadLongaVoid"
             ]
         }, 
         "mensuralLongaVoidStemUpRight": {
-            "codepoint": "U+F509", 
+            "codepoint": "U+F50E", 
             "componentGlyphs": [
                 "mensuralNoteheadLongaVoid", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMaximaBlackStemDownLeft": {
-            "codepoint": "U+F50A", 
+            "codepoint": "U+F50F", 
             "componentGlyphs": [
                 "mensuralCombStemDown", 
                 "mensuralNoteheadMaximaBlack"
             ]
         }, 
         "mensuralMaximaBlackStemDownRight": {
-            "codepoint": "U+F50B", 
+            "codepoint": "U+F510", 
             "componentGlyphs": [
                 "mensuralNoteheadMaximaBlack", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralMaximaBlackStemUpLeft": {
-            "codepoint": "U+F50C", 
+            "codepoint": "U+F511", 
             "componentGlyphs": [
                 "mensuralCombStemUp", 
                 "mensuralNoteheadMaximaBlack"
             ]
         }, 
         "mensuralMaximaBlackStemUpRight": {
-            "codepoint": "U+F50D", 
+            "codepoint": "U+F512", 
             "componentGlyphs": [
                 "mensuralNoteheadMaximaBlack", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMaximaBlackVoidStemDownLeft": {
-            "codepoint": "U+F50E", 
+            "codepoint": "U+F513", 
             "componentGlyphs": [
                 "mensuralCombStemDown", 
                 "mensuralNoteheadMaximaBlackVoid"
             ]
         }, 
         "mensuralMaximaBlackVoidStemDownRight": {
-            "codepoint": "U+F50F", 
+            "codepoint": "U+F514", 
             "componentGlyphs": [
                 "mensuralNoteheadMaximaBlackVoid", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralMaximaBlackVoidStemUpLeft": {
-            "codepoint": "U+F510", 
+            "codepoint": "U+F515", 
             "componentGlyphs": [
                 "mensuralCombStemUp", 
                 "mensuralNoteheadMaximaBlackVoid"
             ]
         }, 
         "mensuralMaximaBlackVoidStemUpRight": {
-            "codepoint": "U+F511", 
+            "codepoint": "U+F516", 
             "componentGlyphs": [
                 "mensuralNoteheadMaximaBlackVoid", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMaximaVoidStemDownLeft": {
-            "codepoint": "U+F512", 
+            "codepoint": "U+F517", 
             "componentGlyphs": [
                 "mensuralCombStemDown", 
                 "mensuralNoteheadMaximaVoid"
             ]
         }, 
         "mensuralMaximaVoidStemDownRight": {
-            "codepoint": "U+F513", 
+            "codepoint": "U+F518", 
             "componentGlyphs": [
                 "mensuralNoteheadMaximaVoid", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralMaximaVoidStemUpLeft": {
-            "codepoint": "U+F514", 
+            "codepoint": "U+F519", 
             "componentGlyphs": [
                 "mensuralCombStemUp", 
                 "mensuralNoteheadMaximaVoid"
             ]
         }, 
         "mensuralMaximaVoidStemUpRight": {
-            "codepoint": "U+F515", 
+            "codepoint": "U+F51A", 
             "componentGlyphs": [
                 "mensuralNoteheadMaximaVoid", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMinimaBlackStemDown": {
-            "codepoint": "U+F516", 
+            "codepoint": "U+F51B", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralMinimaBlackStemDownExtendedFlag": {
-            "codepoint": "U+F517", 
+            "codepoint": "U+F51C", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDownFlagExtended"
             ]
         }, 
         "mensuralMinimaBlackStemDownFlagLeft": {
-            "codepoint": "U+F518", 
+            "codepoint": "U+F51D", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDownFlagLeft"
             ]
         }, 
         "mensuralMinimaBlackStemDownFlagRight": {
-            "codepoint": "U+F519", 
+            "codepoint": "U+F51E", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDownFlagRight"
             ]
         }, 
         "mensuralMinimaBlackStemDownFlaredFlag": {
-            "codepoint": "U+F51A", 
+            "codepoint": "U+F51F", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDownFlagFlared"
             ]
         }, 
         "mensuralMinimaBlackStemUp": {
-            "codepoint": "U+F51B", 
+            "codepoint": "U+F520", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMinimaBlackStemUpExtendedFlag": {
-            "codepoint": "U+F51C", 
+            "codepoint": "U+F521", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUpFlagExtended"
             ]
         }, 
         "mensuralMinimaBlackStemUpFlagLeft": {
-            "codepoint": "U+F51D", 
+            "codepoint": "U+F522", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUpFlagLeft"
             ]
         }, 
         "mensuralMinimaBlackStemUpFlagRight": {
-            "codepoint": "U+F51E", 
+            "codepoint": "U+F523", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUpFlagRight"
             ]
         }, 
         "mensuralMinimaBlackStemUpFlaredFlag": {
-            "codepoint": "U+F51F", 
+            "codepoint": "U+F524", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUpFlagFlared"
             ]
         }, 
         "mensuralMinimaBlackVoidStemDown": {
-            "codepoint": "U+F520", 
+            "codepoint": "U+F525", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralMinimaBlackVoidStemDownExtendedFlag": {
-            "codepoint": "U+F521", 
+            "codepoint": "U+F526", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDownFlagExtended"
             ]
         }, 
         "mensuralMinimaBlackVoidStemDownFlagLeft": {
-            "codepoint": "U+F522", 
+            "codepoint": "U+F527", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDownFlagLeft"
             ]
         }, 
         "mensuralMinimaBlackVoidStemDownFlagRight": {
-            "codepoint": "U+F523", 
+            "codepoint": "U+F528", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDownFlagRight"
             ]
         }, 
         "mensuralMinimaBlackVoidStemDownFlaredFlag": {
-            "codepoint": "U+F524", 
+            "codepoint": "U+F529", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDownFlagFlared"
             ]
         }, 
         "mensuralMinimaBlackVoidStemUp": {
-            "codepoint": "U+F525", 
+            "codepoint": "U+F52A", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMinimaBlackVoidStemUpExtendedFlag": {
-            "codepoint": "U+F526", 
+            "codepoint": "U+F52B", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUpFlagExtended"
             ]
         }, 
         "mensuralMinimaBlackVoidStemUpFlagLeft": {
-            "codepoint": "U+F527", 
+            "codepoint": "U+F52C", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUpFlagLeft"
             ]
         }, 
         "mensuralMinimaBlackVoidStemUpFlagRight": {
-            "codepoint": "U+F528", 
+            "codepoint": "U+F52D", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUpFlagRight"
             ]
         }, 
         "mensuralMinimaBlackVoidStemUpFlaredFlag": {
-            "codepoint": "U+F529", 
+            "codepoint": "U+F52E", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUpFlagFlared"
             ]
         }, 
         "mensuralMinimaVoidStemDown": {
-            "codepoint": "U+F52A", 
+            "codepoint": "U+F52F", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralMinimaVoidStemDownExtendedFlag": {
-            "codepoint": "U+F52B", 
+            "codepoint": "U+F530", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDownFlagExtended"
             ]
         }, 
         "mensuralMinimaVoidStemDownFlagLeft": {
-            "codepoint": "U+F52C", 
+            "codepoint": "U+F531", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDownFlagLeft"
             ]
         }, 
         "mensuralMinimaVoidStemDownFlagRight": {
-            "codepoint": "U+F52D", 
+            "codepoint": "U+F532", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDownFlagRight"
             ]
         }, 
         "mensuralMinimaVoidStemDownFlaredFlag": {
-            "codepoint": "U+F52E", 
+            "codepoint": "U+F533", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDownFlagFlared"
             ]
         }, 
         "mensuralMinimaVoidStemUp": {
-            "codepoint": "U+F530", 
+            "codepoint": "U+F535", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMinimaVoidStemUpExtendedFlag": {
-            "codepoint": "U+F52F", 
+            "codepoint": "U+F534", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUpFlagExtended"
             ]
         }, 
         "mensuralMinimaVoidStemUpFlagLeft": {
-            "codepoint": "U+F531", 
+            "codepoint": "U+F536", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUpFlagLeft"
             ]
         }, 
         "mensuralMinimaVoidStemUpFlagRight": {
-            "codepoint": "U+F532", 
+            "codepoint": "U+F537", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUpFlagRight"
             ]
         }, 
         "mensuralMinimaVoidStemUpFlaredFlag": {
-            "codepoint": "U+F533", 
+            "codepoint": "U+F538", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUpFlagFlared"
             ]
         }, 
         "mensuralSemiminimaBlackStemDown": {
-            "codepoint": "U+F534", 
+            "codepoint": "U+F539", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDownFlagSemiminima"
             ]
         }, 
         "mensuralSemiminimaBlackStemUp": {
-            "codepoint": "U+F535", 
+            "codepoint": "U+F53A", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUpFlagSemiminima"
             ]
         }, 
         "mensuralSemiminimaBlackVoidStemDown": {
-            "codepoint": "U+F536", 
+            "codepoint": "U+F53B", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDownFlagSemiminima"
             ]
         }, 
         "mensuralSemiminimaBlackVoidStemUp": {
-            "codepoint": "U+F537", 
+            "codepoint": "U+F53C", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUpFlagSemiminima"
             ]
         }, 
         "mensuralSemiminimaVoidStemDown": {
-            "codepoint": "U+F538", 
+            "codepoint": "U+F53D", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDownFlagSemiminima"
             ]
         }, 
         "mensuralSemiminimaVoidStemUp": {
-            "codepoint": "U+F539", 
+            "codepoint": "U+F53E", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUpFlagSemiminima"
             ]
         }, 
         "noteheadBlackParens": {
-            "codepoint": "U+F559", 
+            "codepoint": "U+F55E", 
             "componentGlyphs": [
                 "noteheadParenthesisLeft", 
                 "noteheadBlack", 
@@ -34911,7 +35403,7 @@
             ]
         }, 
         "noteheadDoubleWholeParens": {
-            "codepoint": "U+F55C", 
+            "codepoint": "U+F561", 
             "componentGlyphs": [
                 "noteheadParenthesisLeft", 
                 "noteheadDoubleWhole", 
@@ -34919,7 +35411,7 @@
             ]
         }, 
         "noteheadHalfParens": {
-            "codepoint": "U+F55A", 
+            "codepoint": "U+F55F", 
             "componentGlyphs": [
                 "noteheadParenthesisLeft", 
                 "noteheadHalf", 
@@ -34927,7 +35419,7 @@
             ]
         }, 
         "noteheadWholeParens": {
-            "codepoint": "U+F55B", 
+            "codepoint": "U+F560", 
             "componentGlyphs": [
                 "noteheadParenthesisLeft", 
                 "noteheadWhole", 
@@ -34935,35 +35427,35 @@
             ]
         }, 
         "ornamentTrillFlatAbove": {
-            "codepoint": "U+F53A", 
+            "codepoint": "U+F53F", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "ornamentTrill"
             ]
         }, 
         "ornamentTrillNaturalAbove": {
-            "codepoint": "U+F53B", 
+            "codepoint": "U+F540", 
             "componentGlyphs": [
                 "accidentalNatural", 
                 "ornamentTrill"
             ]
         }, 
         "ornamentTrillSharpAbove": {
-            "codepoint": "U+F53C", 
+            "codepoint": "U+F541", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "ornamentTrill"
             ]
         }, 
         "ornamentTurnFlatAbove": {
-            "codepoint": "U+F53D", 
+            "codepoint": "U+F542", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "ornamentTurn"
             ]
         }, 
         "ornamentTurnFlatAboveSharpBelow": {
-            "codepoint": "U+F53E", 
+            "codepoint": "U+F543", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "ornamentTurn", 
@@ -34971,35 +35463,35 @@
             ]
         }, 
         "ornamentTurnFlatBelow": {
-            "codepoint": "U+F53F", 
+            "codepoint": "U+F544", 
             "componentGlyphs": [
                 "ornamentTurn", 
                 "accidentalFlat"
             ]
         }, 
         "ornamentTurnNaturalAbove": {
-            "codepoint": "U+F540", 
+            "codepoint": "U+F545", 
             "componentGlyphs": [
                 "accidentalNatural", 
                 "ornamentTurn"
             ]
         }, 
         "ornamentTurnNaturalBelow": {
-            "codepoint": "U+F541", 
+            "codepoint": "U+F546", 
             "componentGlyphs": [
                 "ornamentTurn", 
                 "accidentalNatural"
             ]
         }, 
         "ornamentTurnSharpAbove": {
-            "codepoint": "U+F542", 
+            "codepoint": "U+F547", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "ornamentTurn"
             ]
         }, 
         "ornamentTurnSharpAboveFlatBelow": {
-            "codepoint": "U+F543", 
+            "codepoint": "U+F548", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "ornamentTurn", 
@@ -35007,28 +35499,28 @@
             ]
         }, 
         "ornamentTurnSharpBelow": {
-            "codepoint": "U+F544", 
+            "codepoint": "U+F549", 
             "componentGlyphs": [
                 "ornamentTurn", 
                 "accidentalSharp"
             ]
         }, 
         "timeSig0Denominator": {
-            "codepoint": "U+F545", 
+            "codepoint": "U+F54A", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig0"
             ]
         }, 
         "timeSig0Numerator": {
-            "codepoint": "U+F546", 
+            "codepoint": "U+F54B", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig0"
             ]
         }, 
         "timeSig12over8": {
-            "codepoint": "U+F582", 
+            "codepoint": "U+F587", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig1", 
@@ -35039,35 +35531,35 @@
             ]
         }, 
         "timeSig1Denominator": {
-            "codepoint": "U+F547", 
+            "codepoint": "U+F54C", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig1"
             ]
         }, 
         "timeSig1Numerator": {
-            "codepoint": "U+F548", 
+            "codepoint": "U+F54D", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig1"
             ]
         }, 
         "timeSig2Denominator": {
-            "codepoint": "U+F549", 
+            "codepoint": "U+F54E", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig2"
             ]
         }, 
         "timeSig2Numerator": {
-            "codepoint": "U+F54A", 
+            "codepoint": "U+F54F", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig2"
             ]
         }, 
         "timeSig2over2": {
-            "codepoint": "U+F577", 
+            "codepoint": "U+F57C", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig2", 
@@ -35076,7 +35568,7 @@
             ]
         }, 
         "timeSig2over4": {
-            "codepoint": "U+F576", 
+            "codepoint": "U+F57B", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig2", 
@@ -35085,21 +35577,21 @@
             ]
         }, 
         "timeSig3Denominator": {
-            "codepoint": "U+F54B", 
+            "codepoint": "U+F550", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig3"
             ]
         }, 
         "timeSig3Numerator": {
-            "codepoint": "U+F54C", 
+            "codepoint": "U+F551", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig3"
             ]
         }, 
         "timeSig3over2": {
-            "codepoint": "U+F578", 
+            "codepoint": "U+F57D", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig3", 
@@ -35108,7 +35600,7 @@
             ]
         }, 
         "timeSig3over4": {
-            "codepoint": "U+F579", 
+            "codepoint": "U+F57E", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig3", 
@@ -35117,7 +35609,7 @@
             ]
         }, 
         "timeSig3over8": {
-            "codepoint": "U+F57A", 
+            "codepoint": "U+F57F", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig3", 
@@ -35126,21 +35618,21 @@
             ]
         }, 
         "timeSig4Denominator": {
-            "codepoint": "U+F54D", 
+            "codepoint": "U+F552", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig4"
             ]
         }, 
         "timeSig4Numerator": {
-            "codepoint": "U+F54E", 
+            "codepoint": "U+F553", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig4"
             ]
         }, 
         "timeSig4over4": {
-            "codepoint": "U+F57B", 
+            "codepoint": "U+F580", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig4", 
@@ -35149,21 +35641,21 @@
             ]
         }, 
         "timeSig5Denominator": {
-            "codepoint": "U+F54F", 
+            "codepoint": "U+F554", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig5"
             ]
         }, 
         "timeSig5Numerator": {
-            "codepoint": "U+F550", 
+            "codepoint": "U+F555", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig5"
             ]
         }, 
         "timeSig5over4": {
-            "codepoint": "U+F57C", 
+            "codepoint": "U+F581", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig5", 
@@ -35172,7 +35664,7 @@
             ]
         }, 
         "timeSig5over8": {
-            "codepoint": "U+F57D", 
+            "codepoint": "U+F582", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig5", 
@@ -35181,21 +35673,21 @@
             ]
         }, 
         "timeSig6Denominator": {
-            "codepoint": "U+F551", 
+            "codepoint": "U+F556", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig6"
             ]
         }, 
         "timeSig6Numerator": {
-            "codepoint": "U+F552", 
+            "codepoint": "U+F557", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig6"
             ]
         }, 
         "timeSig6over4": {
-            "codepoint": "U+F57E", 
+            "codepoint": "U+F583", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig6", 
@@ -35204,7 +35696,7 @@
             ]
         }, 
         "timeSig6over8": {
-            "codepoint": "U+F57F", 
+            "codepoint": "U+F584", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig6", 
@@ -35213,21 +35705,21 @@
             ]
         }, 
         "timeSig7Denominator": {
-            "codepoint": "U+F553", 
+            "codepoint": "U+F558", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig7"
             ]
         }, 
         "timeSig7Numerator": {
-            "codepoint": "U+F554", 
+            "codepoint": "U+F559", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig7"
             ]
         }, 
         "timeSig7over8": {
-            "codepoint": "U+F580", 
+            "codepoint": "U+F585", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig7", 
@@ -35236,35 +35728,35 @@
             ]
         }, 
         "timeSig8Denominator": {
-            "codepoint": "U+F555", 
+            "codepoint": "U+F55A", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig8"
             ]
         }, 
         "timeSig8Numerator": {
-            "codepoint": "U+F556", 
+            "codepoint": "U+F55B", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig8"
             ]
         }, 
         "timeSig9Denominator": {
-            "codepoint": "U+F557", 
+            "codepoint": "U+F55C", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig9"
             ]
         }, 
         "timeSig9Numerator": {
-            "codepoint": "U+F558", 
+            "codepoint": "U+F55D", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig9"
             ]
         }, 
         "timeSig9over8": {
-            "codepoint": "U+F581", 
+            "codepoint": "U+F586", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig9", 
@@ -35274,203 +35766,1923 @@
         }
     }, 
 
+    "optionalGlyphs": {
+        "4stringTabClefSerif": {
+            "classes": [
+                "clefs"
+            ], 
+            "codepoint": "U+F40D"
+        }, 
+        "4stringTabClefTall": {
+            "classes": [
+                "clefs"
+            ], 
+            "codepoint": "U+F40C"
+        }, 
+        "6stringTabClefSerif": {
+            "classes": [
+                "clefs"
+            ], 
+            "codepoint": "U+F40B"
+        }, 
+        "6stringTabClefTall": {
+            "classes": [
+                "clefs"
+            ], 
+            "codepoint": "U+F40A"
+        }, 
+        "accdnPushAlt": {
+            "classes": [], 
+            "codepoint": "U+F45B"
+        }, 
+        "accidentalDoubleFlatJoinedStems": {
+            "classes": [
+                "accidentals", 
+                "accidentalsSagittalMixed", 
+                "accidentalsStandard", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F4A1"
+        }, 
+        "accidentalDoubleFlatParens": {
+            "codepoint": "U+F566"
+        }, 
+        "accidentalDoubleSharpParens": {
+            "codepoint": "U+F565"
+        }, 
+        "accidentalFlatJohnstonDown": {
+            "codepoint": "U+F56C"
+        }, 
+        "accidentalFlatJohnstonEl": {
+            "codepoint": "U+F56A"
+        }, 
+        "accidentalFlatJohnstonElDown": {
+            "codepoint": "U+F578"
+        }, 
+        "accidentalFlatJohnstonUp": {
+            "codepoint": "U+F56B"
+        }, 
+        "accidentalFlatJohnstonUpEl": {
+            "codepoint": "U+F577"
+        }, 
+        "accidentalFlatParens": {
+            "codepoint": "U+F562"
+        }, 
+        "accidentalFlatSmall": {
+            "classes": [
+                "accidentals", 
+                "accidentalsSagittalMixed", 
+                "accidentalsStandard", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F427"
+        }, 
+        "accidentalJohnstonDownEl": {
+            "codepoint": "U+F572"
+        }, 
+        "accidentalJohnstonSevenDown": {
+            "codepoint": "U+F570"
+        }, 
+        "accidentalJohnstonSevenFlat": {
+            "codepoint": "U+F56E"
+        }, 
+        "accidentalJohnstonSevenFlatDown": {
+            "codepoint": "U+F57A"
+        }, 
+        "accidentalJohnstonSevenFlatUp": {
+            "codepoint": "U+F579"
+        }, 
+        "accidentalJohnstonSevenSharp": {
+            "codepoint": "U+F56D"
+        }, 
+        "accidentalJohnstonSevenSharpDown": {
+            "codepoint": "U+F576"
+        }, 
+        "accidentalJohnstonSevenSharpUp": {
+            "codepoint": "U+F575"
+        }, 
+        "accidentalJohnstonSevenUp": {
+            "codepoint": "U+F56F"
+        }, 
+        "accidentalJohnstonUpEl": {
+            "codepoint": "U+F571"
+        }, 
+        "accidentalNaturalParens": {
+            "codepoint": "U+F563"
+        }, 
+        "accidentalNaturalSmall": {
+            "classes": [
+                "accidentals", 
+                "accidentalsSagittalMixed", 
+                "accidentalsSagittalPure", 
+                "accidentalsStandard", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F428"
+        }, 
+        "accidentalSharpJohnstonDown": {
+            "codepoint": "U+F569"
+        }, 
+        "accidentalSharpJohnstonDownEl": {
+            "codepoint": "U+F574"
+        }, 
+        "accidentalSharpJohnstonEl": {
+            "codepoint": "U+F567"
+        }, 
+        "accidentalSharpJohnstonUp": {
+            "codepoint": "U+F568"
+        }, 
+        "accidentalSharpJohnstonUpEl": {
+            "codepoint": "U+F573"
+        }, 
+        "accidentalSharpParens": {
+            "codepoint": "U+F564"
+        }, 
+        "accidentalSharpSmall": {
+            "classes": [
+                "accidentals", 
+                "accidentalsSagittalMixed", 
+                "accidentalsStandard", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F429"
+        }, 
+        "accidentalTripleFlatJoinedStems": {
+            "classes": [
+                "accidentals", 
+                "accidentalsStandard", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F4A2"
+        }, 
+        "analyticsHauptrhythmusR": {
+            "classes": [], 
+            "codepoint": "U+F4B9"
+        }, 
+        "articAccentAboveLarge": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F42A"
+        }, 
+        "articAccentAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F475"
+        }, 
+        "articAccentBelowLarge": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F42B"
+        }, 
+        "articAccentBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F476"
+        }, 
+        "articAccentStaccatoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F485"
+        }, 
+        "articAccentStaccatoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F486"
+        }, 
+        "articMarcatoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F481"
+        }, 
+        "articMarcatoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F482"
+        }, 
+        "articMarcatoStaccatoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F483"
+        }, 
+        "articMarcatoStaccatoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F484"
+        }, 
+        "articStaccatissimoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F47B"
+        }, 
+        "articStaccatissimoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F47C"
+        }, 
+        "articStaccatissimoStrokeAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F47F"
+        }, 
+        "articStaccatissimoStrokeBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F480"
+        }, 
+        "articStaccatissimoWedgeAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F47D"
+        }, 
+        "articStaccatissimoWedgeBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F47E"
+        }, 
+        "articStaccatoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F477"
+        }, 
+        "articStaccatoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F478"
+        }, 
+        "articTenutoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F479"
+        }, 
+        "articTenutoAccentAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F489"
+        }, 
+        "articTenutoAccentBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F48A"
+        }, 
+        "articTenutoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F47A"
+        }, 
+        "articTenutoStaccatoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F487"
+        }, 
+        "articTenutoStaccatoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F488"
+        }, 
+        "braceFlat": {
+            "classes": [], 
+            "codepoint": "U+F403"
+        }, 
+        "braceLarge": {
+            "classes": [], 
+            "codepoint": "U+F401"
+        }, 
+        "braceLarger": {
+            "classes": [], 
+            "codepoint": "U+F402"
+        }, 
+        "braceSmall": {
+            "classes": [], 
+            "codepoint": "U+F400"
+        }, 
+        "cClefFrench": {
+            "classes": [
+                "clefs", 
+                "clefsC"
+            ], 
+            "codepoint": "U+F408"
+        }, 
+        "cClefSmall": {
+            "classes": [
+                "clefs", 
+                "clefsC"
+            ], 
+            "codepoint": "U+F473"
+        }, 
+        "caesuraSingleStroke": {
+            "classes": [
+                "combiningStaffPositions", 
+                "pauses"
+            ], 
+            "codepoint": "U+F42C"
+        }, 
+        "chantCclefHufnagel": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F49E"
+        }, 
+        "chantFclefHufnagel": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F49D"
+        }, 
+        "codaJapanese": {
+            "classes": [], 
+            "codepoint": "U+F405"
+        }, 
+        "doubleTongueAboveNoSlur": {
+            "classes": [], 
+            "codepoint": "U+F42D"
+        }, 
+        "doubleTongueBelowNoSlur": {
+            "classes": [], 
+            "codepoint": "U+F42E"
+        }, 
+        "dynamicForteSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F46D"
+        }, 
+        "dynamicMezzoSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F46C"
+        }, 
+        "dynamicNienteSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F471"
+        }, 
+        "dynamicPianoSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F46B"
+        }, 
+        "dynamicRinforzandoSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F46E"
+        }, 
+        "dynamicSforzandoSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F46F"
+        }, 
+        "dynamicZSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F470"
+        }, 
+        "fClef19thCentury": {
+            "classes": [
+                "clefs", 
+                "clefsF"
+            ], 
+            "codepoint": "U+F407"
+        }, 
+        "fClef5Below": {
+            "codepoint": "U+F4BF"
+        }, 
+        "fClefFrench": {
+            "classes": [
+                "clefs", 
+                "clefsF"
+            ], 
+            "codepoint": "U+F406"
+        }, 
+        "fClefSmall": {
+            "classes": [
+                "clefs", 
+                "clefsF"
+            ], 
+            "codepoint": "U+F474"
+        }, 
+        "flag1024thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F49A"
+        }, 
+        "flag1024thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F426"
+        }, 
+        "flag1024thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F425"
+        }, 
+        "flag1024thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F499"
+        }, 
+        "flag1024thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F424"
+        }, 
+        "flag128thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F494"
+        }, 
+        "flag128thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F41D"
+        }, 
+        "flag128thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F41C"
+        }, 
+        "flag128thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F493"
+        }, 
+        "flag128thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F41B"
+        }, 
+        "flag16thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F48E"
+        }, 
+        "flag16thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F414"
+        }, 
+        "flag16thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F413"
+        }, 
+        "flag16thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F48D"
+        }, 
+        "flag16thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F412"
+        }, 
+        "flag256thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F496"
+        }, 
+        "flag256thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F420"
+        }, 
+        "flag256thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F41F"
+        }, 
+        "flag256thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F495"
+        }, 
+        "flag256thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F41E"
+        }, 
+        "flag32ndDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F490"
+        }, 
+        "flag32ndDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F417"
+        }, 
+        "flag32ndUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F416"
+        }, 
+        "flag32ndUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F48F"
+        }, 
+        "flag32ndUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F415"
+        }, 
+        "flag512thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F498"
+        }, 
+        "flag512thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F423"
+        }, 
+        "flag512thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F422"
+        }, 
+        "flag512thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F497"
+        }, 
+        "flag512thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F421"
+        }, 
+        "flag64thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F492"
+        }, 
+        "flag64thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F41A"
+        }, 
+        "flag64thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F419"
+        }, 
+        "flag64thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F491"
+        }, 
+        "flag64thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F418"
+        }, 
+        "flag8thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F48C"
+        }, 
+        "flag8thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F411"
+        }, 
+        "flag8thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F410"
+        }, 
+        "flag8thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F48B"
+        }, 
+        "flag8thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F40F"
+        }, 
+        "gClef0Below": {
+            "codepoint": "U+F4C0"
+        }, 
+        "gClef10Below": {
+            "codepoint": "U+F4C1"
+        }, 
+        "gClef11Below": {
+            "codepoint": "U+F4C2"
+        }, 
+        "gClef12Below": {
+            "codepoint": "U+F4C3"
+        }, 
+        "gClef13Below": {
+            "codepoint": "U+F4C4"
+        }, 
+        "gClef14Below": {
+            "codepoint": "U+F4C5"
+        }, 
+        "gClef15Below": {
+            "codepoint": "U+F4C6"
+        }, 
+        "gClef16Below": {
+            "codepoint": "U+F4C7"
+        }, 
+        "gClef17Below": {
+            "codepoint": "U+F4C8"
+        }, 
+        "gClef2Above": {
+            "codepoint": "U+F4C9"
+        }, 
+        "gClef2Below": {
+            "codepoint": "U+F4CA"
+        }, 
+        "gClef3Above": {
+            "codepoint": "U+F4CB"
+        }, 
+        "gClef3Below": {
+            "codepoint": "U+F4CC"
+        }, 
+        "gClef4Above": {
+            "codepoint": "U+F4CD"
+        }, 
+        "gClef4Below": {
+            "codepoint": "U+F4CE"
+        }, 
+        "gClef5Above": {
+            "codepoint": "U+F4CF"
+        }, 
+        "gClef5Below": {
+            "codepoint": "U+F4D0"
+        }, 
+        "gClef6Above": {
+            "codepoint": "U+F4D1"
+        }, 
+        "gClef6Below": {
+            "codepoint": "U+F4D2"
+        }, 
+        "gClef7Above": {
+            "codepoint": "U+F4D3"
+        }, 
+        "gClef7Below": {
+            "codepoint": "U+F4D4"
+        }, 
+        "gClef8Above": {
+            "codepoint": "U+F4D5"
+        }, 
+        "gClef8Below": {
+            "codepoint": "U+F4D6"
+        }, 
+        "gClef9Above": {
+            "codepoint": "U+F4D7"
+        }, 
+        "gClef9Below": {
+            "codepoint": "U+F4D8"
+        }, 
+        "gClefFlat10Below": {
+            "codepoint": "U+F4D9"
+        }, 
+        "gClefFlat11Below": {
+            "codepoint": "U+F4DA"
+        }, 
+        "gClefFlat13Below": {
+            "codepoint": "U+F4DB"
+        }, 
+        "gClefFlat14Below": {
+            "codepoint": "U+F4DC"
+        }, 
+        "gClefFlat15Below": {
+            "codepoint": "U+F4DD"
+        }, 
+        "gClefFlat16Below": {
+            "codepoint": "U+F4DE"
+        }, 
+        "gClefFlat1Below": {
+            "codepoint": "U+F4DF"
+        }, 
+        "gClefFlat2Above": {
+            "codepoint": "U+F4E0"
+        }, 
+        "gClefFlat2Below": {
+            "codepoint": "U+F4E1"
+        }, 
+        "gClefFlat3Above": {
+            "codepoint": "U+F4E2"
+        }, 
+        "gClefFlat3Below": {
+            "codepoint": "U+F4E3"
+        }, 
+        "gClefFlat4Below": {
+            "codepoint": "U+F4E4"
+        }, 
+        "gClefFlat5Above": {
+            "codepoint": "U+F4E5"
+        }, 
+        "gClefFlat6Above": {
+            "codepoint": "U+F4E6"
+        }, 
+        "gClefFlat6Below": {
+            "codepoint": "U+F4E7"
+        }, 
+        "gClefFlat7Above": {
+            "codepoint": "U+F4E8"
+        }, 
+        "gClefFlat7Below": {
+            "codepoint": "U+F4E9"
+        }, 
+        "gClefFlat8Above": {
+            "codepoint": "U+F4EA"
+        }, 
+        "gClefFlat9Above": {
+            "codepoint": "U+F4EB"
+        }, 
+        "gClefFlat9Below": {
+            "codepoint": "U+F4EC"
+        }, 
+        "gClefNat2Below": {
+            "codepoint": "U+F4ED"
+        }, 
+        "gClefNatural10Below": {
+            "codepoint": "U+F4EE"
+        }, 
+        "gClefNatural13Below": {
+            "codepoint": "U+F4EF"
+        }, 
+        "gClefNatural17Below": {
+            "codepoint": "U+F4F0"
+        }, 
+        "gClefNatural2Above": {
+            "codepoint": "U+F4F1"
+        }, 
+        "gClefNatural3Above": {
+            "codepoint": "U+F4F2"
+        }, 
+        "gClefNatural3Below": {
+            "codepoint": "U+F4F3"
+        }, 
+        "gClefNatural6Above": {
+            "codepoint": "U+F4F4"
+        }, 
+        "gClefNatural6Below": {
+            "codepoint": "U+F4F5"
+        }, 
+        "gClefNatural7Above": {
+            "codepoint": "U+F4F6"
+        }, 
+        "gClefNatural9Above": {
+            "codepoint": "U+F4F7"
+        }, 
+        "gClefNatural9Below": {
+            "codepoint": "U+F4F8"
+        }, 
+        "gClefSharp12Below": {
+            "codepoint": "U+F4F9"
+        }, 
+        "gClefSharp1Above": {
+            "codepoint": "U+F4FA"
+        }, 
+        "gClefSharp4Above": {
+            "codepoint": "U+F4FB"
+        }, 
+        "gClefSharp5Below": {
+            "codepoint": "U+F4FC"
+        }, 
+        "gClefSmall": {
+            "classes": [
+                "clefs", 
+                "clefsG"
+            ], 
+            "codepoint": "U+F472"
+        }, 
+        "guitarGolpeFlamenco": {
+            "classes": [], 
+            "codepoint": "U+F4B8"
+        }, 
+        "harpMetalRodAlt": {
+            "classes": [], 
+            "codepoint": "U+F436"
+        }, 
+        "harpTuningKeyAlt": {
+            "classes": [], 
+            "codepoint": "U+F437"
+        }, 
+        "keyboardPedalPedNoDot": {
+            "classes": [], 
+            "codepoint": "U+F434"
+        }, 
+        "keyboardPedalSostNoDot": {
+            "classes": [], 
+            "codepoint": "U+F435"
+        }, 
+        "luteFingeringRHThirdAlt": {
+            "classes": [], 
+            "codepoint": "U+F44D"
+        }, 
+        "luteFrench10thCourseRight": {
+            "classes": [], 
+            "codepoint": "U+F459"
+        }, 
+        "luteFrench10thCourseStrikethru": {
+            "classes": [], 
+            "codepoint": "U+F457"
+        }, 
+        "luteFrench10thCourseUnderline": {
+            "classes": [], 
+            "codepoint": "U+F458"
+        }, 
+        "luteFrench7thCourseRight": {
+            "classes": [], 
+            "codepoint": "U+F450"
+        }, 
+        "luteFrench7thCourseStrikethru": {
+            "classes": [], 
+            "codepoint": "U+F44E"
+        }, 
+        "luteFrench7thCourseUnderline": {
+            "classes": [], 
+            "codepoint": "U+F44F"
+        }, 
+        "luteFrench8thCourseRight": {
+            "classes": [], 
+            "codepoint": "U+F453"
+        }, 
+        "luteFrench8thCourseStrikethru": {
+            "classes": [], 
+            "codepoint": "U+F451"
+        }, 
+        "luteFrench8thCourseUnderline": {
+            "classes": [], 
+            "codepoint": "U+F452"
+        }, 
+        "luteFrench9thCourseRight": {
+            "classes": [], 
+            "codepoint": "U+F456"
+        }, 
+        "luteFrench9thCourseStrikethru": {
+            "classes": [], 
+            "codepoint": "U+F454"
+        }, 
+        "luteFrench9thCourseUnderline": {
+            "classes": [], 
+            "codepoint": "U+F455"
+        }, 
+        "luteFrenchFretCAlt": {
+            "classes": [], 
+            "codepoint": "U+F45A"
+        }, 
+        "medRenFlatSoftBHufnagel": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F4A0"
+        }, 
+        "medRenFlatSoftBOld": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F49F"
+        }, 
+        "mensuralCclefBlack": {
+            "classes": [], 
+            "codepoint": "U+F49C"
+        }, 
+        "mensuralCclefVoid": {
+            "classes": [], 
+            "codepoint": "U+F49B"
+        }, 
+        "mensuralFusaBlackStemDown": {
+            "codepoint": "U+F4FD"
+        }, 
+        "mensuralFusaBlackStemUp": {
+            "codepoint": "U+F4FE"
+        }, 
+        "mensuralFusaBlackVoidStemDown": {
+            "codepoint": "U+F4FF"
+        }, 
+        "mensuralFusaBlackVoidStemUp": {
+            "codepoint": "U+F500"
+        }, 
+        "mensuralFusaVoidStemDown": {
+            "codepoint": "U+F501"
+        }, 
+        "mensuralFusaVoidStemUp": {
+            "codepoint": "U+F502"
+        }, 
+        "mensuralLongaBlackStemDownLeft": {
+            "codepoint": "U+F503"
+        }, 
+        "mensuralLongaBlackStemDownRight": {
+            "codepoint": "U+F504"
+        }, 
+        "mensuralLongaBlackStemUpLeft": {
+            "codepoint": "U+F505"
+        }, 
+        "mensuralLongaBlackStemUpRight": {
+            "codepoint": "U+F506"
+        }, 
+        "mensuralLongaBlackVoidStemDownLeft": {
+            "codepoint": "U+F507"
+        }, 
+        "mensuralLongaBlackVoidStemDownRight": {
+            "codepoint": "U+F508"
+        }, 
+        "mensuralLongaBlackVoidStemUpLeft": {
+            "codepoint": "U+F509"
+        }, 
+        "mensuralLongaBlackVoidStemUpRight": {
+            "codepoint": "U+F50A"
+        }, 
+        "mensuralLongaVoidStemDownLeft": {
+            "codepoint": "U+F50B"
+        }, 
+        "mensuralLongaVoidStemDownRight": {
+            "codepoint": "U+F50C"
+        }, 
+        "mensuralLongaVoidStemUpLeft": {
+            "codepoint": "U+F50D"
+        }, 
+        "mensuralLongaVoidStemUpRight": {
+            "codepoint": "U+F50E"
+        }, 
+        "mensuralMaximaBlackStemDownLeft": {
+            "codepoint": "U+F50F"
+        }, 
+        "mensuralMaximaBlackStemDownRight": {
+            "codepoint": "U+F510"
+        }, 
+        "mensuralMaximaBlackStemUpLeft": {
+            "codepoint": "U+F511"
+        }, 
+        "mensuralMaximaBlackStemUpRight": {
+            "codepoint": "U+F512"
+        }, 
+        "mensuralMaximaBlackVoidStemDownLeft": {
+            "codepoint": "U+F513"
+        }, 
+        "mensuralMaximaBlackVoidStemDownRight": {
+            "codepoint": "U+F514"
+        }, 
+        "mensuralMaximaBlackVoidStemUpLeft": {
+            "codepoint": "U+F515"
+        }, 
+        "mensuralMaximaBlackVoidStemUpRight": {
+            "codepoint": "U+F516"
+        }, 
+        "mensuralMaximaVoidStemDownLeft": {
+            "codepoint": "U+F517"
+        }, 
+        "mensuralMaximaVoidStemDownRight": {
+            "codepoint": "U+F518"
+        }, 
+        "mensuralMaximaVoidStemUpLeft": {
+            "codepoint": "U+F519"
+        }, 
+        "mensuralMaximaVoidStemUpRight": {
+            "codepoint": "U+F51A"
+        }, 
+        "mensuralMinimaBlackStemDown": {
+            "codepoint": "U+F51B"
+        }, 
+        "mensuralMinimaBlackStemDownExtendedFlag": {
+            "codepoint": "U+F51C"
+        }, 
+        "mensuralMinimaBlackStemDownFlagLeft": {
+            "codepoint": "U+F51D"
+        }, 
+        "mensuralMinimaBlackStemDownFlagRight": {
+            "codepoint": "U+F51E"
+        }, 
+        "mensuralMinimaBlackStemDownFlaredFlag": {
+            "codepoint": "U+F51F"
+        }, 
+        "mensuralMinimaBlackStemUp": {
+            "codepoint": "U+F520"
+        }, 
+        "mensuralMinimaBlackStemUpExtendedFlag": {
+            "codepoint": "U+F521"
+        }, 
+        "mensuralMinimaBlackStemUpFlagLeft": {
+            "codepoint": "U+F522"
+        }, 
+        "mensuralMinimaBlackStemUpFlagRight": {
+            "codepoint": "U+F523"
+        }, 
+        "mensuralMinimaBlackStemUpFlaredFlag": {
+            "codepoint": "U+F524"
+        }, 
+        "mensuralMinimaBlackVoidStemDown": {
+            "codepoint": "U+F525"
+        }, 
+        "mensuralMinimaBlackVoidStemDownExtendedFlag": {
+            "codepoint": "U+F526"
+        }, 
+        "mensuralMinimaBlackVoidStemDownFlagLeft": {
+            "codepoint": "U+F527"
+        }, 
+        "mensuralMinimaBlackVoidStemDownFlagRight": {
+            "codepoint": "U+F528"
+        }, 
+        "mensuralMinimaBlackVoidStemDownFlaredFlag": {
+            "codepoint": "U+F529"
+        }, 
+        "mensuralMinimaBlackVoidStemUp": {
+            "codepoint": "U+F52A"
+        }, 
+        "mensuralMinimaBlackVoidStemUpExtendedFlag": {
+            "codepoint": "U+F52B"
+        }, 
+        "mensuralMinimaBlackVoidStemUpFlagLeft": {
+            "codepoint": "U+F52C"
+        }, 
+        "mensuralMinimaBlackVoidStemUpFlagRight": {
+            "codepoint": "U+F52D"
+        }, 
+        "mensuralMinimaBlackVoidStemUpFlaredFlag": {
+            "codepoint": "U+F52E"
+        }, 
+        "mensuralMinimaVoidStemDown": {
+            "codepoint": "U+F52F"
+        }, 
+        "mensuralMinimaVoidStemDownExtendedFlag": {
+            "codepoint": "U+F530"
+        }, 
+        "mensuralMinimaVoidStemDownFlagLeft": {
+            "codepoint": "U+F531"
+        }, 
+        "mensuralMinimaVoidStemDownFlagRight": {
+            "codepoint": "U+F532"
+        }, 
+        "mensuralMinimaVoidStemDownFlaredFlag": {
+            "codepoint": "U+F533"
+        }, 
+        "mensuralMinimaVoidStemUp": {
+            "codepoint": "U+F535"
+        }, 
+        "mensuralMinimaVoidStemUpExtendedFlag": {
+            "codepoint": "U+F534"
+        }, 
+        "mensuralMinimaVoidStemUpFlagLeft": {
+            "codepoint": "U+F536"
+        }, 
+        "mensuralMinimaVoidStemUpFlagRight": {
+            "codepoint": "U+F537"
+        }, 
+        "mensuralMinimaVoidStemUpFlaredFlag": {
+            "codepoint": "U+F538"
+        }, 
+        "mensuralProportion4Old": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F43D"
+        }, 
+        "mensuralSemiminimaBlackStemDown": {
+            "codepoint": "U+F539"
+        }, 
+        "mensuralSemiminimaBlackStemUp": {
+            "codepoint": "U+F53A"
+        }, 
+        "mensuralSemiminimaBlackVoidStemDown": {
+            "codepoint": "U+F53B"
+        }, 
+        "mensuralSemiminimaBlackVoidStemUp": {
+            "codepoint": "U+F53C"
+        }, 
+        "mensuralSemiminimaVoidStemDown": {
+            "codepoint": "U+F53D"
+        }, 
+        "mensuralSemiminimaVoidStemUp": {
+            "codepoint": "U+F53E"
+        }, 
+        "noteDoubleWholeAlt": {
+            "classes": [
+                "combiningStaffPositions", 
+                "forTextBasedApplications"
+            ], 
+            "codepoint": "U+F40E"
+        }, 
+        "noteheadBlackOversized": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F4BE"
+        }, 
+        "noteheadBlackParens": {
+            "codepoint": "U+F55E"
+        }, 
+        "noteheadBlackSmall": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F46A"
+        }, 
+        "noteheadDoubleWholeAlt": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F43F"
+        }, 
+        "noteheadDoubleWholeOversized": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F4BA"
+        }, 
+        "noteheadDoubleWholeParens": {
+            "codepoint": "U+F561"
+        }, 
+        "noteheadDoubleWholeSmall": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F467"
+        }, 
+        "noteheadDoubleWholeSquareOversized": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F4BB"
+        }, 
+        "noteheadHalfOversized": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F4BD"
+        }, 
+        "noteheadHalfParens": {
+            "codepoint": "U+F55F"
+        }, 
+        "noteheadHalfSmall": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F469"
+        }, 
+        "noteheadWholeOversized": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F4BC"
+        }, 
+        "noteheadWholeParens": {
+            "codepoint": "U+F560"
+        }, 
+        "noteheadWholeSmall": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F468"
+        }, 
+        "ornamentTrillFlatAbove": {
+            "codepoint": "U+F53F"
+        }, 
+        "ornamentTrillNaturalAbove": {
+            "codepoint": "U+F540"
+        }, 
+        "ornamentTrillSharpAbove": {
+            "codepoint": "U+F541"
+        }, 
+        "ornamentTurnFlatAbove": {
+            "codepoint": "U+F542"
+        }, 
+        "ornamentTurnFlatAboveSharpBelow": {
+            "codepoint": "U+F543"
+        }, 
+        "ornamentTurnFlatBelow": {
+            "codepoint": "U+F544"
+        }, 
+        "ornamentTurnNaturalAbove": {
+            "codepoint": "U+F545"
+        }, 
+        "ornamentTurnNaturalBelow": {
+            "codepoint": "U+F546"
+        }, 
+        "ornamentTurnSharpAbove": {
+            "codepoint": "U+F547"
+        }, 
+        "ornamentTurnSharpAboveFlatBelow": {
+            "codepoint": "U+F548"
+        }, 
+        "ornamentTurnSharpBelow": {
+            "codepoint": "U+F549"
+        }, 
+        "pictBassDrumPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4AF"
+        }, 
+        "pictBongosPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B0"
+        }, 
+        "pictCastanetsSmithBrindle": {
+            "classes": [], 
+            "codepoint": "U+F439"
+        }, 
+        "pictCongaPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B1"
+        }, 
+        "pictCowBellBerio": {
+            "classes": [], 
+            "codepoint": "U+F43B"
+        }, 
+        "pictFlexatonePeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B6"
+        }, 
+        "pictGlspPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4AA"
+        }, 
+        "pictGuiroPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B5"
+        }, 
+        "pictGuiroSevsay": {
+            "classes": [], 
+            "codepoint": "U+F4B4"
+        }, 
+        "pictLithophonePeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A7"
+        }, 
+        "pictLotusFlutePeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4AC"
+        }, 
+        "pictMarPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4AB"
+        }, 
+        "pictMaracaSmithBrindle": {
+            "classes": [], 
+            "codepoint": "U+F43C"
+        }, 
+        "pictMusicalSawPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B7"
+        }, 
+        "pictSleighBellSmithBrindle": {
+            "classes": [], 
+            "codepoint": "U+F43A"
+        }, 
+        "pictTambourineStockhausen": {
+            "classes": [], 
+            "codepoint": "U+F438"
+        }, 
+        "pictTimbalesPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B3"
+        }, 
+        "pictTimpaniPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4AE"
+        }, 
+        "pictTomTomChinesePeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4AD"
+        }, 
+        "pictTomTomPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B2"
+        }, 
+        "pictTubaphonePeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A8"
+        }, 
+        "pictVibMotorOffPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A6"
+        }, 
+        "pictVibPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A5"
+        }, 
+        "pictXylBassPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A3"
+        }, 
+        "pictXylPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A9"
+        }, 
+        "pictXylTenorPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A4"
+        }, 
+        "pluckedSnapPizzicatoAboveGerman": {
+            "classes": [], 
+            "codepoint": "U+F433"
+        }, 
+        "pluckedSnapPizzicatoBelowGerman": {
+            "classes": [], 
+            "codepoint": "U+F432"
+        }, 
+        "repeatRightLeftThick": {
+            "classes": [
+                "forTextBasedApplications"
+            ], 
+            "codepoint": "U+F45C"
+        }, 
+        "segnoJapanese": {
+            "classes": [], 
+            "codepoint": "U+F404"
+        }, 
+        "stringsChangeBowDirectionImposed": {
+            "classes": [], 
+            "codepoint": "U+F43E"
+        }, 
+        "stringsChangeBowDirectionLiga": {
+            "classes": [], 
+            "codepoint": "U+F431"
+        }, 
+        "timeSig0Denominator": {
+            "codepoint": "U+F54A"
+        }, 
+        "timeSig0Large": {
+            "classes": [], 
+            "codepoint": "U+F440"
+        }, 
+        "timeSig0Numerator": {
+            "codepoint": "U+F54B"
+        }, 
+        "timeSig0Small": {
+            "classes": [], 
+            "codepoint": "U+F45D"
+        }, 
+        "timeSig12over8": {
+            "codepoint": "U+F587"
+        }, 
+        "timeSig1Denominator": {
+            "codepoint": "U+F54C"
+        }, 
+        "timeSig1Large": {
+            "classes": [], 
+            "codepoint": "U+F441"
+        }, 
+        "timeSig1Numerator": {
+            "codepoint": "U+F54D"
+        }, 
+        "timeSig1Small": {
+            "classes": [], 
+            "codepoint": "U+F45E"
+        }, 
+        "timeSig2Denominator": {
+            "codepoint": "U+F54E"
+        }, 
+        "timeSig2Large": {
+            "classes": [], 
+            "codepoint": "U+F442"
+        }, 
+        "timeSig2Numerator": {
+            "codepoint": "U+F54F"
+        }, 
+        "timeSig2Small": {
+            "classes": [], 
+            "codepoint": "U+F45F"
+        }, 
+        "timeSig2over2": {
+            "codepoint": "U+F57C"
+        }, 
+        "timeSig2over4": {
+            "codepoint": "U+F57B"
+        }, 
+        "timeSig3Denominator": {
+            "codepoint": "U+F550"
+        }, 
+        "timeSig3Large": {
+            "classes": [], 
+            "codepoint": "U+F443"
+        }, 
+        "timeSig3Numerator": {
+            "codepoint": "U+F551"
+        }, 
+        "timeSig3Small": {
+            "classes": [], 
+            "codepoint": "U+F460"
+        }, 
+        "timeSig3over2": {
+            "codepoint": "U+F57D"
+        }, 
+        "timeSig3over4": {
+            "codepoint": "U+F57E"
+        }, 
+        "timeSig3over8": {
+            "codepoint": "U+F57F"
+        }, 
+        "timeSig4Denominator": {
+            "codepoint": "U+F552"
+        }, 
+        "timeSig4Large": {
+            "classes": [], 
+            "codepoint": "U+F444"
+        }, 
+        "timeSig4Numerator": {
+            "codepoint": "U+F553"
+        }, 
+        "timeSig4Small": {
+            "classes": [], 
+            "codepoint": "U+F461"
+        }, 
+        "timeSig4over4": {
+            "codepoint": "U+F580"
+        }, 
+        "timeSig5Denominator": {
+            "codepoint": "U+F554"
+        }, 
+        "timeSig5Large": {
+            "classes": [], 
+            "codepoint": "U+F445"
+        }, 
+        "timeSig5Numerator": {
+            "codepoint": "U+F555"
+        }, 
+        "timeSig5Small": {
+            "classes": [], 
+            "codepoint": "U+F462"
+        }, 
+        "timeSig5over4": {
+            "codepoint": "U+F581"
+        }, 
+        "timeSig5over8": {
+            "codepoint": "U+F582"
+        }, 
+        "timeSig6Denominator": {
+            "codepoint": "U+F556"
+        }, 
+        "timeSig6Large": {
+            "classes": [], 
+            "codepoint": "U+F446"
+        }, 
+        "timeSig6Numerator": {
+            "codepoint": "U+F557"
+        }, 
+        "timeSig6Small": {
+            "classes": [], 
+            "codepoint": "U+F463"
+        }, 
+        "timeSig6over4": {
+            "codepoint": "U+F583"
+        }, 
+        "timeSig6over8": {
+            "codepoint": "U+F584"
+        }, 
+        "timeSig7Denominator": {
+            "codepoint": "U+F558"
+        }, 
+        "timeSig7Large": {
+            "classes": [], 
+            "codepoint": "U+F447"
+        }, 
+        "timeSig7Numerator": {
+            "codepoint": "U+F559"
+        }, 
+        "timeSig7Small": {
+            "classes": [], 
+            "codepoint": "U+F464"
+        }, 
+        "timeSig7over8": {
+            "codepoint": "U+F585"
+        }, 
+        "timeSig8Denominator": {
+            "codepoint": "U+F55A"
+        }, 
+        "timeSig8Large": {
+            "classes": [], 
+            "codepoint": "U+F448"
+        }, 
+        "timeSig8Numerator": {
+            "codepoint": "U+F55B"
+        }, 
+        "timeSig8Small": {
+            "classes": [], 
+            "codepoint": "U+F465"
+        }, 
+        "timeSig9Denominator": {
+            "codepoint": "U+F55C"
+        }, 
+        "timeSig9Large": {
+            "classes": [], 
+            "codepoint": "U+F449"
+        }, 
+        "timeSig9Numerator": {
+            "codepoint": "U+F55D"
+        }, 
+        "timeSig9Small": {
+            "classes": [], 
+            "codepoint": "U+F466"
+        }, 
+        "timeSig9over8": {
+            "codepoint": "U+F586"
+        }, 
+        "timeSigCommonLarge": {
+            "classes": [], 
+            "codepoint": "U+F44A"
+        }, 
+        "timeSigCutCommonLarge": {
+            "classes": [], 
+            "codepoint": "U+F44B"
+        }, 
+        "timeSigPlusLarge": {
+            "classes": [], 
+            "codepoint": "U+F44C"
+        }, 
+        "tripleTongueAboveNoSlur": {
+            "classes": [], 
+            "codepoint": "U+F42F"
+        }, 
+        "tripleTongueBelowNoSlur": {
+            "classes": [], 
+            "codepoint": "U+F430"
+        }, 
+        "unpitchedPercussionClef1Alt": {
+            "classes": [
+                "clefs"
+            ], 
+            "codepoint": "U+F409"
+        }
+    }, 
+
     "sets": {
         "ss01": {
             "description": "Smaller optical size for small staves", 
             "glyphs": [
                 {
+                    "alternateFor": "accidentalFlat", 
                     "codepoint": "U+F427", 
                     "name": "accidentalFlatSmall"
                 }, 
                 {
+                    "alternateFor": "accidentalNatural", 
                     "codepoint": "U+F428", 
                     "name": "accidentalNaturalSmall"
                 }, 
                 {
+                    "alternateFor": "accidentalSharp", 
                     "codepoint": "U+F429", 
                     "name": "accidentalSharpSmall"
                 }, 
                 {
+                    "alternateFor": "timeSig0", 
                     "codepoint": "U+F45D", 
                     "name": "timeSig0Small"
                 }, 
                 {
+                    "alternateFor": "timeSig1", 
                     "codepoint": "U+F45E", 
                     "name": "timeSig1Small"
                 }, 
                 {
+                    "alternateFor": "timeSig2", 
                     "codepoint": "U+F45F", 
                     "name": "timeSig2Small"
                 }, 
                 {
+                    "alternateFor": "timeSig3", 
                     "codepoint": "U+F460", 
                     "name": "timeSig3Small"
                 }, 
                 {
+                    "alternateFor": "timeSig4", 
                     "codepoint": "U+F461", 
                     "name": "timeSig4Small"
                 }, 
                 {
+                    "alternateFor": "timeSig5", 
                     "codepoint": "U+F462", 
                     "name": "timeSig5Small"
                 }, 
                 {
+                    "alternateFor": "timeSig6", 
                     "codepoint": "U+F463", 
                     "name": "timeSig6Small"
                 }, 
                 {
+                    "alternateFor": "timeSig7", 
                     "codepoint": "U+F464", 
                     "name": "timeSig7Small"
                 }, 
                 {
+                    "alternateFor": "timeSig8", 
                     "codepoint": "U+F465", 
                     "name": "timeSig8Small"
                 }, 
                 {
+                    "alternateFor": "timeSig9", 
                     "codepoint": "U+F466", 
                     "name": "timeSig9Small"
                 }, 
                 {
+                    "alternateFor": "noteheadDoubleWhole", 
                     "codepoint": "U+F467", 
                     "name": "noteheadDoubleWholeSmall"
                 }, 
                 {
+                    "alternateFor": "noteheadWhole", 
                     "codepoint": "U+F468", 
                     "name": "noteheadWholeSmall"
                 }, 
                 {
+                    "alternateFor": "noteheadHalf", 
                     "codepoint": "U+F469", 
                     "name": "noteheadHalfSmall"
                 }, 
                 {
+                    "alternateFor": "noteheadBlack", 
                     "codepoint": "U+F46A", 
                     "name": "noteheadBlackSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicPiano", 
                     "codepoint": "U+F46B", 
                     "name": "dynamicPianoSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicMezzo", 
                     "codepoint": "U+F46C", 
                     "name": "dynamicMezzoSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicForte", 
                     "codepoint": "U+F46D", 
                     "name": "dynamicForteSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicRinforzando", 
                     "codepoint": "U+F46E", 
                     "name": "dynamicRinforzandoSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicSforzando", 
                     "codepoint": "U+F46F", 
                     "name": "dynamicSforzandoSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicZ", 
                     "codepoint": "U+F470", 
                     "name": "dynamicZSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicNiente", 
                     "codepoint": "U+F471", 
                     "name": "dynamicNienteSmall"
                 }, 
                 {
+                    "alternateFor": "gClef", 
                     "codepoint": "U+F472", 
                     "name": "gClefSmall"
                 }, 
                 {
+                    "alternateFor": "cClef", 
                     "codepoint": "U+F473", 
                     "name": "cClefSmall"
                 }, 
                 {
+                    "alternateFor": "fClef", 
                     "codepoint": "U+F474", 
                     "name": "fClefSmall"
                 }, 
                 {
+                    "alternateFor": "articAccentAbove", 
                     "codepoint": "U+F475", 
                     "name": "articAccentAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articAccentBelow", 
                     "codepoint": "U+F476", 
                     "name": "articAccentBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatoAbove", 
                     "codepoint": "U+F477", 
                     "name": "articStaccatoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatoBelow", 
                     "codepoint": "U+F478", 
                     "name": "articStaccatoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articTenutoAbove", 
                     "codepoint": "U+F479", 
                     "name": "articTenutoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articTenutoBelow", 
                     "codepoint": "U+F47A", 
                     "name": "articTenutoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatissimoAbove", 
                     "codepoint": "U+F47B", 
                     "name": "articStaccatissimoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatissimoBelow", 
                     "codepoint": "U+F47C", 
                     "name": "articStaccatissimoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatissimoWedgeAbove", 
                     "codepoint": "U+F47D", 
                     "name": "articStaccatissimoWedgeAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatissimoWedgeBelow", 
                     "codepoint": "U+F47E", 
                     "name": "articStaccatissimoWedgeBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatissimoStrokeAbove", 
                     "codepoint": "U+F47F", 
                     "name": "articStaccatissimoStrokeAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatissimoStrokeBelow", 
                     "codepoint": "U+F480", 
                     "name": "articStaccatissimoStrokeBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articMarcatoAbove", 
                     "codepoint": "U+F481", 
                     "name": "articMarcatoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articMarcatoBelow", 
                     "codepoint": "U+F482", 
                     "name": "articMarcatoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articMarcatoStaccatoAbove", 
                     "codepoint": "U+F483", 
                     "name": "articMarcatoStaccatoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articMarcatoStaccatoBelow", 
                     "codepoint": "U+F484", 
                     "name": "articMarcatoStaccatoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articAccentStaccatoAbove", 
                     "codepoint": "U+F485", 
                     "name": "articAccentStaccatoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articAccentStaccatoBelow", 
                     "codepoint": "U+F486", 
                     "name": "articAccentStaccatoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articTenutoStaccatoAbove", 
                     "codepoint": "U+F487", 
                     "name": "articTenutoStaccatoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articTenutoStaccatoBelow", 
                     "codepoint": "U+F488", 
                     "name": "articTenutoStaccatoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articTenutoAccentAbove", 
                     "codepoint": "U+F489", 
                     "name": "articTenutoAccentAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articTenutoAccentBelow", 
                     "codepoint": "U+F48A", 
                     "name": "articTenutoAccentBelowSmall"
                 }
@@ -35481,34 +37693,42 @@
             "description": "Short flags (to avoid augmentation dots)", 
             "glyphs": [
                 {
+                    "alternateFor": "flag8thUp", 
                     "codepoint": "U+F410", 
                     "name": "flag8thUpShort"
                 }, 
                 {
+                    "alternateFor": "flag16thUp", 
                     "codepoint": "U+F413", 
                     "name": "flag16thUpShort"
                 }, 
                 {
+                    "alternateFor": "flag32ndUp", 
                     "codepoint": "U+F416", 
                     "name": "flag32ndUpShort"
                 }, 
                 {
+                    "alternateFor": "flag64thUp", 
                     "codepoint": "U+F419", 
                     "name": "flag64thUpShort"
                 }, 
                 {
+                    "alternateFor": "flag128thUp", 
                     "codepoint": "U+F41C", 
                     "name": "flag128thUpShort"
                 }, 
                 {
+                    "alternateFor": "flag256thUp", 
                     "codepoint": "U+F41F", 
                     "name": "flag256thUpShort"
                 }, 
                 {
+                    "alternateFor": "flag512thUp", 
                     "codepoint": "U+F422", 
                     "name": "flag512thUpShort"
                 }, 
                 {
+                    "alternateFor": "flag1024thUp", 
                     "codepoint": "U+F425", 
                     "name": "flag1024thUpShort"
                 }
@@ -35519,66 +37739,82 @@
             "description": "Straight flags", 
             "glyphs": [
                 {
+                    "alternateFor": "flag8thUp", 
                     "codepoint": "U+F40F", 
                     "name": "flag8thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag8thDown", 
                     "codepoint": "U+F411", 
                     "name": "flag8thDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag16thUp", 
                     "codepoint": "U+F412", 
                     "name": "flag16thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag16thDown", 
                     "codepoint": "U+F414", 
                     "name": "flag16thDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag32ndUp", 
                     "codepoint": "U+F415", 
                     "name": "flag32ndUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag32ndDown", 
                     "codepoint": "U+F417", 
                     "name": "flag32ndDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag64thUp", 
                     "codepoint": "U+F418", 
                     "name": "flag64thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag64thDown", 
                     "codepoint": "U+F41A", 
                     "name": "flag64thDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag128thUp", 
                     "codepoint": "U+F41B", 
                     "name": "flag128thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag128thDown", 
                     "codepoint": "U+F41D", 
                     "name": "flag128thDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag256thUp", 
                     "codepoint": "U+F41E", 
                     "name": "flag256thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag256thDown", 
                     "codepoint": "U+F420", 
                     "name": "flag256thDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag512thUp", 
                     "codepoint": "U+F421", 
                     "name": "flag512thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag512thDown", 
                     "codepoint": "U+F423", 
                     "name": "flag512thDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag1024thUp", 
                     "codepoint": "U+F424", 
                     "name": "flag1024thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag1024thDown", 
                     "codepoint": "U+F426", 
                     "name": "flag1024thDownStraight"
                 }
@@ -35589,59 +37825,103 @@
             "description": "Large time signatures", 
             "glyphs": [
                 {
+                    "alternateFor": "timeSig0", 
                     "codepoint": "U+F440", 
                     "name": "timeSig0Large"
                 }, 
                 {
+                    "alternateFor": "timeSig1", 
                     "codepoint": "U+F441", 
                     "name": "timeSig1Large"
                 }, 
                 {
+                    "alternateFor": "timeSig2", 
                     "codepoint": "U+F442", 
                     "name": "timeSig2Large"
                 }, 
                 {
+                    "alternateFor": "timeSig3", 
                     "codepoint": "U+F443", 
                     "name": "timeSig3Large"
                 }, 
                 {
+                    "alternateFor": "timeSig4", 
                     "codepoint": "U+F444", 
                     "name": "timeSig4Large"
                 }, 
                 {
+                    "alternateFor": "timeSig5", 
                     "codepoint": "U+F445", 
                     "name": "timeSig5Large"
                 }, 
                 {
+                    "alternateFor": "timeSig6", 
                     "codepoint": "U+F446", 
                     "name": "timeSig6Large"
                 }, 
                 {
+                    "alternateFor": "timeSig7", 
                     "codepoint": "U+F447", 
                     "name": "timeSig7Large"
                 }, 
                 {
+                    "alternateFor": "timeSig8", 
                     "codepoint": "U+F448", 
                     "name": "timeSig8Large"
                 }, 
                 {
+                    "alternateFor": "timeSig9", 
                     "codepoint": "U+F449", 
                     "name": "timeSig9Large"
                 }, 
                 {
+                    "alternateFor": "timeSigCommon", 
                     "codepoint": "U+F44A", 
                     "name": "timeSigCommonLarge"
                 }, 
                 {
+                    "alternateFor": "timeSigCutCommon", 
                     "codepoint": "U+F44B", 
                     "name": "timeSigCutCommonLarge"
                 }, 
                 {
+                    "alternateFor": "timeSigPlus", 
                     "codepoint": "U+F44C", 
                     "name": "timeSigPlusLarge"
                 }
             ], 
             "type": "timeSigsLarge"
+        }, 
+        "ss05": {
+            "description": "Noteheads at larger optical size ", 
+            "glyphs": [
+                {
+                    "alternateFor": "noteheadDoubleWhole", 
+                    "codepoint": "U+F4BA", 
+                    "name": "noteheadDoubleWholeOversized"
+                }, 
+                {
+                    "alternateFor": "noteheadDoubleWholeSquare", 
+                    "codepoint": "U+F4BB", 
+                    "name": "noteheadDoubleWholeSquareOversized"
+                }, 
+                {
+                    "alternateFor": "noteheadWhole", 
+                    "codepoint": "U+F4BC", 
+                    "name": "noteheadWholeOversized"
+                }, 
+                {
+                    "alternateFor": "noteheadHalf", 
+                    "codepoint": "U+F4BD", 
+                    "name": "noteheadHalfOversized"
+                }, 
+                {
+                    "alternateFor": "noteheadBlack", 
+                    "codepoint": "U+F4BE", 
+                    "name": "noteheadBlackOversized"
+                }
+            ], 
+            "type": "noteheadsLarge"
         }
     }
 }
\ No newline at end of file
diff --git a/fonts/bravura/ranges.json b/fonts/bravura/ranges.json
index 86d5ea8..1baf261 100644
--- a/fonts/bravura/ranges.json
+++ b/fonts/bravura/ranges.json
@@ -73,7 +73,9 @@
             "analyticsThemeRetrogradeInversion", 
             "analyticsThemeInversion", 
             "analyticsTheme1", 
-            "analyticsInversion1"
+            "analyticsInversion1", 
+            "analyticsChoralmelodie", 
+            "analyticsHauptrhythmus"
         ], 
         "range_end": "U+E86F", 
         "range_start": "U+E860"
@@ -178,7 +180,9 @@
             "articUnstressAbove", 
             "articUnstressBelow", 
             "articLaissezVibrerAbove", 
-            "articLaissezVibrerBelow"
+            "articLaissezVibrerBelow", 
+            "articMarcatoTenutoAbove", 
+            "articMarcatoTenutoBelow"
         ], 
         "range_end": "U+E4BF", 
         "range_start": "U+E4A0"
@@ -478,7 +482,10 @@
             "brassHarmonMuteClosed", 
             "brassHarmonMuteStemHalfLeft", 
             "brassHarmonMuteStemHalfRight", 
-            "brassHarmonMuteStemOpen"
+            "brassHarmonMuteStemOpen", 
+            "brassLiftSmoothShort", 
+            "brassLiftSmoothMedium", 
+            "brassLiftSmoothLong"
         ], 
         "range_end": "U+E5EF", 
         "range_start": "U+E5D0"
@@ -567,10 +574,10 @@
             "semipitchedPercussionClef2", 
             "6stringTabClef", 
             "4stringTabClef", 
-            "cClefTriangular", 
-            "fClefTriangular", 
-            "cClefTriangularToFClef", 
-            "fClefTriangularToCClef", 
+            "schaefferClef", 
+            "schaefferPreviousClef", 
+            "schaefferGClefToFClef", 
+            "schaefferFClefToGClef", 
             "gClefReversed", 
             "gClefTurned", 
             "cClefReversed", 
@@ -980,7 +987,8 @@
             "figbassParensRight", 
             "figbassPlus", 
             "figbassCombiningRaising", 
-            "figbassCombiningLowering"
+            "figbassCombiningLowering", 
+            "figbass6Raised2"
         ], 
         "range_end": "U+EA6F", 
         "range_start": "U+EA50"
@@ -1240,7 +1248,9 @@
             "harpTuningKeyHandle", 
             "harpTuningKeyShank", 
             "harpTuningKeyGlissando", 
-            "harpStringNoiseStem"
+            "harpStringNoiseStem", 
+            "harpSalzedoAeolianAscending", 
+            "harpSalzedoAeolianDescending"
         ], 
         "range_end": "U+E69F", 
         "range_start": "U+E680"
@@ -1782,6 +1792,37 @@
         "range_end": "U+E70F", 
         "range_start": "U+E700"
     }, 
+    "metronomeMarks": {
+        "description": "Metronome marks", 
+        "glyphs": [
+            "metNoteDoubleWhole", 
+            "metNoteDoubleWholeSquare", 
+            "metNoteWhole", 
+            "metNoteHalfUp", 
+            "metNoteHalfDown", 
+            "metNoteQuarterUp", 
+            "metNoteQuarterDown", 
+            "metNote8thUp", 
+            "metNote8thDown", 
+            "metNote16thUp", 
+            "metNote16thDown", 
+            "metNote32ndUp", 
+            "metNote32ndDown", 
+            "metNote64thUp", 
+            "metNote64thDown", 
+            "metNote128thUp", 
+            "metNote128thDown", 
+            "metNote256thUp", 
+            "metNote256thDown", 
+            "metNote512thUp", 
+            "metNote512thDown", 
+            "metNote1024thUp", 
+            "metNote1024thDown", 
+            "metAugmentationDot"
+        ], 
+        "range_end": "U+ECBF", 
+        "range_start": "U+ECA0"
+    }, 
     "miscellaneousPercussionInstrumentPictograms": {
         "description": "Miscellaneous percussion instrument pictograms", 
         "glyphs": [
@@ -1806,7 +1847,7 @@
             "metricModulationArrowLeft", 
             "metricModulationArrowRight"
         ], 
-        "range_end": "U+EC6F", 
+        "range_end": "U+EC7F", 
         "range_start": "U+EC60"
     }, 
     "multiSegmentLines": {
@@ -2180,11 +2221,31 @@
             "ventiduesimaAlta", 
             "ventiduesimaBassa", 
             "octaveParensLeft", 
-            "octaveParensRight"
+            "octaveParensRight", 
+            "ottavaBassaVb", 
+            "quindicesimaBassaMb", 
+            "ventiduesimaBassaMb", 
+            "octaveBassa"
         ], 
         "range_end": "U+E51F", 
         "range_start": "U+E510"
     }, 
+    "octavesSupplement": {
+        "description": "Octaves supplement", 
+        "glyphs": [
+            "octaveLoco", 
+            "octaveBaselineA", 
+            "octaveSuperscriptA", 
+            "octaveBaselineB", 
+            "octaveSuperscriptB", 
+            "octaveBaselineM", 
+            "octaveSuperscriptM", 
+            "octaveBaselineV", 
+            "octaveSuperscriptV"
+        ], 
+        "range_end": "U+EC9F", 
+        "range_start": "U+EC90"
+    }, 
     "olympianSagittalExtensionExtremePrecisionAccidentalDiacritics": {
         "description": "Olympian Sagittal extension (extreme precision) accidental diacritics", 
         "glyphs": [], 
@@ -2344,11 +2405,11 @@
             "ornamentPrecompPortDeVoixMordent", 
             "ornamentPrecompTrillWithMordent", 
             "ornamentPrecompCadence", 
-            "ornamentPrecompCadenceWithTurn ", 
+            "ornamentPrecompCadenceWithTurn", 
             "ornamentPrecompDoubleCadenceLowerPrefix", 
-            "ornamentPrecompCadenceUpperPrefix ", 
+            "ornamentPrecompCadenceUpperPrefix", 
             "ornamentPrecompCadenceUpperPrefixTurn", 
-            "ornamentPrecompDoubleCadenceUpperPrefix ", 
+            "ornamentPrecompDoubleCadenceUpperPrefix", 
             "ornamentPrecompDoubleCadenceUpperPrefixTurn", 
             "ornamentPrecompMordentRelease", 
             "ornamentPrecompMordentUpperPrefix", 
@@ -2535,7 +2596,8 @@
             "restQuarterOld", 
             "restDoubleWholeLegerLine", 
             "restWholeLegerLine", 
-            "restHalfLegerLine"
+            "restHalfLegerLine", 
+            "restQuarterZ"
         ], 
         "range_end": "U+E4FF", 
         "range_start": "U+E4E0"
@@ -2621,7 +2683,9 @@
             "smnHistoryDoubleSharp", 
             "smnHistoryFlat", 
             "smnHistoryDoubleFlat", 
-            "smnNatural"
+            "smnNatural", 
+            "smnSharpDown", 
+            "smnSharpWhiteDown"
         ], 
         "range_end": "U+EC5F", 
         "range_start": "U+EC50"
@@ -2897,6 +2961,19 @@
         "range_end": "U+E09F", 
         "range_start": "U+E080"
     }, 
+    "timeSignaturesSupplement": {
+        "description": "Time signatures supplement", 
+        "glyphs": [
+            "timeSigBracketLeft", 
+            "timeSigBracketRight", 
+            "timeSigBracketLeftSmall", 
+            "timeSigBracketRightSmall", 
+            "timeSigSlash", 
+            "timeSigCut2"
+        ], 
+        "range_end": "U+EC8F", 
+        "range_start": "U+EC80"
+    }, 
     "tremolos": {
         "description": "Tremolos", 
         "glyphs": [
diff --git a/fonts/bravura/smufl-1.18.pdf b/fonts/bravura/smufl-1.18.pdf
new file mode 100644
index 0000000..30a6290
Binary files /dev/null and b/fonts/bravura/smufl-1.18.pdf differ
diff --git a/fonts/gootville/Gootville.otf b/fonts/gootville/Gootville.otf
old mode 100644
new mode 100755
index 341f288..090a10a
Binary files a/fonts/gootville/Gootville.otf and b/fonts/gootville/Gootville.otf differ
diff --git a/fonts/gootville/GootvilleText.otf b/fonts/gootville/GootvilleText.otf
old mode 100644
new mode 100755
index 0d5ce20..ccacd2a
Binary files a/fonts/gootville/GootvilleText.otf and b/fonts/gootville/GootvilleText.otf differ
diff --git a/fonts/gootville/classes.json b/fonts/gootville/classes.json
old mode 100644
new mode 100755
index a748218..45e74e3
--- a/fonts/gootville/classes.json
+++ b/fonts/gootville/classes.json
@@ -895,10 +895,10 @@
         "semipitchedPercussionClef2", 
         "6stringTabClef", 
         "4stringTabClef", 
-        "cClefTriangular", 
-        "fClefTriangular", 
-        "cClefTriangularToFClef", 
-        "fClefTriangularToCClef", 
+        "schaefferClef", 
+        "schaefferPreviousClef", 
+        "schaefferGClefToFClef", 
+        "schaefferFClefToGClef", 
         "gClefReversed", 
         "gClefTurned", 
         "cClefReversed", 
@@ -2874,7 +2874,8 @@
         "restQuarterOld", 
         "restDoubleWholeLegerLine", 
         "restWholeLegerLine", 
-        "restHalfLegerLine"
+        "restHalfLegerLine", 
+        "restQuarterZ"
     ], 
     "stemDecorations": [
         "tremolo1", 
@@ -2980,6 +2981,32 @@
         "harpPedalLowered", 
         "harpPedalDivider"
     ], 
+    "tf_metronomeMarks": [
+        "metNoteDoubleWhole", 
+        "metNoteDoubleWholeSquare", 
+        "metNoteWhole", 
+        "metNoteHalfUp", 
+        "metNoteHalfDown", 
+        "metNoteQuarterUp", 
+        "metNoteQuarterDown", 
+        "metNote8thUp", 
+        "metNote8thDown", 
+        "metNote16thUp", 
+        "metNote16thDown", 
+        "metNote32ndUp", 
+        "metNote32ndDown", 
+        "metNote64thUp", 
+        "metNote64thDown", 
+        "metNote128thUp", 
+        "metNote128thDown", 
+        "metNote256thUp", 
+        "metNote256thDown", 
+        "metNote512thUp", 
+        "metNote512thDown", 
+        "metNote1024thUp", 
+        "metNote1024thDown", 
+        "metAugmentationDot"
+    ], 
     "tf_ornaments": [
         "graceNoteAcciaccaturaStemUp", 
         "graceNoteAcciaccaturaStemDown", 
@@ -3061,11 +3088,11 @@
         "ornamentPrecompPortDeVoixMordent", 
         "ornamentPrecompTrillWithMordent", 
         "ornamentPrecompCadence", 
-        "ornamentPrecompCadenceWithTurn ", 
+        "ornamentPrecompCadenceWithTurn", 
         "ornamentPrecompDoubleCadenceLowerPrefix", 
-        "ornamentPrecompCadenceUpperPrefix ", 
+        "ornamentPrecompCadenceUpperPrefix", 
         "ornamentPrecompCadenceUpperPrefixTurn", 
-        "ornamentPrecompDoubleCadenceUpperPrefix ", 
+        "ornamentPrecompDoubleCadenceUpperPrefix", 
         "ornamentPrecompDoubleCadenceUpperPrefixTurn", 
         "ornamentPrecompMordentRelease", 
         "ornamentPrecompMordentUpperPrefix", 
diff --git a/fonts/gootville/metadata.json b/fonts/gootville/metadata.json
old mode 100644
new mode 100755
index b3f84ff..565f8ab
--- a/fonts/gootville/metadata.json
+++ b/fonts/gootville/metadata.json
@@ -1,6 +1,6 @@
 {
     "fontName": "Gootville", 
-    "fontVersion": 1.0, 
+    "fontVersion": 1.2, 
 
     "engravingDefaults": {
         "arrowShaftThickness": 0.16, 
@@ -2785,7 +2785,7 @@
         }, 
         "accidental1CommaFlat": {
             "bBoxNE": [
-                0.996, 
+                1.076, 
                 1.976
             ], 
             "bBoxSW": [
@@ -2795,7 +2795,7 @@
         }, 
         "accidental1CommaSharp": {
             "bBoxNE": [
-                1.5, 
+                1.58, 
                 2.076
             ], 
             "bBoxSW": [
@@ -2805,7 +2805,7 @@
         }, 
         "accidental2CommaFlat": {
             "bBoxNE": [
-                1.288, 
+                1.368, 
                 1.944
             ], 
             "bBoxSW": [
@@ -2815,7 +2815,7 @@
         }, 
         "accidental2CommaSharp": {
             "bBoxNE": [
-                1.82, 
+                1.9, 
                 2.068
             ], 
             "bBoxSW": [
@@ -2825,7 +2825,7 @@
         }, 
         "accidental3CommaFlat": {
             "bBoxNE": [
-                1.196, 
+                1.276, 
                 1.912
             ], 
             "bBoxSW": [
@@ -2835,7 +2835,7 @@
         }, 
         "accidental3CommaSharp": {
             "bBoxNE": [
-                1.748, 
+                1.828, 
                 2.044
             ], 
             "bBoxSW": [
@@ -2845,7 +2845,7 @@
         }, 
         "accidental4CommaFlat": {
             "bBoxNE": [
-                1.292, 
+                1.368, 
                 1.968
             ], 
             "bBoxSW": [
@@ -2855,7 +2855,7 @@
         }, 
         "accidental5CommaSharp": {
             "bBoxNE": [
-                1.752, 
+                1.828, 
                 2.04
             ], 
             "bBoxSW": [
@@ -3095,12 +3095,12 @@
         }, 
         "accidentalDoubleFlatParens": {
             "bBoxNE": [
-                2.972, 
+                2.772, 
                 1.748
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.004
+                -0.992
             ]
         }, 
         "accidentalDoubleFlatReversed": {
@@ -3206,11 +3206,11 @@
         "accidentalDoubleSharpParens": {
             "bBoxNE": [
                 1.992, 
-                1.0
+                0.988
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.004
+                -0.992
             ]
         }, 
         "accidentalDoubleSharpThreeArrowsDown": {
@@ -3415,12 +3415,12 @@
         }, 
         "accidentalFlatParens": {
             "bBoxNE": [
-                2.184, 
+                2.024, 
                 1.756
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.004
+                -0.992
             ]
         }, 
         "accidentalFlatSmall": {
@@ -3855,7 +3855,7 @@
         }, 
         "accidentalNaturalParens": {
             "bBoxNE": [
-                2.16, 
+                2.164, 
                 1.364
             ], 
             "bBoxSW": [
@@ -3975,22 +3975,22 @@
         }, 
         "accidentalParensLeft": {
             "bBoxNE": [
-                0.652, 
-                1.0
+                0.564, 
+                0.988
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.004
+                -0.992
             ]
         }, 
         "accidentalParensRight": {
             "bBoxNE": [
-                0.652, 
-                1.0
+                0.564, 
+                0.988
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.004
+                -0.992
             ]
         }, 
         "accidentalQuarterToneFlat4": {
@@ -5713,6 +5713,26 @@
                 -2.036
             ]
         }, 
+        "articMarcatoTenutoAbove": {
+            "bBoxNE": [
+                1.352, 
+                1.708
+            ], 
+            "bBoxSW": [
+                -0.004, 
+                0.0
+            ]
+        }, 
+        "articMarcatoTenutoBelow": {
+            "bBoxNE": [
+                1.352, 
+                0.0
+            ], 
+            "bBoxSW": [
+                -0.004, 
+                -1.716
+            ]
+        }, 
         "articStaccatissimoAbove": {
             "bBoxNE": [
                 0.4, 
@@ -6853,26 +6873,6 @@
                 -1.996
             ]
         }, 
-        "cClefTriangular": {
-            "bBoxNE": [
-                1.856, 
-                1.5
-            ], 
-            "bBoxSW": [
-                0.0, 
-                -1.5
-            ]
-        }, 
-        "cClefTriangularToFClef": {
-            "bBoxNE": [
-                2.416, 
-                2.46
-            ], 
-            "bBoxSW": [
-                -0.016, 
-                -1.544
-            ]
-        }, 
         "caesura": {
             "bBoxNE": [
                 1.536, 
@@ -8125,72 +8125,72 @@
         }, 
         "dynamicFF": {
             "bBoxNE": [
-                2.684, 
-                1.82
+                2.44, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.54, 
+                -0.608
             ]
         }, 
         "dynamicFFF": {
             "bBoxNE": [
-                3.776, 
-                1.82
+                3.32, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.62, 
+                -0.608
             ]
         }, 
         "dynamicFFFF": {
             "bBoxNE": [
-                4.868, 
-                1.82
+                4.28, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.62, 
+                -0.608
             ]
         }, 
         "dynamicFFFFF": {
             "bBoxNE": [
-                5.952, 
-                1.82
+                5.24, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.62, 
+                -0.608
             ]
         }, 
         "dynamicFFFFFF": {
             "bBoxNE": [
-                7.012, 
-                1.82
+                6.2, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.62, 
+                -0.608
             ]
         }, 
         "dynamicForte": {
             "bBoxNE": [
-                1.576, 
-                1.82
+                1.456, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.564, 
+                -0.608
             ]
         }, 
         "dynamicFortePiano": {
             "bBoxNE": [
-                2.644, 
-                1.82
+                2.476, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.564, 
+                -0.608
             ]
         }, 
         "dynamicForteSmall": {
@@ -8205,32 +8205,32 @@
         }, 
         "dynamicForzando": {
             "bBoxNE": [
-                2.16, 
-                1.82
+                1.988, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.568, 
-                -0.672
+                -0.564, 
+                -0.608
             ]
         }, 
         "dynamicMF": {
             "bBoxNE": [
-                3.192, 
-                1.768
+                3.272, 
+                1.724
             ], 
             "bBoxSW": [
-                -0.152, 
-                -0.724
+                -0.08, 
+                -0.66
             ]
         }, 
         "dynamicMP": {
             "bBoxNE": [
-                3.18, 
-                1.108
+                3.3, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.14, 
-                -0.548
+                -0.08, 
+                -0.568
             ]
         }, 
         "dynamicMessaDiVoce": {
@@ -8245,12 +8245,12 @@
         }, 
         "dynamicMezzo": {
             "bBoxNE": [
-                1.724, 
-                1.092
+                1.784, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.152, 
-                -0.044
+                -0.08, 
+                -0.04
             ]
         }, 
         "dynamicMezzoSmall": {
@@ -8266,11 +8266,11 @@
         "dynamicNiente": {
             "bBoxNE": [
                 1.232, 
-                1.12
+                1.096
             ], 
             "bBoxSW": [
-                -0.152, 
-                -0.02
+                -0.092, 
+                -0.04
             ]
         }, 
         "dynamicNienteForHairpin": {
@@ -8295,72 +8295,72 @@
         }, 
         "dynamicPF": {
             "bBoxNE": [
-                3.088, 
-                1.82
+                3.08, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.672
+                -0.288, 
+                -0.608
             ]
         }, 
         "dynamicPP": {
             "bBoxNE": [
-                2.94, 
-                1.116
+                2.912, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.54
+                -0.328, 
+                -0.568
             ]
         }, 
         "dynamicPPP": {
             "bBoxNE": [
-                4.328, 
-                1.14
+                4.292, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.516
+                -0.368, 
+                -0.568
             ]
         }, 
         "dynamicPPPP": {
             "bBoxNE": [
-                5.716, 
-                1.12
+                5.672, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.536
+                -0.408, 
+                -0.568
             ]
         }, 
         "dynamicPPPPP": {
             "bBoxNE": [
-                7.108, 
-                1.12
+                7.092, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.536
+                -0.408, 
+                -0.568
             ]
         }, 
         "dynamicPPPPPP": {
             "bBoxNE": [
-                8.496, 
-                1.116
+                8.512, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.54
+                -0.408, 
+                -0.568
             ]
         }, 
         "dynamicPiano": {
             "bBoxNE": [
-                1.552, 
-                1.12
+                1.464, 
+                1.096
             ], 
             "bBoxSW": [
                 -0.356, 
-                -0.536
+                -0.568
             ]
         }, 
         "dynamicPianoSmall": {
@@ -8375,32 +8375,32 @@
         }, 
         "dynamicRinforzando": {
             "bBoxNE": [
-                1.224, 
-                1.148
+                1.108, 
+                1.096
             ], 
             "bBoxSW": [
-                -0.052, 
+                -0.08, 
                 0.0
             ]
         }, 
         "dynamicRinforzando1": {
             "bBoxNE": [
-                2.82, 
-                1.82
+                2.5, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.052, 
-                -0.672
+                -0.08, 
+                -0.608
             ]
         }, 
         "dynamicRinforzando2": {
             "bBoxNE": [
-                3.42, 
-                1.82
+                2.976, 
+                1.776
             ], 
             "bBoxSW": [
-                -0.052, 
-                -0.672
+                -0.08, 
+                -0.608
             ]
         }, 
         "dynamicRinforzandoSmall": {
@@ -8415,42 +8415,42 @@
         }, 
         "dynamicSforzando": {
             "bBoxNE": [
-                0.888, 
-                1.14
+                0.916, 
+                1.092
             ], 
             "bBoxSW": [
                 0.0, 
-                0.0
+                -0.04
             ]
         }, 
         "dynamicSforzando1": {
             "bBoxNE": [
-                2.456, 
-                1.82
+                2.416, 
+                1.776
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.672
+                -0.608
             ]
         }, 
         "dynamicSforzandoPianissimo": {
             "bBoxNE": [
-                4.984, 
-                1.82
+                4.796, 
+                1.776
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.672
+                -0.608
             ]
         }, 
         "dynamicSforzandoPiano": {
             "bBoxNE": [
-                3.468, 
-                1.82
+                3.38, 
+                1.776
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.672
+                -0.608
             ]
         }, 
         "dynamicSforzandoSmall": {
@@ -8465,42 +8465,42 @@
         }, 
         "dynamicSforzato": {
             "bBoxNE": [
-                3.0, 
-                1.82
+                2.932, 
+                1.776
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.672
+                -0.608
             ]
         }, 
         "dynamicSforzatoFF": {
             "bBoxNE": [
-                4.12, 
-                1.82
+                3.856, 
+                1.776
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.672
+                -0.608
             ]
         }, 
         "dynamicSforzatoPiano": {
             "bBoxNE": [
-                4.392, 
-                1.82
+                4.304, 
+                1.776
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.672
+                -0.608
             ]
         }, 
         "dynamicZ": {
             "bBoxNE": [
-                1.0, 
-                1.12
+                0.976, 
+                1.072
             ], 
             "bBoxSW": [
-                -0.116, 
-                -0.02
+                -0.12, 
+                -0.04
             ]
         }, 
         "dynamicZSmall": {
@@ -8935,8 +8935,8 @@
         }, 
         "elecPowerOnOff": {
             "bBoxNE": [
-                2.792, 
-                3.0
+                2.696, 
+                2.992
             ], 
             "bBoxSW": [
                 0.0, 
@@ -9116,11 +9116,11 @@
         "elecVolumeLevel100": {
             "bBoxNE": [
                 0.944, 
-                4.144
+                4.112
             ], 
             "bBoxSW": [
                 0.0, 
-                0.032
+                0.0
             ]
         }, 
         "elecVolumeLevel20": {
@@ -9146,21 +9146,21 @@
         "elecVolumeLevel60": {
             "bBoxNE": [
                 0.944, 
-                4.112
+                4.08
             ], 
             "bBoxSW": [
                 0.0, 
-                0.032
+                0.0
             ]
         }, 
         "elecVolumeLevel80": {
             "bBoxNE": [
                 0.944, 
-                4.112
+                4.08
             ], 
             "bBoxSW": [
                 0.0, 
-                0.032
+                0.0
             ]
         }, 
         "fClef": {
@@ -9293,26 +9293,6 @@
                 -2.508
             ]
         }, 
-        "fClefTriangular": {
-            "bBoxNE": [
-                1.264, 
-                1.004
-            ], 
-            "bBoxSW": [
-                0.0, 
-                -0.996
-            ]
-        }, 
-        "fClefTriangularToCClef": {
-            "bBoxNE": [
-                2.428, 
-                2.496
-            ], 
-            "bBoxSW": [
-                -0.004, 
-                -1.508
-            ]
-        }, 
         "fClefTurned": {
             "bBoxNE": [
                 2.756, 
@@ -9465,191 +9445,201 @@
         }, 
         "figbass0": {
             "bBoxNE": [
-                0.856, 
+                0.94, 
                 1.004
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.08, 
                 -0.004
             ]
         }, 
         "figbass1": {
             "bBoxNE": [
-                0.468, 
+                0.548, 
                 1.016
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass2": {
             "bBoxNE": [
-                0.808, 
+                0.888, 
                 1.012
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.012
             ]
         }, 
         "figbass2Raised": {
             "bBoxNE": [
-                0.816, 
+                0.892, 
                 1.024
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.192
             ]
         }, 
         "figbass3": {
             "bBoxNE": [
-                0.74, 
+                0.82, 
                 1.008
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass4": {
             "bBoxNE": [
-                0.788, 
+                0.864, 
                 1.012
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.004
             ]
         }, 
         "figbass4Raised": {
             "bBoxNE": [
-                0.944, 
+                1.024, 
                 1.004
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass5": {
             "bBoxNE": [
-                0.744, 
+                0.82, 
                 1.032
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass5Raised1": {
             "bBoxNE": [
-                0.756, 
+                0.832, 
                 1.224
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.004
             ]
         }, 
         "figbass5Raised2": {
             "bBoxNE": [
-                0.756, 
+                0.832, 
                 1.22
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass5Raised3": {
             "bBoxNE": [
-                1.0, 
+                1.08, 
                 1.036
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass6": {
             "bBoxNE": [
-                0.788, 
-                1.004
+                0.864, 
+                1.0
             ], 
             "bBoxSW": [
-                0.004, 
-                0.004
+                0.08, 
+                0.0
             ]
         }, 
         "figbass6Raised": {
             "bBoxNE": [
-                0.928, 
+                1.008, 
                 0.996
             ], 
             "bBoxSW": [
-                -0.144, 
+                -0.064, 
+                0.0
+            ]
+        }, 
+        "figbass6Raised2": {
+            "bBoxNE": [
+                0.784, 
+                1.052
+            ], 
+            "bBoxSW": [
+                -0.056, 
                 0.0
             ]
         }, 
         "figbass7": {
             "bBoxNE": [
-                0.788, 
+                0.868, 
                 0.98
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass7Raised1": {
             "bBoxNE": [
-                0.788, 
+                0.868, 
                 1.16
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.004
             ]
         }, 
         "figbass7Raised2": {
             "bBoxNE": [
-                0.908, 
+                0.988, 
                 0.976
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.004
             ]
         }, 
         "figbass8": {
             "bBoxNE": [
-                0.768, 
+                0.848, 
                 1.004
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass9": {
             "bBoxNE": [
-                0.784, 
+                0.864, 
                 1.0
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "figbass9Raised": {
             "bBoxNE": [
-                0.944, 
+                1.024, 
                 1.0
             ], 
             "bBoxSW": [
-                -0.128, 
+                -0.048, 
                 0.0
             ]
         }, 
@@ -9695,41 +9685,41 @@
         }, 
         "figbassDoubleFlat": {
             "bBoxNE": [
-                1.284, 
+                1.36, 
                 1.9
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.008
             ]
         }, 
         "figbassDoubleSharp": {
             "bBoxNE": [
-                1.012, 
+                1.092, 
                 1.016
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.02
             ]
         }, 
         "figbassFlat": {
             "bBoxNE": [
-                0.7, 
+                0.776, 
                 1.868
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.012
             ]
         }, 
         "figbassNatural": {
             "bBoxNE": [
-                0.48, 
+                0.556, 
                 1.472
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.44
             ]
         }, 
@@ -9765,11 +9755,11 @@
         }, 
         "figbassSharp": {
             "bBoxNE": [
-                0.768, 
+                0.848, 
                 1.568
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.584
             ]
         }, 
@@ -9823,24 +9813,24 @@
                 -2.456
             ]
         }, 
-        "flag1024thUpStraight": {
+        "flag1024thUpSmall": {
             "bBoxNE": [
-                0.96, 
-                4.8
+                1.148, 
+                4.52
             ], 
             "bBoxSW": [
                 0.0, 
-                -2.22
+                -3.244
             ]
         }, 
-        "flag102thUpSmall": {
+        "flag1024thUpStraight": {
             "bBoxNE": [
-                1.148, 
-                4.52
+                0.96, 
+                4.8
             ], 
             "bBoxSW": [
                 0.0, 
-                -3.244
+                -2.22
             ]
         }, 
         "flag128thDown": {
@@ -10485,191 +10475,191 @@
         }, 
         "functionBracketLeft": {
             "bBoxNE": [
-                0.752, 
+                0.744, 
                 2.916
             ], 
             "bBoxSW": [
-                0.008, 
+                0.0, 
                 -0.848
             ]
         }, 
         "functionBracketRight": {
             "bBoxNE": [
-                0.756, 
+                0.744, 
                 2.916
             ], 
             "bBoxSW": [
-                0.012, 
+                0.0, 
                 -0.848
             ]
         }, 
         "functionDD": {
             "bBoxNE": [
-                3.168, 
+                3.248, 
                 2.916
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -1.024
             ]
         }, 
         "functionDLower": {
             "bBoxNE": [
-                1.888, 
+                1.956, 
                 2.916
             ], 
             "bBoxSW": [
-                0.012, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionDUpper": {
             "bBoxNE": [
-                2.312, 
+                2.392, 
                 2.916
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionEight": {
             "bBoxNE": [
-                1.908, 
+                1.984, 
                 2.836
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionFive": {
             "bBoxNE": [
-                1.912, 
+                1.992, 
                 2.776
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionFour": {
             "bBoxNE": [
-                1.968, 
+                2.048, 
                 2.836
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionGLower": {
             "bBoxNE": [
-                1.836, 
+                1.92, 
                 2.156
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.08, 
                 -0.872
             ]
         }, 
         "functionGUpper": {
             "bBoxNE": [
-                2.668, 
+                2.74, 
                 2.988
             ], 
             "bBoxSW": [
-                0.008, 
+                0.08, 
                 -0.072
             ]
         }, 
         "functionGreaterThan": {
             "bBoxNE": [
-                1.996, 
+                2.072, 
                 2.276
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.276
             ]
         }, 
         "functionLessThan": {
             "bBoxNE": [
-                1.992, 
+                2.068, 
                 2.276
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.276
             ]
         }, 
         "functionMinus": {
             "bBoxNE": [
-                0.952, 
+                1.032, 
                 1.248
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.96
             ]
         }, 
         "functionNLower": {
             "bBoxNE": [
-                1.668, 
+                1.748, 
                 2.156
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionNUpper": {
             "bBoxNE": [
-                2.288, 
+                2.36, 
                 2.916
             ], 
             "bBoxSW": [
-                0.008, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionNine": {
             "bBoxNE": [
-                1.88, 
+                1.964, 
                 2.836
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionOne": {
             "bBoxNE": [
-                0.988, 
+                1.06, 
                 2.836
             ], 
             "bBoxSW": [
-                0.008, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionPLower": {
             "bBoxNE": [
-                1.876, 
+                1.952, 
                 2.156
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.872
             ]
         }, 
         "functionPUpper": {
             "bBoxNE": [
-                2.108, 
+                2.184, 
                 2.916
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.0
             ]
         }, 
@@ -10695,181 +10685,181 @@
         }, 
         "functionPlus": {
             "bBoxNE": [
-                1.38, 
+                1.46, 
                 3.004
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 1.628
             ]
         }, 
         "functionRepetition1": {
             "bBoxNE": [
-                1.704, 
+                1.784, 
                 0.464
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionRepetition2": {
             "bBoxNE": [
-                2.0, 
+                2.084, 
                 3.132
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionRing": {
             "bBoxNE": [
-                1.376, 
+                1.456, 
                 3.012
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 1.636
             ]
         }, 
         "functionSLower": {
             "bBoxNE": [
-                1.708, 
+                1.78, 
                 2.156
             ], 
             "bBoxSW": [
-                0.008, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionSSLower": {
             "bBoxNE": [
-                2.312, 
+                2.392, 
                 2.216
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -0.892
             ]
         }, 
         "functionSSUpper": {
             "bBoxNE": [
-                3.088, 
+                3.168, 
                 3.06
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -1.096
             ]
         }, 
         "functionSUpper": {
             "bBoxNE": [
-                2.288, 
+                2.372, 
                 2.988
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.08, 
                 -0.072
             ]
         }, 
         "functionSeven": {
             "bBoxNE": [
-                1.9, 
+                1.976, 
                 2.776
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionSix": {
             "bBoxNE": [
-                1.892, 
+                1.96, 
                 2.836
             ], 
             "bBoxSW": [
-                0.012, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionSlashedDD": {
             "bBoxNE": [
-                3.168, 
+                3.248, 
                 3.2
             ], 
             "bBoxSW": [
-                -0.208, 
+                -0.128, 
                 -1.024
             ]
         }, 
         "functionTLower": {
             "bBoxNE": [
-                0.964, 
+                1.04, 
                 2.672
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.028
             ]
         }, 
         "functionTUpper": {
             "bBoxNE": [
-                2.292, 
+                2.368, 
                 2.916
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionThree": {
             "bBoxNE": [
-                1.9, 
+                1.976, 
                 2.836
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 -0.06
             ]
         }, 
         "functionTwo": {
             "bBoxNE": [
-                1.844, 
+                1.988, 
                 2.836
             ], 
             "bBoxSW": [
-                -0.064, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionVLower": {
             "bBoxNE": [
-                1.904, 
+                1.984, 
                 2.096
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionVUpper": {
             "bBoxNE": [
-                2.464, 
+                2.54, 
                 2.916
             ], 
             "bBoxSW": [
-                0.004, 
+                0.08, 
                 0.0
             ]
         }, 
         "functionZero": {
             "bBoxNE": [
-                1.868, 
+                1.936, 
                 2.836
             ], 
             "bBoxSW": [
-                0.012, 
+                0.08, 
                 -0.06
             ]
         }, 
@@ -12366,11 +12356,11 @@
         "harpStringNoiseStem": {
             "bBoxNE": [
                 0.724, 
-                2.848
+                1.424
             ], 
             "bBoxSW": [
                 -0.728, 
-                0.0
+                -1.424
             ]
         }, 
         "harpTuningKey": {
@@ -12505,18 +12495,18 @@
         }, 
         "keyboardPedalD": {
             "bBoxNE": [
-                0.988, 
-                1.976
+                0.984, 
+                2.0
             ], 
             "bBoxSW": [
-                -0.596, 
-                0.032
+                -0.632, 
+                -0.012
             ]
         }, 
         "keyboardPedalDot": {
             "bBoxNE": [
-                0.296, 
-                0.296
+                0.344, 
+                0.344
             ], 
             "bBoxSW": [
                 0.0, 
@@ -12525,12 +12515,12 @@
         }, 
         "keyboardPedalE": {
             "bBoxNE": [
-                0.972, 
-                1.264
+                1.02, 
+                1.26
             ], 
             "bBoxSW": [
                 0.0, 
-                0.0
+                -0.024
             ]
         }, 
         "keyboardPedalHalf": {
@@ -12545,22 +12535,22 @@
         }, 
         "keyboardPedalHalf2": {
             "bBoxNE": [
-                1.896, 
-                1.0
+                1.8, 
+                0.944
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.004
+                0.0, 
+                0.0
             ]
         }, 
         "keyboardPedalHalf3": {
             "bBoxNE": [
-                1.896, 
-                1.972
+                1.8, 
+                1.968
             ], 
             "bBoxSW": [
-                0.004, 
-                0.968
+                0.0, 
+                1.024
             ]
         }, 
         "keyboardPedalHeel1": {
@@ -12615,62 +12605,62 @@
         }, 
         "keyboardPedalP": {
             "bBoxNE": [
-                2.14, 
-                2.224
+                2.0, 
+                2.22
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.012
+                0.0, 
+                -0.032
             ]
         }, 
         "keyboardPedalPed": {
             "bBoxNE": [
-                4.044, 
-                2.232
+                4.076, 
+                2.22
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.008
+                0.0, 
+                -0.032
             ]
         }, 
         "keyboardPedalPedNoDot": {
             "bBoxNE": [
-                3.644, 
-                2.232
+                3.692, 
+                2.22
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.008
+                0.0, 
+                -0.032
             ]
         }, 
         "keyboardPedalS": {
             "bBoxNE": [
-                1.66, 
+                1.676, 
                 2.364
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.02
+                0.0, 
+                -0.06
             ]
         }, 
         "keyboardPedalSost": {
             "bBoxNE": [
-                4.396, 
+                4.428, 
                 2.364
             ], 
             "bBoxSW": [
-                0.012, 
-                -0.056
+                0.0, 
+                -0.06
             ]
         }, 
         "keyboardPedalSostNoDot": {
             "bBoxNE": [
-                3.976, 
+                4.056, 
                 2.364
             ], 
             "bBoxSW": [
-                0.012, 
-                -0.02
+                0.0, 
+                -0.06
             ]
         }, 
         "keyboardPedalToe1": {
@@ -12695,12 +12685,12 @@
         }, 
         "keyboardPedalUp": {
             "bBoxNE": [
-                1.764, 
-                1.804
+                1.8, 
+                1.8
             ], 
             "bBoxSW": [
                 0.0, 
-                0.008
+                0.0
             ]
         }, 
         "keyboardPedalUpNotch": {
@@ -12715,11 +12705,11 @@
         }, 
         "keyboardPedalUpSpecial": {
             "bBoxNE": [
-                1.692, 
-                1.828
+                1.668, 
+                1.836
             ], 
             "bBoxSW": [
-                0.024, 
+                0.0, 
                 0.116
             ]
         }, 
@@ -13696,7 +13686,7 @@
         "luteGermanHUpper": {
             "bBoxNE": [
                 1.892, 
-                2.072
+                2.076
             ], 
             "bBoxSW": [
                 0.0, 
@@ -13925,101 +13915,101 @@
         }, 
         "luteItalianFret0": {
             "bBoxNE": [
-                1.024, 
+                1.124, 
                 1.2
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.096, 
                 -0.004
             ]
         }, 
         "luteItalianFret1": {
             "bBoxNE": [
-                0.552, 
+                0.648, 
                 1.2
             ], 
             "bBoxSW": [
-                0.0, 
+                0.096, 
                 0.0
             ]
         }, 
         "luteItalianFret2": {
             "bBoxNE": [
-                0.956, 
+                1.052, 
                 1.2
             ], 
             "bBoxSW": [
-                0.0, 
+                0.096, 
                 -0.012
             ]
         }, 
         "luteItalianFret3": {
             "bBoxNE": [
-                0.88, 
+                0.976, 
                 1.2
             ], 
             "bBoxSW": [
-                0.0, 
+                0.096, 
                 0.0
             ]
         }, 
         "luteItalianFret4": {
             "bBoxNE": [
-                0.936, 
+                1.028, 
                 1.204
             ], 
             "bBoxSW": [
-                0.004, 
+                0.096, 
                 0.004
             ]
         }, 
         "luteItalianFret5": {
             "bBoxNE": [
-                0.864, 
+                0.952, 
                 1.2
             ], 
             "bBoxSW": [
-                0.004, 
+                0.092, 
                 0.0
             ]
         }, 
         "luteItalianFret6": {
             "bBoxNE": [
-                0.944, 
-                1.204
+                1.036, 
+                1.2
             ], 
             "bBoxSW": [
-                0.004, 
-                0.004
+                0.096, 
+                0.0
             ]
         }, 
         "luteItalianFret7": {
             "bBoxNE": [
-                0.968, 
+                1.068, 
                 1.204
             ], 
             "bBoxSW": [
-                0.0, 
+                0.1, 
                 0.0
             ]
         }, 
         "luteItalianFret8": {
             "bBoxNE": [
-                0.92, 
+                1.016, 
                 1.204
             ], 
             "bBoxSW": [
-                0.0, 
+                0.096, 
                 0.0
             ]
         }, 
         "luteItalianFret9": {
             "bBoxNE": [
-                0.94, 
+                1.036, 
                 1.2
             ], 
             "bBoxSW": [
-                0.0, 
+                0.096, 
                 0.0
             ]
         }, 
@@ -14275,12 +14265,12 @@
         }, 
         "medRenLiquescenceCMN": {
             "bBoxNE": [
-                1.32, 
-                0.56
+                1.16, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.576
+                -0.5
             ]
         }, 
         "medRenLiquescentAscCMN": {
@@ -16483,6 +16473,246 @@
                 -0.736
             ]
         }, 
+        "metAugmentationDot": {
+            "bBoxNE": [
+                0.4, 
+                0.2
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.2
+            ]
+        }, 
+        "metNote1024thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -6.98
+            ]
+        }, 
+        "metNote1024thUp": {
+            "bBoxNE": [
+                2.164, 
+                7.028
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote128thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -4.988
+            ]
+        }, 
+        "metNote128thUp": {
+            "bBoxNE": [
+                2.148, 
+                5.072
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote16thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -2.824
+            ]
+        }, 
+        "metNote16thUp": {
+            "bBoxNE": [
+                2.084, 
+                2.8
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote256thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -5.608
+            ]
+        }, 
+        "metNote256thUp": {
+            "bBoxNE": [
+                2.16, 
+                5.696
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote32ndDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -3.52
+            ]
+        }, 
+        "metNote32ndUp": {
+            "bBoxNE": [
+                2.152, 
+                3.692
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote512thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -6.28
+            ]
+        }, 
+        "metNote512thUp": {
+            "bBoxNE": [
+                2.168, 
+                6.356
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote64thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -4.256
+            ]
+        }, 
+        "metNote64thUp": {
+            "bBoxNE": [
+                2.148, 
+                4.392
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNote8thDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -2.824
+            ]
+        }, 
+        "metNote8thUp": {
+            "bBoxNE": [
+                2.132, 
+                2.784
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNoteDoubleWhole": {
+            "bBoxNE": [
+                2.62, 
+                0.68
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.672
+            ]
+        }, 
+        "metNoteDoubleWholeSquare": {
+            "bBoxNE": [
+                1.664, 
+                0.792
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.76
+            ]
+        }, 
+        "metNoteHalfDown": {
+            "bBoxNE": [
+                1.364, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -2.752
+            ]
+        }, 
+        "metNoteHalfUp": {
+            "bBoxNE": [
+                1.364, 
+                2.752
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNoteQuarterDown": {
+            "bBoxNE": [
+                1.328, 
+                0.564
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -2.752
+            ]
+        }, 
+        "metNoteQuarterUp": {
+            "bBoxNE": [
+                1.328, 
+                2.752
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.564
+            ]
+        }, 
+        "metNoteWhole": {
+            "bBoxNE": [
+                1.836, 
+                0.592
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.5
+            ]
+        }, 
         "metricModulationArrowLeft": {
             "bBoxNE": [
                 3.308, 
@@ -16540,17 +16770,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -6.98
+                -7.968
             ]
         }, 
         "note1024thUp": {
             "bBoxNE": [
-                2.164, 
-                7.028
+                2.268, 
+                7.804
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "note128thDown": {
@@ -16560,17 +16790,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -4.988
+                -5.788
             ]
         }, 
         "note128thUp": {
             "bBoxNE": [
-                2.148, 
-                5.072
+                2.252, 
+                5.632
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "note16thDown": {
@@ -16580,17 +16810,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -2.824
+                -3.532
             ]
         }, 
         "note16thUp": {
             "bBoxNE": [
-                2.084, 
-                2.8
+                2.324, 
+                3.492
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "note256thDown": {
@@ -16600,17 +16830,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -5.608
+                -6.452
             ]
         }, 
         "note256thUp": {
             "bBoxNE": [
-                2.16, 
-                5.696
+                2.264, 
+                6.32
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "note32ndDown": {
@@ -16620,17 +16850,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -3.52
+                -4.192
             ]
         }, 
         "note32ndUp": {
             "bBoxNE": [
-                2.152, 
-                3.692
+                2.252, 
+                4.092
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "note512thDown": {
@@ -16640,17 +16870,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -6.28
+                -7.156
             ]
         }, 
         "note512thUp": {
             "bBoxNE": [
-                2.168, 
-                6.356
+                2.272, 
+                7.052
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "note64thDown": {
@@ -16660,17 +16890,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -4.256
+                -4.96
             ]
         }, 
         "note64thUp": {
             "bBoxNE": [
-                2.148, 
-                4.392
+                2.252, 
+                4.888
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "note8thDown": {
@@ -16680,17 +16910,17 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -2.824
+                -3.528
             ]
         }, 
         "note8thUp": {
             "bBoxNE": [
-                2.132, 
-                2.784
+                2.264, 
+                3.492
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.552
             ]
         }, 
         "noteABlack": {
@@ -17105,12 +17335,12 @@
         }, 
         "noteDoubleWholeSquare": {
             "bBoxNE": [
-                2.132, 
-                1.0
+                1.664, 
+                0.792
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.0
+                -0.76
             ]
         }, 
         "noteEBlack": {
@@ -17506,21 +17736,21 @@
         "noteHalfDown": {
             "bBoxNE": [
                 1.364, 
-                0.564
+                0.58
             ], 
             "bBoxSW": [
                 0.0, 
-                -2.752
+                -3.5
             ]
         }, 
         "noteHalfUp": {
             "bBoxNE": [
                 1.364, 
-                2.752
+                3.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.58
             ]
         }, 
         "noteLaBlack": {
@@ -17590,13 +17820,13 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -2.752
+                -3.5
             ]
         }, 
         "noteQuarterUp": {
             "bBoxNE": [
                 1.328, 
-                2.752
+                3.5
             ], 
             "bBoxSW": [
                 0.0, 
@@ -17635,92 +17865,92 @@
         }, 
         "noteShapeArrowheadLeftBlack": {
             "bBoxNE": [
-                1.172, 
-                0.52
+                1.124, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.52
+                -0.5
             ]
         }, 
         "noteShapeArrowheadLeftWhite": {
             "bBoxNE": [
-                1.172, 
-                0.52
+                1.12, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.524
+                -0.5
             ]
         }, 
         "noteShapeDiamondBlack": {
             "bBoxNE": [
-                1.54, 
-                0.588
+                1.308, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.588
+                -0.5
             ]
         }, 
         "noteShapeDiamondWhite": {
             "bBoxNE": [
-                1.544, 
-                0.588
+                1.312, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.588
+                -0.5
             ]
         }, 
         "noteShapeIsoscelesTriangleBlack": {
             "bBoxNE": [
-                1.172, 
-                0.52
+                1.124, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.52
+                -0.5
             ]
         }, 
         "noteShapeIsoscelesTriangleWhite": {
             "bBoxNE": [
-                1.172, 
-                0.52
+                1.124, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.52
+                -0.5
             ]
         }, 
         "noteShapeKeystoneBlack": {
             "bBoxNE": [
-                1.224, 
-                0.52
+                1.176, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.52
+                -0.5
             ]
         }, 
         "noteShapeKeystoneWhite": {
             "bBoxNE": [
-                1.224, 
-                0.52
+                1.172, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.52
+                0.0, 
+                -0.5
             ]
         }, 
         "noteShapeMoonBlack": {
             "bBoxNE": [
-                1.596, 
-                0.524
+                1.516, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.528
+                -0.5
             ]
         }, 
         "noteShapeMoonLeftBlack": {
@@ -17745,132 +17975,132 @@
         }, 
         "noteShapeMoonWhite": {
             "bBoxNE": [
-                1.596, 
-                0.528
+                1.516, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.524
+                -0.5
             ]
         }, 
         "noteShapeQuarterMoonBlack": {
             "bBoxNE": [
-                1.04, 
+                1.036, 
                 0.5
             ], 
             "bBoxSW": [
-                0.004, 
+                0.0, 
                 -0.5
             ]
         }, 
         "noteShapeQuarterMoonWhite": {
             "bBoxNE": [
-                1.04, 
+                1.036, 
                 0.5
             ], 
             "bBoxSW": [
-                0.004, 
+                0.0, 
                 -0.5
             ]
         }, 
         "noteShapeRoundBlack": {
             "bBoxNE": [
-                1.328, 
-                0.564
+                1.18, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteShapeRoundWhite": {
             "bBoxNE": [
-                1.364, 
-                0.58
+                1.18, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.58
+                -0.5
             ]
         }, 
         "noteShapeSquareBlack": {
             "bBoxNE": [
-                1.616, 
-                0.56
+                1.44, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteShapeSquareWhite": {
             "bBoxNE": [
-                1.616, 
-                0.56
+                1.44, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteShapeTriangleLeftBlack": {
             "bBoxNE": [
-                1.62, 
-                0.56
+                1.44, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteShapeTriangleLeftWhite": {
             "bBoxNE": [
-                1.62, 
-                0.556
+                1.44, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteShapeTriangleRightBlack": {
             "bBoxNE": [
-                1.62, 
-                0.56
+                1.44, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteShapeTriangleRightWhite": {
             "bBoxNE": [
-                1.62, 
-                0.556
+                1.44, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteShapeTriangleRoundBlack": {
             "bBoxNE": [
-                1.584, 
-                0.556
+                1.424, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.556
+                -0.5
             ]
         }, 
         "noteShapeTriangleRoundLeftBlack": {
             "bBoxNE": [
                 1.292, 
-                0.504
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.504
+                -0.5
             ]
         }, 
         "noteShapeTriangleRoundLeftWhite": {
@@ -17880,37 +18110,37 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.504
+                -0.5
             ]
         }, 
         "noteShapeTriangleRoundWhite": {
             "bBoxNE": [
-                1.588, 
-                0.548
+                1.424, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.564
+                0.0, 
+                -0.5
             ]
         }, 
         "noteShapeTriangleUpBlack": {
             "bBoxNE": [
-                1.62, 
-                0.564
+                1.424, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.568
+                -0.5
             ]
         }, 
         "noteShapeTriangleUpWhite": {
             "bBoxNE": [
-                1.62, 
-                0.564
+                1.424, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.568
+                -0.5
             ]
         }, 
         "noteSiBlack": {
@@ -18015,6 +18245,16 @@
         }, 
         "noteheadBlack": {
             "bBoxNE": [
+                1.18, 
+                0.5
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.5
+            ]
+        }, 
+        "noteheadBlackOversized": {
+            "bBoxNE": [
                 1.328, 
                 0.564
             ], 
@@ -18045,632 +18285,632 @@
         }, 
         "noteheadCircleSlash": {
             "bBoxNE": [
-                1.128, 
-                0.564
+                1.0, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.564
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadCircleX": {
             "bBoxNE": [
-                1.128, 
-                0.564
+                0.996, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.564
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadCircleXDoubleWhole": {
             "bBoxNE": [
-                1.92, 
-                0.688
+                1.688, 
+                0.62
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.676
+                -0.62
             ]
         }, 
         "noteheadCircleXHalf": {
             "bBoxNE": [
-                1.14, 
-                0.568
+                1.0, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.568
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadCircleXWhole": {
             "bBoxNE": [
-                1.136, 
-                0.568
+                0.996, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.568
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadCircledBlack": {
             "bBoxNE": [
-                1.532, 
-                0.76
+                1.368, 
+                0.668
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.76
+                0.0, 
+                -0.684
             ]
         }, 
         "noteheadCircledBlackLarge": {
             "bBoxNE": [
-                1.868, 
-                0.928
+                1.66, 
+                0.824
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.932
+                0.0, 
+                -0.828
             ]
         }, 
         "noteheadCircledDoubleWhole": {
             "bBoxNE": [
-                2.62, 
-                0.924
+                2.412, 
+                0.852
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.948
+                -0.872
             ]
         }, 
         "noteheadCircledDoubleWholeLarge": {
             "bBoxNE": [
-                2.488, 
-                0.952
+                2.216, 
+                0.864
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.948
+                -0.828
             ]
         }, 
         "noteheadCircledHalf": {
             "bBoxNE": [
-                1.532, 
-                0.768
+                1.316, 
+                0.668
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.764
+                -0.648
             ]
         }, 
         "noteheadCircledHalfLarge": {
             "bBoxNE": [
-                1.864, 
-                0.932
+                1.612, 
+                0.808
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.932
+                -0.808
             ]
         }, 
         "noteheadCircledWhole": {
             "bBoxNE": [
-                2.032, 
-                1.016
+                1.748, 
+                0.844
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.012
+                -0.9
             ]
         }, 
         "noteheadCircledWholeLarge": {
             "bBoxNE": [
-                2.488, 
-                0.952
+                2.164, 
+                0.844
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.948
+                -0.808
             ]
         }, 
         "noteheadCircledXLarge": {
             "bBoxNE": [
-                1.864, 
-                0.932
+                1.828, 
+                0.912
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.932
+                -0.912
             ]
         }, 
         "noteheadClusterDoubleWhole2nd": {
             "bBoxNE": [
-                2.64, 
-                1.2
+                2.428, 
+                1.14
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.668
+                -0.62
             ]
         }, 
         "noteheadClusterDoubleWhole3rd": {
             "bBoxNE": [
-                2.644, 
-                1.688
+                2.428, 
+                1.62
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.68
+                0.0, 
+                -0.62
             ]
         }, 
         "noteheadClusterDoubleWholeBottom": {
             "bBoxNE": [
-                2.644, 
-                0.828
+                2.392, 
+                0.744
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.68
+                -0.62
             ]
         }, 
         "noteheadClusterDoubleWholeMiddle": {
             "bBoxNE": [
-                2.64, 
-                0.312
+                2.388, 
+                0.4
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.396
             ]
         }, 
         "noteheadClusterDoubleWholeTop": {
             "bBoxNE": [
-                2.644, 
-                0.684
+                2.392, 
+                0.62
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.732
+                -0.66
             ]
         }, 
         "noteheadClusterHalf2nd": {
             "bBoxNE": [
-                1.376, 
-                1.112
+                1.24, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadClusterHalf3rd": {
             "bBoxNE": [
-                1.376, 
-                1.616
+                1.264, 
+                1.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadClusterHalfBottom": {
             "bBoxNE": [
-                1.376, 
-                0.624
+                1.196, 
+                0.56
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.592
+                -0.5
             ]
         }, 
         "noteheadClusterHalfMiddle": {
             "bBoxNE": [
-                1.076, 
-                0.376
+                0.936, 
+                0.4
             ], 
             "bBoxSW": [
-                0.3, 
-                -0.5
+                0.26, 
+                -0.4
             ]
         }, 
         "noteheadClusterHalfTop": {
             "bBoxNE": [
-                1.376, 
-                0.568
+                1.196, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.7
+                -0.604
             ]
         }, 
         "noteheadClusterQuarter2nd": {
             "bBoxNE": [
-                1.42, 
-                1.08
+                1.308, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadClusterQuarter3rd": {
             "bBoxNE": [
-                1.544, 
-                1.584
+                1.44, 
+                1.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadClusterQuarterBottom": {
             "bBoxNE": [
-                1.34, 
-                0.904
+                1.18, 
+                0.804
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.576
+                -0.5
             ]
         }, 
         "noteheadClusterQuarterMiddle": {
             "bBoxNE": [
-                1.016, 
-                0.388
+                0.896, 
+                0.4
             ], 
             "bBoxSW": [
-                0.32, 
-                -0.5
+                0.28, 
+                -0.4
             ]
         }, 
         "noteheadClusterQuarterTop": {
             "bBoxNE": [
-                1.34, 
-                0.56
+                1.18, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.812
+                -0.708
             ]
         }, 
         "noteheadClusterRoundBlack": {
             "bBoxNE": [
                 1.328, 
-                3.124
+                2.5
             ], 
             "bBoxSW": [
                 0.0, 
-                0.0
+                -0.5
             ]
         }, 
         "noteheadClusterRoundWhite": {
             "bBoxNE": [
                 1.496, 
-                3.124
+                2.5
             ], 
             "bBoxSW": [
                 0.0, 
-                0.0
+                -0.5
             ]
         }, 
         "noteheadClusterSquareBlack": {
             "bBoxNE": [
                 1.328, 
-                3.112
+                2.5
             ], 
             "bBoxSW": [
                 0.0, 
-                0.0
+                -0.5
             ]
         }, 
         "noteheadClusterSquareWhite": {
             "bBoxNE": [
                 1.328, 
-                3.112
+                2.5
             ], 
             "bBoxSW": [
                 0.0, 
-                0.0
+                -0.5
             ]
         }, 
         "noteheadClusterWhole2nd": {
             "bBoxNE": [
-                1.852, 
-                1.052
+                1.728, 
+                1.0
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.552
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadClusterWhole3rd": {
             "bBoxNE": [
-                1.848, 
-                1.548
+                1.7, 
+                1.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadClusterWholeBottom": {
             "bBoxNE": [
-                1.852, 
-                0.916
+                1.696, 
+                0.844
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.552
+                -0.5
             ]
         }, 
         "noteheadClusterWholeMiddle": {
             "bBoxNE": [
-                1.396, 
-                0.368
+                1.276, 
+                0.4
             ], 
             "bBoxSW": [
-                0.46, 
-                -0.5
+                0.42, 
+                -0.4
             ]
         }, 
         "noteheadClusterWholeTop": {
             "bBoxNE": [
-                1.852, 
-                0.548
+                1.696, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.92
+                -0.84
             ]
         }, 
         "noteheadDiamondBlack": {
             "bBoxNE": [
-                1.124, 
-                0.568
+                1.0, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadDiamondBlackOld": {
             "bBoxNE": [
-                1.316, 
-                0.564
+                1.16, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.576
+                -0.5
             ]
         }, 
         "noteheadDiamondBlackWide": {
             "bBoxNE": [
-                1.572, 
-                0.568
+                1.4, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterBlack2nd": {
             "bBoxNE": [
-                1.18, 
-                1.664
+                1.068, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
-                0.004
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterBlack3rd": {
             "bBoxNE": [
-                1.18, 
-                2.128
+                1.096, 
+                1.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.032
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterBlackBottom": {
             "bBoxNE": [
-                1.364, 
-                0.7
+                1.184, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.444
+                -0.496
             ]
         }, 
         "noteheadDiamondClusterBlackMiddle": {
             "bBoxNE": [
-                1.02, 
-                0.5
+                0.88, 
+                0.4
             ], 
             "bBoxSW": [
-                0.388, 
-                -0.5
+                0.328, 
+                -0.4
             ]
         }, 
         "noteheadDiamondClusterBlackTop": {
             "bBoxNE": [
-                1.372, 
-                0.444
+                1.184, 
+                0.496
             ], 
             "bBoxSW": [
-                0.008, 
-                -0.7
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterWhite2nd": {
             "bBoxNE": [
-                1.18, 
-                1.664
+                1.06, 
+                0.996
             ], 
             "bBoxSW": [
                 0.0, 
-                0.004
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterWhite3rd": {
             "bBoxNE": [
-                1.18, 
-                2.132
+                1.092, 
+                1.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.028
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterWhiteBottom": {
             "bBoxNE": [
-                1.38, 
-                0.704
+                1.164, 
+                0.512
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.456
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadDiamondClusterWhiteMiddle": {
             "bBoxNE": [
-                1.02, 
-                0.504
+                0.864, 
+                0.4
             ], 
             "bBoxSW": [
-                0.372, 
-                -0.5
+                0.324, 
+                -0.4
             ]
         }, 
         "noteheadDiamondClusterWhiteTop": {
             "bBoxNE": [
-                1.38, 
-                0.456
+                1.168, 
+                0.5
             ], 
             "bBoxSW": [
                 0.004, 
-                -0.704
+                -0.512
             ]
         }, 
         "noteheadDiamondDoubleWhole": {
             "bBoxNE": [
-                2.08, 
-                0.604
+                1.728, 
+                0.62
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.604
+                -0.62
             ]
         }, 
         "noteheadDiamondDoubleWholeOld": {
             "bBoxNE": [
-                2.068, 
+                1.8, 
                 0.62
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.58
+                -0.62
             ]
         }, 
         "noteheadDiamondHalf": {
             "bBoxNE": [
-                1.132, 
-                0.572
+                1.004, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.556
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadDiamondHalfFilled": {
             "bBoxNE": [
-                1.308, 
-                0.568
+                1.156, 
+                0.5
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.568
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadDiamondHalfOld": {
             "bBoxNE": [
-                1.324, 
-                0.564
+                1.164, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.572
+                -0.5
             ]
         }, 
         "noteheadDiamondHalfWide": {
             "bBoxNE": [
-                1.576, 
-                0.572
+                1.404, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.556
+                -0.5
             ]
         }, 
         "noteheadDiamondOpen": {
             "bBoxNE": [
-                1.296, 
-                0.564
+                1.152, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadDiamondWhite": {
             "bBoxNE": [
-                1.124, 
-                0.568
+                1.0, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadDiamondWhiteWide": {
             "bBoxNE": [
-                1.572, 
-                0.568
+                1.4, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadDiamondWhole": {
             "bBoxNE": [
-                1.3, 
-                0.6
+                1.08, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.608
+                -0.5
             ]
         }, 
         "noteheadDiamondWholeOld": {
             "bBoxNE": [
-                1.348, 
-                0.576
+                1.172, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.568
+                -0.5
             ]
         }, 
         "noteheadDoubleWhole": {
             "bBoxNE": [
-                2.62, 
-                0.668
+                2.396, 
+                0.62
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.684
+                -0.62
             ]
         }, 
         "noteheadDoubleWholeAlt": {
@@ -18683,6 +18923,16 @@
                 -0.676
             ]
         }, 
+        "noteheadDoubleWholeOversized": {
+            "bBoxNE": [
+                2.62, 
+                0.668
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.684
+            ]
+        }, 
         "noteheadDoubleWholeParens": {
             "bBoxNE": [
                 3.644, 
@@ -18705,6 +18955,16 @@
         }, 
         "noteheadDoubleWholeSquare": {
             "bBoxNE": [
+                1.664, 
+                0.792
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.76
+            ]
+        }, 
+        "noteheadDoubleWholeSquareOversized": {
+            "bBoxNE": [
                 2.132, 
                 1.0
             ], 
@@ -18715,26 +18975,36 @@
         }, 
         "noteheadDoubleWholeWithX": {
             "bBoxNE": [
-                2.64, 
-                0.68
+                2.388, 
+                0.616
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.68
+                -0.616
             ]
         }, 
         "noteheadHalf": {
             "bBoxNE": [
-                1.364, 
-                0.58
+                1.18, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.58
+                -0.5
             ]
         }, 
         "noteheadHalfFilled": {
             "bBoxNE": [
+                1.18, 
+                0.5
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.5
+            ]
+        }, 
+        "noteheadHalfOversized": {
+            "bBoxNE": [
                 1.364, 
                 0.58
             ], 
@@ -18765,32 +19035,32 @@
         }, 
         "noteheadHalfWithX": {
             "bBoxNE": [
-                1.376, 
-                0.58
+                1.176, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.588
+                -0.5
             ]
         }, 
         "noteheadHeavyX": {
             "bBoxNE": [
-                1.736, 
-                0.564
+                1.54, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.564
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadHeavyXHat": {
             "bBoxNE": [
-                2.06, 
-                1.168
+                1.828, 
+                1.04
             ], 
             "bBoxSW": [
-                -0.324, 
-                -0.564
+                -0.292, 
+                -0.5
             ]
         }, 
         "noteheadLargeArrowDownBlack": {
@@ -18800,37 +19070,37 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadLargeArrowDownDoubleWhole": {
             "bBoxNE": [
-                2.164, 
-                1.0
+                2.204, 
+                1.12
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.58
+                0.0, 
+                -0.64
             ]
         }, 
         "noteheadLargeArrowDownHalf": {
             "bBoxNE": [
-                1.256, 
-                0.996
+                1.44, 
+                1.0
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.556
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadLargeArrowDownWhole": {
             "bBoxNE": [
-                1.408, 
+                1.44, 
                 1.0
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.548
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadLargeArrowUpBlack": {
@@ -18840,62 +19110,62 @@
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadLargeArrowUpDoubleWhole": {
             "bBoxNE": [
-                2.164, 
-                1.0
+                2.204, 
+                1.14
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.58
+                0.0, 
+                -0.62
             ]
         }, 
         "noteheadLargeArrowUpHalf": {
             "bBoxNE": [
-                1.256, 
-                0.996
+                1.44, 
+                1.0
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.556
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadLargeArrowUpWhole": {
             "bBoxNE": [
-                1.408, 
+                1.44, 
                 1.0
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.548
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadMoonBlack": {
             "bBoxNE": [
-                1.416, 
-                0.564
+                1.26, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadMoonWhite": {
             "bBoxNE": [
-                1.416, 
-                0.564
+                1.26, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadParenthesis": {
             "bBoxNE": [
-                1.592, 
+                1.472, 
                 0.728
             ], 
             "bBoxSW": [
@@ -18925,17 +19195,17 @@
         }, 
         "noteheadPlusBlack": {
             "bBoxNE": [
-                1.124, 
-                0.564
+                0.996, 
+                0.5
             ], 
             "bBoxSW": [
                 -0.004, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadPlusDoubleWhole": {
             "bBoxNE": [
-                2.352, 
+                1.892, 
                 0.62
             ], 
             "bBoxSW": [
@@ -18945,22 +19215,22 @@
         }, 
         "noteheadPlusHalf": {
             "bBoxNE": [
-                1.188, 
-                0.576
+                1.044, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadPlusWhole": {
             "bBoxNE": [
-                1.416, 
-                0.62
+                1.14, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.62
+                -0.5
             ]
         }, 
         "noteheadRectangularClusterBlackBottom": {
@@ -19025,98 +19295,98 @@
         }, 
         "noteheadRoundBlack": {
             "bBoxNE": [
-                1.12, 
-                0.56
+                1.004, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadRoundBlackLarge": {
             "bBoxNE": [
-                2.12, 
-                1.124
+                2.0, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.996
+                -1.0
             ]
         }, 
         "noteheadRoundBlackSlashed": {
             "bBoxNE": [
-                2.628, 
-                2.068
+                2.34, 
+                1.84
             ], 
             "bBoxSW": [
-                -1.508, 
-                -2.068
+                -1.344, 
+                -1.84
             ]
         }, 
         "noteheadRoundBlackSlashedLarge": {
             "bBoxNE": [
-                3.244, 
-                2.068
+                3.064, 
+                1.956
             ], 
             "bBoxSW": [
-                -0.892, 
-                -2.068
+                -0.844, 
+                -1.956
             ]
         }, 
         "noteheadRoundWhite": {
             "bBoxNE": [
-                1.124, 
-                0.56
+                1.004, 
+                0.5
             ], 
             "bBoxSW": [
                 0.004, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadRoundWhiteLarge": {
             "bBoxNE": [
-                2.124, 
-                1.12
+                2.0, 
+                1.0
             ], 
             "bBoxSW": [
-                0.004, 
+                0.0, 
                 -1.0
             ]
         }, 
         "noteheadRoundWhiteSlashed": {
             "bBoxNE": [
-                2.632, 
-                2.068
+                2.34, 
+                1.84
             ], 
             "bBoxSW": [
-                -1.504, 
-                -2.068
+                -1.344, 
+                -1.84
             ]
         }, 
         "noteheadRoundWhiteSlashedLarge": {
             "bBoxNE": [
-                3.116, 
-                2.068
+                2.944, 
+                1.956
             ], 
             "bBoxSW": [
-                -1.02, 
-                -2.068
+                -0.964, 
+                -1.956
             ]
         }, 
         "noteheadRoundWhiteWithDot": {
             "bBoxNE": [
-                1.12, 
-                0.56
+                1.004, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadRoundWhiteWithDotLarge": {
             "bBoxNE": [
-                2.12, 
-                1.12
+                2.004, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
@@ -19126,7 +19396,7 @@
         "noteheadSlashDiamondWhite": {
             "bBoxNE": [
                 2.0, 
-                0.988
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
@@ -19225,326 +19495,336 @@
         }, 
         "noteheadSlashedBlack1": {
             "bBoxNE": [
-                1.684, 
-                0.74
+                1.5, 
+                0.668
             ], 
             "bBoxSW": [
-                -0.36, 
-                -0.752
+                -0.32, 
+                -0.66
             ]
         }, 
         "noteheadSlashedBlack2": {
             "bBoxNE": [
-                1.688, 
-                0.744
+                1.504, 
+                0.672
             ], 
             "bBoxSW": [
-                -0.356, 
-                -0.748
+                -0.316, 
+                -0.656
             ]
         }, 
         "noteheadSlashedDoubleWhole1": {
             "bBoxNE": [
-                2.62, 
-                0.744
+                2.384, 
+                0.672
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.784
+                -0.716
             ]
         }, 
         "noteheadSlashedDoubleWhole2": {
             "bBoxNE": [
-                2.62, 
-                0.744
+                2.384, 
+                0.676
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.784
+                -0.712
             ]
         }, 
         "noteheadSlashedHalf1": {
             "bBoxNE": [
-                1.8, 
-                0.7
+                1.544, 
+                0.64
             ], 
             "bBoxSW": [
-                -0.308, 
-                -0.708
+                -0.268, 
+                -0.568
             ]
         }, 
         "noteheadSlashedHalf2": {
             "bBoxNE": [
-                1.772, 
-                0.7
+                1.52, 
+                0.672
             ], 
             "bBoxSW": [
-                -0.336, 
-                -0.708
+                -0.292, 
+                -0.536
             ]
         }, 
         "noteheadSlashedWhole1": {
             "bBoxNE": [
-                2.012, 
-                0.684
+                1.732, 
+                0.592
             ], 
             "bBoxSW": [
-                -0.1, 
-                -0.736
+                -0.088, 
+                -0.628
             ]
         }, 
         "noteheadSlashedWhole2": {
             "bBoxNE": [
-                2.028, 
-                0.7
+                1.744, 
+                0.604
             ], 
             "bBoxSW": [
-                -0.084, 
-                -0.72
+                -0.072, 
+                -0.616
             ]
         }, 
         "noteheadSquareBlack": {
             "bBoxNE": [
-                1.416, 
-                0.564
+                1.252, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadSquareBlackLarge": {
             "bBoxNE": [
-                2.144, 
-                1.048
+                2.0, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.056
+                -1.0
             ]
         }, 
         "noteheadSquareBlackWhite": {
             "bBoxNE": [
-                2.144, 
-                1.056
+                2.0, 
+                1.0
             ], 
             "bBoxSW": [
                 0.0, 
-                -1.048
+                -1.0
             ]
         }, 
         "noteheadSquareWhite": {
             "bBoxNE": [
-                1.416, 
-                0.56
+                1.252, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.568
+                -0.5
             ]
         }, 
         "noteheadTriangleDownBlack": {
             "bBoxNE": [
-                1.312, 
-                0.568
+                1.168, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadTriangleDownDoubleWhole": {
             "bBoxNE": [
-                2.152, 
-                0.608
+                1.932, 
+                0.62
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.58
+                0.0, 
+                -0.62
             ]
         }, 
         "noteheadTriangleDownHalf": {
             "bBoxNE": [
-                1.256, 
-                0.548
+                1.14, 
+                0.5
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.556
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadTriangleDownWhite": {
             "bBoxNE": [
-                1.316, 
-                0.564
+                1.172, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.568
+                -0.5
             ]
         }, 
         "noteheadTriangleDownWhole": {
             "bBoxNE": [
-                1.416, 
-                0.556
+                1.276, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.548
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadTriangleLeftBlack": {
             "bBoxNE": [
-                1.524, 
-                0.572
+                1.356, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadTriangleLeftWhite": {
             "bBoxNE": [
-                1.524, 
-                0.572
+                1.356, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadTriangleRightBlack": {
             "bBoxNE": [
-                1.524, 
-                0.572
+                1.356, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadTriangleRightWhite": {
             "bBoxNE": [
-                1.528, 
-                0.572
+                1.356, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.56
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadTriangleRoundDownBlack": {
             "bBoxNE": [
-                1.272, 
-                0.576
+                1.112, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.572
+                -0.5
             ]
         }, 
         "noteheadTriangleRoundDownWhite": {
             "bBoxNE": [
-                1.272, 
-                0.572
+                1.112, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.576
+                -0.5
             ]
         }, 
         "noteheadTriangleUpBlack": {
             "bBoxNE": [
-                1.312, 
-                0.572
+                1.172, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadTriangleUpDoubleWhole": {
             "bBoxNE": [
-                2.152, 
-                0.608
+                1.932, 
+                0.62
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.58
+                0.0, 
+                -0.62
             ]
         }, 
         "noteheadTriangleUpHalf": {
             "bBoxNE": [
-                1.256, 
-                0.548
+                1.14, 
+                0.5
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.556
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadTriangleUpRightBlack": {
             "bBoxNE": [
-                1.524, 
-                0.568
+                1.356, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadTriangleUpRightWhite": {
             "bBoxNE": [
-                1.524, 
-                0.568
+                1.356, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadTriangleUpWhite": {
             "bBoxNE": [
-                1.316, 
-                0.568
+                1.172, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
             ]
         }, 
         "noteheadTriangleUpWhole": {
             "bBoxNE": [
-                1.416, 
-                0.556
+                1.276, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.548
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadVoidWithX": {
             "bBoxNE": [
-                1.484, 
-                0.644
+                1.156, 
+                0.5
             ], 
             "bBoxSW": [
-                -0.004, 
-                -0.644
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadWhole": {
             "bBoxNE": [
-                1.836, 
-                0.548
+                1.688, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.544
+                -0.5
             ]
         }, 
         "noteheadWholeFilled": {
             "bBoxNE": [
+                1.688, 
+                0.5
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.5
+            ]
+        }, 
+        "noteheadWholeOversized": {
+            "bBoxNE": [
                 1.836, 
                 0.548
             ], 
@@ -19575,42 +19855,42 @@
         }, 
         "noteheadWholeWithX": {
             "bBoxNE": [
-                1.848, 
-                0.544
+                1.68, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.556
+                -0.5
             ]
         }, 
         "noteheadXBlack": {
             "bBoxNE": [
-                1.32, 
-                0.56
+                1.16, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.576
+                -0.5
             ]
         }, 
         "noteheadXDoubleWhole": {
             "bBoxNE": [
-                2.468, 
-                0.604
+                2.184, 
+                0.62
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.596
+                -0.62
             ]
         }, 
         "noteheadXHalf": {
             "bBoxNE": [
-                1.516, 
-                0.564
+                1.336, 
+                0.5
             ], 
             "bBoxSW": [
-                0.004, 
-                -0.564
+                0.0, 
+                -0.5
             ]
         }, 
         "noteheadXOrnate": {
@@ -19635,12 +19915,52 @@
         }, 
         "noteheadXWhole": {
             "bBoxNE": [
-                1.704, 
-                0.564
+                1.508, 
+                0.5
             ], 
             "bBoxSW": [
                 0.0, 
-                -0.564
+                -0.5
+            ]
+        }, 
+        "octaveBaselineA": {
+            "bBoxNE": [
+                0.968, 
+                0.908
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.04
+            ]
+        }, 
+        "octaveBaselineB": {
+            "bBoxNE": [
+                0.796, 
+                1.352
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.04
+            ]
+        }, 
+        "octaveBaselineM": {
+            "bBoxNE": [
+                1.524, 
+                0.928
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.02
+            ]
+        }, 
+        "octaveBaselineV": {
+            "bBoxNE": [
+                0.856, 
+                0.9
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.04
             ]
         }, 
         "octaveBassa": {
@@ -19666,7 +19986,7 @@
         "octaveParensLeft": {
             "bBoxNE": [
                 0.652, 
-                1.936
+                1.94
             ], 
             "bBoxSW": [
                 0.0, 
@@ -19676,13 +19996,53 @@
         "octaveParensRight": {
             "bBoxNE": [
                 0.548, 
-                1.936
+                1.94
             ], 
             "bBoxSW": [
                 -0.104, 
                 -0.068
             ]
         }, 
+        "octaveSuperscriptA": {
+            "bBoxNE": [
+                0.968, 
+                1.812
+            ], 
+            "bBoxSW": [
+                0.0, 
+                0.864
+            ]
+        }, 
+        "octaveSuperscriptB": {
+            "bBoxNE": [
+                0.796, 
+                2.244
+            ], 
+            "bBoxSW": [
+                0.0, 
+                0.852
+            ]
+        }, 
+        "octaveSuperscriptM": {
+            "bBoxNE": [
+                1.524, 
+                1.812
+            ], 
+            "bBoxSW": [
+                0.0, 
+                0.864
+            ]
+        }, 
+        "octaveSuperscriptV": {
+            "bBoxNE": [
+                0.856, 
+                1.804
+            ], 
+            "bBoxSW": [
+                0.0, 
+                0.864
+            ]
+        }, 
         "ornamentBottomLeftConcaveStroke": {
             "bBoxNE": [
                 1.528, 
@@ -20073,7 +20433,7 @@
                 0.0
             ]
         }, 
-        "ornamentPrecompCadenceUpperPrefix ": {
+        "ornamentPrecompCadenceUpperPrefix": {
             "bBoxNE": [
                 4.052, 
                 0.988
@@ -20093,7 +20453,7 @@
                 -0.248
             ]
         }, 
-        "ornamentPrecompCadenceWithTurn ": {
+        "ornamentPrecompCadenceWithTurn": {
             "bBoxNE": [
                 4.424, 
                 1.332
@@ -20123,7 +20483,7 @@
                 0.0
             ]
         }, 
-        "ornamentPrecompDoubleCadenceUpperPrefix ": {
+        "ornamentPrecompDoubleCadenceUpperPrefix": {
             "bBoxNE": [
                 5.112, 
                 0.988
@@ -20445,48 +20805,48 @@
         }, 
         "ornamentTrill": {
             "bBoxNE": [
-                2.156, 
-                1.532
+                2.084, 
+                1.56
             ], 
             "bBoxSW": [
-                0.008, 
-                -0.008
+                0.0, 
+                -0.04
             ]
         }, 
         "ornamentTrillFlatAbove": {
             "bBoxNE": [
-                2.156, 
+                2.084, 
                 3.252
             ], 
             "bBoxSW": [
-                0.008, 
-                -0.008
+                0.0, 
+                -0.04
             ]
         }, 
         "ornamentTrillNaturalAbove": {
             "bBoxNE": [
-                2.156, 
+                2.084, 
                 3.384
             ], 
             "bBoxSW": [
-                0.008, 
-                -0.008
+                0.0, 
+                -0.04
             ]
         }, 
         "ornamentTrillSharpAbove": {
             "bBoxNE": [
-                2.156, 
+                2.084, 
                 3.524
             ], 
             "bBoxSW": [
-                0.008, 
-                -0.008
+                0.0, 
+                -0.04
             ]
         }, 
         "ornamentTurn": {
             "bBoxNE": [
-                1.828, 
-                0.86
+                1.84, 
+                0.872
             ], 
             "bBoxSW": [
                 0.0, 
@@ -20495,7 +20855,7 @@
         }, 
         "ornamentTurnFlatAbove": {
             "bBoxNE": [
-                1.828, 
+                1.84, 
                 2.692
             ], 
             "bBoxSW": [
@@ -20505,7 +20865,7 @@
         }, 
         "ornamentTurnFlatAboveSharpBelow": {
             "bBoxNE": [
-                1.828, 
+                1.84, 
                 2.692
             ], 
             "bBoxSW": [
@@ -20515,8 +20875,8 @@
         }, 
         "ornamentTurnFlatBelow": {
             "bBoxNE": [
-                1.828, 
-                0.86
+                1.84, 
+                0.872
             ], 
             "bBoxSW": [
                 0.0, 
@@ -20526,16 +20886,16 @@
         "ornamentTurnInverted": {
             "bBoxNE": [
                 1.828, 
-                0.86
+                0.872
             ], 
             "bBoxSW": [
-                0.0, 
+                -0.012, 
                 0.0
             ]
         }, 
         "ornamentTurnNaturalAbove": {
             "bBoxNE": [
-                1.828, 
+                1.84, 
                 2.824
             ], 
             "bBoxSW": [
@@ -20545,8 +20905,8 @@
         }, 
         "ornamentTurnNaturalBelow": {
             "bBoxNE": [
-                1.828, 
-                0.86
+                1.84, 
+                0.872
             ], 
             "bBoxSW": [
                 0.0, 
@@ -20555,7 +20915,7 @@
         }, 
         "ornamentTurnSharpAbove": {
             "bBoxNE": [
-                1.828, 
+                1.84, 
                 2.808
             ], 
             "bBoxSW": [
@@ -20565,7 +20925,7 @@
         }, 
         "ornamentTurnSharpAboveFlatBelow": {
             "bBoxNE": [
-                1.828, 
+                1.84, 
                 2.808
             ], 
             "bBoxSW": [
@@ -20575,8 +20935,8 @@
         }, 
         "ornamentTurnSharpBelow": {
             "bBoxNE": [
-                1.828, 
-                0.86
+                1.84, 
+                0.872
             ], 
             "bBoxSW": [
                 0.0, 
@@ -20585,7 +20945,7 @@
         }, 
         "ornamentTurnSlash": {
             "bBoxNE": [
-                1.832, 
+                1.84, 
                 1.224
             ], 
             "bBoxSW": [
@@ -20595,8 +20955,8 @@
         }, 
         "ornamentTurnUp": {
             "bBoxNE": [
-                0.86, 
-                1.828
+                0.872, 
+                1.84
             ], 
             "bBoxSW": [
                 0.0, 
@@ -20606,10 +20966,10 @@
         "ornamentTurnUpS": {
             "bBoxNE": [
                 0.86, 
-                1.828
+                1.84
             ], 
             "bBoxSW": [
-                0.0, 
+                -0.012, 
                 0.0
             ]
         }, 
@@ -23125,12 +23485,12 @@
         }, 
         "pictStickShot": {
             "bBoxNE": [
-                1.764, 
-                1.804
+                1.8, 
+                1.8
             ], 
             "bBoxSW": [
                 0.0, 
-                0.008
+                0.0
             ]
         }, 
         "pictSuperball": {
@@ -23735,12 +24095,12 @@
         }, 
         "pluckedDampOnStem": {
             "bBoxNE": [
-                1.464, 
-                1.216
+                0.864, 
+                0.608
             ], 
             "bBoxSW": [
-                -0.256, 
-                0.0
+                -0.856, 
+                -0.608
             ]
         }, 
         "pluckedFingernailFlick": {
@@ -24153,6 +24513,16 @@
                 -1.004
             ]
         }, 
+        "restQuarterZ": {
+            "bBoxNE": [
+                1.0, 
+                0.856
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.856
+            ]
+        }, 
         "restWhole": {
             "bBoxNE": [
                 1.128, 
@@ -24213,6 +24583,46 @@
                 0.5
             ]
         }, 
+        "schaefferClef": {
+            "bBoxNE": [
+                1.236, 
+                1.0
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.996
+            ]
+        }, 
+        "schaefferFClefToGClef": {
+            "bBoxNE": [
+                2.464, 
+                3.0
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.996
+            ]
+        }, 
+        "schaefferGClefToFClef": {
+            "bBoxNE": [
+                2.472, 
+                1.0
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -2.996
+            ]
+        }, 
+        "schaefferPreviousClef": {
+            "bBoxNE": [
+                1.236, 
+                1.0
+            ], 
+            "bBoxSW": [
+                0.0, 
+                -0.996
+            ]
+        }, 
         "segno": {
             "bBoxNE": [
                 2.2, 
@@ -24796,7 +25206,7 @@
         "stringsChangeBowDirection": {
             "bBoxNE": [
                 3.784, 
-                1.704
+                1.708
             ], 
             "bBoxSW": [
                 0.0, 
@@ -25265,11 +25675,11 @@
         }, 
         "timeSig0Large": {
             "bBoxNE": [
-                1.868, 
+                1.936, 
                 2.024
             ], 
             "bBoxSW": [
-                0.012, 
+                0.08, 
                 -2.1
             ]
         }, 
@@ -25325,11 +25735,11 @@
         }, 
         "timeSig1Large": {
             "bBoxNE": [
-                0.988, 
+                1.06, 
                 2.0
             ], 
             "bBoxSW": [
-                0.0, 
+                0.072, 
                 -2.0
             ]
         }, 
@@ -25375,11 +25785,11 @@
         }, 
         "timeSig2Large": {
             "bBoxNE": [
-                1.908, 
+                2.052, 
                 2.0
             ], 
             "bBoxSW": [
-                -0.004, 
+                0.14, 
                 -2.0
             ]
         }, 
@@ -25445,11 +25855,11 @@
         }, 
         "timeSig3Large": {
             "bBoxNE": [
-                1.9, 
+                1.976, 
                 1.976
             ], 
             "bBoxSW": [
-                0.0, 
+                0.076, 
                 -2.084
             ]
         }, 
@@ -25525,11 +25935,11 @@
         }, 
         "timeSig4Large": {
             "bBoxNE": [
-                1.968, 
+                2.048, 
                 2.0
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -2.0
             ]
         }, 
@@ -25585,11 +25995,11 @@
         }, 
         "timeSig5Large": {
             "bBoxNE": [
-                1.912, 
+                1.992, 
                 1.976
             ], 
             "bBoxSW": [
-                0.0, 
+                0.08, 
                 -2.084
             ]
         }, 
@@ -25655,11 +26065,11 @@
         }, 
         "timeSig6Large": {
             "bBoxNE": [
-                1.892, 
+                1.96, 
                 1.976
             ], 
             "bBoxSW": [
-                0.0, 
+                0.068, 
                 -2.084
             ]
         }, 
@@ -25725,11 +26135,11 @@
         }, 
         "timeSig7Large": {
             "bBoxNE": [
-                1.9, 
+                1.976, 
                 2.0
             ], 
             "bBoxSW": [
-                0.0, 
+                0.076, 
                 -2.0
             ]
         }, 
@@ -25785,11 +26195,11 @@
         }, 
         "timeSig8Large": {
             "bBoxNE": [
-                1.908, 
+                1.984, 
                 1.976
             ], 
             "bBoxSW": [
-                0.0, 
+                0.076, 
                 -2.084
             ]
         }, 
@@ -25835,11 +26245,11 @@
         }, 
         "timeSig9Large": {
             "bBoxNE": [
-                1.88, 
+                1.964, 
                 2.04
             ], 
             "bBoxSW": [
-                0.0, 
+                0.084, 
                 -2.084
             ]
         }, 
@@ -26140,7 +26550,7 @@
             ], 
             "bBoxSW": [
                 -0.004, 
-                -0.532
+                -0.528
             ]
         }, 
         "timeSigSlash": {
@@ -26355,101 +26765,101 @@
         }, 
         "tuplet1": {
             "bBoxNE": [
-                0.984, 
+                1.024, 
                 1.488
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 0.0
             ]
         }, 
         "tuplet2": {
             "bBoxNE": [
-                1.276, 
+                1.316, 
                 1.5
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 -0.024
             ]
         }, 
         "tuplet3": {
             "bBoxNE": [
-                1.184, 
+                1.224, 
                 1.5
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 -0.032
             ]
         }, 
         "tuplet4": {
             "bBoxNE": [
-                1.212, 
+                1.252, 
                 1.488
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 0.0
             ]
         }, 
         "tuplet5": {
             "bBoxNE": [
-                1.268, 
+                1.308, 
                 1.492
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 -0.032
             ]
         }, 
         "tuplet6": {
             "bBoxNE": [
-                1.216, 
+                1.256, 
                 1.5
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 -0.032
             ]
         }, 
         "tuplet7": {
             "bBoxNE": [
-                1.212, 
+                1.332, 
                 1.488
             ], 
             "bBoxSW": [
-                0.0, 
+                0.12, 
                 -0.016
             ]
         }, 
         "tuplet8": {
             "bBoxNE": [
-                1.252, 
+                1.292, 
                 1.5
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 -0.032
             ]
         }, 
         "tuplet9": {
             "bBoxNE": [
-                1.216, 
+                1.256, 
                 1.5
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 -0.032
             ]
         }, 
         "tupletColon": {
             "bBoxNE": [
-                0.444, 
+                0.484, 
                 1.072
             ], 
             "bBoxSW": [
-                0.0, 
+                0.04, 
                 0.232
             ]
         }, 
@@ -27386,7 +27796,7 @@
         "wiggleVibratoStart": {
             "bBoxNE": [
                 1.96, 
-                1.268
+                1.272
             ], 
             "bBoxSW": [
                 0.0, 
@@ -28096,7 +28506,7 @@
                 }, 
                 {
                     "codepoint": "U+F499", 
-                    "name": "flag102thUpSmall"
+                    "name": "flag1024thUpSmall"
                 }
             ]
         }, 
@@ -28469,6 +28879,10 @@
                 {
                     "codepoint": "U+F46A", 
                     "name": "noteheadBlackSmall"
+                }, 
+                {
+                    "codepoint": "U+F4BE", 
+                    "name": "noteheadBlackOversized"
                 }
             ]
         }, 
@@ -28481,6 +28895,18 @@
                 {
                     "codepoint": "U+F467", 
                     "name": "noteheadDoubleWholeSmall"
+                }, 
+                {
+                    "codepoint": "U+F4BA", 
+                    "name": "noteheadDoubleWholeOversized"
+                }
+            ]
+        }, 
+        "noteheadDoubleWholeSquare": {
+            "alternates": [
+                {
+                    "codepoint": "U+F4BB", 
+                    "name": "noteheadDoubleWholeSquareOversized"
                 }
             ]
         }, 
@@ -28489,6 +28915,10 @@
                 {
                     "codepoint": "U+F469", 
                     "name": "noteheadHalfSmall"
+                }, 
+                {
+                    "codepoint": "U+F4BD", 
+                    "name": "noteheadHalfOversized"
                 }
             ]
         }, 
@@ -28497,6 +28927,10 @@
                 {
                     "codepoint": "U+F468", 
                     "name": "noteheadWholeSmall"
+                }, 
+                {
+                    "codepoint": "U+F4BC", 
+                    "name": "noteheadWholeOversized"
                 }
             ]
         }, 
@@ -30921,16 +31355,16 @@
                 4.256
             ]
         }, 
-        "flag1024thUpStraight": {
+        "flag1024thUpSmall": {
             "stemUpNW": [
                 0.0, 
-                4.644
+                4.252
             ]
         }, 
-        "flag102thUpSmall": {
+        "flag1024thUpStraight": {
             "stemUpNW": [
                 0.0, 
-                4.252
+                4.644
             ]
         }, 
         "flag128thDown": {
@@ -31853,7 +32287,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.54, 
+                1.308, 
                 0.0
             ]
         }, 
@@ -31863,7 +32297,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.544, 
+                1.312, 
                 0.0
             ]
         }, 
@@ -31873,7 +32307,7 @@
                 0.068
             ], 
             "stemUpSE": [
-                1.596, 
+                1.516, 
                 0.068
             ]
         }, 
@@ -31883,128 +32317,128 @@
                 0.072
             ], 
             "stemUpSE": [
-                1.596, 
-                0.072
+                1.516, 
+                0.068
             ]
         }, 
         "noteShapeRoundBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.188
+                -0.168
             ], 
             "stemUpSE": [
-                1.328, 
-                0.188
+                1.18, 
+                0.168
             ]
         }, 
         "noteShapeRoundWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.196
+                -0.168
             ], 
             "stemUpSE": [
-                1.364, 
-                0.192
+                1.18, 
+                0.168
             ]
         }, 
         "noteShapeSquareBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.616, 
-                0.56
+                1.44, 
+                0.5
             ]
         }, 
         "noteShapeSquareWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.616, 
-                0.56
+                1.44, 
+                0.5
             ]
         }, 
         "noteShapeTriangleLeftBlack": {
             "stemDownNW": [
                 0.0, 
-                0.56
+                0.5
             ], 
             "stemUpSE": [
-                1.62, 
-                0.56
+                1.44, 
+                0.5
             ]
         }, 
         "noteShapeTriangleLeftWhite": {
             "stemDownNW": [
                 0.0, 
-                0.556
+                0.5
             ], 
             "stemUpSE": [
-                1.624, 
-                0.552
+                1.44, 
+                0.5
             ]
         }, 
         "noteShapeTriangleRightBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.62, 
-                -0.56
+                1.44, 
+                -0.5
             ]
         }, 
         "noteShapeTriangleRightWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.564
+                -0.5
             ], 
             "stemUpSE": [
-                1.62, 
-                -0.564
+                1.44, 
+                -0.5
             ]
         }, 
         "noteShapeTriangleRoundBlack": {
             "stemDownNW": [
                 0.0, 
-                0.192
+                0.172
             ], 
             "stemUpSE": [
-                1.584, 
-                0.192
+                1.424, 
+                0.172
             ]
         }, 
         "noteShapeTriangleRoundWhite": {
             "stemDownNW": [
-                0.004, 
-                0.184
+                0.0, 
+                0.172
             ], 
             "stemUpSE": [
-                1.588, 
-                0.184
+                1.424, 
+                0.172
             ]
         }, 
         "noteShapeTriangleUpBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.568
+                -0.5
             ], 
             "stemUpSE": [
-                1.62, 
-                -0.568
+                1.424, 
+                -0.5
             ]
         }, 
         "noteShapeTriangleUpWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.568
+                -0.5
             ], 
             "stemUpSE": [
-                1.62, 
-                -0.568
+                1.424, 
+                -0.5
             ]
         }, 
         "noteSiBlack": {
@@ -32069,6 +32503,32 @@
         }, 
         "noteheadBlack": {
             "splitStemDownNE": [
+                0.968, 
+                -0.248
+            ], 
+            "splitStemDownNW": [
+                0.12, 
+                -0.416
+            ], 
+            "splitStemUpSE": [
+                1.092, 
+                0.392
+            ], 
+            "splitStemUpSW": [
+                0.312, 
+                0.356
+            ], 
+            "stemDownNW": [
+                0.0, 
+                -0.168
+            ], 
+            "stemUpSE": [
+                1.18, 
+                0.168
+            ]
+        }, 
+        "noteheadBlackOversized": {
+            "splitStemDownNE": [
                 1.056, 
                 -0.312
             ], 
@@ -32109,7 +32569,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.128, 
+                1.0, 
                 0.0
             ]
         }, 
@@ -32119,13 +32579,13 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.128, 
+                0.996, 
                 0.0
             ]
         }, 
         "noteheadCircleXDoubleWhole": {
             "noteheadOrigin": [
-                0.392, 
+                0.352, 
                 0.0
             ]
         }, 
@@ -32135,18 +32595,18 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.144, 
+                1.0, 
                 0.0
             ]
         }, 
         "noteheadCircledBlack": {
             "stemDownNW": [
-                0.088, 
-                -0.176
+                0.084, 
+                -0.164
             ], 
             "stemUpSE": [
-                1.416, 
-                0.2
+                1.264, 
+                0.168
             ]
         }, 
         "noteheadCircledBlackLarge": {
@@ -32155,13 +32615,13 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.868, 
+                1.66, 
                 0.0
             ]
         }, 
         "noteheadCircledDoubleWhole": {
             "noteheadOrigin": [
-                0.388, 
+                0.356, 
                 0.0
             ]
         }, 
@@ -32171,18 +32631,18 @@
                 0.0
             ], 
             "stemUpSE": [
-                2.488, 
-                0.0
+                2.216, 
+                -0.004
             ]
         }, 
         "noteheadCircledHalf": {
             "stemDownNW": [
-                0.084, 
-                -0.176
+                0.072, 
+                -0.144
             ], 
             "stemUpSE": [
-                1.448, 
-                0.172
+                1.244, 
+                0.156
             ]
         }, 
         "noteheadCircledHalfLarge": {
@@ -32191,7 +32651,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.864, 
+                1.612, 
                 0.0
             ]
         }, 
@@ -32201,8 +32661,8 @@
                 -0.004
             ], 
             "stemUpSE": [
-                2.488, 
-                0.0
+                2.164, 
+                -0.004
             ]
         }, 
         "noteheadCircledXLarge": {
@@ -32211,30 +32671,30 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.864, 
+                1.828, 
                 0.0
             ]
         }, 
         "noteheadClusterDoubleWhole2nd": {
             "noteheadOrigin": [
-                0.392, 
+                0.36, 
                 0.0
             ]
         }, 
         "noteheadClusterDoubleWhole3rd": {
             "noteheadOrigin": [
-                0.4, 
+                0.364, 
                 0.0
             ]
         }, 
         "noteheadClusterHalf2nd": {
             "stemDownNW": [
                 0.0, 
-                -0.18
+                -0.16
             ], 
             "stemUpSE": [
-                1.38, 
-                0.716
+                1.24, 
+                0.652
             ]
         }, 
         "noteheadClusterHalf3rd": {
@@ -32243,20 +32703,20 @@
                 -0.164
             ], 
             "stemUpSE": [
-                1.372, 
-                1.232
+                1.264, 
+                1.144
             ]
         }, 
         "noteheadClusterHalfBottom": {
             "stemDownNW": [
                 0.0, 
-                -0.208
+                -0.164
             ]
         }, 
         "noteheadClusterHalfTop": {
             "stemUpSE": [
-                1.376, 
-                0.18
+                1.196, 
+                0.16
             ]
         }, 
         "noteheadClusterQuarter2nd": {
@@ -32265,8 +32725,8 @@
                 0.06
             ], 
             "stemUpSE": [
-                1.424, 
-                0.464
+                1.308, 
+                0.448
             ]
         }, 
         "noteheadClusterQuarter3rd": {
@@ -32275,8 +32735,8 @@
                 0.26
             ], 
             "stemUpSE": [
-                1.552, 
-                0.78
+                1.44, 
+                0.744
             ]
         }, 
         "noteheadClusterQuarterBottom": {
@@ -32287,8 +32747,8 @@
         }, 
         "noteheadClusterQuarterTop": {
             "stemUpSE": [
-                1.34, 
-                0.18
+                1.18, 
+                0.168
             ]
         }, 
         "noteheadClusterRoundBlack": {
@@ -32298,17 +32758,17 @@
             ], 
             "stemUpSE": [
                 1.328, 
-                2.748
+                2.624
             ]
         }, 
         "noteheadClusterRoundWhite": {
             "stemDownNW": [
-                0.008, 
-                0.304
+                0.0, 
+                0.5
             ], 
             "stemUpSE": [
                 1.496, 
-                2.676
+                2.552
             ]
         }, 
         "noteheadClusterSquareBlack": {
@@ -32318,7 +32778,7 @@
             ], 
             "stemUpSE": [
                 1.328, 
-                3.112
+                3.0
             ]
         }, 
         "noteheadClusterSquareWhite": {
@@ -32328,17 +32788,17 @@
             ], 
             "stemUpSE": [
                 1.328, 
-                3.112
+                3.0
             ]
         }, 
         "noteheadDiamondBlack": {
             "stemDownNW": [
                 0.0, 
-                0.004
+                0.0
             ], 
             "stemUpSE": [
-                1.124, 
-                0.004
+                1.0, 
+                0.0
             ]
         }, 
         "noteheadDiamondBlackOld": {
@@ -32347,8 +32807,8 @@
                 -0.008
             ], 
             "stemUpSE": [
-                1.316, 
-                -0.02
+                1.16, 
+                -0.012
             ]
         }, 
         "noteheadDiamondBlackWide": {
@@ -32357,34 +32817,34 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.572, 
-                0.004
+                1.4, 
+                0.0
             ]
         }, 
         "noteheadDiamondClusterBlack2nd": {
             "stemDownNW": [
                 0.0, 
-                0.576
+                0.516
             ], 
             "stemUpSE": [
-                1.18, 
-                1.092
+                1.068, 
+                0.984
             ]
         }, 
         "noteheadDiamondClusterBlack3rd": {
             "stemDownNW": [
                 0.0, 
-                0.54
+                0.528
             ], 
             "stemUpSE": [
-                1.18, 
-                1.556
+                1.096, 
+                1.472
             ]
         }, 
         "noteheadDiamondClusterBlackBottom": {
             "stemDownNW": [
                 0.0, 
-                0.216
+                0.08
             ]
         }, 
         "noteheadDiamondClusterBlackTop": {
@@ -32396,44 +32856,44 @@
         "noteheadDiamondClusterWhite2nd": {
             "stemDownNW": [
                 0.0, 
-                0.576
+                0.524
             ], 
             "stemUpSE": [
-                1.18, 
-                1.092
+                1.06, 
+                0.98
             ]
         }, 
         "noteheadDiamondClusterWhite3rd": {
             "stemDownNW": [
                 0.0, 
-                0.544
+                0.532
             ], 
             "stemUpSE": [
-                1.18, 
-                1.56
+                1.092, 
+                1.468
             ]
         }, 
         "noteheadDiamondClusterWhiteBottom": {
             "stemDownNW": [
                 0.0, 
-                0.208
+                0.06
             ]
         }, 
         "noteheadDiamondClusterWhiteTop": {
             "stemUpSE": [
-                1.38, 
-                -0.212
+                1.168, 
+                -0.064
             ]
         }, 
         "noteheadDiamondDoubleWhole": {
             "noteheadOrigin": [
-                0.392, 
+                0.324, 
                 0.0
             ]
         }, 
         "noteheadDiamondDoubleWholeOld": {
             "noteheadOrigin": [
-                0.396, 
+                0.388, 
                 0.0
             ]
         }, 
@@ -32443,17 +32903,17 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.136, 
+                1.004, 
                 0.0
             ]
         }, 
         "noteheadDiamondHalfFilled": {
             "stemDownNW": [
-                -0.004, 
+                0.0, 
                 -0.004
             ], 
             "stemUpSE": [
-                1.308, 
+                1.156, 
                 -0.016
             ]
         }, 
@@ -32463,8 +32923,8 @@
                 -0.008
             ], 
             "stemUpSE": [
-                1.324, 
-                -0.016
+                1.164, 
+                -0.012
             ]
         }, 
         "noteheadDiamondHalfWide": {
@@ -32473,7 +32933,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.576, 
+                1.404, 
                 0.0
             ]
         }, 
@@ -32483,18 +32943,18 @@
                 0.028
             ], 
             "stemUpSE": [
-                1.296, 
-                -0.024
+                1.152, 
+                -0.02
             ]
         }, 
         "noteheadDiamondWhite": {
             "stemDownNW": [
                 0.0, 
-                0.004
+                0.0
             ], 
             "stemUpSE": [
-                1.124, 
-                0.004
+                1.0, 
+                0.0
             ]
         }, 
         "noteheadDiamondWhiteWide": {
@@ -32503,24 +32963,56 @@
                 0.004
             ], 
             "stemUpSE": [
-                1.572, 
-                0.004
+                1.4, 
+                0.0
             ]
         }, 
         "noteheadDoubleWhole": {
             "noteheadOrigin": [
+                0.36, 
+                0.0
+            ]
+        }, 
+        "noteheadDoubleWholeOversized": {
+            "noteheadOrigin": [
                 0.392, 
                 0.0
             ]
         }, 
         "noteheadDoubleWholeWithX": {
             "noteheadOrigin": [
-                0.392, 
+                0.356, 
                 0.0
             ]
         }, 
         "noteheadHalf": {
             "splitStemDownNE": [
+                0.956, 
+                -0.3
+            ], 
+            "splitStemDownNW": [
+                0.128, 
+                -0.428
+            ], 
+            "splitStemUpSE": [
+                1.108, 
+                0.372
+            ], 
+            "splitStemUpSW": [
+                0.328, 
+                0.38
+            ], 
+            "stemDownNW": [
+                0.0, 
+                -0.168
+            ], 
+            "stemUpSE": [
+                1.18, 
+                0.168
+            ]
+        }, 
+        "noteheadHalfOversized": {
+            "splitStemDownNE": [
                 1.056, 
                 -0.388
             ], 
@@ -32558,31 +33050,31 @@
         "noteheadHalfWithX": {
             "stemDownNW": [
                 0.0, 
-                -0.2
+                -0.168
             ], 
             "stemUpSE": [
-                1.376, 
-                0.188
+                1.176, 
+                0.164
             ]
         }, 
         "noteheadHeavyX": {
             "stemDownNW": [
                 0.0, 
-                -0.5
+                -0.436
             ], 
             "stemUpSE": [
-                1.736, 
-                0.496
+                1.54, 
+                0.44
             ]
         }, 
         "noteheadHeavyXHat": {
             "stemDownNW": [
                 0.0, 
-                -0.5
+                -0.436
             ], 
             "stemUpSE": [
-                1.744, 
-                0.52
+                1.54, 
+                0.456
             ]
         }, 
         "noteheadLargeArrowDownBlack": {
@@ -32607,18 +33099,18 @@
                 0.948
             ], 
             "stemUpSE": [
-                1.256, 
-                0.948
+                1.44, 
+                0.944
             ]
         }, 
         "noteheadLargeArrowUpBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
                 1.328, 
-                -0.56
+                -0.5
             ]
         }, 
         "noteheadLargeArrowUpDoubleWhole": {
@@ -32629,12 +33121,12 @@
         }, 
         "noteheadLargeArrowUpHalf": {
             "stemDownNW": [
-                -0.004, 
-                -0.496
+                0.0, 
+                -0.444
             ], 
             "stemUpSE": [
-                1.256, 
-                -0.496
+                1.44, 
+                -0.444
             ]
         }, 
         "noteheadMoonBlack": {
@@ -32643,7 +33135,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.416, 
+                1.26, 
                 0.0
             ]
         }, 
@@ -32653,7 +33145,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.416, 
+                1.26, 
                 0.0
             ]
         }, 
@@ -32663,13 +33155,13 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.124, 
+                0.996, 
                 0.0
             ]
         }, 
         "noteheadPlusDoubleWhole": {
             "noteheadOrigin": [
-                0.392, 
+                0.372, 
                 0.0
             ]
         }, 
@@ -32689,7 +33181,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.12, 
+                1.004, 
                 0.0
             ]
         }, 
@@ -32699,8 +33191,8 @@
                 0.0
             ], 
             "stemUpSE": [
-                2.12, 
-                0.064
+                2.0, 
+                0.0
             ]
         }, 
         "noteheadRoundBlackSlashed": {
@@ -32709,7 +33201,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.12, 
+                0.996, 
                 0.0
             ]
         }, 
@@ -32719,7 +33211,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                2.12, 
+                2.004, 
                 0.0
             ]
         }, 
@@ -32728,28 +33220,28 @@
                 0.004, 
                 0.0
             ], 
-            "stemup": [
-                1.124, 
+            "stemUpSE": [
+                1.004, 
                 0.0
             ]
         }, 
         "noteheadRoundWhiteLarge": {
             "stemDownNW": [
-                0.004, 
-                0.06
+                0.0, 
+                0.0
             ], 
             "stemUpSE": [
-                2.124, 
-                0.06
+                2.0, 
+                0.0
             ]
         }, 
         "noteheadRoundWhiteSlashed": {
             "stemDownNW": [
-                0.004, 
+                0.0, 
                 0.0
             ], 
             "stemUpSE": [
-                1.124, 
+                0.996, 
                 0.0
             ]
         }, 
@@ -32759,7 +33251,7 @@
                 0.0
             ], 
             "stemUpSE": [
-                2.12, 
+                2.004, 
                 0.0
             ]
         }, 
@@ -32769,18 +33261,18 @@
                 0.0
             ], 
             "stemUpSE": [
-                1.12, 
+                1.004, 
                 0.0
             ]
         }, 
         "noteheadRoundWhiteWithDotLarge": {
             "stemDownNW": [
                 0.0, 
-                0.06
+                0.0
             ], 
             "stemUpSE": [
-                2.12, 
-                0.06
+                2.004, 
+                0.0
             ]
         }, 
         "noteheadSlashDiamondWhite": {
@@ -32876,63 +33368,63 @@
         "noteheadSlashedBlack1": {
             "stemDownNW": [
                 0.0, 
-                -0.2
+                -0.172
             ], 
             "stemUpSE": [
-                1.328, 
-                0.176
+                1.18, 
+                0.164
             ]
         }, 
         "noteheadSlashedBlack2": {
             "stemDownNW": [
                 0.0, 
-                -0.2
+                -0.172
             ], 
             "stemUpSE": [
-                1.328, 
-                0.176
+                1.18, 
+                0.164
             ]
         }, 
         "noteheadSlashedDoubleWhole1": {
             "noteheadOrigin": [
-                0.392, 
+                0.356, 
                 0.0
             ]
         }, 
         "noteheadSlashedDoubleWhole2": {
             "noteheadOrigin": [
-                0.392, 
+                0.356, 
                 0.0
             ]
         }, 
         "noteheadSlashedHalf1": {
             "stemDownNW": [
-                0.004, 
-                -0.24
+                0.0, 
+                -0.168
             ], 
             "stemUpSE": [
-                1.364, 
-                0.144
+                1.168, 
+                0.164
             ]
         }, 
         "noteheadSlashedHalf2": {
             "stemDownNW": [
-                0.004, 
-                -0.276
+                0.0, 
+                -0.164
             ], 
             "stemUpSE": [
-                1.368, 
-                0.112
+                1.172, 
+                0.168
             ]
         }, 
         "noteheadSquareBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.564
+                -0.5
             ], 
             "stemUpSE": [
-                1.416, 
-                0.564
+                1.252, 
+                0.5
             ]
         }, 
         "noteheadSquareBlackLarge": {
@@ -32941,38 +33433,38 @@
                 0.0
             ], 
             "stemUpSE": [
-                2.148, 
+                2.0, 
                 0.0
             ]
         }, 
         "noteheadSquareBlackWhite": {
             "stemDownNW": [
                 0.0, 
-                -1.048
+                -1.0
             ], 
             "stemUpSE": [
-                2.144, 
-                1.056
+                2.0, 
+                1.0
             ]
         }, 
         "noteheadSquareWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.568
+                -0.5
             ], 
             "stemUpSE": [
-                1.416, 
-                0.56
+                1.252, 
+                0.5
             ]
         }, 
         "noteheadTriangleDownBlack": {
             "stemDownNW": [
                 0.0, 
-                0.568
+                0.5
             ], 
             "stemUpSE": [
-                1.312, 
-                0.568
+                1.168, 
+                0.5
             ]
         }, 
         "noteheadTriangleDownDoubleWhole": {
@@ -32984,173 +33476,173 @@
         "noteheadTriangleDownHalf": {
             "stemDownNW": [
                 0.0, 
-                0.5
+                0.464
             ], 
             "stemUpSE": [
-                1.26, 
-                0.5
+                1.14, 
+                0.464
             ]
         }, 
         "noteheadTriangleDownWhite": {
             "stemDownNW": [
                 0.0, 
-                0.564
+                0.5
             ], 
             "stemUpSE": [
-                1.316, 
-                0.564
+                1.172, 
+                0.5
             ]
         }, 
         "noteheadTriangleLeftBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.524, 
-                -0.56
+                1.356, 
+                -0.5
             ]
         }, 
         "noteheadTriangleLeftWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.524, 
-                -0.56
+                1.356, 
+                -0.5
             ]
         }, 
         "noteheadTriangleRightBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.524, 
-                0.572
+                1.356, 
+                0.5
             ]
         }, 
         "noteheadTriangleRightWhite": {
             "stemDownNW": [
-                0.004, 
-                -0.56
+                0.0, 
+                -0.5
             ], 
             "stemUpSE": [
-                1.528, 
-                0.572
+                1.356, 
+                0.5
             ]
         }, 
         "noteheadTriangleRoundDownBlack": {
             "stemDownNW": [
                 0.0, 
-                0.36
+                0.312
             ], 
             "stemUpSE": [
-                1.272, 
-                0.36
+                1.112, 
+                0.312
             ]
         }, 
         "noteheadTriangleRoundDownWhite": {
             "stemDownNW": [
                 0.0, 
-                0.356
+                0.312
             ], 
             "stemUpSE": [
-                1.272, 
-                0.356
+                1.112, 
+                0.312
             ]
         }, 
         "noteheadTriangleUpBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.56
+                -0.5
             ], 
             "stemUpSE": [
-                1.312, 
-                -0.56
+                1.172, 
+                -0.5
             ]
         }, 
         "noteheadTriangleUpDoubleWhole": {
             "noteheadOrigin": [
-                0.384, 
+                0.34, 
                 0.0
             ]
         }, 
         "noteheadTriangleUpHalf": {
             "stemDownNW": [
-                -0.004, 
-                -0.512
+                0.0, 
+                -0.46
             ], 
             "stemUpSE": [
-                1.256, 
-                -0.512
+                1.14, 
+                -0.46
             ]
         }, 
         "noteheadTriangleUpRightBlack": {
             "stemDownNW": [
                 0.0, 
-                0.568
+                0.5
             ], 
             "stemUpSE": [
-                1.524, 
-                0.568
+                1.356, 
+                0.5
             ]
         }, 
         "noteheadTriangleUpRightWhite": {
             "stemDownNW": [
                 0.0, 
-                0.568
+                0.5
             ], 
             "stemUpSE": [
-                1.524, 
-                0.568
+                1.356, 
+                0.5
             ]
         }, 
         "noteheadTriangleUpWhite": {
             "stemDownNW": [
                 0.0, 
-                -0.564
+                -0.5
             ], 
             "stemUpSE": [
-                1.316, 
-                -0.564
+                1.172, 
+                -0.5
             ]
         }, 
         "noteheadVoidWithX": {
             "stemDownNW": [
-                -0.004, 
-                -0.192
+                0.0, 
+                -0.148
             ], 
             "stemUpSE": [
-                1.484, 
-                0.192
+                1.156, 
+                0.148
             ]
         }, 
         "noteheadXBlack": {
             "stemDownNW": [
                 0.0, 
-                -0.516
+                -0.44
             ], 
             "stemUpSE": [
-                1.32, 
-                0.496
+                1.16, 
+                0.444
             ]
         }, 
         "noteheadXDoubleWhole": {
             "noteheadOrigin": [
-                0.392, 
+                0.348, 
                 0.0
             ]
         }, 
         "noteheadXHalf": {
             "stemDownNW": [
-                0.004, 
-                -0.464
+                0.0, 
+                -0.412
             ], 
             "stemUpSE": [
-                1.516, 
-                0.464
+                1.336, 
+                0.412
             ]
         }, 
         "noteheadXOrnate": {
@@ -33765,7 +34257,7 @@
 
     "ligatures": {
         "accidentalDoubleFlatParens": {
-            "codepoint": "U+F561", 
+            "codepoint": "U+F566", 
             "componentGlyphs": [
                 "accidentalParensLeft", 
                 "accidentalDoubleFlat", 
@@ -33773,7 +34265,7 @@
             ]
         }, 
         "accidentalDoubleSharpParens": {
-            "codepoint": "U+F560", 
+            "codepoint": "U+F565", 
             "componentGlyphs": [
                 "accidentalParensLeft", 
                 "accidentalDoubleSharp", 
@@ -33781,21 +34273,21 @@
             ]
         }, 
         "accidentalFlatJohnstonDown": {
-            "codepoint": "U+F567", 
+            "codepoint": "U+F56C", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "accidentalJohnstonDown"
             ]
         }, 
         "accidentalFlatJohnstonEl": {
-            "codepoint": "U+F565", 
+            "codepoint": "U+F56A", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "accidentalJohnstonEl"
             ]
         }, 
         "accidentalFlatJohnstonElDown": {
-            "codepoint": "U+F573", 
+            "codepoint": "U+F578", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "accidentalJohnstonEl", 
@@ -33803,14 +34295,14 @@
             ]
         }, 
         "accidentalFlatJohnstonUp": {
-            "codepoint": "U+F566", 
+            "codepoint": "U+F56B", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "accidentalJohnstonUp"
             ]
         }, 
         "accidentalFlatJohnstonUpEl": {
-            "codepoint": "U+F572", 
+            "codepoint": "U+F577", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "accidentalJohnstonUp", 
@@ -33818,7 +34310,7 @@
             ]
         }, 
         "accidentalFlatParens": {
-            "codepoint": "U+F55D", 
+            "codepoint": "U+F562", 
             "componentGlyphs": [
                 "accidentalParensLeft", 
                 "accidentalFlat", 
@@ -33826,28 +34318,28 @@
             ]
         }, 
         "accidentalJohnstonDownEl": {
-            "codepoint": "U+F56D", 
+            "codepoint": "U+F572", 
             "componentGlyphs": [
                 "accidentalJohnstonDown", 
                 "accidentalJohnstonEl"
             ]
         }, 
         "accidentalJohnstonSevenDown": {
-            "codepoint": "U+F56B", 
+            "codepoint": "U+F570", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalJohnstonDown"
             ]
         }, 
         "accidentalJohnstonSevenFlat": {
-            "codepoint": "U+F569", 
+            "codepoint": "U+F56E", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalFlat"
             ]
         }, 
         "accidentalJohnstonSevenFlatDown": {
-            "codepoint": "U+F575", 
+            "codepoint": "U+F57A", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalFlat", 
@@ -33855,7 +34347,7 @@
             ]
         }, 
         "accidentalJohnstonSevenFlatUp": {
-            "codepoint": "U+F574", 
+            "codepoint": "U+F579", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalFlat", 
@@ -33863,14 +34355,14 @@
             ]
         }, 
         "accidentalJohnstonSevenSharp": {
-            "codepoint": "U+F568", 
+            "codepoint": "U+F56D", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalSharp"
             ]
         }, 
         "accidentalJohnstonSevenSharpDown": {
-            "codepoint": "U+F571", 
+            "codepoint": "U+F576", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalSharp", 
@@ -33878,7 +34370,7 @@
             ]
         }, 
         "accidentalJohnstonSevenSharpUp": {
-            "codepoint": "U+F570", 
+            "codepoint": "U+F575", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalSharp", 
@@ -33886,21 +34378,21 @@
             ]
         }, 
         "accidentalJohnstonSevenUp": {
-            "codepoint": "U+F56A", 
+            "codepoint": "U+F56F", 
             "componentGlyphs": [
                 "accidentalJohnstonSeven", 
                 "accidentalJohnstonUp"
             ]
         }, 
         "accidentalJohnstonUpEl": {
-            "codepoint": "U+F56C", 
+            "codepoint": "U+F571", 
             "componentGlyphs": [
                 "accidentalJohnstonUp", 
                 "accidentalJohnstonEl"
             ]
         }, 
         "accidentalNaturalParens": {
-            "codepoint": "U+F55E", 
+            "codepoint": "U+F563", 
             "componentGlyphs": [
                 "accidentalParensLeft", 
                 "accidentalNatural", 
@@ -33908,14 +34400,14 @@
             ]
         }, 
         "accidentalSharpJohnstonDown": {
-            "codepoint": "U+F564", 
+            "codepoint": "U+F569", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "accidentalJohnstonDown"
             ]
         }, 
         "accidentalSharpJohnstonDownEl": {
-            "codepoint": "U+F56F", 
+            "codepoint": "U+F574", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "accidentalJohnstonDown", 
@@ -33923,21 +34415,21 @@
             ]
         }, 
         "accidentalSharpJohnstonEl": {
-            "codepoint": "U+F562", 
+            "codepoint": "U+F567", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "accidentalJohnstonEl"
             ]
         }, 
         "accidentalSharpJohnstonUp": {
-            "codepoint": "U+F563", 
+            "codepoint": "U+F568", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "accidentalJohnstonUp"
             ]
         }, 
         "accidentalSharpJohnstonUpEl": {
-            "codepoint": "U+F56E", 
+            "codepoint": "U+F573", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "accidentalJohnstonUp", 
@@ -33945,7 +34437,7 @@
             ]
         }, 
         "accidentalSharpParens": {
-            "codepoint": "U+F55F", 
+            "codepoint": "U+F564", 
             "componentGlyphs": [
                 "accidentalParensLeft", 
                 "accidentalSharp", 
@@ -33953,21 +34445,21 @@
             ]
         }, 
         "fClef5Below": {
-            "codepoint": "U+F4BA", 
+            "codepoint": "U+F4BF", 
             "componentGlyphs": [
                 "fClef", 
                 "tuplet5"
             ]
         }, 
         "gClef0Below": {
-            "codepoint": "U+F4BB", 
+            "codepoint": "U+F4C0", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet0"
             ]
         }, 
         "gClef10Below": {
-            "codepoint": "U+F4BC", 
+            "codepoint": "U+F4C1", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -33975,7 +34467,7 @@
             ]
         }, 
         "gClef11Below": {
-            "codepoint": "U+F4BD", 
+            "codepoint": "U+F4C2", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -33983,7 +34475,7 @@
             ]
         }, 
         "gClef12Below": {
-            "codepoint": "U+F4BE", 
+            "codepoint": "U+F4C3", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -33991,7 +34483,7 @@
             ]
         }, 
         "gClef13Below": {
-            "codepoint": "U+F4BF", 
+            "codepoint": "U+F4C4", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -33999,7 +34491,7 @@
             ]
         }, 
         "gClef14Below": {
-            "codepoint": "U+F4C0", 
+            "codepoint": "U+F4C5", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34007,7 +34499,7 @@
             ]
         }, 
         "gClef15Below": {
-            "codepoint": "U+F4C1", 
+            "codepoint": "U+F4C6", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34015,7 +34507,7 @@
             ]
         }, 
         "gClef16Below": {
-            "codepoint": "U+F4C2", 
+            "codepoint": "U+F4C7", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34023,7 +34515,7 @@
             ]
         }, 
         "gClef17Below": {
-            "codepoint": "U+F4C3", 
+            "codepoint": "U+F4C8", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34031,119 +34523,119 @@
             ]
         }, 
         "gClef2Above": {
-            "codepoint": "U+F4C4", 
+            "codepoint": "U+F4C9", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet2"
             ]
         }, 
         "gClef2Below": {
-            "codepoint": "U+F4C5", 
+            "codepoint": "U+F4CA", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet2"
             ]
         }, 
         "gClef3Above": {
-            "codepoint": "U+F4C6", 
+            "codepoint": "U+F4CB", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet3"
             ]
         }, 
         "gClef3Below": {
-            "codepoint": "U+F4C7", 
+            "codepoint": "U+F4CC", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet3"
             ]
         }, 
         "gClef4Above": {
-            "codepoint": "U+F4C8", 
+            "codepoint": "U+F4CD", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet4"
             ]
         }, 
         "gClef4Below": {
-            "codepoint": "U+F4C9", 
+            "codepoint": "U+F4CE", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet4"
             ]
         }, 
         "gClef5Above": {
-            "codepoint": "U+F4CA", 
+            "codepoint": "U+F4CF", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet5"
             ]
         }, 
         "gClef5Below": {
-            "codepoint": "U+F4CB", 
+            "codepoint": "U+F4D0", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet5"
             ]
         }, 
         "gClef6Above": {
-            "codepoint": "U+F4CC", 
+            "codepoint": "U+F4D1", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet6"
             ]
         }, 
         "gClef6Below": {
-            "codepoint": "U+F4CD", 
+            "codepoint": "U+F4D2", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet6"
             ]
         }, 
         "gClef7Above": {
-            "codepoint": "U+F4CE", 
+            "codepoint": "U+F4D3", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet7"
             ]
         }, 
         "gClef7Below": {
-            "codepoint": "U+F4CF", 
+            "codepoint": "U+F4D4", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet7"
             ]
         }, 
         "gClef8Above": {
-            "codepoint": "U+F4D0", 
+            "codepoint": "U+F4D5", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet8"
             ]
         }, 
         "gClef8Below": {
-            "codepoint": "U+F4D1", 
+            "codepoint": "U+F4D6", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet8"
             ]
         }, 
         "gClef9Above": {
-            "codepoint": "U+F4D2", 
+            "codepoint": "U+F4D7", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet9"
             ]
         }, 
         "gClef9Below": {
-            "codepoint": "U+F4D3", 
+            "codepoint": "U+F4D8", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet9"
             ]
         }, 
         "gClefFlat10Below": {
-            "codepoint": "U+F4D4", 
+            "codepoint": "U+F4D9", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34152,7 +34644,7 @@
             ]
         }, 
         "gClefFlat11Below": {
-            "codepoint": "U+F4D5", 
+            "codepoint": "U+F4DA", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34161,7 +34653,7 @@
             ]
         }, 
         "gClefFlat13Below": {
-            "codepoint": "U+F4D6", 
+            "codepoint": "U+F4DB", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34170,7 +34662,7 @@
             ]
         }, 
         "gClefFlat14Below": {
-            "codepoint": "U+F4D7", 
+            "codepoint": "U+F4DC", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34179,7 +34671,7 @@
             ]
         }, 
         "gClefFlat15Below": {
-            "codepoint": "U+F4D8", 
+            "codepoint": "U+F4DD", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34188,7 +34680,7 @@
             ]
         }, 
         "gClefFlat16Below": {
-            "codepoint": "U+F4D9", 
+            "codepoint": "U+F4DE", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34197,7 +34689,7 @@
             ]
         }, 
         "gClefFlat1Below": {
-            "codepoint": "U+F4DA", 
+            "codepoint": "U+F4DF", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34205,7 +34697,7 @@
             ]
         }, 
         "gClefFlat2Above": {
-            "codepoint": "U+F4DB", 
+            "codepoint": "U+F4E0", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet2", 
@@ -34213,7 +34705,7 @@
             ]
         }, 
         "gClefFlat2Below": {
-            "codepoint": "U+F4DC", 
+            "codepoint": "U+F4E1", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34221,7 +34713,7 @@
             ]
         }, 
         "gClefFlat3Above": {
-            "codepoint": "U+F4DD", 
+            "codepoint": "U+F4E2", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet3", 
@@ -34229,7 +34721,7 @@
             ]
         }, 
         "gClefFlat3Below": {
-            "codepoint": "U+F4DE", 
+            "codepoint": "U+F4E3", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34237,7 +34729,7 @@
             ]
         }, 
         "gClefFlat4Below": {
-            "codepoint": "U+F4DF", 
+            "codepoint": "U+F4E4", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34245,7 +34737,7 @@
             ]
         }, 
         "gClefFlat5Above": {
-            "codepoint": "U+F4E0", 
+            "codepoint": "U+F4E5", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet5", 
@@ -34253,7 +34745,7 @@
             ]
         }, 
         "gClefFlat6Above": {
-            "codepoint": "U+F4E1", 
+            "codepoint": "U+F4E6", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet6", 
@@ -34261,7 +34753,7 @@
             ]
         }, 
         "gClefFlat6Below": {
-            "codepoint": "U+F4E2", 
+            "codepoint": "U+F4E7", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34269,7 +34761,7 @@
             ]
         }, 
         "gClefFlat7Above": {
-            "codepoint": "U+F4E3", 
+            "codepoint": "U+F4E8", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet7", 
@@ -34277,7 +34769,7 @@
             ]
         }, 
         "gClefFlat7Below": {
-            "codepoint": "U+F4E4", 
+            "codepoint": "U+F4E9", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34285,7 +34777,7 @@
             ]
         }, 
         "gClefFlat8Above": {
-            "codepoint": "U+F4E5", 
+            "codepoint": "U+F4EA", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet8", 
@@ -34293,7 +34785,7 @@
             ]
         }, 
         "gClefFlat9Above": {
-            "codepoint": "U+F4E6", 
+            "codepoint": "U+F4EB", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet9", 
@@ -34301,7 +34793,7 @@
             ]
         }, 
         "gClefFlat9Below": {
-            "codepoint": "U+F4E7", 
+            "codepoint": "U+F4EC", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalFlat", 
@@ -34309,7 +34801,7 @@
             ]
         }, 
         "gClefNat2Below": {
-            "codepoint": "U+F4E8", 
+            "codepoint": "U+F4ED", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalNatural", 
@@ -34317,7 +34809,7 @@
             ]
         }, 
         "gClefNatural10Below": {
-            "codepoint": "U+F4E9", 
+            "codepoint": "U+F4EE", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34326,7 +34818,7 @@
             ]
         }, 
         "gClefNatural13Below": {
-            "codepoint": "U+F4EA", 
+            "codepoint": "U+F4EF", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34335,7 +34827,7 @@
             ]
         }, 
         "gClefNatural17Below": {
-            "codepoint": "U+F4EB", 
+            "codepoint": "U+F4F0", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34344,7 +34836,7 @@
             ]
         }, 
         "gClefNatural2Above": {
-            "codepoint": "U+F4EC", 
+            "codepoint": "U+F4F1", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet2", 
@@ -34352,7 +34844,7 @@
             ]
         }, 
         "gClefNatural3Above": {
-            "codepoint": "U+F4ED", 
+            "codepoint": "U+F4F2", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet3", 
@@ -34360,7 +34852,7 @@
             ]
         }, 
         "gClefNatural3Below": {
-            "codepoint": "U+F4EE", 
+            "codepoint": "U+F4F3", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalNatural", 
@@ -34368,7 +34860,7 @@
             ]
         }, 
         "gClefNatural6Above": {
-            "codepoint": "U+F4EF", 
+            "codepoint": "U+F4F4", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet6", 
@@ -34376,7 +34868,7 @@
             ]
         }, 
         "gClefNatural6Below": {
-            "codepoint": "U+F4F0", 
+            "codepoint": "U+F4F5", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalNatural", 
@@ -34384,7 +34876,7 @@
             ]
         }, 
         "gClefNatural7Above": {
-            "codepoint": "U+F4F1", 
+            "codepoint": "U+F4F6", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet7", 
@@ -34392,7 +34884,7 @@
             ]
         }, 
         "gClefNatural9Above": {
-            "codepoint": "U+F4F2", 
+            "codepoint": "U+F4F7", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet9", 
@@ -34400,7 +34892,7 @@
             ]
         }, 
         "gClefNatural9Below": {
-            "codepoint": "U+F4F3", 
+            "codepoint": "U+F4F8", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalNatural", 
@@ -34408,7 +34900,7 @@
             ]
         }, 
         "gClefSharp12Below": {
-            "codepoint": "U+F4F4", 
+            "codepoint": "U+F4F9", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "tuplet1", 
@@ -34417,7 +34909,7 @@
             ]
         }, 
         "gClefSharp1Above": {
-            "codepoint": "U+F4F5", 
+            "codepoint": "U+F4FA", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet1", 
@@ -34425,7 +34917,7 @@
             ]
         }, 
         "gClefSharp4Above": {
-            "codepoint": "U+F4F6", 
+            "codepoint": "U+F4FB", 
             "componentGlyphs": [
                 "gClefLigatedNumberAbove", 
                 "tuplet4", 
@@ -34433,7 +34925,7 @@
             ]
         }, 
         "gClefSharp5Below": {
-            "codepoint": "U+F4F7", 
+            "codepoint": "U+F4FC", 
             "componentGlyphs": [
                 "gClefLigatedNumberBelow", 
                 "accidentalSharp", 
@@ -34441,469 +34933,469 @@
             ]
         }, 
         "mensuralFusaBlackStemDown": {
-            "codepoint": "U+F4F8", 
+            "codepoint": "U+F4FD", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDownFlagFusa"
             ]
         }, 
         "mensuralFusaBlackStemUp": {
-            "codepoint": "U+F4F9", 
+            "codepoint": "U+F4FE", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUpFlagFusa"
             ]
         }, 
         "mensuralFusaBlackVoidStemDown": {
-            "codepoint": "U+F4FA", 
+            "codepoint": "U+F4FF", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDownFlagFusa"
             ]
         }, 
         "mensuralFusaBlackVoidStemUp": {
-            "codepoint": "U+F4FB", 
+            "codepoint": "U+F500", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUpFlagFusa"
             ]
         }, 
         "mensuralFusaVoidStemDown": {
-            "codepoint": "U+F4FC", 
+            "codepoint": "U+F501", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDownFlagFusa"
             ]
         }, 
         "mensuralFusaVoidStemUp": {
-            "codepoint": "U+F4FD", 
+            "codepoint": "U+F502", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUpFlagFusa"
             ]
         }, 
         "mensuralLongaBlackStemDownLeft": {
-            "codepoint": "U+F4FE", 
+            "codepoint": "U+F503", 
             "componentGlyphs": [
                 "mensuralCombStemDown", 
                 "mensuralNoteheadLongaBlack"
             ]
         }, 
         "mensuralLongaBlackStemDownRight": {
-            "codepoint": "U+F4FF", 
+            "codepoint": "U+F504", 
             "componentGlyphs": [
                 "mensuralNoteheadLongaBlack", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralLongaBlackStemUpLeft": {
-            "codepoint": "U+F500", 
+            "codepoint": "U+F505", 
             "componentGlyphs": [
                 "mensuralCombStemUp", 
                 "mensuralNoteheadLongaBlack"
             ]
         }, 
         "mensuralLongaBlackStemUpRight": {
-            "codepoint": "U+F501", 
+            "codepoint": "U+F506", 
             "componentGlyphs": [
                 "mensuralNoteheadLongaBlack", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralLongaBlackVoidStemDownLeft": {
-            "codepoint": "U+F502", 
+            "codepoint": "U+F507", 
             "componentGlyphs": [
                 "mensuralCombStemDown", 
                 "mensuralNoteheadLongaBlackVoid"
             ]
         }, 
         "mensuralLongaBlackVoidStemDownRight": {
-            "codepoint": "U+F503", 
+            "codepoint": "U+F508", 
             "componentGlyphs": [
                 "mensuralNoteheadLongaBlackVoid", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralLongaBlackVoidStemUpLeft": {
-            "codepoint": "U+F504", 
+            "codepoint": "U+F509", 
             "componentGlyphs": [
                 "mensuralCombStemUp", 
                 "mensuralNoteheadLongaBlackVoid"
             ]
         }, 
         "mensuralLongaBlackVoidStemUpRight": {
-            "codepoint": "U+F505", 
+            "codepoint": "U+F50A", 
             "componentGlyphs": [
                 "mensuralNoteheadLongaBlackVoid", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralLongaVoidStemDownLeft": {
-            "codepoint": "U+F506", 
+            "codepoint": "U+F50B", 
             "componentGlyphs": [
                 "mensuralCombStemDown", 
                 "mensuralNoteheadLongaVoid"
             ]
         }, 
         "mensuralLongaVoidStemDownRight": {
-            "codepoint": "U+F507", 
+            "codepoint": "U+F50C", 
             "componentGlyphs": [
                 "mensuralNoteheadLongaVoid", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralLongaVoidStemUpLeft": {
-            "codepoint": "U+F508", 
+            "codepoint": "U+F50D", 
             "componentGlyphs": [
                 "mensuralCombStemUp", 
                 "mensuralNoteheadLongaVoid"
             ]
         }, 
         "mensuralLongaVoidStemUpRight": {
-            "codepoint": "U+F509", 
+            "codepoint": "U+F50E", 
             "componentGlyphs": [
                 "mensuralNoteheadLongaVoid", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMaximaBlackStemDownLeft": {
-            "codepoint": "U+F50A", 
+            "codepoint": "U+F50F", 
             "componentGlyphs": [
                 "mensuralCombStemDown", 
                 "mensuralNoteheadMaximaBlack"
             ]
         }, 
         "mensuralMaximaBlackStemDownRight": {
-            "codepoint": "U+F50B", 
+            "codepoint": "U+F510", 
             "componentGlyphs": [
                 "mensuralNoteheadMaximaBlack", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralMaximaBlackStemUpLeft": {
-            "codepoint": "U+F50C", 
+            "codepoint": "U+F511", 
             "componentGlyphs": [
                 "mensuralCombStemUp", 
                 "mensuralNoteheadMaximaBlack"
             ]
         }, 
         "mensuralMaximaBlackStemUpRight": {
-            "codepoint": "U+F50D", 
+            "codepoint": "U+F512", 
             "componentGlyphs": [
                 "mensuralNoteheadMaximaBlack", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMaximaBlackVoidStemDownLeft": {
-            "codepoint": "U+F50E", 
+            "codepoint": "U+F513", 
             "componentGlyphs": [
                 "mensuralCombStemDown", 
                 "mensuralNoteheadMaximaBlackVoid"
             ]
         }, 
         "mensuralMaximaBlackVoidStemDownRight": {
-            "codepoint": "U+F50F", 
+            "codepoint": "U+F514", 
             "componentGlyphs": [
                 "mensuralNoteheadMaximaBlackVoid", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralMaximaBlackVoidStemUpLeft": {
-            "codepoint": "U+F510", 
+            "codepoint": "U+F515", 
             "componentGlyphs": [
                 "mensuralCombStemUp", 
                 "mensuralNoteheadMaximaBlackVoid"
             ]
         }, 
         "mensuralMaximaBlackVoidStemUpRight": {
-            "codepoint": "U+F511", 
+            "codepoint": "U+F516", 
             "componentGlyphs": [
                 "mensuralNoteheadMaximaBlackVoid", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMaximaVoidStemDownLeft": {
-            "codepoint": "U+F512", 
+            "codepoint": "U+F517", 
             "componentGlyphs": [
                 "mensuralCombStemDown", 
                 "mensuralNoteheadMaximaVoid"
             ]
         }, 
         "mensuralMaximaVoidStemDownRight": {
-            "codepoint": "U+F513", 
+            "codepoint": "U+F518", 
             "componentGlyphs": [
                 "mensuralNoteheadMaximaVoid", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralMaximaVoidStemUpLeft": {
-            "codepoint": "U+F514", 
+            "codepoint": "U+F519", 
             "componentGlyphs": [
                 "mensuralCombStemUp", 
                 "mensuralNoteheadMaximaVoid"
             ]
         }, 
         "mensuralMaximaVoidStemUpRight": {
-            "codepoint": "U+F515", 
+            "codepoint": "U+F51A", 
             "componentGlyphs": [
                 "mensuralNoteheadMaximaVoid", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMinimaBlackStemDown": {
-            "codepoint": "U+F516", 
+            "codepoint": "U+F51B", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralMinimaBlackStemDownExtendedFlag": {
-            "codepoint": "U+F517", 
+            "codepoint": "U+F51C", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDownFlagExtended"
             ]
         }, 
         "mensuralMinimaBlackStemDownFlagLeft": {
-            "codepoint": "U+F518", 
+            "codepoint": "U+F51D", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDownFlagLeft"
             ]
         }, 
         "mensuralMinimaBlackStemDownFlagRight": {
-            "codepoint": "U+F519", 
+            "codepoint": "U+F51E", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDownFlagRight"
             ]
         }, 
         "mensuralMinimaBlackStemDownFlaredFlag": {
-            "codepoint": "U+F51A", 
+            "codepoint": "U+F51F", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDownFlagFlared"
             ]
         }, 
         "mensuralMinimaBlackStemUp": {
-            "codepoint": "U+F51B", 
+            "codepoint": "U+F520", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMinimaBlackStemUpExtendedFlag": {
-            "codepoint": "U+F51C", 
+            "codepoint": "U+F521", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUpFlagExtended"
             ]
         }, 
         "mensuralMinimaBlackStemUpFlagLeft": {
-            "codepoint": "U+F51D", 
+            "codepoint": "U+F522", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUpFlagLeft"
             ]
         }, 
         "mensuralMinimaBlackStemUpFlagRight": {
-            "codepoint": "U+F51E", 
+            "codepoint": "U+F523", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUpFlagRight"
             ]
         }, 
         "mensuralMinimaBlackStemUpFlaredFlag": {
-            "codepoint": "U+F51F", 
+            "codepoint": "U+F524", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUpFlagFlared"
             ]
         }, 
         "mensuralMinimaBlackVoidStemDown": {
-            "codepoint": "U+F520", 
+            "codepoint": "U+F525", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralMinimaBlackVoidStemDownExtendedFlag": {
-            "codepoint": "U+F521", 
+            "codepoint": "U+F526", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDownFlagExtended"
             ]
         }, 
         "mensuralMinimaBlackVoidStemDownFlagLeft": {
-            "codepoint": "U+F522", 
+            "codepoint": "U+F527", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDownFlagLeft"
             ]
         }, 
         "mensuralMinimaBlackVoidStemDownFlagRight": {
-            "codepoint": "U+F523", 
+            "codepoint": "U+F528", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDownFlagRight"
             ]
         }, 
         "mensuralMinimaBlackVoidStemDownFlaredFlag": {
-            "codepoint": "U+F524", 
+            "codepoint": "U+F529", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDownFlagFlared"
             ]
         }, 
         "mensuralMinimaBlackVoidStemUp": {
-            "codepoint": "U+F525", 
+            "codepoint": "U+F52A", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMinimaBlackVoidStemUpExtendedFlag": {
-            "codepoint": "U+F526", 
+            "codepoint": "U+F52B", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUpFlagExtended"
             ]
         }, 
         "mensuralMinimaBlackVoidStemUpFlagLeft": {
-            "codepoint": "U+F527", 
+            "codepoint": "U+F52C", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUpFlagLeft"
             ]
         }, 
         "mensuralMinimaBlackVoidStemUpFlagRight": {
-            "codepoint": "U+F528", 
+            "codepoint": "U+F52D", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUpFlagRight"
             ]
         }, 
         "mensuralMinimaBlackVoidStemUpFlaredFlag": {
-            "codepoint": "U+F529", 
+            "codepoint": "U+F52E", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUpFlagFlared"
             ]
         }, 
         "mensuralMinimaVoidStemDown": {
-            "codepoint": "U+F52A", 
+            "codepoint": "U+F52F", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDown"
             ]
         }, 
         "mensuralMinimaVoidStemDownExtendedFlag": {
-            "codepoint": "U+F52B", 
+            "codepoint": "U+F530", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDownFlagExtended"
             ]
         }, 
         "mensuralMinimaVoidStemDownFlagLeft": {
-            "codepoint": "U+F52C", 
+            "codepoint": "U+F531", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDownFlagLeft"
             ]
         }, 
         "mensuralMinimaVoidStemDownFlagRight": {
-            "codepoint": "U+F52D", 
+            "codepoint": "U+F532", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDownFlagRight"
             ]
         }, 
         "mensuralMinimaVoidStemDownFlaredFlag": {
-            "codepoint": "U+F52E", 
+            "codepoint": "U+F533", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDownFlagFlared"
             ]
         }, 
         "mensuralMinimaVoidStemUp": {
-            "codepoint": "U+F530", 
+            "codepoint": "U+F535", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUp"
             ]
         }, 
         "mensuralMinimaVoidStemUpExtendedFlag": {
-            "codepoint": "U+F52F", 
+            "codepoint": "U+F534", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUpFlagExtended"
             ]
         }, 
         "mensuralMinimaVoidStemUpFlagLeft": {
-            "codepoint": "U+F531", 
+            "codepoint": "U+F536", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUpFlagLeft"
             ]
         }, 
         "mensuralMinimaVoidStemUpFlagRight": {
-            "codepoint": "U+F532", 
+            "codepoint": "U+F537", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUpFlagRight"
             ]
         }, 
         "mensuralMinimaVoidStemUpFlaredFlag": {
-            "codepoint": "U+F533", 
+            "codepoint": "U+F538", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUpFlagFlared"
             ]
         }, 
         "mensuralSemiminimaBlackStemDown": {
-            "codepoint": "U+F534", 
+            "codepoint": "U+F539", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemDownFlagSemiminima"
             ]
         }, 
         "mensuralSemiminimaBlackStemUp": {
-            "codepoint": "U+F535", 
+            "codepoint": "U+F53A", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlack", 
                 "mensuralCombStemUpFlagSemiminima"
             ]
         }, 
         "mensuralSemiminimaBlackVoidStemDown": {
-            "codepoint": "U+F536", 
+            "codepoint": "U+F53B", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemDownFlagSemiminima"
             ]
         }, 
         "mensuralSemiminimaBlackVoidStemUp": {
-            "codepoint": "U+F537", 
+            "codepoint": "U+F53C", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisBlackVoid", 
                 "mensuralCombStemUpFlagSemiminima"
             ]
         }, 
         "mensuralSemiminimaVoidStemDown": {
-            "codepoint": "U+F538", 
+            "codepoint": "U+F53D", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemDownFlagSemiminima"
             ]
         }, 
         "mensuralSemiminimaVoidStemUp": {
-            "codepoint": "U+F539", 
+            "codepoint": "U+F53E", 
             "componentGlyphs": [
                 "mensuralNoteheadSemibrevisVoid", 
                 "mensuralCombStemUpFlagSemiminima"
             ]
         }, 
         "noteheadBlackParens": {
-            "codepoint": "U+F559", 
+            "codepoint": "U+F55E", 
             "componentGlyphs": [
                 "noteheadParenthesisLeft", 
                 "noteheadBlack", 
@@ -34911,7 +35403,7 @@
             ]
         }, 
         "noteheadDoubleWholeParens": {
-            "codepoint": "U+F55C", 
+            "codepoint": "U+F561", 
             "componentGlyphs": [
                 "noteheadParenthesisLeft", 
                 "noteheadDoubleWhole", 
@@ -34919,7 +35411,7 @@
             ]
         }, 
         "noteheadHalfParens": {
-            "codepoint": "U+F55A", 
+            "codepoint": "U+F55F", 
             "componentGlyphs": [
                 "noteheadParenthesisLeft", 
                 "noteheadHalf", 
@@ -34927,7 +35419,7 @@
             ]
         }, 
         "noteheadWholeParens": {
-            "codepoint": "U+F55B", 
+            "codepoint": "U+F560", 
             "componentGlyphs": [
                 "noteheadParenthesisLeft", 
                 "noteheadWhole", 
@@ -34935,35 +35427,35 @@
             ]
         }, 
         "ornamentTrillFlatAbove": {
-            "codepoint": "U+F53A", 
+            "codepoint": "U+F53F", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "ornamentTrill"
             ]
         }, 
         "ornamentTrillNaturalAbove": {
-            "codepoint": "U+F53B", 
+            "codepoint": "U+F540", 
             "componentGlyphs": [
                 "accidentalNatural", 
                 "ornamentTrill"
             ]
         }, 
         "ornamentTrillSharpAbove": {
-            "codepoint": "U+F53C", 
+            "codepoint": "U+F541", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "ornamentTrill"
             ]
         }, 
         "ornamentTurnFlatAbove": {
-            "codepoint": "U+F53D", 
+            "codepoint": "U+F542", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "ornamentTurn"
             ]
         }, 
         "ornamentTurnFlatAboveSharpBelow": {
-            "codepoint": "U+F53E", 
+            "codepoint": "U+F543", 
             "componentGlyphs": [
                 "accidentalFlat", 
                 "ornamentTurn", 
@@ -34971,35 +35463,35 @@
             ]
         }, 
         "ornamentTurnFlatBelow": {
-            "codepoint": "U+F53F", 
+            "codepoint": "U+F544", 
             "componentGlyphs": [
                 "ornamentTurn", 
                 "accidentalFlat"
             ]
         }, 
         "ornamentTurnNaturalAbove": {
-            "codepoint": "U+F540", 
+            "codepoint": "U+F545", 
             "componentGlyphs": [
                 "accidentalNatural", 
                 "ornamentTurn"
             ]
         }, 
         "ornamentTurnNaturalBelow": {
-            "codepoint": "U+F541", 
+            "codepoint": "U+F546", 
             "componentGlyphs": [
                 "ornamentTurn", 
                 "accidentalNatural"
             ]
         }, 
         "ornamentTurnSharpAbove": {
-            "codepoint": "U+F542", 
+            "codepoint": "U+F547", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "ornamentTurn"
             ]
         }, 
         "ornamentTurnSharpAboveFlatBelow": {
-            "codepoint": "U+F543", 
+            "codepoint": "U+F548", 
             "componentGlyphs": [
                 "accidentalSharp", 
                 "ornamentTurn", 
@@ -35007,28 +35499,28 @@
             ]
         }, 
         "ornamentTurnSharpBelow": {
-            "codepoint": "U+F544", 
+            "codepoint": "U+F549", 
             "componentGlyphs": [
                 "ornamentTurn", 
                 "accidentalSharp"
             ]
         }, 
         "timeSig0Denominator": {
-            "codepoint": "U+F545", 
+            "codepoint": "U+F54A", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig0"
             ]
         }, 
         "timeSig0Numerator": {
-            "codepoint": "U+F546", 
+            "codepoint": "U+F54B", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig0"
             ]
         }, 
         "timeSig12over8": {
-            "codepoint": "U+F582", 
+            "codepoint": "U+F587", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig1", 
@@ -35039,35 +35531,35 @@
             ]
         }, 
         "timeSig1Denominator": {
-            "codepoint": "U+F547", 
+            "codepoint": "U+F54C", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig1"
             ]
         }, 
         "timeSig1Numerator": {
-            "codepoint": "U+F548", 
+            "codepoint": "U+F54D", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig1"
             ]
         }, 
         "timeSig2Denominator": {
-            "codepoint": "U+F549", 
+            "codepoint": "U+F54E", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig2"
             ]
         }, 
         "timeSig2Numerator": {
-            "codepoint": "U+F54A", 
+            "codepoint": "U+F54F", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig2"
             ]
         }, 
         "timeSig2over2": {
-            "codepoint": "U+F577", 
+            "codepoint": "U+F57C", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig2", 
@@ -35076,7 +35568,7 @@
             ]
         }, 
         "timeSig2over4": {
-            "codepoint": "U+F576", 
+            "codepoint": "U+F57B", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig2", 
@@ -35085,21 +35577,21 @@
             ]
         }, 
         "timeSig3Denominator": {
-            "codepoint": "U+F54B", 
+            "codepoint": "U+F550", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig3"
             ]
         }, 
         "timeSig3Numerator": {
-            "codepoint": "U+F54C", 
+            "codepoint": "U+F551", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig3"
             ]
         }, 
         "timeSig3over2": {
-            "codepoint": "U+F578", 
+            "codepoint": "U+F57D", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig3", 
@@ -35108,7 +35600,7 @@
             ]
         }, 
         "timeSig3over4": {
-            "codepoint": "U+F579", 
+            "codepoint": "U+F57E", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig3", 
@@ -35117,7 +35609,7 @@
             ]
         }, 
         "timeSig3over8": {
-            "codepoint": "U+F57A", 
+            "codepoint": "U+F57F", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig3", 
@@ -35126,21 +35618,21 @@
             ]
         }, 
         "timeSig4Denominator": {
-            "codepoint": "U+F54D", 
+            "codepoint": "U+F552", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig4"
             ]
         }, 
         "timeSig4Numerator": {
-            "codepoint": "U+F54E", 
+            "codepoint": "U+F553", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig4"
             ]
         }, 
         "timeSig4over4": {
-            "codepoint": "U+F57B", 
+            "codepoint": "U+F580", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig4", 
@@ -35149,21 +35641,21 @@
             ]
         }, 
         "timeSig5Denominator": {
-            "codepoint": "U+F54F", 
+            "codepoint": "U+F554", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig5"
             ]
         }, 
         "timeSig5Numerator": {
-            "codepoint": "U+F550", 
+            "codepoint": "U+F555", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig5"
             ]
         }, 
         "timeSig5over4": {
-            "codepoint": "U+F57C", 
+            "codepoint": "U+F581", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig5", 
@@ -35172,7 +35664,7 @@
             ]
         }, 
         "timeSig5over8": {
-            "codepoint": "U+F57D", 
+            "codepoint": "U+F582", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig5", 
@@ -35181,21 +35673,21 @@
             ]
         }, 
         "timeSig6Denominator": {
-            "codepoint": "U+F551", 
+            "codepoint": "U+F556", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig6"
             ]
         }, 
         "timeSig6Numerator": {
-            "codepoint": "U+F552", 
+            "codepoint": "U+F557", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig6"
             ]
         }, 
         "timeSig6over4": {
-            "codepoint": "U+F57E", 
+            "codepoint": "U+F583", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig6", 
@@ -35204,7 +35696,7 @@
             ]
         }, 
         "timeSig6over8": {
-            "codepoint": "U+F57F", 
+            "codepoint": "U+F584", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig6", 
@@ -35213,21 +35705,21 @@
             ]
         }, 
         "timeSig7Denominator": {
-            "codepoint": "U+F553", 
+            "codepoint": "U+F558", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig7"
             ]
         }, 
         "timeSig7Numerator": {
-            "codepoint": "U+F554", 
+            "codepoint": "U+F559", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig7"
             ]
         }, 
         "timeSig7over8": {
-            "codepoint": "U+F580", 
+            "codepoint": "U+F585", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig7", 
@@ -35236,35 +35728,35 @@
             ]
         }, 
         "timeSig8Denominator": {
-            "codepoint": "U+F555", 
+            "codepoint": "U+F55A", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig8"
             ]
         }, 
         "timeSig8Numerator": {
-            "codepoint": "U+F556", 
+            "codepoint": "U+F55B", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig8"
             ]
         }, 
         "timeSig9Denominator": {
-            "codepoint": "U+F557", 
+            "codepoint": "U+F55C", 
             "componentGlyphs": [
                 "timeSigCombDenominator", 
                 "timeSig9"
             ]
         }, 
         "timeSig9Numerator": {
-            "codepoint": "U+F558", 
+            "codepoint": "U+F55D", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig9"
             ]
         }, 
         "timeSig9over8": {
-            "codepoint": "U+F581", 
+            "codepoint": "U+F586", 
             "componentGlyphs": [
                 "timeSigCombNumerator", 
                 "timeSig9", 
@@ -35274,203 +35766,1923 @@
         }
     }, 
 
+    "optionalGlyphs": {
+        "4stringTabClefSerif": {
+            "classes": [
+                "clefs"
+            ], 
+            "codepoint": "U+F40D"
+        }, 
+        "4stringTabClefTall": {
+            "classes": [
+                "clefs"
+            ], 
+            "codepoint": "U+F40C"
+        }, 
+        "6stringTabClefSerif": {
+            "classes": [
+                "clefs"
+            ], 
+            "codepoint": "U+F40B"
+        }, 
+        "6stringTabClefTall": {
+            "classes": [
+                "clefs"
+            ], 
+            "codepoint": "U+F40A"
+        }, 
+        "accdnPushAlt": {
+            "classes": [], 
+            "codepoint": "U+F45B"
+        }, 
+        "accidentalDoubleFlatJoinedStems": {
+            "classes": [
+                "accidentals", 
+                "accidentalsSagittalMixed", 
+                "accidentalsStandard", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F4A1"
+        }, 
+        "accidentalDoubleFlatParens": {
+            "codepoint": "U+F566"
+        }, 
+        "accidentalDoubleSharpParens": {
+            "codepoint": "U+F565"
+        }, 
+        "accidentalFlatJohnstonDown": {
+            "codepoint": "U+F56C"
+        }, 
+        "accidentalFlatJohnstonEl": {
+            "codepoint": "U+F56A"
+        }, 
+        "accidentalFlatJohnstonElDown": {
+            "codepoint": "U+F578"
+        }, 
+        "accidentalFlatJohnstonUp": {
+            "codepoint": "U+F56B"
+        }, 
+        "accidentalFlatJohnstonUpEl": {
+            "codepoint": "U+F577"
+        }, 
+        "accidentalFlatParens": {
+            "codepoint": "U+F562"
+        }, 
+        "accidentalFlatSmall": {
+            "classes": [
+                "accidentals", 
+                "accidentalsSagittalMixed", 
+                "accidentalsStandard", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F427"
+        }, 
+        "accidentalJohnstonDownEl": {
+            "codepoint": "U+F572"
+        }, 
+        "accidentalJohnstonSevenDown": {
+            "codepoint": "U+F570"
+        }, 
+        "accidentalJohnstonSevenFlat": {
+            "codepoint": "U+F56E"
+        }, 
+        "accidentalJohnstonSevenFlatDown": {
+            "codepoint": "U+F57A"
+        }, 
+        "accidentalJohnstonSevenFlatUp": {
+            "codepoint": "U+F579"
+        }, 
+        "accidentalJohnstonSevenSharp": {
+            "codepoint": "U+F56D"
+        }, 
+        "accidentalJohnstonSevenSharpDown": {
+            "codepoint": "U+F576"
+        }, 
+        "accidentalJohnstonSevenSharpUp": {
+            "codepoint": "U+F575"
+        }, 
+        "accidentalJohnstonSevenUp": {
+            "codepoint": "U+F56F"
+        }, 
+        "accidentalJohnstonUpEl": {
+            "codepoint": "U+F571"
+        }, 
+        "accidentalNaturalParens": {
+            "codepoint": "U+F563"
+        }, 
+        "accidentalNaturalSmall": {
+            "classes": [
+                "accidentals", 
+                "accidentalsSagittalMixed", 
+                "accidentalsSagittalPure", 
+                "accidentalsStandard", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F428"
+        }, 
+        "accidentalSharpJohnstonDown": {
+            "codepoint": "U+F569"
+        }, 
+        "accidentalSharpJohnstonDownEl": {
+            "codepoint": "U+F574"
+        }, 
+        "accidentalSharpJohnstonEl": {
+            "codepoint": "U+F567"
+        }, 
+        "accidentalSharpJohnstonUp": {
+            "codepoint": "U+F568"
+        }, 
+        "accidentalSharpJohnstonUpEl": {
+            "codepoint": "U+F573"
+        }, 
+        "accidentalSharpParens": {
+            "codepoint": "U+F564"
+        }, 
+        "accidentalSharpSmall": {
+            "classes": [
+                "accidentals", 
+                "accidentalsSagittalMixed", 
+                "accidentalsStandard", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F429"
+        }, 
+        "accidentalTripleFlatJoinedStems": {
+            "classes": [
+                "accidentals", 
+                "accidentalsStandard", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F4A2"
+        }, 
+        "analyticsHauptrhythmusR": {
+            "classes": [], 
+            "codepoint": "U+F4B9"
+        }, 
+        "articAccentAboveLarge": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F42A"
+        }, 
+        "articAccentAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F475"
+        }, 
+        "articAccentBelowLarge": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F42B"
+        }, 
+        "articAccentBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F476"
+        }, 
+        "articAccentStaccatoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F485"
+        }, 
+        "articAccentStaccatoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F486"
+        }, 
+        "articMarcatoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F481"
+        }, 
+        "articMarcatoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F482"
+        }, 
+        "articMarcatoStaccatoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F483"
+        }, 
+        "articMarcatoStaccatoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F484"
+        }, 
+        "articStaccatissimoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F47B"
+        }, 
+        "articStaccatissimoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F47C"
+        }, 
+        "articStaccatissimoStrokeAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F47F"
+        }, 
+        "articStaccatissimoStrokeBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F480"
+        }, 
+        "articStaccatissimoWedgeAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F47D"
+        }, 
+        "articStaccatissimoWedgeBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F47E"
+        }, 
+        "articStaccatoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F477"
+        }, 
+        "articStaccatoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F478"
+        }, 
+        "articTenutoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F479"
+        }, 
+        "articTenutoAccentAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F489"
+        }, 
+        "articTenutoAccentBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F48A"
+        }, 
+        "articTenutoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F47A"
+        }, 
+        "articTenutoStaccatoAboveSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsAbove", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F487"
+        }, 
+        "articTenutoStaccatoBelowSmall": {
+            "classes": [
+                "articulations", 
+                "articulationsBelow", 
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F488"
+        }, 
+        "braceFlat": {
+            "classes": [], 
+            "codepoint": "U+F403"
+        }, 
+        "braceLarge": {
+            "classes": [], 
+            "codepoint": "U+F401"
+        }, 
+        "braceLarger": {
+            "classes": [], 
+            "codepoint": "U+F402"
+        }, 
+        "braceSmall": {
+            "classes": [], 
+            "codepoint": "U+F400"
+        }, 
+        "cClefFrench": {
+            "classes": [
+                "clefs", 
+                "clefsC"
+            ], 
+            "codepoint": "U+F408"
+        }, 
+        "cClefSmall": {
+            "classes": [
+                "clefs", 
+                "clefsC"
+            ], 
+            "codepoint": "U+F473"
+        }, 
+        "caesuraSingleStroke": {
+            "classes": [
+                "combiningStaffPositions", 
+                "pauses"
+            ], 
+            "codepoint": "U+F42C"
+        }, 
+        "chantCclefHufnagel": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F49E"
+        }, 
+        "chantFclefHufnagel": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F49D"
+        }, 
+        "codaJapanese": {
+            "classes": [], 
+            "codepoint": "U+F405"
+        }, 
+        "doubleTongueAboveNoSlur": {
+            "classes": [], 
+            "codepoint": "U+F42D"
+        }, 
+        "doubleTongueBelowNoSlur": {
+            "classes": [], 
+            "codepoint": "U+F42E"
+        }, 
+        "dynamicForteSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F46D"
+        }, 
+        "dynamicMezzoSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F46C"
+        }, 
+        "dynamicNienteSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F471"
+        }, 
+        "dynamicPianoSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F46B"
+        }, 
+        "dynamicRinforzandoSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F46E"
+        }, 
+        "dynamicSforzandoSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F46F"
+        }, 
+        "dynamicZSmall": {
+            "classes": [
+                "dynamics"
+            ], 
+            "codepoint": "U+F470"
+        }, 
+        "fClef19thCentury": {
+            "classes": [
+                "clefs", 
+                "clefsF"
+            ], 
+            "codepoint": "U+F407"
+        }, 
+        "fClef5Below": {
+            "codepoint": "U+F4BF"
+        }, 
+        "fClefFrench": {
+            "classes": [
+                "clefs", 
+                "clefsF"
+            ], 
+            "codepoint": "U+F406"
+        }, 
+        "fClefSmall": {
+            "classes": [
+                "clefs", 
+                "clefsF"
+            ], 
+            "codepoint": "U+F474"
+        }, 
+        "flag1024thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F49A"
+        }, 
+        "flag1024thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F426"
+        }, 
+        "flag1024thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F425"
+        }, 
+        "flag1024thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F499"
+        }, 
+        "flag1024thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F424"
+        }, 
+        "flag128thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F494"
+        }, 
+        "flag128thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F41D"
+        }, 
+        "flag128thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F41C"
+        }, 
+        "flag128thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F493"
+        }, 
+        "flag128thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F41B"
+        }, 
+        "flag16thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F48E"
+        }, 
+        "flag16thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F414"
+        }, 
+        "flag16thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F413"
+        }, 
+        "flag16thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F48D"
+        }, 
+        "flag16thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F412"
+        }, 
+        "flag256thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F496"
+        }, 
+        "flag256thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F420"
+        }, 
+        "flag256thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F41F"
+        }, 
+        "flag256thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F495"
+        }, 
+        "flag256thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F41E"
+        }, 
+        "flag32ndDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F490"
+        }, 
+        "flag32ndDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F417"
+        }, 
+        "flag32ndUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F416"
+        }, 
+        "flag32ndUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F48F"
+        }, 
+        "flag32ndUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F415"
+        }, 
+        "flag512thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F498"
+        }, 
+        "flag512thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F423"
+        }, 
+        "flag512thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F422"
+        }, 
+        "flag512thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F497"
+        }, 
+        "flag512thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F421"
+        }, 
+        "flag64thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F492"
+        }, 
+        "flag64thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F41A"
+        }, 
+        "flag64thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F419"
+        }, 
+        "flag64thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F491"
+        }, 
+        "flag64thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F418"
+        }, 
+        "flag8thDownSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F48C"
+        }, 
+        "flag8thDownStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F411"
+        }, 
+        "flag8thUpShort": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F410"
+        }, 
+        "flag8thUpSmall": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F48B"
+        }, 
+        "flag8thUpStraight": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F40F"
+        }, 
+        "gClef0Below": {
+            "codepoint": "U+F4C0"
+        }, 
+        "gClef10Below": {
+            "codepoint": "U+F4C1"
+        }, 
+        "gClef11Below": {
+            "codepoint": "U+F4C2"
+        }, 
+        "gClef12Below": {
+            "codepoint": "U+F4C3"
+        }, 
+        "gClef13Below": {
+            "codepoint": "U+F4C4"
+        }, 
+        "gClef14Below": {
+            "codepoint": "U+F4C5"
+        }, 
+        "gClef15Below": {
+            "codepoint": "U+F4C6"
+        }, 
+        "gClef16Below": {
+            "codepoint": "U+F4C7"
+        }, 
+        "gClef17Below": {
+            "codepoint": "U+F4C8"
+        }, 
+        "gClef2Above": {
+            "codepoint": "U+F4C9"
+        }, 
+        "gClef2Below": {
+            "codepoint": "U+F4CA"
+        }, 
+        "gClef3Above": {
+            "codepoint": "U+F4CB"
+        }, 
+        "gClef3Below": {
+            "codepoint": "U+F4CC"
+        }, 
+        "gClef4Above": {
+            "codepoint": "U+F4CD"
+        }, 
+        "gClef4Below": {
+            "codepoint": "U+F4CE"
+        }, 
+        "gClef5Above": {
+            "codepoint": "U+F4CF"
+        }, 
+        "gClef5Below": {
+            "codepoint": "U+F4D0"
+        }, 
+        "gClef6Above": {
+            "codepoint": "U+F4D1"
+        }, 
+        "gClef6Below": {
+            "codepoint": "U+F4D2"
+        }, 
+        "gClef7Above": {
+            "codepoint": "U+F4D3"
+        }, 
+        "gClef7Below": {
+            "codepoint": "U+F4D4"
+        }, 
+        "gClef8Above": {
+            "codepoint": "U+F4D5"
+        }, 
+        "gClef8Below": {
+            "codepoint": "U+F4D6"
+        }, 
+        "gClef9Above": {
+            "codepoint": "U+F4D7"
+        }, 
+        "gClef9Below": {
+            "codepoint": "U+F4D8"
+        }, 
+        "gClefFlat10Below": {
+            "codepoint": "U+F4D9"
+        }, 
+        "gClefFlat11Below": {
+            "codepoint": "U+F4DA"
+        }, 
+        "gClefFlat13Below": {
+            "codepoint": "U+F4DB"
+        }, 
+        "gClefFlat14Below": {
+            "codepoint": "U+F4DC"
+        }, 
+        "gClefFlat15Below": {
+            "codepoint": "U+F4DD"
+        }, 
+        "gClefFlat16Below": {
+            "codepoint": "U+F4DE"
+        }, 
+        "gClefFlat1Below": {
+            "codepoint": "U+F4DF"
+        }, 
+        "gClefFlat2Above": {
+            "codepoint": "U+F4E0"
+        }, 
+        "gClefFlat2Below": {
+            "codepoint": "U+F4E1"
+        }, 
+        "gClefFlat3Above": {
+            "codepoint": "U+F4E2"
+        }, 
+        "gClefFlat3Below": {
+            "codepoint": "U+F4E3"
+        }, 
+        "gClefFlat4Below": {
+            "codepoint": "U+F4E4"
+        }, 
+        "gClefFlat5Above": {
+            "codepoint": "U+F4E5"
+        }, 
+        "gClefFlat6Above": {
+            "codepoint": "U+F4E6"
+        }, 
+        "gClefFlat6Below": {
+            "codepoint": "U+F4E7"
+        }, 
+        "gClefFlat7Above": {
+            "codepoint": "U+F4E8"
+        }, 
+        "gClefFlat7Below": {
+            "codepoint": "U+F4E9"
+        }, 
+        "gClefFlat8Above": {
+            "codepoint": "U+F4EA"
+        }, 
+        "gClefFlat9Above": {
+            "codepoint": "U+F4EB"
+        }, 
+        "gClefFlat9Below": {
+            "codepoint": "U+F4EC"
+        }, 
+        "gClefNat2Below": {
+            "codepoint": "U+F4ED"
+        }, 
+        "gClefNatural10Below": {
+            "codepoint": "U+F4EE"
+        }, 
+        "gClefNatural13Below": {
+            "codepoint": "U+F4EF"
+        }, 
+        "gClefNatural17Below": {
+            "codepoint": "U+F4F0"
+        }, 
+        "gClefNatural2Above": {
+            "codepoint": "U+F4F1"
+        }, 
+        "gClefNatural3Above": {
+            "codepoint": "U+F4F2"
+        }, 
+        "gClefNatural3Below": {
+            "codepoint": "U+F4F3"
+        }, 
+        "gClefNatural6Above": {
+            "codepoint": "U+F4F4"
+        }, 
+        "gClefNatural6Below": {
+            "codepoint": "U+F4F5"
+        }, 
+        "gClefNatural7Above": {
+            "codepoint": "U+F4F6"
+        }, 
+        "gClefNatural9Above": {
+            "codepoint": "U+F4F7"
+        }, 
+        "gClefNatural9Below": {
+            "codepoint": "U+F4F8"
+        }, 
+        "gClefSharp12Below": {
+            "codepoint": "U+F4F9"
+        }, 
+        "gClefSharp1Above": {
+            "codepoint": "U+F4FA"
+        }, 
+        "gClefSharp4Above": {
+            "codepoint": "U+F4FB"
+        }, 
+        "gClefSharp5Below": {
+            "codepoint": "U+F4FC"
+        }, 
+        "gClefSmall": {
+            "classes": [
+                "clefs", 
+                "clefsG"
+            ], 
+            "codepoint": "U+F472"
+        }, 
+        "guitarGolpeFlamenco": {
+            "classes": [], 
+            "codepoint": "U+F4B8"
+        }, 
+        "harpMetalRodAlt": {
+            "classes": [], 
+            "codepoint": "U+F436"
+        }, 
+        "harpTuningKeyAlt": {
+            "classes": [], 
+            "codepoint": "U+F437"
+        }, 
+        "keyboardPedalPedNoDot": {
+            "classes": [], 
+            "codepoint": "U+F434"
+        }, 
+        "keyboardPedalSostNoDot": {
+            "classes": [], 
+            "codepoint": "U+F435"
+        }, 
+        "luteFingeringRHThirdAlt": {
+            "classes": [], 
+            "codepoint": "U+F44D"
+        }, 
+        "luteFrench10thCourseRight": {
+            "classes": [], 
+            "codepoint": "U+F459"
+        }, 
+        "luteFrench10thCourseStrikethru": {
+            "classes": [], 
+            "codepoint": "U+F457"
+        }, 
+        "luteFrench10thCourseUnderline": {
+            "classes": [], 
+            "codepoint": "U+F458"
+        }, 
+        "luteFrench7thCourseRight": {
+            "classes": [], 
+            "codepoint": "U+F450"
+        }, 
+        "luteFrench7thCourseStrikethru": {
+            "classes": [], 
+            "codepoint": "U+F44E"
+        }, 
+        "luteFrench7thCourseUnderline": {
+            "classes": [], 
+            "codepoint": "U+F44F"
+        }, 
+        "luteFrench8thCourseRight": {
+            "classes": [], 
+            "codepoint": "U+F453"
+        }, 
+        "luteFrench8thCourseStrikethru": {
+            "classes": [], 
+            "codepoint": "U+F451"
+        }, 
+        "luteFrench8thCourseUnderline": {
+            "classes": [], 
+            "codepoint": "U+F452"
+        }, 
+        "luteFrench9thCourseRight": {
+            "classes": [], 
+            "codepoint": "U+F456"
+        }, 
+        "luteFrench9thCourseStrikethru": {
+            "classes": [], 
+            "codepoint": "U+F454"
+        }, 
+        "luteFrench9thCourseUnderline": {
+            "classes": [], 
+            "codepoint": "U+F455"
+        }, 
+        "luteFrenchFretCAlt": {
+            "classes": [], 
+            "codepoint": "U+F45A"
+        }, 
+        "medRenFlatSoftBHufnagel": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F4A0"
+        }, 
+        "medRenFlatSoftBOld": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F49F"
+        }, 
+        "mensuralCclefBlack": {
+            "classes": [], 
+            "codepoint": "U+F49C"
+        }, 
+        "mensuralCclefVoid": {
+            "classes": [], 
+            "codepoint": "U+F49B"
+        }, 
+        "mensuralFusaBlackStemDown": {
+            "codepoint": "U+F4FD"
+        }, 
+        "mensuralFusaBlackStemUp": {
+            "codepoint": "U+F4FE"
+        }, 
+        "mensuralFusaBlackVoidStemDown": {
+            "codepoint": "U+F4FF"
+        }, 
+        "mensuralFusaBlackVoidStemUp": {
+            "codepoint": "U+F500"
+        }, 
+        "mensuralFusaVoidStemDown": {
+            "codepoint": "U+F501"
+        }, 
+        "mensuralFusaVoidStemUp": {
+            "codepoint": "U+F502"
+        }, 
+        "mensuralLongaBlackStemDownLeft": {
+            "codepoint": "U+F503"
+        }, 
+        "mensuralLongaBlackStemDownRight": {
+            "codepoint": "U+F504"
+        }, 
+        "mensuralLongaBlackStemUpLeft": {
+            "codepoint": "U+F505"
+        }, 
+        "mensuralLongaBlackStemUpRight": {
+            "codepoint": "U+F506"
+        }, 
+        "mensuralLongaBlackVoidStemDownLeft": {
+            "codepoint": "U+F507"
+        }, 
+        "mensuralLongaBlackVoidStemDownRight": {
+            "codepoint": "U+F508"
+        }, 
+        "mensuralLongaBlackVoidStemUpLeft": {
+            "codepoint": "U+F509"
+        }, 
+        "mensuralLongaBlackVoidStemUpRight": {
+            "codepoint": "U+F50A"
+        }, 
+        "mensuralLongaVoidStemDownLeft": {
+            "codepoint": "U+F50B"
+        }, 
+        "mensuralLongaVoidStemDownRight": {
+            "codepoint": "U+F50C"
+        }, 
+        "mensuralLongaVoidStemUpLeft": {
+            "codepoint": "U+F50D"
+        }, 
+        "mensuralLongaVoidStemUpRight": {
+            "codepoint": "U+F50E"
+        }, 
+        "mensuralMaximaBlackStemDownLeft": {
+            "codepoint": "U+F50F"
+        }, 
+        "mensuralMaximaBlackStemDownRight": {
+            "codepoint": "U+F510"
+        }, 
+        "mensuralMaximaBlackStemUpLeft": {
+            "codepoint": "U+F511"
+        }, 
+        "mensuralMaximaBlackStemUpRight": {
+            "codepoint": "U+F512"
+        }, 
+        "mensuralMaximaBlackVoidStemDownLeft": {
+            "codepoint": "U+F513"
+        }, 
+        "mensuralMaximaBlackVoidStemDownRight": {
+            "codepoint": "U+F514"
+        }, 
+        "mensuralMaximaBlackVoidStemUpLeft": {
+            "codepoint": "U+F515"
+        }, 
+        "mensuralMaximaBlackVoidStemUpRight": {
+            "codepoint": "U+F516"
+        }, 
+        "mensuralMaximaVoidStemDownLeft": {
+            "codepoint": "U+F517"
+        }, 
+        "mensuralMaximaVoidStemDownRight": {
+            "codepoint": "U+F518"
+        }, 
+        "mensuralMaximaVoidStemUpLeft": {
+            "codepoint": "U+F519"
+        }, 
+        "mensuralMaximaVoidStemUpRight": {
+            "codepoint": "U+F51A"
+        }, 
+        "mensuralMinimaBlackStemDown": {
+            "codepoint": "U+F51B"
+        }, 
+        "mensuralMinimaBlackStemDownExtendedFlag": {
+            "codepoint": "U+F51C"
+        }, 
+        "mensuralMinimaBlackStemDownFlagLeft": {
+            "codepoint": "U+F51D"
+        }, 
+        "mensuralMinimaBlackStemDownFlagRight": {
+            "codepoint": "U+F51E"
+        }, 
+        "mensuralMinimaBlackStemDownFlaredFlag": {
+            "codepoint": "U+F51F"
+        }, 
+        "mensuralMinimaBlackStemUp": {
+            "codepoint": "U+F520"
+        }, 
+        "mensuralMinimaBlackStemUpExtendedFlag": {
+            "codepoint": "U+F521"
+        }, 
+        "mensuralMinimaBlackStemUpFlagLeft": {
+            "codepoint": "U+F522"
+        }, 
+        "mensuralMinimaBlackStemUpFlagRight": {
+            "codepoint": "U+F523"
+        }, 
+        "mensuralMinimaBlackStemUpFlaredFlag": {
+            "codepoint": "U+F524"
+        }, 
+        "mensuralMinimaBlackVoidStemDown": {
+            "codepoint": "U+F525"
+        }, 
+        "mensuralMinimaBlackVoidStemDownExtendedFlag": {
+            "codepoint": "U+F526"
+        }, 
+        "mensuralMinimaBlackVoidStemDownFlagLeft": {
+            "codepoint": "U+F527"
+        }, 
+        "mensuralMinimaBlackVoidStemDownFlagRight": {
+            "codepoint": "U+F528"
+        }, 
+        "mensuralMinimaBlackVoidStemDownFlaredFlag": {
+            "codepoint": "U+F529"
+        }, 
+        "mensuralMinimaBlackVoidStemUp": {
+            "codepoint": "U+F52A"
+        }, 
+        "mensuralMinimaBlackVoidStemUpExtendedFlag": {
+            "codepoint": "U+F52B"
+        }, 
+        "mensuralMinimaBlackVoidStemUpFlagLeft": {
+            "codepoint": "U+F52C"
+        }, 
+        "mensuralMinimaBlackVoidStemUpFlagRight": {
+            "codepoint": "U+F52D"
+        }, 
+        "mensuralMinimaBlackVoidStemUpFlaredFlag": {
+            "codepoint": "U+F52E"
+        }, 
+        "mensuralMinimaVoidStemDown": {
+            "codepoint": "U+F52F"
+        }, 
+        "mensuralMinimaVoidStemDownExtendedFlag": {
+            "codepoint": "U+F530"
+        }, 
+        "mensuralMinimaVoidStemDownFlagLeft": {
+            "codepoint": "U+F531"
+        }, 
+        "mensuralMinimaVoidStemDownFlagRight": {
+            "codepoint": "U+F532"
+        }, 
+        "mensuralMinimaVoidStemDownFlaredFlag": {
+            "codepoint": "U+F533"
+        }, 
+        "mensuralMinimaVoidStemUp": {
+            "codepoint": "U+F535"
+        }, 
+        "mensuralMinimaVoidStemUpExtendedFlag": {
+            "codepoint": "U+F534"
+        }, 
+        "mensuralMinimaVoidStemUpFlagLeft": {
+            "codepoint": "U+F536"
+        }, 
+        "mensuralMinimaVoidStemUpFlagRight": {
+            "codepoint": "U+F537"
+        }, 
+        "mensuralMinimaVoidStemUpFlaredFlag": {
+            "codepoint": "U+F538"
+        }, 
+        "mensuralProportion4Old": {
+            "classes": [
+                "combiningStaffPositions"
+            ], 
+            "codepoint": "U+F43D"
+        }, 
+        "mensuralSemiminimaBlackStemDown": {
+            "codepoint": "U+F539"
+        }, 
+        "mensuralSemiminimaBlackStemUp": {
+            "codepoint": "U+F53A"
+        }, 
+        "mensuralSemiminimaBlackVoidStemDown": {
+            "codepoint": "U+F53B"
+        }, 
+        "mensuralSemiminimaBlackVoidStemUp": {
+            "codepoint": "U+F53C"
+        }, 
+        "mensuralSemiminimaVoidStemDown": {
+            "codepoint": "U+F53D"
+        }, 
+        "mensuralSemiminimaVoidStemUp": {
+            "codepoint": "U+F53E"
+        }, 
+        "noteDoubleWholeAlt": {
+            "classes": [
+                "combiningStaffPositions", 
+                "forTextBasedApplications"
+            ], 
+            "codepoint": "U+F40E"
+        }, 
+        "noteheadBlackOversized": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F4BE"
+        }, 
+        "noteheadBlackParens": {
+            "codepoint": "U+F55E"
+        }, 
+        "noteheadBlackSmall": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F46A"
+        }, 
+        "noteheadDoubleWholeAlt": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F43F"
+        }, 
+        "noteheadDoubleWholeOversized": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F4BA"
+        }, 
+        "noteheadDoubleWholeParens": {
+            "codepoint": "U+F561"
+        }, 
+        "noteheadDoubleWholeSmall": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F467"
+        }, 
+        "noteheadDoubleWholeSquareOversized": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F4BB"
+        }, 
+        "noteheadHalfOversized": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F4BD"
+        }, 
+        "noteheadHalfParens": {
+            "codepoint": "U+F55F"
+        }, 
+        "noteheadHalfSmall": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F469"
+        }, 
+        "noteheadWholeOversized": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F4BC"
+        }, 
+        "noteheadWholeParens": {
+            "codepoint": "U+F560"
+        }, 
+        "noteheadWholeSmall": {
+            "classes": [
+                "combiningStaffPositions", 
+                "noteheads", 
+                "noteheadSetDefault"
+            ], 
+            "codepoint": "U+F468"
+        }, 
+        "ornamentTrillFlatAbove": {
+            "codepoint": "U+F53F"
+        }, 
+        "ornamentTrillNaturalAbove": {
+            "codepoint": "U+F540"
+        }, 
+        "ornamentTrillSharpAbove": {
+            "codepoint": "U+F541"
+        }, 
+        "ornamentTurnFlatAbove": {
+            "codepoint": "U+F542"
+        }, 
+        "ornamentTurnFlatAboveSharpBelow": {
+            "codepoint": "U+F543"
+        }, 
+        "ornamentTurnFlatBelow": {
+            "codepoint": "U+F544"
+        }, 
+        "ornamentTurnNaturalAbove": {
+            "codepoint": "U+F545"
+        }, 
+        "ornamentTurnNaturalBelow": {
+            "codepoint": "U+F546"
+        }, 
+        "ornamentTurnSharpAbove": {
+            "codepoint": "U+F547"
+        }, 
+        "ornamentTurnSharpAboveFlatBelow": {
+            "codepoint": "U+F548"
+        }, 
+        "ornamentTurnSharpBelow": {
+            "codepoint": "U+F549"
+        }, 
+        "pictBassDrumPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4AF"
+        }, 
+        "pictBongosPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B0"
+        }, 
+        "pictCastanetsSmithBrindle": {
+            "classes": [], 
+            "codepoint": "U+F439"
+        }, 
+        "pictCongaPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B1"
+        }, 
+        "pictCowBellBerio": {
+            "classes": [], 
+            "codepoint": "U+F43B"
+        }, 
+        "pictFlexatonePeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B6"
+        }, 
+        "pictGlspPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4AA"
+        }, 
+        "pictGuiroPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B5"
+        }, 
+        "pictGuiroSevsay": {
+            "classes": [], 
+            "codepoint": "U+F4B4"
+        }, 
+        "pictLithophonePeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A7"
+        }, 
+        "pictLotusFlutePeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4AC"
+        }, 
+        "pictMarPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4AB"
+        }, 
+        "pictMaracaSmithBrindle": {
+            "classes": [], 
+            "codepoint": "U+F43C"
+        }, 
+        "pictMusicalSawPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B7"
+        }, 
+        "pictSleighBellSmithBrindle": {
+            "classes": [], 
+            "codepoint": "U+F43A"
+        }, 
+        "pictTambourineStockhausen": {
+            "classes": [], 
+            "codepoint": "U+F438"
+        }, 
+        "pictTimbalesPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B3"
+        }, 
+        "pictTimpaniPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4AE"
+        }, 
+        "pictTomTomChinesePeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4AD"
+        }, 
+        "pictTomTomPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4B2"
+        }, 
+        "pictTubaphonePeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A8"
+        }, 
+        "pictVibMotorOffPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A6"
+        }, 
+        "pictVibPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A5"
+        }, 
+        "pictXylBassPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A3"
+        }, 
+        "pictXylPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A9"
+        }, 
+        "pictXylTenorPeinkofer": {
+            "classes": [], 
+            "codepoint": "U+F4A4"
+        }, 
+        "pluckedSnapPizzicatoAboveGerman": {
+            "classes": [], 
+            "codepoint": "U+F433"
+        }, 
+        "pluckedSnapPizzicatoBelowGerman": {
+            "classes": [], 
+            "codepoint": "U+F432"
+        }, 
+        "repeatRightLeftThick": {
+            "classes": [
+                "forTextBasedApplications"
+            ], 
+            "codepoint": "U+F45C"
+        }, 
+        "segnoJapanese": {
+            "classes": [], 
+            "codepoint": "U+F404"
+        }, 
+        "stringsChangeBowDirectionImposed": {
+            "classes": [], 
+            "codepoint": "U+F43E"
+        }, 
+        "stringsChangeBowDirectionLiga": {
+            "classes": [], 
+            "codepoint": "U+F431"
+        }, 
+        "timeSig0Denominator": {
+            "codepoint": "U+F54A"
+        }, 
+        "timeSig0Large": {
+            "classes": [], 
+            "codepoint": "U+F440"
+        }, 
+        "timeSig0Numerator": {
+            "codepoint": "U+F54B"
+        }, 
+        "timeSig0Small": {
+            "classes": [], 
+            "codepoint": "U+F45D"
+        }, 
+        "timeSig12over8": {
+            "codepoint": "U+F587"
+        }, 
+        "timeSig1Denominator": {
+            "codepoint": "U+F54C"
+        }, 
+        "timeSig1Large": {
+            "classes": [], 
+            "codepoint": "U+F441"
+        }, 
+        "timeSig1Numerator": {
+            "codepoint": "U+F54D"
+        }, 
+        "timeSig1Small": {
+            "classes": [], 
+            "codepoint": "U+F45E"
+        }, 
+        "timeSig2Denominator": {
+            "codepoint": "U+F54E"
+        }, 
+        "timeSig2Large": {
+            "classes": [], 
+            "codepoint": "U+F442"
+        }, 
+        "timeSig2Numerator": {
+            "codepoint": "U+F54F"
+        }, 
+        "timeSig2Small": {
+            "classes": [], 
+            "codepoint": "U+F45F"
+        }, 
+        "timeSig2over2": {
+            "codepoint": "U+F57C"
+        }, 
+        "timeSig2over4": {
+            "codepoint": "U+F57B"
+        }, 
+        "timeSig3Denominator": {
+            "codepoint": "U+F550"
+        }, 
+        "timeSig3Large": {
+            "classes": [], 
+            "codepoint": "U+F443"
+        }, 
+        "timeSig3Numerator": {
+            "codepoint": "U+F551"
+        }, 
+        "timeSig3Small": {
+            "classes": [], 
+            "codepoint": "U+F460"
+        }, 
+        "timeSig3over2": {
+            "codepoint": "U+F57D"
+        }, 
+        "timeSig3over4": {
+            "codepoint": "U+F57E"
+        }, 
+        "timeSig3over8": {
+            "codepoint": "U+F57F"
+        }, 
+        "timeSig4Denominator": {
+            "codepoint": "U+F552"
+        }, 
+        "timeSig4Large": {
+            "classes": [], 
+            "codepoint": "U+F444"
+        }, 
+        "timeSig4Numerator": {
+            "codepoint": "U+F553"
+        }, 
+        "timeSig4Small": {
+            "classes": [], 
+            "codepoint": "U+F461"
+        }, 
+        "timeSig4over4": {
+            "codepoint": "U+F580"
+        }, 
+        "timeSig5Denominator": {
+            "codepoint": "U+F554"
+        }, 
+        "timeSig5Large": {
+            "classes": [], 
+            "codepoint": "U+F445"
+        }, 
+        "timeSig5Numerator": {
+            "codepoint": "U+F555"
+        }, 
+        "timeSig5Small": {
+            "classes": [], 
+            "codepoint": "U+F462"
+        }, 
+        "timeSig5over4": {
+            "codepoint": "U+F581"
+        }, 
+        "timeSig5over8": {
+            "codepoint": "U+F582"
+        }, 
+        "timeSig6Denominator": {
+            "codepoint": "U+F556"
+        }, 
+        "timeSig6Large": {
+            "classes": [], 
+            "codepoint": "U+F446"
+        }, 
+        "timeSig6Numerator": {
+            "codepoint": "U+F557"
+        }, 
+        "timeSig6Small": {
+            "classes": [], 
+            "codepoint": "U+F463"
+        }, 
+        "timeSig6over4": {
+            "codepoint": "U+F583"
+        }, 
+        "timeSig6over8": {
+            "codepoint": "U+F584"
+        }, 
+        "timeSig7Denominator": {
+            "codepoint": "U+F558"
+        }, 
+        "timeSig7Large": {
+            "classes": [], 
+            "codepoint": "U+F447"
+        }, 
+        "timeSig7Numerator": {
+            "codepoint": "U+F559"
+        }, 
+        "timeSig7Small": {
+            "classes": [], 
+            "codepoint": "U+F464"
+        }, 
+        "timeSig7over8": {
+            "codepoint": "U+F585"
+        }, 
+        "timeSig8Denominator": {
+            "codepoint": "U+F55A"
+        }, 
+        "timeSig8Large": {
+            "classes": [], 
+            "codepoint": "U+F448"
+        }, 
+        "timeSig8Numerator": {
+            "codepoint": "U+F55B"
+        }, 
+        "timeSig8Small": {
+            "classes": [], 
+            "codepoint": "U+F465"
+        }, 
+        "timeSig9Denominator": {
+            "codepoint": "U+F55C"
+        }, 
+        "timeSig9Large": {
+            "classes": [], 
+            "codepoint": "U+F449"
+        }, 
+        "timeSig9Numerator": {
+            "codepoint": "U+F55D"
+        }, 
+        "timeSig9Small": {
+            "classes": [], 
+            "codepoint": "U+F466"
+        }, 
+        "timeSig9over8": {
+            "codepoint": "U+F586"
+        }, 
+        "timeSigCommonLarge": {
+            "classes": [], 
+            "codepoint": "U+F44A"
+        }, 
+        "timeSigCutCommonLarge": {
+            "classes": [], 
+            "codepoint": "U+F44B"
+        }, 
+        "timeSigPlusLarge": {
+            "classes": [], 
+            "codepoint": "U+F44C"
+        }, 
+        "tripleTongueAboveNoSlur": {
+            "classes": [], 
+            "codepoint": "U+F42F"
+        }, 
+        "tripleTongueBelowNoSlur": {
+            "classes": [], 
+            "codepoint": "U+F430"
+        }, 
+        "unpitchedPercussionClef1Alt": {
+            "classes": [
+                "clefs"
+            ], 
+            "codepoint": "U+F409"
+        }
+    }, 
+
     "sets": {
         "ss01": {
             "description": "Smaller optical size for small staves", 
             "glyphs": [
                 {
+                    "alternateFor": "accidentalFlat", 
                     "codepoint": "U+F427", 
                     "name": "accidentalFlatSmall"
                 }, 
                 {
+                    "alternateFor": "accidentalNatural", 
                     "codepoint": "U+F428", 
                     "name": "accidentalNaturalSmall"
                 }, 
                 {
+                    "alternateFor": "accidentalSharp", 
                     "codepoint": "U+F429", 
                     "name": "accidentalSharpSmall"
                 }, 
                 {
+                    "alternateFor": "timeSig0", 
                     "codepoint": "U+F45D", 
                     "name": "timeSig0Small"
                 }, 
                 {
+                    "alternateFor": "timeSig1", 
                     "codepoint": "U+F45E", 
                     "name": "timeSig1Small"
                 }, 
                 {
+                    "alternateFor": "timeSig2", 
                     "codepoint": "U+F45F", 
                     "name": "timeSig2Small"
                 }, 
                 {
+                    "alternateFor": "timeSig3", 
                     "codepoint": "U+F460", 
                     "name": "timeSig3Small"
                 }, 
                 {
+                    "alternateFor": "timeSig4", 
                     "codepoint": "U+F461", 
                     "name": "timeSig4Small"
                 }, 
                 {
+                    "alternateFor": "timeSig5", 
                     "codepoint": "U+F462", 
                     "name": "timeSig5Small"
                 }, 
                 {
+                    "alternateFor": "timeSig6", 
                     "codepoint": "U+F463", 
                     "name": "timeSig6Small"
                 }, 
                 {
+                    "alternateFor": "timeSig7", 
                     "codepoint": "U+F464", 
                     "name": "timeSig7Small"
                 }, 
                 {
+                    "alternateFor": "timeSig8", 
                     "codepoint": "U+F465", 
                     "name": "timeSig8Small"
                 }, 
                 {
+                    "alternateFor": "timeSig9", 
                     "codepoint": "U+F466", 
                     "name": "timeSig9Small"
                 }, 
                 {
+                    "alternateFor": "noteheadDoubleWhole", 
                     "codepoint": "U+F467", 
                     "name": "noteheadDoubleWholeSmall"
                 }, 
                 {
+                    "alternateFor": "noteheadWhole", 
                     "codepoint": "U+F468", 
                     "name": "noteheadWholeSmall"
                 }, 
                 {
+                    "alternateFor": "noteheadHalf", 
                     "codepoint": "U+F469", 
                     "name": "noteheadHalfSmall"
                 }, 
                 {
+                    "alternateFor": "noteheadBlack", 
                     "codepoint": "U+F46A", 
                     "name": "noteheadBlackSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicPiano", 
                     "codepoint": "U+F46B", 
                     "name": "dynamicPianoSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicMezzo", 
                     "codepoint": "U+F46C", 
                     "name": "dynamicMezzoSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicForte", 
                     "codepoint": "U+F46D", 
                     "name": "dynamicForteSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicRinforzando", 
                     "codepoint": "U+F46E", 
                     "name": "dynamicRinforzandoSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicSforzando", 
                     "codepoint": "U+F46F", 
                     "name": "dynamicSforzandoSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicZ", 
                     "codepoint": "U+F470", 
                     "name": "dynamicZSmall"
                 }, 
                 {
+                    "alternateFor": "dynamicNiente", 
                     "codepoint": "U+F471", 
                     "name": "dynamicNienteSmall"
                 }, 
                 {
+                    "alternateFor": "gClef", 
                     "codepoint": "U+F472", 
                     "name": "gClefSmall"
                 }, 
                 {
+                    "alternateFor": "cClef", 
                     "codepoint": "U+F473", 
                     "name": "cClefSmall"
                 }, 
                 {
+                    "alternateFor": "fClef", 
                     "codepoint": "U+F474", 
                     "name": "fClefSmall"
                 }, 
                 {
+                    "alternateFor": "articAccentAbove", 
                     "codepoint": "U+F475", 
                     "name": "articAccentAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articAccentBelow", 
                     "codepoint": "U+F476", 
                     "name": "articAccentBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatoAbove", 
                     "codepoint": "U+F477", 
                     "name": "articStaccatoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatoBelow", 
                     "codepoint": "U+F478", 
                     "name": "articStaccatoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articTenutoAbove", 
                     "codepoint": "U+F479", 
                     "name": "articTenutoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articTenutoBelow", 
                     "codepoint": "U+F47A", 
                     "name": "articTenutoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatissimoAbove", 
                     "codepoint": "U+F47B", 
                     "name": "articStaccatissimoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatissimoBelow", 
                     "codepoint": "U+F47C", 
                     "name": "articStaccatissimoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatissimoWedgeAbove", 
                     "codepoint": "U+F47D", 
                     "name": "articStaccatissimoWedgeAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatissimoWedgeBelow", 
                     "codepoint": "U+F47E", 
                     "name": "articStaccatissimoWedgeBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatissimoStrokeAbove", 
                     "codepoint": "U+F47F", 
                     "name": "articStaccatissimoStrokeAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articStaccatissimoStrokeBelow", 
                     "codepoint": "U+F480", 
                     "name": "articStaccatissimoStrokeBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articMarcatoAbove", 
                     "codepoint": "U+F481", 
                     "name": "articMarcatoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articMarcatoBelow", 
                     "codepoint": "U+F482", 
                     "name": "articMarcatoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articMarcatoStaccatoAbove", 
                     "codepoint": "U+F483", 
                     "name": "articMarcatoStaccatoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articMarcatoStaccatoBelow", 
                     "codepoint": "U+F484", 
                     "name": "articMarcatoStaccatoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articAccentStaccatoAbove", 
                     "codepoint": "U+F485", 
                     "name": "articAccentStaccatoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articAccentStaccatoBelow", 
                     "codepoint": "U+F486", 
                     "name": "articAccentStaccatoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articTenutoStaccatoAbove", 
                     "codepoint": "U+F487", 
                     "name": "articTenutoStaccatoAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articTenutoStaccatoBelow", 
                     "codepoint": "U+F488", 
                     "name": "articTenutoStaccatoBelowSmall"
                 }, 
                 {
+                    "alternateFor": "articTenutoAccentAbove", 
                     "codepoint": "U+F489", 
                     "name": "articTenutoAccentAboveSmall"
                 }, 
                 {
+                    "alternateFor": "articTenutoAccentBelow", 
                     "codepoint": "U+F48A", 
                     "name": "articTenutoAccentBelowSmall"
                 }
@@ -35481,34 +37693,42 @@
             "description": "Short flags (to avoid augmentation dots)", 
             "glyphs": [
                 {
+                    "alternateFor": "flag8thUp", 
                     "codepoint": "U+F410", 
                     "name": "flag8thUpShort"
                 }, 
                 {
+                    "alternateFor": "flag16thUp", 
                     "codepoint": "U+F413", 
                     "name": "flag16thUpShort"
                 }, 
                 {
+                    "alternateFor": "flag32ndUp", 
                     "codepoint": "U+F416", 
                     "name": "flag32ndUpShort"
                 }, 
                 {
+                    "alternateFor": "flag64thUp", 
                     "codepoint": "U+F419", 
                     "name": "flag64thUpShort"
                 }, 
                 {
+                    "alternateFor": "flag128thUp", 
                     "codepoint": "U+F41C", 
                     "name": "flag128thUpShort"
                 }, 
                 {
+                    "alternateFor": "flag256thUp", 
                     "codepoint": "U+F41F", 
                     "name": "flag256thUpShort"
                 }, 
                 {
+                    "alternateFor": "flag512thUp", 
                     "codepoint": "U+F422", 
                     "name": "flag512thUpShort"
                 }, 
                 {
+                    "alternateFor": "flag1024thUp", 
                     "codepoint": "U+F425", 
                     "name": "flag1024thUpShort"
                 }
@@ -35519,66 +37739,82 @@
             "description": "Straight flags", 
             "glyphs": [
                 {
+                    "alternateFor": "flag8thUp", 
                     "codepoint": "U+F40F", 
                     "name": "flag8thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag8thDown", 
                     "codepoint": "U+F411", 
                     "name": "flag8thDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag16thUp", 
                     "codepoint": "U+F412", 
                     "name": "flag16thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag16thDown", 
                     "codepoint": "U+F414", 
                     "name": "flag16thDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag32ndUp", 
                     "codepoint": "U+F415", 
                     "name": "flag32ndUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag32ndDown", 
                     "codepoint": "U+F417", 
                     "name": "flag32ndDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag64thUp", 
                     "codepoint": "U+F418", 
                     "name": "flag64thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag64thDown", 
                     "codepoint": "U+F41A", 
                     "name": "flag64thDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag128thUp", 
                     "codepoint": "U+F41B", 
                     "name": "flag128thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag128thDown", 
                     "codepoint": "U+F41D", 
                     "name": "flag128thDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag256thUp", 
                     "codepoint": "U+F41E", 
                     "name": "flag256thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag256thDown", 
                     "codepoint": "U+F420", 
                     "name": "flag256thDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag512thUp", 
                     "codepoint": "U+F421", 
                     "name": "flag512thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag512thDown", 
                     "codepoint": "U+F423", 
                     "name": "flag512thDownStraight"
                 }, 
                 {
+                    "alternateFor": "flag1024thUp", 
                     "codepoint": "U+F424", 
                     "name": "flag1024thUpStraight"
                 }, 
                 {
+                    "alternateFor": "flag1024thDown", 
                     "codepoint": "U+F426", 
                     "name": "flag1024thDownStraight"
                 }
@@ -35589,59 +37825,103 @@
             "description": "Large time signatures", 
             "glyphs": [
                 {
+                    "alternateFor": "timeSig0", 
                     "codepoint": "U+F440", 
                     "name": "timeSig0Large"
                 }, 
                 {
+                    "alternateFor": "timeSig1", 
                     "codepoint": "U+F441", 
                     "name": "timeSig1Large"
                 }, 
                 {
+                    "alternateFor": "timeSig2", 
                     "codepoint": "U+F442", 
                     "name": "timeSig2Large"
                 }, 
                 {
+                    "alternateFor": "timeSig3", 
                     "codepoint": "U+F443", 
                     "name": "timeSig3Large"
                 }, 
                 {
+                    "alternateFor": "timeSig4", 
                     "codepoint": "U+F444", 
                     "name": "timeSig4Large"
                 }, 
                 {
+                    "alternateFor": "timeSig5", 
                     "codepoint": "U+F445", 
                     "name": "timeSig5Large"
                 }, 
                 {
+                    "alternateFor": "timeSig6", 
                     "codepoint": "U+F446", 
                     "name": "timeSig6Large"
                 }, 
                 {
+                    "alternateFor": "timeSig7", 
                     "codepoint": "U+F447", 
                     "name": "timeSig7Large"
                 }, 
                 {
+                    "alternateFor": "timeSig8", 
                     "codepoint": "U+F448", 
                     "name": "timeSig8Large"
                 }, 
                 {
+                    "alternateFor": "timeSig9", 
                     "codepoint": "U+F449", 
                     "name": "timeSig9Large"
                 }, 
                 {
+                    "alternateFor": "timeSigCommon", 
                     "codepoint": "U+F44A", 
                     "name": "timeSigCommonLarge"
                 }, 
                 {
+                    "alternateFor": "timeSigCutCommon", 
                     "codepoint": "U+F44B", 
                     "name": "timeSigCutCommonLarge"
                 }, 
                 {
+                    "alternateFor": "timeSigPlus", 
                     "codepoint": "U+F44C", 
                     "name": "timeSigPlusLarge"
                 }
             ], 
             "type": "timeSigsLarge"
+        }, 
+        "ss05": {
+            "description": "Noteheads at larger optical size ", 
+            "glyphs": [
+                {
+                    "alternateFor": "noteheadDoubleWhole", 
+                    "codepoint": "U+F4BA", 
+                    "name": "noteheadDoubleWholeOversized"
+                }, 
+                {
+                    "alternateFor": "noteheadDoubleWholeSquare", 
+                    "codepoint": "U+F4BB", 
+                    "name": "noteheadDoubleWholeSquareOversized"
+                }, 
+                {
+                    "alternateFor": "noteheadWhole", 
+                    "codepoint": "U+F4BC", 
+                    "name": "noteheadWholeOversized"
+                }, 
+                {
+                    "alternateFor": "noteheadHalf", 
+                    "codepoint": "U+F4BD", 
+                    "name": "noteheadHalfOversized"
+                }, 
+                {
+                    "alternateFor": "noteheadBlack", 
+                    "codepoint": "U+F4BE", 
+                    "name": "noteheadBlackOversized"
+                }
+            ], 
+            "type": "noteheadsLarge"
         }
     }
 }
\ No newline at end of file
diff --git a/fonts/gootville/ranges.json b/fonts/gootville/ranges.json
old mode 100644
new mode 100755
index 4994495..1baf261
--- a/fonts/gootville/ranges.json
+++ b/fonts/gootville/ranges.json
@@ -180,7 +180,9 @@
             "articUnstressAbove", 
             "articUnstressBelow", 
             "articLaissezVibrerAbove", 
-            "articLaissezVibrerBelow"
+            "articLaissezVibrerBelow", 
+            "articMarcatoTenutoAbove", 
+            "articMarcatoTenutoBelow"
         ], 
         "range_end": "U+E4BF", 
         "range_start": "U+E4A0"
@@ -572,10 +574,10 @@
             "semipitchedPercussionClef2", 
             "6stringTabClef", 
             "4stringTabClef", 
-            "cClefTriangular", 
-            "fClefTriangular", 
-            "cClefTriangularToFClef", 
-            "fClefTriangularToCClef", 
+            "schaefferClef", 
+            "schaefferPreviousClef", 
+            "schaefferGClefToFClef", 
+            "schaefferFClefToGClef", 
             "gClefReversed", 
             "gClefTurned", 
             "cClefReversed", 
@@ -985,7 +987,8 @@
             "figbassParensRight", 
             "figbassPlus", 
             "figbassCombiningRaising", 
-            "figbassCombiningLowering"
+            "figbassCombiningLowering", 
+            "figbass6Raised2"
         ], 
         "range_end": "U+EA6F", 
         "range_start": "U+EA50"
@@ -1789,6 +1792,37 @@
         "range_end": "U+E70F", 
         "range_start": "U+E700"
     }, 
+    "metronomeMarks": {
+        "description": "Metronome marks", 
+        "glyphs": [
+            "metNoteDoubleWhole", 
+            "metNoteDoubleWholeSquare", 
+            "metNoteWhole", 
+            "metNoteHalfUp", 
+            "metNoteHalfDown", 
+            "metNoteQuarterUp", 
+            "metNoteQuarterDown", 
+            "metNote8thUp", 
+            "metNote8thDown", 
+            "metNote16thUp", 
+            "metNote16thDown", 
+            "metNote32ndUp", 
+            "metNote32ndDown", 
+            "metNote64thUp", 
+            "metNote64thDown", 
+            "metNote128thUp", 
+            "metNote128thDown", 
+            "metNote256thUp", 
+            "metNote256thDown", 
+            "metNote512thUp", 
+            "metNote512thDown", 
+            "metNote1024thUp", 
+            "metNote1024thDown", 
+            "metAugmentationDot"
+        ], 
+        "range_end": "U+ECBF", 
+        "range_start": "U+ECA0"
+    }, 
     "miscellaneousPercussionInstrumentPictograms": {
         "description": "Miscellaneous percussion instrument pictograms", 
         "glyphs": [
@@ -2199,7 +2233,15 @@
     "octavesSupplement": {
         "description": "Octaves supplement", 
         "glyphs": [
-            "octaveLoco"
+            "octaveLoco", 
+            "octaveBaselineA", 
+            "octaveSuperscriptA", 
+            "octaveBaselineB", 
+            "octaveSuperscriptB", 
+            "octaveBaselineM", 
+            "octaveSuperscriptM", 
+            "octaveBaselineV", 
+            "octaveSuperscriptV"
         ], 
         "range_end": "U+EC9F", 
         "range_start": "U+EC90"
@@ -2363,11 +2405,11 @@
             "ornamentPrecompPortDeVoixMordent", 
             "ornamentPrecompTrillWithMordent", 
             "ornamentPrecompCadence", 
-            "ornamentPrecompCadenceWithTurn ", 
+            "ornamentPrecompCadenceWithTurn", 
             "ornamentPrecompDoubleCadenceLowerPrefix", 
-            "ornamentPrecompCadenceUpperPrefix ", 
+            "ornamentPrecompCadenceUpperPrefix", 
             "ornamentPrecompCadenceUpperPrefixTurn", 
-            "ornamentPrecompDoubleCadenceUpperPrefix ", 
+            "ornamentPrecompDoubleCadenceUpperPrefix", 
             "ornamentPrecompDoubleCadenceUpperPrefixTurn", 
             "ornamentPrecompMordentRelease", 
             "ornamentPrecompMordentUpperPrefix", 
@@ -2554,7 +2596,8 @@
             "restQuarterOld", 
             "restDoubleWholeLegerLine", 
             "restWholeLegerLine", 
-            "restHalfLegerLine"
+            "restHalfLegerLine", 
+            "restQuarterZ"
         ], 
         "range_end": "U+E4FF", 
         "range_start": "U+E4E0"
diff --git a/fonts/gootville/readme.txt b/fonts/gootville/readme.txt
old mode 100644
new mode 100755
index bdd08cf..fd1f0c3
--- a/fonts/gootville/readme.txt
+++ b/fonts/gootville/readme.txt
@@ -1,9 +1,9 @@
-GOOTVILLE 1.0 SMuFL - README
+GOOTVILLE 1.2 SMuFL - README
 
 
 This font is designed by Grzegorz Pruchniakowski and licensed under the SIL Open Font License (http://scripts.sil.org/OFL).
 
-The Gootville font templates based on SMuFL 1.12 and Bravura 1.12, designed by Daniel Spreadbury at Steinberg.
+The Gootville font templates based on SMuFL 1.18 and Bravura 1.18, designed by Daniel Spreadbury at Steinberg.
 
 Please inform me when you modify the font files.
 
diff --git a/fonts/mscore/glyphnames.json b/fonts/mscore/glyphnames.json
index 212b91c..008acc4 100644
--- a/fonts/mscore/glyphnames.json
+++ b/fonts/mscore/glyphnames.json
@@ -284,6 +284,9 @@
     "gClef8vb": {
         "codepoint": "U+e1d7"
     },
+    "gClef8vbParens": {
+        "codepoint": "U+E057"
+    },
     "graceNoteSlashStemDown": {
         "codepoint": "U+e196"
     },
diff --git a/fonts/mscore/metadata.json b/fonts/mscore/metadata.json
index 848fbbd..6f9ea48 100644
--- a/fonts/mscore/metadata.json
+++ b/fonts/mscore/metadata.json
@@ -1090,11 +1090,11 @@
         "noteheadDiamondBlack": {
             "stemDownNW": [
                 0.0,
-                0.004
+                -0.516
             ],
             "stemUpSE": [
                 1.124,
-                0.004
+                0.496
             ]
         },
         "noteheadDiamondBlackOld": {
@@ -1174,11 +1174,11 @@
         "noteheadDiamondHalf": {
             "stemDownNW": [
                 0.0,
-                0.0
+                -0.516
             ],
             "stemUpSE": [
                 1.136,
-                0.0
+                0.496
             ]
         },
         "noteheadDiamondHalfFilled": {
@@ -1598,7 +1598,7 @@
             ],
             "stemUpSE": [
                 1.312,
-                0.568
+                0.22
             ]
         },
         "noteheadTriangleDownHalf": {
@@ -1608,7 +1608,7 @@
             ],
             "stemUpSE": [
                 1.26,
-                0.5
+                0.22
             ]
         },
         "noteheadTriangleDownWhite": {
diff --git a/fonts/mscore/mscore.otf b/fonts/mscore/mscore.otf
index 7d7496e..6076c8c 100644
Binary files a/fonts/mscore/mscore.otf and b/fonts/mscore/mscore.otf differ
diff --git a/fonts/mscore/mscore.sfd b/fonts/mscore/mscore.sfd
index 239e7ac..5c944b3 100644
--- a/fonts/mscore/mscore.sfd
+++ b/fonts/mscore/mscore.sfd
@@ -20,7 +20,7 @@ OS2Version: 3
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1403170689
-ModificationTime: 1416931484
+ModificationTime: 1436612025
 PfmFamily: 17
 TTFWeight: 400
 TTFWidth: 5
@@ -63,7 +63,7 @@ NameList: Adobe Glyph List
 DisplaySize: -72
 AntiAlias: 1
 FitToEm: 1
-WinInfo: 57930 10 8
+WinInfo: 57420 10 8
 BeginPrivate: 7
 BlueValues 21 [0 0 256 257 478 478]
 OtherBlues 11 [-141 -141]
@@ -73,7 +73,7 @@ StdVW 4 [38]
 StemSnapH 26 [24 30 34 40 44 55 80 102]
 StemSnapV 20 [32 38 44 50 59 100]
 EndPrivate
-BeginChars: 65539 284
+BeginChars: 65539 285
 
 StartChar: .notdef
 Encoding: 65536 -1 0
@@ -12956,5 +12956,159 @@ Fore
 Refer: 27 57507 N 1 0 0 1 -38 0 2
 Validated: 1
 EndChar
+
+StartChar: uniE057
+Encoding: 57431 57431 284
+Width: 641
+Flags: HW
+LayerCount: 2
+Fore
+SplineSet
+361 -944 m 1
+ 361 -944 363 -939 369 -930 c 0
+ 375 -921 381 -905 387 -884 c 0
+ 393 -862 396 -834 396 -803 c 0
+ 396 -772 393 -744 387 -722 c 0
+ 381 -700 375 -685 369 -676 c 0
+ 363 -667 361 -662 361 -662 c 1
+ 361 -657 363 -654 368 -654 c 0
+ 371 -654 377 -661 386 -675 c 0
+ 395 -689 404 -707 412 -732 c 0
+ 420 -757 424 -780 424 -803 c 0
+ 424 -826 420 -850 412 -874 c 0
+ 403 -899 395 -917 386 -931 c 0
+ 377 -945 371 -952 368 -952 c 0
+ 363 -952 361 -949 361 -944 c 1
+158 -946 m 1
+ 158 -951 156 -954 151 -954 c 0
+ 148 -954 142 -947 133 -933 c 0
+ 125 -919 116 -901 107 -876 c 0
+ 99 -852 95 -828 95 -805 c 0
+ 95 -782 99 -759 107 -734 c 0
+ 115 -709 124 -691 133 -677 c 0
+ 142 -663 148 -656 151 -656 c 0
+ 156 -656 158 -659 158 -664 c 1
+ 158 -664 156 -669 150 -678 c 0
+ 144 -687 138 -702 132 -724 c 0
+ 126 -746 123 -774 123 -805 c 0
+ 123 -836 126 -864 132 -886 c 0
+ 138 -907 144 -923 150 -932 c 0
+ 156 -941 158 -946 158 -946 c 1
+376 262 m 1
+ 382 262 l 1
+ 386 263 388 263 389 263 c 0
+ 464 263 525 237 573 184 c 0
+ 621 132 645 71 645 2 c 0
+ 645 -84 609 -154 538 -208 c 0
+ 519 -223 494 -235 465 -244 c 1
+ 468 -283 470 -318 470 -349 c 0
+ 470 -362 469 -382 468 -407 c 0
+ 465 -469 444 -522 404 -568 c 0
+ 366 -612 317 -635 260 -635 c 0
+ 206 -635 160 -616 122 -578 c 0
+ 84 -539 65 -493 65 -438 c 0
+ 65 -409 76 -385 98 -365 c 0
+ 121 -345 147 -335 177 -335 c 0
+ 204 -335 226 -345 244 -366 c 1
+ 263 -386 272 -410 272 -438 c 0
+ 272 -464 263 -486 244 -505 c 0
+ 225 -524 203 -533 177 -533 c 0
+ 166 -533 156 -531 146 -527 c 1
+ 175 -570 214 -592 263 -592 c 0
+ 309 -592 347 -573 376 -536 c 0
+ 406 -498 423 -453 426 -401 c 0
+ 427 -377 428 -359 428 -346 c 0
+ 428 -312 427 -281 424 -254 c 1
+ 393 -259 364 -262 335 -262 c 0
+ 242 -262 163 -225 98 -152 c 1
+ 34 -78 2 10 2 112 c 0
+ 2 133 4 155 8 177 c 0
+ 13 199 18 218 23 236 c 0
+ 28 253 38 272 50 294 c 1
+ 64 317 74 335 82 348 c 0
+ 89 361 102 379 121 402 c 0
+ 140 425 153 442 161 451 c 0
+ 169 460 184 478 206 504 c 1
+ 229 529 243 546 250 553 c 1
+ 226 632 211 695 205 743 c 0
+ 200 784 198 836 198 899 c 0
+ 198 956 211 1011 238 1062 c 1
+ 264 1114 300 1157 347 1191 c 0
+ 350 1193 354 1194 357 1194 c 0
+ 362 1194 365 1193 367 1191 c 0
+ 403 1148 434 1092 460 1022 c 0
+ 487 952 500 889 500 833 c 0
+ 500 768 484 708 454 653 c 1
+ 422 598 378 536 320 469 c 1
+ 337 416 355 347 376 262 c 1
+461 -203 m 1
+ 494 -191 522 -170 542 -138 c 1
+ 564 -108 574 -74 574 -39 c 0
+ 574 8 558 50 526 87 c 0
+ 494 124 452 146 401 151 c 1
+ 430 10 450 -108 461 -203 c 1
+74 28 m 0
+ 74 -39 101 -96 154 -146 c 1
+ 208 -194 269 -219 338 -219 c 0
+ 366 -219 393 -217 420 -213 c 1
+ 409 -111 388 10 357 151 c 1
+ 319 147 289 134 266 111 c 0
+ 244 88 233 62 233 32 c 0
+ 233 -19 260 -60 314 -91 c 1
+ 319 -96 321 -101 321 -106 c 0
+ 321 -111 319 -116 314 -121 c 0
+ 310 -126 305 -128 299 -128 c 0
+ 297 -128 294 -127 290 -126 c 1
+ 251 -105 222 -78 202 -46 c 1
+ 183 -12 173 22 173 59 c 0
+ 173 105 187 146 216 184 c 1
+ 245 220 284 245 333 256 c 1
+ 316 324 301 382 287 431 c 1
+ 259 400 238 375 222 357 c 1
+ 208 339 189 315 167 284 c 0
+ 145 254 128 227 117 203 c 0
+ 106 179 96 152 87 120 c 0
+ 78 90 74 59 74 28 c 0
+408 1045 m 1
+ 359 1021 319 986 290 939 c 0
+ 261 892 246 841 246 786 c 0
+ 246 738 258 673 282 592 c 1
+ 329 649 365 702 390 753 c 0
+ 415 804 428 858 428 916 c 0
+ 428 960 421 1003 408 1045 c 1
+298 -780 m 1
+ 315 -763 324 -745 324 -728 c 1
+ 323 -715 318 -704 306 -696 c 0
+ 294 -688 280 -684 264 -684 c 0
+ 252 -684 243 -688 236 -695 c 0
+ 229 -702 226 -711 226 -720 c 0
+ 226 -732 231 -741 241 -747 c 2
+ 298 -780 l 1
+314 -789 m 1
+ 341 -804 356 -826 356 -851 c 2
+ 356 -854 l 2
+ 356 -874 348 -892 331 -906 c 0
+ 314 -921 290 -928 260 -928 c 0
+ 234 -928 212 -921 194 -908 c 0
+ 175 -895 166 -878 166 -856 c 0
+ 166 -849 168 -840 173 -832 c 0
+ 178 -824 182 -818 186 -814 c 0
+ 190 -810 196 -803 205 -795 c 1
+ 184 -781 174 -762 174 -740 c 0
+ 174 -722 182 -706 198 -692 c 0
+ 214 -679 236 -672 264 -672 c 0
+ 286 -672 306 -677 322 -687 c 0
+ 338 -697 346 -711 346 -728 c 0
+ 346 -746 335 -767 314 -789 c 1
+220 -804 m 1
+ 199 -822 189 -840 188 -856 c 1
+ 189 -873 196 -888 210 -899 c 0
+ 224 -910 241 -916 260 -916 c 0
+ 273 -916 284 -912 292 -903 c 0
+ 300 -895 304 -885 304 -874 c 0
+ 303 -859 298 -849 286 -842 c 2
+ 220 -804 l 1
+EndSplineSet
+EndChar
 EndChars
 EndSplineFont
diff --git a/fonts/mscore/mscore.ttf b/fonts/mscore/mscore.ttf
index 4e20202..c436c29 100644
Binary files a/fonts/mscore/mscore.ttf and b/fonts/mscore/mscore.ttf differ
diff --git a/libmscore/CMakeLists.txt b/libmscore/CMakeLists.txt
index 13c2b29..446d413 100644
--- a/libmscore/CMakeLists.txt
+++ b/libmscore/CMakeLists.txt
@@ -67,19 +67,13 @@ add_library (
       noteline.cpp spannermap.cpp
       bagpembell.cpp ambitus.cpp keylist.cpp scoreElement.cpp
       )
-# if (SCRIPT_INTERFACE)
-   set_target_properties (
+
+set_target_properties (
       libmscore
       PROPERTIES
          COMPILE_FLAGS "-g ${PCH_INCLUDE} -Wall -Wextra -Winvalid-pch"
+#         COMPILE_FLAGS "-g ${PCH_INCLUDE} -Wall -Wextra -Winvalid-pch -Woverloaded-virtual"
       )
-# else (SCRIPT_INTERFACE)
-#   set_target_properties (
-#      libmscore
-#      PROPERTIES
-#         COMPILE_FLAGS "-g ${PCH_INCLUDE} -include libmscore/noscript.h -Wall -Wextra -Winvalid-pch"
-#      )
-# endif (SCRIPT_INTERFACE)
 
 xcode_pch(libmscore all)
 
diff --git a/libmscore/accidental.cpp b/libmscore/accidental.cpp
index 17e4794..6d2c397 100644
--- a/libmscore/accidental.cpp
+++ b/libmscore/accidental.cpp
@@ -79,9 +79,9 @@ Accidental::Accidental(Score* s)
       {
       setFlags(ElementFlag::MOVABLE | ElementFlag::SELECTABLE);
       _hasBracket     = false;
-      _role           = Role::AUTO;
+      _role           = AccidentalRole::AUTO;
       _small          = false;
-      _accidentalType = Type::NONE;
+      _accidentalType = AccidentalType::NONE;
       }
 
 //---------------------------------------------------------
@@ -104,121 +104,121 @@ void Accidental::read(XmlReader& e)
                   if (isInt) {
                         _hasBracket = i & 0x8000;
                         i &= ~0x8000;
-                        Type at;
+                        AccidentalType at;
                         switch(i) {
                                case 0:
-                                     at = Type::NONE;
+                                     at = AccidentalType::NONE;
                                      break;
                                case 1:
                                case 11:
-                                     at = Type::SHARP;
+                                     at = AccidentalType::SHARP;
                                      break;
                                case 2:
                                case 12:
-                                     at = Type::FLAT;
+                                     at = AccidentalType::FLAT;
                                      break;
                                case 3:
                                case 13:
-                                     at = Type::SHARP2;
+                                     at = AccidentalType::SHARP2;
                                      break;
                                case 4:
                                case 14:
-                                     at = Type::FLAT2;
+                                     at = AccidentalType::FLAT2;
                                      break;
                                case 5:
                                case 15:
-                                     at = Type::NATURAL;
+                                     at = AccidentalType::NATURAL;
                                      break;
                                case 6:
-                                     at = Type::SHARP;
+                                     at = AccidentalType::SHARP;
                                      _hasBracket = true;
                                      break;
                                case 7:
-                                     at = Type::FLAT;
+                                     at = AccidentalType::FLAT;
                                      _hasBracket = true;
                                      break;
                                case 8:
-                                     at = Type::SHARP2;
+                                     at = AccidentalType::SHARP2;
                                      _hasBracket = true;
                                      break;
                                case 9:
-                                     at = Type::FLAT2;
+                                     at = AccidentalType::FLAT2;
                                      _hasBracket = true;
                                      break;
                                case 10:
-                                     at = Type::NATURAL;
+                                     at = AccidentalType::NATURAL;
                                      _hasBracket = true;
                                      break;
                                case 16:
-                                     at = Type::FLAT_SLASH;
+                                     at = AccidentalType::FLAT_SLASH;
                                      break;
                                case 17:
-                                     at = Type::FLAT_SLASH2;
+                                     at = AccidentalType::FLAT_SLASH2;
                                      break;
                                case 18:
-                                     at = Type::MIRRORED_FLAT2;
+                                     at = AccidentalType::MIRRORED_FLAT2;
                                      break;
                                case 19:
-                                     at = Type::MIRRORED_FLAT;
+                                     at = AccidentalType::MIRRORED_FLAT;
                                      break;
                                case 20:
-                                     at = Type::MIRRORED_FLAT_SLASH;
+                                     at = AccidentalType::MIRRORED_FLAT_SLASH;
                                      break;
                                case 21:
-                                     at = Type::FLAT_FLAT_SLASH;
+                                     at = AccidentalType::FLAT_FLAT_SLASH;
                                      break;
                                case 22:
-                                     at = Type::SHARP_SLASH;
+                                     at = AccidentalType::SHARP_SLASH;
                                      break;
                                case 23:
-                                     at = Type::SHARP_SLASH2;
+                                     at = AccidentalType::SHARP_SLASH2;
                                      break;
                                case 24:
-                                     at = Type::SHARP_SLASH3;
+                                     at = AccidentalType::SHARP_SLASH3;
                                      break;
                                case 25:
-                                     at = Type::SHARP_SLASH4;
+                                     at = AccidentalType::SHARP_SLASH4;
                                      break;
                                case 26:
-                                     at = Type::SHARP_ARROW_UP;
+                                     at = AccidentalType::SHARP_ARROW_UP;
                                      break;
                                case 27:
-                                     at = Type::SHARP_ARROW_DOWN;
+                                     at = AccidentalType::SHARP_ARROW_DOWN;
                                      break;
                                case 28:
-                                     at = Type::SHARP_ARROW_BOTH;
+                                     at = AccidentalType::SHARP_ARROW_BOTH;
                                      break;
                                case 29:
-                                     at = Type::FLAT_ARROW_UP;
+                                     at = AccidentalType::FLAT_ARROW_UP;
                                      break;
                                case 30:
-                                     at = Type::FLAT_ARROW_DOWN;
+                                     at = AccidentalType::FLAT_ARROW_DOWN;
                                      break;
                                case 31:
-                                     at = Type::FLAT_ARROW_BOTH;
+                                     at = AccidentalType::FLAT_ARROW_BOTH;
                                      break;
                                case 32:
-                                     at = Type::NATURAL_ARROW_UP;
+                                     at = AccidentalType::NATURAL_ARROW_UP;
                                      break;
                                case 33:
-                                     at = Type::NATURAL_ARROW_DOWN;
+                                     at = AccidentalType::NATURAL_ARROW_DOWN;
                                      break;
                                case 34:
-                                     at = Type::NATURAL_ARROW_BOTH;
+                                     at = AccidentalType::NATURAL_ARROW_BOTH;
                                      break;
                                default:
-                                     at = Type::NONE;
+                                     at = AccidentalType::NONE;
                                      break;
                                }
-                        setAccidentalType(Type(at));
+                        setAccidentalType(AccidentalType(at));
                         }
                   else
                         setSubtype(text);
                   }
             else if (tag == "role") {
-                  int i = e.readInt();
-                  if (i == int(Role::AUTO) || i == int(Role::USER))
-                        _role = Role(i);
+                  AccidentalRole r = AccidentalRole(e.readInt());
+                  if (r == AccidentalRole::AUTO || r == AccidentalRole::USER)
+                        _role = r;
                   }
             else if (tag == "small")
                   _small = e.readInt();
@@ -242,7 +242,6 @@ void Accidental::read(XmlReader& e)
 void Accidental::write(Xml& xml) const
       {
       xml.stag(name());
-
       writeProperty(xml, P_ID::ACCIDENTAL_BRACKET);
       writeProperty(xml, P_ID::ROLE);
       writeProperty(xml, P_ID::SMALL);
@@ -274,7 +273,7 @@ SymId Accidental::symbol() const
 //    returns the resulting pitch offset
 //---------------------------------------------------------
 
-AccidentalVal Accidental::subtype2value(Type st)
+AccidentalVal Accidental::subtype2value(AccidentalType st)
       {
       return accList[int(st)].offset;
       }
@@ -283,7 +282,7 @@ AccidentalVal Accidental::subtype2value(Type st)
 //   subtype2name
 //---------------------------------------------------------
 
-const char* Accidental::subtype2name(Type st)
+const char* Accidental::subtype2name(AccidentalType st)
       {
       return accList[int(st)].name;
       }
@@ -292,15 +291,15 @@ const char* Accidental::subtype2name(Type st)
 //   name2subtype
 //---------------------------------------------------------
 
-Accidental::Type Accidental::name2subtype(const QString& tag)
+AccidentalType Accidental::name2subtype(const QString& tag)
       {
       int i = 0;
       for (const Acc& acc : accList) {
             if (acc.tag == tag)
-                  return Type(i);
+                  return AccidentalType(i);
             ++i;
             }
-      return Type::NONE;
+      return AccidentalType::NONE;
       }
 
 //---------------------------------------------------------
@@ -359,18 +358,18 @@ void Accidental::layout()
 //   value2subtype
 //---------------------------------------------------------
 
-Accidental::Type Accidental::value2subtype(AccidentalVal v)
+AccidentalType Accidental::value2subtype(AccidentalVal v)
       {
       switch(v) {
-            case AccidentalVal::NATURAL: return Type::NONE;
-            case AccidentalVal::SHARP:   return Type::SHARP;
-            case AccidentalVal::SHARP2:  return Type::SHARP2;
-            case AccidentalVal::FLAT:    return Type::FLAT;
-            case AccidentalVal::FLAT2:   return Type::FLAT2;
+            case AccidentalVal::NATURAL: return AccidentalType::NONE;
+            case AccidentalVal::SHARP:   return AccidentalType::SHARP;
+            case AccidentalVal::SHARP2:  return AccidentalType::SHARP2;
+            case AccidentalVal::FLAT:    return AccidentalType::FLAT;
+            case AccidentalVal::FLAT2:   return AccidentalType::FLAT2;
             default:
                   qFatal("value2subtype: illegal accidental val %hhd", v);
             }
-      return Type::NONE;
+      return AccidentalType::NONE;
       }
 
 //---------------------------------------------------------
@@ -461,7 +460,7 @@ QVariant Accidental::propertyDefault(P_ID propertyId) const
       switch (propertyId) {
             case P_ID::SMALL:              return false;
             case P_ID::ACCIDENTAL_BRACKET: return false;
-            case P_ID::ROLE:               return int(Role::AUTO);
+            case P_ID::ROLE:               return int(AccidentalRole::AUTO);
             default:
                   return Element::propertyDefault(propertyId);
             }
@@ -481,7 +480,7 @@ bool Accidental::setProperty(P_ID propertyId, const QVariant& v)
                   _hasBracket = v.toBool();
                   break;
             case P_ID::ROLE:
-                  _role = Role(v.toInt());
+                  _role = v.value<AccidentalRole>();
                   break;
             default:
                   return Element::setProperty(propertyId, v);
diff --git a/libmscore/accidental.h b/libmscore/accidental.h
index 352577a..806af6d 100644
--- a/libmscore/accidental.h
+++ b/libmscore/accidental.h
@@ -18,16 +18,62 @@
  Definition of class Accidental
 */
 
+#include "config.h"
 #include "element.h"
 
-class QPainter;
-
 namespace Ms {
 
 class Note;
 enum class SymId;
 
 //---------------------------------------------------------
+//   AccidentalRole
+//---------------------------------------------------------
+
+enum class AccidentalRole : char {
+      AUTO,               // layout created accidental
+      USER                // user created accidental
+      };
+
+//---------------------------------------------------------
+//   AccidentalType
+//---------------------------------------------------------
+
+enum class AccidentalType : char {
+      NONE,
+      SHARP,
+      FLAT,
+      SHARP2,
+      FLAT2,
+      NATURAL,
+
+      FLAT_SLASH,
+      FLAT_SLASH2,
+      MIRRORED_FLAT2,
+      MIRRORED_FLAT,
+      MIRRORED_FLAT_SLASH,
+      FLAT_FLAT_SLASH,
+
+      SHARP_SLASH,
+      SHARP_SLASH2,
+      SHARP_SLASH3,
+      SHARP_SLASH4,
+
+      SHARP_ARROW_UP,
+      SHARP_ARROW_DOWN,
+      SHARP_ARROW_BOTH,
+      FLAT_ARROW_UP,
+      FLAT_ARROW_DOWN,
+      FLAT_ARROW_BOTH,
+      NATURAL_ARROW_UP,
+      NATURAL_ARROW_DOWN,
+      NATURAL_ARROW_BOTH,
+      SORI,
+      KORON,
+      END
+      };
+
+//---------------------------------------------------------
 //   SymElement
 //---------------------------------------------------------
 
@@ -39,19 +85,25 @@ struct SymElement {
 
 //---------------------------------------------------------
 //   @@ Accidental
+
+//   @P accType     enum  (Accidental.NONE, .SHARP, .FLAT, .SHARP2, .FLAT2, .NATURAL, .FLAT_SLASH, .FLAT_SLASH2, .MIRRORED_FLAT2, .MIRRORED_FLAT, .MIRRORED_FLAT_SLASH, .FLAT_FLAT_SLASH, .SHARP_SLASH, .SHARP_SLASH2, .SHARP_SLASH3, .SHARP_SLASH4, .SHARP_ARROW_UP, .SHARP_ARROW_DOWN, .SHARP_ARROW_BOTH, .FLAT_ARROW_UP, .FLAT_ARROW_DOWN, .FLAT_ARROW_BOTH, .NATURAL_ARROW_UP, .NATURAL_ARROW_DOWN, .NATURAL_ARROW_BOTH, .SORI, .KORON) (read only)
 //   @P hasBracket  bool
+//   @P role        enum  (Accidental.AUTO, .USER) (read only)
 //   @P small       bool
-//   @P acctype     Ms::Accidental::Type  (NONE, SHARP, FLAT, SHARP2, FLAT2, NATURAL, ...) (read only)
-//   @P role        Ms::Accidental::Role  (AUTO, USER) (read only)
 //---------------------------------------------------------
 
 class Accidental : public Element {
+
+#ifdef SCRIPT_INTERFACE
+      Q_OBJECT
+      Q_PROPERTY(int  accType     READ qmlAccidentalType)
+      Q_PROPERTY(bool hasBracket  READ hasBracket  WRITE undoSetHasBracket)
+      Q_PROPERTY(int  role        READ qmlRole)
+      Q_PROPERTY(bool small       READ small       WRITE undoSetSmall)
+
    public:
-      enum class Role : char {
-            AUTO,               // layout created accidental
-            USER                // user created accidental
-            };
-      enum class Type : char {
+      enum QmlAccidentalRole { AUTO, USER };
+      enum QmlAccidentalType {
             NONE,
             SHARP,
             FLAT,
@@ -84,21 +136,17 @@ class Accidental : public Element {
             KORON,
             END
             };
-
+      Q_ENUMS(QmlAccidentalRole QmlAccidentalType)
+      int qmlAccidentalType() const { return int(_accidentalType); }
+      int qmlRole() const           { return int(_role);           }
    private:
-      Q_OBJECT
-      Q_PROPERTY(bool                 hasBracket  READ hasBracket  WRITE undoSetHasBracket)
-      Q_PROPERTY(bool                 small       READ small       WRITE undoSetSmall)
-      Q_PROPERTY(Ms::Accidental::Type accType     READ accidentalType)
-      Q_PROPERTY(Ms::Accidental::Role role        READ role)
-      Q_ENUMS(Type)
-      Q_ENUMS(Role)
+#endif
 
       QList<SymElement> el;
-      Type _accidentalType;
+      AccidentalType _accidentalType;
       bool _hasBracket;
       bool _small;
-      Role _role;
+      AccidentalRole _role;
 
    public:
       Accidental(Score* s = 0);
@@ -107,8 +155,11 @@ class Accidental : public Element {
 
       const char* subtypeUserName() const;
       void setSubtype(const QString& s);
-      void setAccidentalType(Type t)               { _accidentalType = t;    }
-      Type accidentalType() const                  { return _accidentalType; }
+      void setAccidentalType(AccidentalType t)     { _accidentalType = t;    }
+
+      AccidentalType accidentalType() const        { return _accidentalType; }
+      AccidentalRole role() const                  { return _role;           }
+
       virtual int subtype() const override         { return (int)_accidentalType; }
       virtual QString subtypeName() const override { return QString(subtype2name(_accidentalType)); }
 
@@ -124,13 +175,13 @@ class Accidental : public Element {
 
       bool hasBracket() const             { return _hasBracket;     }
       void setHasBracket(bool val)        { _hasBracket = val;      }
-      void undoSetHasBracket(bool val);
 
-      Role role() const                   { return _role;           }
-      void setRole(Role r)                { _role = r;              }
+      void setRole(AccidentalRole r)      { _role = r;              }
 
       bool small() const                  { return _small;          }
       void setSmall(bool val)             { _small = val;           }
+
+      void undoSetHasBracket(bool val);
       void undoSetSmall(bool val);
 
       virtual void read(XmlReader&) override;
@@ -140,18 +191,24 @@ class Accidental : public Element {
       virtual bool setProperty(P_ID propertyId, const QVariant&) override;
       virtual QVariant propertyDefault(P_ID propertyId) const override;
 
-      static AccidentalVal subtype2value(Type);             // return effective pitch offset
-      static const char* subtype2name(Type);
-      static Type value2subtype(AccidentalVal);
-      static Type name2subtype(const QString&);
+      static AccidentalVal subtype2value(AccidentalType);             // return effective pitch offset
+      static const char* subtype2name(AccidentalType);
+      static AccidentalType value2subtype(AccidentalVal);
+      static AccidentalType name2subtype(const QString&);
 
       QString accessibleInfo() override;
       };
 
 }     // namespace Ms
 
-Q_DECLARE_METATYPE(Ms::Accidental::Role);
-Q_DECLARE_METATYPE(Ms::Accidental::Type);
+#ifdef SCRIPT_INTERFACE
+Q_DECLARE_METATYPE(Ms::Accidental::QmlAccidentalRole);
+Q_DECLARE_METATYPE(Ms::Accidental::QmlAccidentalType);
+#endif // SCRIPT_INTERFACE
+
+Q_DECLARE_METATYPE(Ms::AccidentalRole);
+Q_DECLARE_METATYPE(Ms::AccidentalType);
+
 
 #endif
 
diff --git a/libmscore/ambitus.cpp b/libmscore/ambitus.cpp
index 69645bc..1ac47e6 100644
--- a/libmscore/ambitus.cpp
+++ b/libmscore/ambitus.cpp
@@ -175,12 +175,12 @@ void Ambitus::write(Xml& xml) const
       xml.tag("topTpc",     _topTpc);
       xml.tag("bottomPitch",_bottomPitch);
       xml.tag("bottomTpc",  _bottomTpc);
-      if (_topAccid.accidentalType() != Accidental::Type::NONE) {
+      if (_topAccid.accidentalType() != AccidentalType::NONE) {
             xml.stag("topAccidental");
             _topAccid.write(xml);
             xml.etag();
             }
-      if (_bottomAccid.accidentalType() != Accidental::Type::NONE) {
+      if (_bottomAccid.accidentalType() != AccidentalType::NONE) {
             xml.stag("bottomAccidental");
             _bottomAccid.write(xml);
             xml.etag();
@@ -285,18 +285,18 @@ void Ambitus::layout()
             topLine  = relStep(topLine, clf);
             _topPos.setY(topLine * lineDist * 0.5);
             // compute accidental
-            Accidental::Type accidType;
+            AccidentalType accidType;
             // if (13 <= (tpc - key) <= 19) there is no accidental)
             if (_topTpc - int(key) >= 13 && _topTpc - int(key) <= 19)
-                  accidType = Accidental::Type::NONE;
+                  accidType = AccidentalType::NONE;
             else {
                   AccidentalVal accidVal = AccidentalVal( (_topTpc - Tpc::TPC_MIN) / TPC_DELTA_SEMITONE - 2 );
                   accidType = Accidental::value2subtype(accidVal);
-                  if (accidType == Accidental::Type::NONE)
-                        accidType = Accidental::Type::NATURAL;
+                  if (accidType == AccidentalType::NONE)
+                        accidType = AccidentalType::NATURAL;
                   }
             _topAccid.setAccidentalType(accidType);
-            if (accidType != Accidental::Type::NONE)
+            if (accidType != AccidentalType::NONE)
                   _topAccid.layout();
             else
                   _topAccid.setbbox(QRect());
@@ -311,17 +311,17 @@ void Ambitus::layout()
             bottomLine  = relStep(bottomLine, clf);
             _bottomPos.setY(bottomLine * lineDist * 0.5);
             // compute accidental
-            Accidental::Type accidType;
+            AccidentalType accidType;
             if (_bottomTpc - int(key) >= 13 && _bottomTpc - int(key) <= 19)
-                  accidType = Accidental::Type::NONE;
+                  accidType = AccidentalType::NONE;
             else {
                   AccidentalVal accidVal = AccidentalVal( (_bottomTpc - Tpc::TPC_MIN) / TPC_DELTA_SEMITONE - 2 );
                   accidType = Accidental::value2subtype(accidVal);
-                  if (accidType == Accidental::Type::NONE)
-                        accidType = Accidental::Type::NATURAL;
+                  if (accidType == AccidentalType::NONE)
+                        accidType = AccidentalType::NATURAL;
                   }
             _bottomAccid.setAccidentalType(accidType);
-            if (accidType != Accidental::Type::NONE)
+            if (accidType != AccidentalType::NONE)
                   _bottomAccid.layout();
             else
                   _bottomAccid.setbbox(QRect());
@@ -346,9 +346,9 @@ void Ambitus::layout()
       if (collision) {
             // displace bottom accidental (also attempting to 'undercut' flats)
             xAccidOffBottom = xAccidOffTop +
-                  ((_bottomAccid.accidentalType() == Accidental::Type::FLAT
-                        || _bottomAccid.accidentalType() == Accidental::Type::FLAT2
-                        || _bottomAccid.accidentalType() == Accidental::Type::NATURAL)
+                  ((_bottomAccid.accidentalType() == AccidentalType::FLAT
+                        || _bottomAccid.accidentalType() == AccidentalType::FLAT2
+                        || _bottomAccid.accidentalType() == AccidentalType::NATURAL)
                   ? _bottomAccid.width() * 0.5 : _bottomAccid.width());
             }
 
@@ -447,8 +447,8 @@ Space Ambitus::space() const
       qreal _spatium = spatium();
       // reduce left space if there accidentals
       qreal leftSpace = _spatium *
-            ((_topAccid.accidentalType() != Accidental::Type::NONE
-                  || _bottomAccid.accidentalType() != Accidental::Type::NONE)
+            ((_topAccid.accidentalType() != AccidentalType::NONE
+                  || _bottomAccid.accidentalType() != AccidentalType::NONE)
             ? 0.5 : 0.75);
       return Space(leftSpace - bbox().x(), width() + bbox().x() + _spatium * 0.5);
       }
@@ -460,9 +460,9 @@ Space Ambitus::space() const
 void Ambitus::scanElements(void* data, void (*func)(void*, Element*), bool /*all*/)
       {
       func(data, this);
-      if (_topAccid.accidentalType() != Accidental::Type::NONE)
+      if (_topAccid.accidentalType() != AccidentalType::NONE)
             func(data, &_topAccid);
-      if (_bottomAccid.accidentalType() != Accidental::Type::NONE)
+      if (_bottomAccid.accidentalType() != AccidentalType::NONE)
             func(data, &_bottomAccid);
       }
 
diff --git a/libmscore/ambitus.h b/libmscore/ambitus.h
index fb1e4b8..5fe9747 100644
--- a/libmscore/ambitus.h
+++ b/libmscore/ambitus.h
@@ -13,9 +13,9 @@
 #ifndef __AMBITUS_H__
 #define __AMBITUS_H__
 
-#include "accidental.h"
 #include "element.h"
 #include "note.h"
+#include "accidental.h"
 
 class QPainter;
 
@@ -53,7 +53,7 @@ class Ambitus : public Element {
       virtual Element::Type type() const override     { return Element::Type::AMBITUS;    }
       NoteHead::Group noteHeadGroup() const           { return _noteHeadGroup;}
       NoteHead::Type noteHeadType() const             { return _noteHeadType; }
-      MScore::DirectionH direction() const                    { return _dir;          }
+      MScore::DirectionH direction() const            { return _dir;          }
       bool hasLine() const                            { return _hasLine;      }
       qreal lineWidth() const                         { return _lineWidth;    }
       int topOctave() const                           { return _topPitch / 12;}
diff --git a/libmscore/arpeggio.cpp b/libmscore/arpeggio.cpp
index 791172c..f657257 100644
--- a/libmscore/arpeggio.cpp
+++ b/libmscore/arpeggio.cpp
@@ -36,6 +36,7 @@ Arpeggio::Arpeggio(Score* s)
       _span     = 1;
       _userLen1 = 0.0;
       _userLen2 = 0.0;
+      _playArpeggio = true;
       }
 
 //---------------------------------------------------------
@@ -64,6 +65,7 @@ void Arpeggio::write(Xml& xml) const
             xml.tag("userLen2", _userLen2 / spatium());
       if (_span != 1)
             xml.tag("span", _span);
+      writeProperty(xml, P_ID::PLAY);
       xml.etag();
       }
 
@@ -83,6 +85,8 @@ void Arpeggio::read(XmlReader& e)
                   _userLen2 = e.readDouble() * spatium();
             else if (tag == "span")
                   _span = e.readInt();
+            else if (tag == "play")
+                 _playArpeggio = e.readBool();
             else if (!Element::readProperties(e))
                   e.unknown();
             }
@@ -100,15 +104,14 @@ void Arpeggio::symbolLine(SymId end, SymId fill)
       qreal w   = y2 - y1;
       qreal mag = magS();
       ScoreFont* f = score()->scoreFont();
-      const QString& fillString = f->toString(fill);
 
       symbols.clear();
-      symbols.append(f->toString(end));
-      qreal w1 = f->bbox(end, mag).width();
-      qreal w2 = f->width(fill, mag);
+      symbols.append(end);
+      qreal w1 = f->advance(end, mag);
+      qreal w2 = f->advance(fill, mag);
       int n    = lrint((w - w1) / w2);
       for (int i = 0; i < n; ++i)
-           symbols.prepend(fillString);
+           symbols.prepend(fill);
       }
 
 //---------------------------------------------------------
@@ -120,6 +123,8 @@ void Arpeggio::layout()
       qreal y1 = -_userLen1;
       qreal y2 = _height + _userLen2;
 
+      if (staff())
+            setMag(staff()->mag());
       switch (arpeggioType()) {
             case ArpeggioType::NORMAL: {
                   symbolLine(SymId::wiggleArpeggiatoUp, SymId::wiggleArpeggiatoUp);
@@ -181,8 +186,6 @@ void Arpeggio::draw(QPainter* p) const
       {
       qreal _spatium = spatium();
 
-      p->setPen(curColor());
-
       qreal y1 = -_userLen1;
       qreal y2 = _height + _userLen2;
 
@@ -190,23 +193,24 @@ void Arpeggio::draw(QPainter* p) const
          score()->styleS(StyleIdx::ArpeggioLineWidth).val() * _spatium,
          Qt::SolidLine, Qt::RoundCap));
 
+      p->save();
       switch (arpeggioType()) {
             case ArpeggioType::NORMAL:
             case ArpeggioType::UP:
                   {
                   QRectF r(symBbox(symbols));
+                  qreal scale = p->worldTransform().m11();
                   p->rotate(-90.0);
-                  drawSymbols(symbols, p, QPointF(-r.right() - y1, -r.bottom() + r.height()));
-                  p->rotate(90.0);
+                  score()->scoreFont()->draw(symbols, p, magS(), QPointF(-r.right() - y1, -r.bottom() + r.height()), scale);
                   }
                   break;
 
             case ArpeggioType::DOWN:
                   {
                   QRectF r(symBbox(symbols));
+                  qreal scale = p->worldTransform().m11();
                   p->rotate(90.0);
-                  drawSymbols(symbols, p, QPointF(-r.left() + y1, -r.top() - r.height()));
-                  p->rotate(-90.0);
+                  score()->scoreFont()->draw(symbols, p, magS(), QPointF(-r.left() + y1, -r.top() - r.height()), scale);
                   }
                   break;
 
@@ -240,6 +244,7 @@ void Arpeggio::draw(QPainter* p) const
                   }
                   break;
             }
+      p->restore();
       }
 
 //---------------------------------------------------------
@@ -400,6 +405,8 @@ QVariant Arpeggio::getProperty(P_ID propertyId) const
                   return userLen1();
             case P_ID::ARP_USER_LEN2:
                   return userLen2();
+            case P_ID::PLAY:
+                  return _playArpeggio;
             default:
                   break;
             }
@@ -419,6 +426,9 @@ bool Arpeggio::setProperty(P_ID propertyId, const QVariant& val)
             case P_ID::ARP_USER_LEN2:
                   setUserLen2(val.toDouble());
                   break;
+            case P_ID::PLAY:
+                  setPlayArpeggio(val.toBool());
+                  break;
             default:
                   if (!Element::setProperty(propertyId, val))
                         return false;
@@ -428,6 +438,23 @@ bool Arpeggio::setProperty(P_ID propertyId, const QVariant& val)
       return true;
       }
 
+//---------------------------------------------------------
+//   propertyDefault
+//---------------------------------------------------------
 
+QVariant Arpeggio::propertyDefault(P_ID propertyId) const
+      {
+      switch(propertyId) {
+            case P_ID::ARP_USER_LEN1:
+                  return 0.0;
+            case P_ID::ARP_USER_LEN2:
+                  return 0.0;
+            case P_ID::PLAY:
+                  return true;
+            default:
+                  break;
+            }
+      return Element::propertyDefault(propertyId);
+      }
 }
 
diff --git a/libmscore/arpeggio.h b/libmscore/arpeggio.h
index ca66f92..d17c80f 100644
--- a/libmscore/arpeggio.h
+++ b/libmscore/arpeggio.h
@@ -37,7 +37,8 @@ class Arpeggio : public Element {
       qreal _userLen2;
       qreal _height;
       int _span;              // spanning staves
-      QString symbols;
+      QList<SymId> symbols;
+      bool _playArpeggio;
 
       void symbolLine(SymId start, SymId fill);
       void symbolLine2(SymId end, SymId fill);
@@ -79,8 +80,12 @@ class Arpeggio : public Element {
       void setUserLen1(qreal v) { _userLen1 = v; }
       void setUserLen2(qreal v) { _userLen2 = v; }
 
+      bool playArpeggio()       { return _playArpeggio; }
+      void setPlayArpeggio(bool p) { _playArpeggio = p; }
+
       virtual QVariant getProperty(P_ID propertyId) const override;
       virtual bool setProperty(P_ID propertyId, const QVariant&) override;
+      virtual QVariant propertyDefault(P_ID propertyId) const override;
       };
 
 
diff --git a/libmscore/articulation.cpp b/libmscore/articulation.cpp
index 3459483..cd7f0c7 100644
--- a/libmscore/articulation.cpp
+++ b/libmscore/articulation.cpp
@@ -32,170 +32,170 @@ namespace Ms {
 ArticulationInfo Articulation::articulationList[int(ArticulationType::ARTICULATIONS)] = {
       { SymId::fermataAbove, SymId::fermataBelow,
             "fermata", QT_TRANSLATE_NOOP("articulation", "Fermata"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::fermataShortAbove, SymId::fermataShortBelow,
             "shortfermata", QT_TRANSLATE_NOOP("articulation", "Short fermata"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::fermataLongAbove, SymId::fermataLongBelow,
             "longfermata", QT_TRANSLATE_NOOP("articulation", "Long fermata"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::fermataVeryLongAbove, SymId::fermataVeryLongBelow,
             "verylongfermata", QT_TRANSLATE_NOOP("articulation", "Very long fermata"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::articAccentAbove,   SymId::articAccentBelow,
             "sforzato", QT_TRANSLATE_NOOP("articulation", "Sforzato"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
 // <> not available in smufl?
 //      { SymId::esprSym, SymId::esprSym             ,
 //            "espressivo", QT_TRANSLATE_NOOP("articulation", "Espressivo"),
-//            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+//            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
 //            },
       { SymId::articStaccatoAbove, SymId::articStaccatoBelow,
             "staccato", QT_TRANSLATE_NOOP("articulation", "Staccato"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::articStaccatissimoAbove,   SymId::articStaccatissimoBelow,
             "staccatissimo", QT_TRANSLATE_NOOP("articulation", "Staccatissimo"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::articTenutoAbove, SymId::articTenutoBelow,
             "tenuto", QT_TRANSLATE_NOOP("articulation", "Tenuto"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::articTenutoStaccatoAbove, SymId::articTenutoStaccatoBelow,
             "portato", QT_TRANSLATE_NOOP("articulation", "Portato"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::articMarcatoAbove, SymId::articMarcatoBelow,
             "marcato", QT_TRANSLATE_NOOP("articulation", "Marcato"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::guitarFadeIn, SymId::guitarFadeIn,
             "fadein", QT_TRANSLATE_NOOP("articulation", "Fade in"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::guitarFadeOut, SymId::guitarFadeOut,
             "fadeout", QT_TRANSLATE_NOOP("articulation", "Fade out"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::guitarVolumeSwell, SymId::guitarVolumeSwell,
             "volumeswell", QT_TRANSLATE_NOOP("articulation", "Volume swell"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::wiggleSawtooth, SymId::wiggleSawtooth,
             "wigglesawtooth", QT_TRANSLATE_NOOP("articulation", "Wiggle sawtooth"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::wiggleSawtoothWide, SymId::wiggleSawtoothWide,
             "wigglesawtoothwide", QT_TRANSLATE_NOOP("articulation", "Wiggle sawtooth wide"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::wiggleVibratoLargeFaster, SymId::wiggleVibratoLargeFaster,
             "wigglevibratolargefaster", QT_TRANSLATE_NOOP("articulation", "Wiggle vibrato large faster"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::wiggleVibratoLargeSlowest, SymId::wiggleVibratoLargeSlowest,
             "wigglevibratolargeslowest", QT_TRANSLATE_NOOP("articulation", "Wiggle vibrato large slowest"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::brassMuteOpen, SymId::brassMuteOpen,
             "ouvert", QT_TRANSLATE_NOOP("articulation", "Ouvert"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::brassMuteClosed, SymId::brassMuteClosed,
             "plusstop", QT_TRANSLATE_NOOP("articulation", "Stopped/Pizzicato left hand"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::stringsUpBow, SymId::stringsUpBow,
             "upbow", QT_TRANSLATE_NOOP("articulation", "Up bow"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::stringsDownBow, SymId::stringsDownBow,
             "downbow", QT_TRANSLATE_NOOP("articulation", "Down bow"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentTurnInverted, SymId::ornamentTurnInverted,
             "reverseturn", QT_TRANSLATE_NOOP("articulation", "Reverse turn"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentTurn, SymId::ornamentTurn,
             "turn", QT_TRANSLATE_NOOP("articulation", "Turn"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentTrill, SymId::ornamentTrill,
             "trill", QT_TRANSLATE_NOOP("articulation", "Trill"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentMordent, SymId::ornamentMordent,
             "prall", QT_TRANSLATE_NOOP("articulation", "Prall"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentMordentInverted, SymId::ornamentMordentInverted,
             "mordent", QT_TRANSLATE_NOOP("articulation", "Mordent"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentTremblement, SymId::ornamentTremblement,
             "prallprall", QT_TRANSLATE_NOOP("articulation", "Prall prall"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentPrallMordent, SymId::ornamentPrallMordent,
             "prallmordent", QT_TRANSLATE_NOOP("articulation", "Prall mordent"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentUpPrall, SymId::ornamentUpPrall,
             "upprall", QT_TRANSLATE_NOOP("articulation", "Up prall"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentDownPrall, SymId::ornamentDownPrall,
             "downprall", QT_TRANSLATE_NOOP("articulation", "Down prall"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentUpMordent, SymId::ornamentUpMordent,
             "upmordent", QT_TRANSLATE_NOOP("articulation", "Up mordent"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentDownMordent, SymId::ornamentDownMordent,
             "downmordent", QT_TRANSLATE_NOOP("articulation", "Down mordent"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentPrallDown, SymId::ornamentPrallDown,
             "pralldown", QT_TRANSLATE_NOOP("articulation", "Prall down"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentPrallUp, SymId::ornamentPrallUp,
             "prallup", QT_TRANSLATE_NOOP("articulation", "Prall up"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentLinePrall, SymId::ornamentLinePrall,
             "lineprall", QT_TRANSLATE_NOOP("articulation", "Line prall"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::ornamentPrecompSlide, SymId::ornamentPrecompSlide,
             "schleifer", QT_TRANSLATE_NOOP("articulation", "Schleifer"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::pluckedSnapPizzicatoAbove, SymId::pluckedSnapPizzicatoBelow,
             "snappizzicato", QT_TRANSLATE_NOOP("articulation", "Snap pizzicato"),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
 
 #if 0
       { SymId::letterTSym, SymId::letterTSym,
             "tapping", QT_TRANSLATE_NOOP("articulation", "Tapping"),
-            1.0, ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::TABLATURE
             },
       { SymId::letterSSym, SymId::letterSSym,
             "slapping", QT_TRANSLATE_NOOP("articulation", "Slapping"),
-            1.0, ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::TABLATURE
             },
       { SymId::letterPSym, SymId::letterPSym,
             "popping", QT_TRANSLATE_NOOP("articulation", "Popping"),
-            1.0, ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::TABLATURE
             },
 #endif
 
@@ -203,23 +203,23 @@ ArticulationInfo Articulation::articulationList[int(ArticulationType::ARTICULATI
 
       { SymId::stringsThumbPosition, SymId::stringsThumbPosition,
             "thumb", QT_TRANSLATE_NOOP("articulation", "Thumb pos."),
-            1.0, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::PITCHED_STAFF | ArticulationShowIn::TABLATURE
             },
       { SymId::luteFingeringRHThumb, SymId::luteFingeringRHThumb,
             "lutefingeringthumb", QT_TRANSLATE_NOOP("articulation", "Lute thumb fing."),
-            1.0, ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::TABLATURE
             },
       { SymId::luteFingeringRHFirst, SymId::luteFingeringRHFirst,
             "lutefingering1st", QT_TRANSLATE_NOOP("articulation", "Lute 1 fing."),
-            1.0, ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::TABLATURE
             },
       { SymId::luteFingeringRHSecond, SymId::luteFingeringRHSecond,
             "lutefingering2nd", QT_TRANSLATE_NOOP("articulation", "Lute 2 fing."),
-            1.0, ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::TABLATURE
             },
       { SymId::luteFingeringRHThird, SymId::luteFingeringRHThird,
             "lutefingering3rd", QT_TRANSLATE_NOOP("articulation", "Lute 3 fing."),
-            1.0, ArticulationShowIn::TABLATURE
+            1.0, MScore::OrnamentStyle::DEFAULT, true, ArticulationShowIn::TABLATURE
             },
       };
 
@@ -234,6 +234,8 @@ Articulation::Articulation(Score* s)
       _up = true;
       setFlags(ElementFlag::MOVABLE | ElementFlag::SELECTABLE);
       setArticulationType(ArticulationType::Fermata);
+      _ornamentStyle    = MScore::OrnamentStyle::DEFAULT;
+      setPlayArticulation(true);
       }
 
 //---------------------------------------------------------
@@ -246,6 +248,7 @@ void Articulation::setArticulationType(ArticulationType idx)
       _anchor           = score()->style()->articulationAnchor(int(_articulationType));
       anchorStyle       = PropertyStyle::STYLED;
       _timeStretch      = articulationList[int(articulationType())].timeStretch;
+
       }
 
 //---------------------------------------------------------
@@ -267,9 +270,12 @@ void Articulation::read(XmlReader& e)
                   _anchor = ArticulationAnchor(e.readInt());
                   anchorStyle = PropertyStyle::UNSTYLED;
                   }
-            else if (tag == "direction") {
+            else if (tag == "direction")
                   setProperty(P_ID::DIRECTION, Ms::getProperty(P_ID::DIRECTION, e));
-                  }
+            else if ( tag == "ornamentStyle")
+                  setProperty(P_ID::ORNAMENT_STYLE, Ms::getProperty(P_ID::ORNAMENT_STYLE, e));
+            else if ( tag == "play")
+                  setPlayArticulation(e.readBool());
             else if (tag == "timeStretch")
                   _timeStretch = e.readDouble();
             else if (tag == "offset") {
@@ -298,6 +304,8 @@ void Articulation::write(Xml& xml) const
       xml.tag("subtype", subtypeName());
       if (_timeStretch != 1.0)
             xml.tag("timeStretch", _timeStretch);
+      writeProperty(xml, P_ID::PLAY);
+      writeProperty(xml, P_ID::ORNAMENT_STYLE);
       Element::writeProperties(xml);
       if (anchorStyle == PropertyStyle::UNSTYLED)
             xml.tag("anchor", int(_anchor));
@@ -525,6 +533,7 @@ void Articulation::reset()
       ArticulationAnchor a = score()->style()->articulationAnchor(int(articulationType()));
       if (_anchor != a)
             score()->undoChangeProperty(this, P_ID::ARTICULATION_ANCHOR, int(a));
+      //MScore::OrnamentStyle o = score()->style()->ornamentStyle(int(ornamentStyle()));
       Element::reset();
       if (chordRest())
             chordRest()->layoutArticulations();
@@ -550,6 +559,8 @@ QVariant Articulation::getProperty(P_ID propertyId) const
             case P_ID::DIRECTION:           return int(direction());
             case P_ID::ARTICULATION_ANCHOR: return int(anchor());
             case P_ID::TIME_STRETCH:        return timeStretch();
+            case P_ID::ORNAMENT_STYLE:      return int(ornamentStyle());
+            case P_ID::PLAY:   return bool(playArticulation());
             default:
                   return Element::getProperty(propertyId);
             }
@@ -570,6 +581,12 @@ bool Articulation::setProperty(P_ID propertyId, const QVariant& v)
                   anchorStyle = PropertyStyle::UNSTYLED;
                   setAnchor(ArticulationAnchor(v.toInt()));
                   break;
+            case P_ID::PLAY:
+                  setPlayArticulation(v.toBool());
+                  break;
+            case P_ID::ORNAMENT_STYLE:
+                  setOrnamentStyle(MScore::OrnamentStyle(v.toInt()));
+                  break;
             case P_ID::TIME_STRETCH:
                   setTimeStretch(v.toDouble());
                   score()->fixTicks();
@@ -613,6 +630,11 @@ QVariant Articulation::propertyDefault(P_ID propertyId) const
             case P_ID::TIME_STRETCH:
                   return articulationList[int(articulationType())].timeStretch;
 
+            case P_ID::ORNAMENT_STYLE:
+                  //return int(score()->style()->ornamentStyle(_ornamentStyle));
+                  return int(MScore::OrnamentStyle::DEFAULT);
+            case P_ID::PLAY:
+                  return true;
             default:
                   break;
             }
@@ -648,8 +670,9 @@ void Articulation::resetProperty(P_ID id)
       switch (id) {
             case P_ID::DIRECTION:
             case P_ID::TIME_STRETCH:
+            case P_ID::ORNAMENT_STYLE:
+                  setProperty(id, propertyDefault(id));
                   return;
-
             case P_ID::ARTICULATION_ANCHOR:
                   setProperty(id, propertyDefault(id));
                   anchorStyle = PropertyStyle::STYLED;
diff --git a/libmscore/articulation.h b/libmscore/articulation.h
index 4b7f388..e62a7d3 100644
--- a/libmscore/articulation.h
+++ b/libmscore/articulation.h
@@ -56,6 +56,8 @@ struct ArticulationInfo {
       QString name;           // as stored in score files
       QString description;    // user-visible, translatable, name
       qreal timeStretch;      // for fermata
+      MScore::OrnamentStyle ornamentStyle; // or ornaments such as trill
+      bool playArticulation;
       ArticulationShowIn flags;
       };
 
@@ -76,7 +78,8 @@ class Articulation : public Element {
 
       bool _up;
       qreal _timeStretch;      // for fermata
-
+      MScore::OrnamentStyle _ornamentStyle; // for use in ornaments such as trill
+      bool _playArticulation;
       virtual void draw(QPainter*) const;
 
    public:
@@ -135,6 +138,12 @@ class Articulation : public Element {
       qreal timeStretch() const             { return _timeStretch; }
       void setTimeStretch(qreal val)        { _timeStretch = val;  }
 
+      MScore::OrnamentStyle ornamentStyle() const { return _ornamentStyle; }
+      void setOrnamentStyle(MScore::OrnamentStyle val) { _ornamentStyle = val; }
+
+      bool playArticulation() const { return _playArticulation;}
+      void setPlayArticulation(bool val) { _playArticulation = val; }
+    
       QString channelName() const           { return _channelName; }
       void setChannelName(const QString& s) { _channelName = s;    }
 
diff --git a/libmscore/barline.cpp b/libmscore/barline.cpp
index 226a026..bc18f4e 100644
--- a/libmscore/barline.cpp
+++ b/libmscore/barline.cpp
@@ -313,8 +313,16 @@ void BarLine::drawDots(QPainter* painter, qreal x) const
             drawSymbol(SymId::repeatDot, painter, QPointF(x, 3.0 * _spatium));
             }
       else if (parent()->type() == Element::Type::SEGMENT) {
-            System* s = static_cast<Segment*>(parent())->measure()->system();
+            System* system = static_cast<Segment*>(parent())->measure()->system();
             int staffIdx1    = staffIdx();
+            // find first visible staff
+            Staff* staff1 = score()->staff(staffIdx1);
+            SysStaff* sysStaff1 = system->staff(staffIdx1);
+            while ( staff1 && sysStaff1 && !(sysStaff1->show() && staff1->show()) ) {
+                  staffIdx1++;
+                  staff1 = score()->staff(staffIdx1);
+                  sysStaff1 = system->staff(staffIdx1);
+                  }
             int staffIdx2    = staffIdx1 + _span - 1;
             int sp = _span;
             if (staffIdx2 >= score()->nstaves()) {
@@ -322,17 +330,20 @@ void BarLine::drawDots(QPainter* painter, qreal x) const
                   staffIdx2 = score()->nstaves() - 1;
                   sp = staffIdx2 - staffIdx1 + 1;
                   }
-            qreal dy  = s->staff(staffIdx1)->y();
+            qreal dy  = sysStaff1->y();
             for (int i = 0; i < sp; ++i) {
                   Staff* staff  = score()->staff(staffIdx1 + i);
-                  StaffType* st = staff->staffType();
-                  qreal doty1   = (st->doty1() + .5) * _spatium;
-                  qreal doty2   = (st->doty2() + .5) * _spatium;
+                  SysStaff* sysStaff = system->staff(staffIdx1 + i);
+                  if (sysStaff->show()) {
+                        StaffType* st = staff->staffType();
+                        qreal doty1   = (st->doty1() + .5) * _spatium;
+                        qreal doty2   = (st->doty2() + .5) * _spatium;
 
-                  qreal staffy  = s->staff(staffIdx1 + i)->y() - dy;
+                        qreal staffy  = sysStaff->y() - dy;
 
-                  drawSymbol(SymId::repeatDot, painter, QPointF(x, staffy + doty1));
-                  drawSymbol(SymId::repeatDot, painter, QPointF(x, staffy + doty2));
+                        drawSymbol(SymId::repeatDot, painter, QPointF(x, staffy + doty1));
+                        drawSymbol(SymId::repeatDot, painter, QPointF(x, staffy + doty2));
+                        }
                   }
             }
       }
@@ -557,7 +568,7 @@ void BarLine::read(XmlReader& e)
                   _span     = e.readInt();
 
                   if (_spanTo == UNKNOWN_BARLINE_TO)
-                        _spanTo = staff() ? (staff()->lines() -1) * _span : 4 * _span;
+                        _spanTo = staff() ? (staff()->lines() - 1) * 2 : 8;
 
                   // WARNING: following statements assume staff and staff bar line spans are correctly set
                   // ws: _spanTo can be UNKNOWN_BARLINE_TO
@@ -737,6 +748,13 @@ void BarLine::endEdit()
       // if bar line belongs to a system (system-initial bar line), edit is local
       if (parent() && parent()->type() == Element::Type::SYSTEM)
             ctrlDrag = true;
+      // for mid-measure barlines, edit is local
+      bool midMeasure = false;
+      if (parent()->type() == Element::Type::SEGMENT
+          && static_cast<Segment*>(parent())->segmentType() == Segment::Type::BarLine) {
+            ctrlDrag = true;
+            midMeasure = true;
+            }
 
       if (ctrlDrag) {                      // if single bar line edit
             ctrlDrag = false;
@@ -747,6 +765,55 @@ void BarLine::endEdit()
             _span             = _origSpan;      // restore original span values
             _spanFrom         = _origSpanFrom;
             _spanTo           = _origSpanTo;
+            // for mid-measure barline in root score, update parts
+            if (midMeasure && score()->parentScore() == nullptr && score()->excerpts().size() > 0) {
+                  int currIdx = staffIdx();
+                  Measure* m = static_cast<Segment*>(parent())->measure();
+                  // change linked barlines as necessary
+                  int lastIdx = currIdx + qMax(_span, newSpan);
+                  for (int idx = currIdx; idx < lastIdx; ++idx) {
+                        Staff* staff = score()->staff(idx);
+                        LinkedStaves* ls = staff->linkedStaves();
+                        if (ls) {
+                              for (Staff* lstaff : ls->staves()) {
+                                    Score* lscore = lstaff->score();
+                                    // don't change barlines in root score
+                                    if (lscore == staff->score())
+                                          continue;
+                                    // change barline only in top staff of part
+                                    if (lstaff != lscore->staff(0))
+                                          continue;
+                                    int spannedStaves = qMax(currIdx + newSpan - idx, 0);
+                                    int lNewSpan = qMin(spannedStaves, lscore->nstaves());
+                                    Measure* lm = lscore->tick2measure(m->tick());
+                                    Segment* lseg = lm->undoGetSegment(Segment::Type::BarLine, tick());
+                                    BarLine* lbl = static_cast<BarLine*>(lseg->element(0));
+                                    if (lbl) {
+                                          // already a barline here
+                                          if (lNewSpan > 0) {
+                                                // keep barline, but update span if necessary
+                                                if (lbl->span() != lNewSpan)
+                                                      lbl->undoChangeProperty(P_ID::BARLINE_SPAN, lNewSpan);
+                                                }
+                                          else {
+                                                // remove barline
+                                                lbl->unlink();
+                                                lbl->score()->undoRemoveElement(lbl);
+                                                }
+                                          }
+                                    else {
+                                          // new barline needed
+                                          lbl = static_cast<BarLine*>(linkedClone());
+                                          lbl->setSpan(lNewSpan);
+                                          lbl->setTrack(lstaff->idx() * VOICES);
+                                          lbl->setScore(lscore);
+                                          lbl->setParent(lseg);
+                                          lscore->undoAddElement(lbl);
+                                          }
+                                    }
+                              }
+                        }
+                  }
             score()->undoChangeSingleBarLineSpan(this, newSpan, newSpanFrom, newSpanTo);
             return;
             }
@@ -763,7 +830,7 @@ void BarLine::endEdit()
                   int idx2 = idx1 + _span;
                   // set span 0 to all additional staves
                   for (int idx = idx1 + 1; idx < idx2; ++idx)
-                        // mensurstrich special case:
+                        // Mensurstrich special case:
                         // if line spans to top line of a stave AND current staff is
                         //    the last spanned staff BUT NOT the last score staff
                         //          keep its bar lines
@@ -777,8 +844,13 @@ void BarLine::endEdit()
                   int idx1 = staffIdx() + _span;
                   int idx2 = staffIdx() + staff()->barLineSpan();
                   // set standard span for each no-longer-spanned staff
-                  for (int idx = idx1; idx < idx2; ++idx)
-                        score()->undoChangeBarLineSpan(score()->staff(idx), 1, 0, (score()->staff(idx)->lines()-1)*2);
+                  for (int idx = idx1; idx < idx2; ++idx) {
+                        Staff* staff = score()->staff(idx);
+                        int lines = staff->lines();
+                        int spanFrom = lines == 1 ? BARLINE_SPAN_1LINESTAFF_FROM : 0;
+                        int spanTo = lines == 1 ? BARLINE_SPAN_1LINESTAFF_TO : (lines - 1) * 2;
+                        score()->undoChangeBarLineSpan(staff, 1, spanFrom, spanTo);
+                        }
                   }
             }
 
@@ -1214,7 +1286,7 @@ void BarLine::updateCustomType()
                   }
             }
       _customSubtype = (_barLineType != refType);
-      updateGenerated(!_customSubtype);         // if _customSubType, _genereated is surely false
+      updateGenerated(!_customSubtype);         // if _customSubType, _generated is surely false
       }
 
 //---------------------------------------------------------
diff --git a/libmscore/beam.cpp b/libmscore/beam.cpp
index f9cdaac..a61e7ef 100644
--- a/libmscore/beam.cpp
+++ b/libmscore/beam.cpp
@@ -142,7 +142,25 @@ QPointF Beam::canvasPos() const
 //   add
 //---------------------------------------------------------
 
-void Beam::add(ChordRest* a)
+void Beam::add(Element* e) {
+      if (e && e->isChordRest())
+            addChordRest(static_cast<ChordRest*>(e));
+      }
+
+//---------------------------------------------------------
+//   remove
+//---------------------------------------------------------
+
+void Beam::remove(Element* e) {
+      if (e && e->isChordRest())
+            removeChordRest(static_cast<ChordRest*>(e));
+      }
+
+//---------------------------------------------------------
+//   addChordRest
+//---------------------------------------------------------
+
+void Beam::addChordRest(ChordRest* a)
       {
       a->setBeam(this);
       if (!_elements.contains(a)) {
@@ -166,10 +184,10 @@ void Beam::add(ChordRest* a)
       }
 
 //---------------------------------------------------------
-//   remove
+//   removeChordRest
 //---------------------------------------------------------
 
-void Beam::remove(ChordRest* a)
+void Beam::removeChordRest(ChordRest* a)
       {
       if (!_elements.removeOne(a))
             qDebug("Beam::remove(): cannot find ChordRest");
@@ -199,11 +217,11 @@ void Beam::draw(QPainter* painter) const
 //   move
 //---------------------------------------------------------
 
-void Beam::move(qreal x, qreal y)
+void Beam::move(const QPointF& offset)
       {
-      Element::move(x, y);
+      Element::move(offset);
       foreach (QLineF* bs, beamSegments)
-            bs->translate(x, y);
+            bs->translate(offset);
       }
 
 //---------------------------------------------------------
@@ -1585,7 +1603,7 @@ void Beam::layout2(QList<ChordRest*>crl, SpannerSegmentType, int frag)
                         else
                               yDownMax = qMax(y, yDownMax);
                         }
-                  qreal slant = _spatium;
+                  qreal slant = hasNoSlope() ? 0 : _spatium;
                   if (crl.front()->up())
                         slant = -slant;
                   py1   = yUpMin + (yDownMax - yUpMin) * .5 - slant * .5;
@@ -1630,7 +1648,7 @@ void Beam::layout2(QList<ChordRest*>crl, SpannerSegmentType, int frag)
                   // loop through chordrests looking for end
                   int c1 = i;
                   ++i;
-                  bool b32, b64;
+                  bool b32 = false, b64 = false;
                   for (; i < n; ++i) {
                         ChordRest* c = crl[i];
                         ChordRest* p = i ? crl[i - 1] : 0;
diff --git a/libmscore/beam.h b/libmscore/beam.h
index fb8af54..e33f0dc 100644
--- a/libmscore/beam.h
+++ b/libmscore/beam.h
@@ -68,11 +68,14 @@ class Beam : public Element {
       void computeStemLen(const QList<ChordRest*>& crl, qreal& py1, int beamLevels);
       bool slopeZero(const QList<ChordRest*>& crl);
       bool hasNoSlope();
+      void addChordRest(ChordRest* a);
+      void removeChordRest(ChordRest* a);
 
    public:
       enum class Mode : signed char {
             AUTO, BEGIN, MID, END, NONE, BEGIN32, BEGIN64, INVALID = -1
             };
+      Q_ENUMS(Mode)
 
       Beam(Score* = 0);
       Beam(const Beam&);
@@ -105,10 +108,10 @@ class Beam : public Element {
       void clear()                        { _elements.clear(); }
       bool isEmpty() const                { return _elements.isEmpty(); }
 
-      void add(ChordRest* a);
-      void remove(ChordRest* a);
+      virtual void add(Element*) override;
+      virtual void remove(Element*) override;
 
-      virtual void move(qreal, qreal) override;
+      virtual void move(const QPointF&) override;
       virtual void draw(QPainter*) const override;
 
       bool up() const                     { return _up; }
@@ -139,6 +142,8 @@ class Beam : public Element {
 
       QPointF beamPos() const;
       void setBeamPos(const QPointF& bp);
+      
+      qreal beamDist() const              { return _beamDist; }
 
       virtual QVariant getProperty(P_ID propertyId) const override;
       virtual bool setProperty(P_ID propertyId, const QVariant&) override;
diff --git a/libmscore/bend.cpp b/libmscore/bend.cpp
index 8d2feec..1be03e8 100644
--- a/libmscore/bend.cpp
+++ b/libmscore/bend.cpp
@@ -38,6 +38,7 @@ Bend::Bend(Score* s)
    : Element(s)
       {
       setFlags(ElementFlag::MOVABLE | ElementFlag::SELECTABLE);
+      setPlayBend(true);
       }
 
 //---------------------------------------------------------
@@ -162,7 +163,7 @@ void Bend::draw(QPainter* painter) const
       {
       QPen pen(curColor(), _lw, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin);
       painter->setPen(pen);
-      painter->setBrush(QBrush(Qt::black));
+      painter->setBrush(QBrush(curColor()));
 
       qreal _spatium = spatium();
       const TextStyle* st = &score()->textStyle(TextStyleType::BENCH);
@@ -179,7 +180,7 @@ void Bend::draw(QPainter* painter) const
       arrowUp << QPointF(0, 0) << QPointF(aw*.5, aw) << QPointF(-aw*.5, aw);
       QPolygonF arrowDown;
       arrowDown << QPointF(0, 0) << QPointF(aw*.5, -aw) << QPointF(-aw*.5, -aw);
-
+      QFontMetrics fm(f);
       for (int pt = 0; pt < n; ++pt) {
             if (pt == (n-1))
                   break;
@@ -189,12 +190,15 @@ void Bend::draw(QPainter* painter) const
                   x2 = x;
                   painter->drawLine(QLineF(x, y, x2, y2));
 
-                  painter->setBrush(QBrush(Qt::black));
-                  painter->drawPolygon(arrowUp.translated(x2, y2 + _spatium * .2));
+                  painter->setBrush(curColor());
+                  painter->drawPolygon(arrowUp.translated(x2, y2));
 
                   int idx = (pitch + 12)/25;
                   const char* l = label[idx];
-                  painter->drawText(QRectF(x2, y2, .0, .0), Qt::AlignVCenter|Qt::TextDontClip, QString(l));
+                  QString s(l);
+                  qreal textWidth = fm.width(s);
+                  qreal textHeight = fm.height();
+                  painter->drawText(QRectF(x2 - textWidth / 2, y2 - textHeight / 2, .0, .0), Qt::AlignVCenter|Qt::TextDontClip, s);
 
                   y = y2;
                   }
@@ -218,8 +222,8 @@ void Bend::draw(QPainter* painter) const
                   painter->setBrush(Qt::NoBrush);
                   painter->drawPath(path);
 
-                  painter->setBrush(QBrush(Qt::black));
-                  painter->drawPolygon(arrowUp.translated(x2, y2 + _spatium * .2));
+                  painter->setBrush(curColor());
+                  painter->drawPolygon(arrowUp.translated(x2, y2 ));
 
                   int idx = (_points[pt+1].pitch + 12)/25;
                   const char* l = label[idx];
@@ -240,8 +244,8 @@ void Bend::draw(QPainter* painter) const
                   painter->setBrush(Qt::NoBrush);
                   painter->drawPath(path);
 
-                  painter->setBrush(QBrush(Qt::black));
-                  painter->drawPolygon(arrowDown.translated(x2, y2 - _spatium * .2));
+                  painter->setBrush(curColor());
+                  painter->drawPolygon(arrowDown.translated(x2, y2));
                   }
             x = x2;
             y = y2;
@@ -259,6 +263,8 @@ void Bend::write(Xml& xml) const
             xml.tagE(QString("point time=\"%1\" pitch=\"%2\" vibrato=\"%3\"")
                .arg(v.time).arg(v.pitch).arg(v.vibrato));
             }
+      writeProperty(xml, P_ID::PLAY);
+      Element::writeProperties(xml);
       xml.etag();
       }
 
@@ -277,10 +283,58 @@ void Bend::read(XmlReader& e)
                   _points.append(pv);
                   e.readNext();
                   }
-            else
+            else if (e.name() == "play") {
+                  setPlayBend(e.readBool());
+                  }
+            else if (!Element::readProperties(e))
                   e.unknown();
             }
       }
 
+//---------------------------------------------------------
+//   getProperty
+//---------------------------------------------------------
+
+QVariant Bend::getProperty(P_ID propertyId) const
+      {
+      switch (propertyId) {
+            case P_ID::PLAY:
+                  return bool(playBend());
+            default:
+                  return Element::getProperty(propertyId);
+            }
+      }
+
+//---------------------------------------------------------
+//   setProperty
+//---------------------------------------------------------
+
+bool Bend::setProperty(P_ID propertyId, const QVariant& v)
+      {
+      switch (propertyId) {
+            case P_ID::PLAY:
+                 setPlayBend(v.toBool());
+                 break;
+            default:
+                  return Element::setProperty(propertyId, v);
+            }
+      score()->setLayoutAll(true);
+      return true;
+      }
+
+//---------------------------------------------------------
+//   propertyDefault
+//---------------------------------------------------------
+
+QVariant Bend::propertyDefault(P_ID propertyId) const
+      {
+      switch (propertyId) {
+            case P_ID::PLAY:
+                  return true;
+            default:
+                  return Element::propertyDefault(propertyId);
+            }
+      }
+
 }
 
diff --git a/libmscore/bend.h b/libmscore/bend.h
index 8632892..5fbbd78 100644
--- a/libmscore/bend.h
+++ b/libmscore/bend.h
@@ -31,6 +31,7 @@ class Bend : public Element {
       qreal _lw;
       QPointF notePos;
       qreal noteWidth;
+      bool _playBend;
 
    public:
       Bend(Score* s);
@@ -43,6 +44,13 @@ class Bend : public Element {
       QList<PitchValue>& points()                { return _points; }
       const QList<PitchValue>& points() const    { return _points; }
       void setPoints(const QList<PitchValue>& p) { _points = p;    }
+      bool playBend() const          { return _playBend; }
+      void setPlayBend(bool v)       { _playBend = v;    }
+
+      // property methods
+      virtual QVariant getProperty(P_ID propertyId) const override;
+      virtual bool setProperty(P_ID propertyId, const QVariant&) override;
+      virtual QVariant propertyDefault(P_ID) const override;
       };
 
 
diff --git a/libmscore/box.cpp b/libmscore/box.cpp
index a8815a8..a4d6536 100644
--- a/libmscore/box.cpp
+++ b/libmscore/box.cpp
@@ -205,6 +205,8 @@ void Box::writeProperties(Xml& xml) const
 void Box::read(XmlReader& e)
       {
       _leftMargin = _rightMargin = _topMargin = _bottomMargin = 0.0;
+      _boxHeight = Spatium(0); // override default set in constructor
+      _boxWidth = Spatium(0);
       bool keepMargins = false;        // whether original margins have to be kept when reading old file
 
       while (e.readNextStartElement()) {
@@ -522,9 +524,9 @@ bool Box::acceptDrop(const DropData& data) const
 Element* Box::drop(const DropData& data)
       {
       Element* e = data.element;
-      if(e->flag(ElementFlag::ON_STAFF))
+      if (e->flag(ElementFlag::ON_STAFF))
             return 0;
-      switch(e->type()) {
+      switch (e->type()) {
             case Element::Type::LAYOUT_BREAK:
                   {
                   LayoutBreak* lb = static_cast<LayoutBreak*>(e);
@@ -540,7 +542,7 @@ Element* Box::drop(const DropData& data)
                               delete lb;
                               break;
                               }
-                        foreach(Element* elem, _el) {
+                        foreach (Element* elem, _el) {
                               if (elem->type() == Element::Type::LAYOUT_BREAK) {
                                     score()->undoChangeElement(elem, e);
                                     break;
@@ -548,11 +550,12 @@ Element* Box::drop(const DropData& data)
                               }
                         break;
                         }
-                  lb->setTrack(-1);       // this are system elements
+                  lb->setTrack(-1);       // these are system elements
                   lb->setParent(this);
                   score()->undoAddElement(lb);
                   return lb;
                   }
+
             case Element::Type::STAFF_TEXT:
                   {
                   Text* text = new Text(score());
@@ -583,10 +586,15 @@ Element* Box::drop(const DropData& data)
                         }
                   break;
 
-            default:
+            case Element::Type::TEXT:
+            case Element::Type::IMAGE:
+            case Element::Type::SYMBOL:
                   e->setParent(this);
                   score()->undoAddElement(e);
                   return e;
+
+            default:
+                  return 0;
             }
       return 0;
       }
diff --git a/libmscore/bsymbol.cpp b/libmscore/bsymbol.cpp
index e17d078..2dd6c86 100644
--- a/libmscore/bsymbol.cpp
+++ b/libmscore/bsymbol.cpp
@@ -13,6 +13,7 @@
 #include "score.h"
 #include "image.h"
 #include "xml.h"
+#include "staff.h"
 
 namespace Ms {
 
@@ -159,6 +160,8 @@ Element* BSymbol::drop(const DropData& data)
 
 void BSymbol::layout()
       {
+      if (staff())
+            setMag(staff()->mag());
       for (Element* e : _leafs)
             e->layout();
       adjustReadPos();
diff --git a/libmscore/chord.cpp b/libmscore/chord.cpp
index 84729ca..768f74c 100644
--- a/libmscore/chord.cpp
+++ b/libmscore/chord.cpp
@@ -502,6 +502,12 @@ void Chord::remove(Element* e)
                               if (note->tieFor()->endNote())
                                     note->tieFor()->endNote()->setTieBack(0);
                               }
+                        for (Spanner* s : note->spannerBack()) {
+                              note->removeSpannerBack(s);
+                              }
+                        for (Spanner* s : note->spannerFor()) {
+                              note->removeSpannerFor(s);
+                              }
                         }
                   else
                         qDebug("Chord::remove() note %p not found!", e);
@@ -805,8 +811,9 @@ void Chord::computeUp()
             // if no stems or stem beside staves
             if (tab->slashStyle() || !tab->stemThrough()) {
                   // if measure has voices, set stem direction according to voice
+                  // reverse the logic if stemsDown (#63561)
                   if (measure()->mstaff(staffIdx())->hasVoices)
-                        _up = !(track() % 2);
+                        _up = !tab->stemsDown() ? !(track() % 2) : (track() % 2);
                   else                          // if only voice 1,
                         _up = !tab->stemsDown();// unconditionally set _up according to TAB stem direction
                   return;                       // (if no stems, _up does not really matter!)
@@ -1214,6 +1221,134 @@ void Chord::setScore(Score* s)
       processSiblings([s] (Element* e) { e->setScore(s); } );
       }
 
+//-----------------------------------------------------------------------------
+//   defaultStemLength
+///   Get the default stem length for this chord
+//-----------------------------------------------------------------------------
+
+qreal Chord::defaultStemLength() {
+      qreal _spatium = spatium();
+      Note* downnote;
+      int dl, ul;
+      qreal stemLen;
+      int hookIdx       = durationType().hooks();
+      downnote          = downNote();
+      ul = upLine();
+      dl = downLine();
+
+      StaffType* tab = 0;
+      if (staff() && staff()->isTabStaff()) {
+            tab = staff()->staffType();
+            // require stems only if TAB is not stemless and this chord has a stem
+            if (!tab->slashStyle() && _stem) {
+                  // if stems are beside staff, apply special formatting
+                  if (!tab->stemThrough()) {
+                        // process stem:
+                        return tab->chordStemLength(this) * _spatium;
+                  }
+            }
+      }
+
+      if (tab && !tab->onLines()) {       // if TAB and frets above strings, move 1 position up
+            --ul;
+            --dl;
+            }
+      bool shortenStem = score()->styleB(StyleIdx::shortenStem);
+      if (hookIdx >= 2 || _tremolo)
+            shortenStem = false;
+
+      Spatium progression(score()->styleS(StyleIdx::shortStemProgression));
+      qreal shortest(score()->styleS(StyleIdx::shortestStem).val());
+
+      qreal normalStemLen = small() ? 2.5 : 3.5;
+      switch(hookIdx) {
+            case 3: normalStemLen += small() ? .5  : 0.75; break; //32nd notes
+            case 4: normalStemLen += small() ? 1.0 : 1.5;  break; //64th notes
+            case 5: normalStemLen += small() ? 1.5 : 2.25; break; //128th notes
+            }
+      if (_hook && tab == 0) {
+            if (up() && durationType().dots()) {
+                  //
+                  // avoid collision of dot with hook
+                  //
+                  if (!(ul & 1))
+                        normalStemLen += .5;
+                  shortenStem = false;
+                  }
+            }
+
+      if (_noteType != NoteType::NORMAL) {
+            // grace notes stems are not subject to normal
+            // stem rules
+            stemLen =  qAbs(ul - dl) * .5;
+            stemLen += normalStemLen * score()->styleD(StyleIdx::graceNoteMag);
+            if (up())
+                  stemLen *= -1;
+            }
+      else {
+            // normal note (not grace)
+            qreal staffHeight = staff() ? (staff()->lines()- 1) : 4;
+            qreal staffHlfHgt = staffHeight * 0.5;
+            if (up()) {                   // stem up
+                  qreal dy  = dl * .5;                      // note-side vert. pos.
+                  qreal sel = ul * .5 - normalStemLen;      // stem end vert. pos
+
+                  // if stem ends above top line (with some exceptions), shorten it
+                  if (shortenStem && (sel < 0.0)
+                              && (hookIdx == 0 || tab || !downnote->mirror()))
+                        sel -= sel  * progression.val();
+                  if (sel > staffHlfHgt)                    // if stem ends below ('>') staff mid position,
+                        sel = staffHlfHgt;                  // stretch it to mid position
+                  stemLen = sel - dy;                       // actual stem length
+                  if (-stemLen < shortest)                  // is stem too short,
+                        stemLen = -shortest;                // lengthen it to shortest possible length
+                  }
+            else {                        // stem down
+                  qreal uy  = ul * .5;                      // note-side vert. pos.
+                  qreal sel = dl * .5 + normalStemLen;      // stem end vert. pos.
+
+                  // if stem ends below bottom line (with some exceptions), shorten it
+                  if (shortenStem && (sel > staffHeight)
+                     && (hookIdx == 0 || tab || downnote->mirror()))
+                        sel -= (sel - staffHeight)  * progression.val();
+                  if (sel < staffHlfHgt)                    // if stem ends above ('<') staff mid position,
+                        sel = staffHlfHgt;                  // stretch it to mid position
+                  stemLen = sel - uy;                       // actual stem length
+                  if (stemLen < shortest)                   // if stem too short,
+                        stemLen = shortest;                 // lengthen it to shortest possible position
+                  }
+            }
+
+      // adjust stem len for tremolo
+      if (_tremolo && !_tremolo->twoNotes()) {
+            // hook up odd lines
+            int tab[2][2][2][4] = {
+                  { { { 0, 0, 0,  1 },  // stem - down - even - lines
+                      { 0, 0, 0,  2 }   // stem - down - odd - lines
+                      },
+                    { { 0, 0, 0, -1 },  // stem - up - even - lines
+                      { 0, 0, 0, -2 }   // stem - up - odd - lines
+                      }
+                    },
+                  { { { 0, 0, 1, 2 },   // hook - down - even - lines
+                      { 0, 0, 1, 2 }    // hook - down - odd - lines
+                      },
+                    { { 0, 0, -1, -2 }, // hook - up - even - lines
+                      { 0, 0, -1, -2 }  // hook - up - odd - lines
+                      }
+                    }
+                  };
+            int odd = (up() ? upLine() : downLine()) & 1;
+            int n = tab[_hook ? 1 : 0][up() ? 1 : 0][odd][_tremolo->lines()-1];
+            stemLen += n * .5;
+            }
+      // scale stemLen according to staff line spacing
+      if (staff())
+            stemLen *= staff()->staffType()->lineDistance().val();
+
+      return stemLen * _spatium;
+}
+
 //---------------------------------------------------------
 //   layoutStem1
 ///   Layout _stem and _stemSlash
@@ -1297,7 +1432,7 @@ void Chord::layoutStem()
       if (staff() && staff()->isTabStaff()) {
             tab = staff()->staffType();
             // require stems only if TAB is not stemless and this chord has a stem
-            if (!tab->slashStyle() && _stem) {
+            if (!tab->slashStyle() && _stem) { // (duplicate code with defaultStemLength())
                   // if stems are beside staff, apply special formatting
                   if (!tab->stemThrough()) {
                         // process stem:
@@ -1306,7 +1441,7 @@ void Chord::layoutStem()
                         int   hookIdx = durationType().hooks();
                         if (!up())
                               hookIdx = -hookIdx;
-                        if (hookIdx) {
+                        if (hookIdx && _hook) {
                               _hook->setHookType(hookIdx);
                               qreal x = _stem->pos().x() + _stem->lineWidth() * .5;;
                               qreal y = _stem->pos().y();
@@ -1337,110 +1472,7 @@ void Chord::layoutStem()
             }
 
       if (_stem) {
-            Note* downnote;
-            int dl, ul;
-            qreal stemLen;
-            int hookIdx       = durationType().hooks();
-            downnote          = downNote();
-            ul = upLine();
-            dl = downLine();
-            if (tab && !tab->onLines()) {       // if TAB and frets above strings, move 1 position up
-                  --ul;
-                  --dl;
-                  }
-            bool shortenStem = score()->styleB(StyleIdx::shortenStem);
-            if (hookIdx >= 2 || _tremolo)
-                  shortenStem = false;
-
-            Spatium progression(score()->styleS(StyleIdx::shortStemProgression));
-            qreal shortest(score()->styleS(StyleIdx::shortestStem).val());
-
-            qreal normalStemLen = small() ? 2.5 : 3.5;
-            switch(hookIdx) {
-                  case 3: normalStemLen += small() ? .5  : 0.75; break; //32nd notes
-                  case 4: normalStemLen += small() ? 1.0 : 1.5;  break; //64th notes
-                  case 5: normalStemLen += small() ? 1.5 : 2.25; break; //128th notes
-                  }
-            if (_hook && tab == 0) {
-                  if (up() && durationType().dots()) {
-                        //
-                        // avoid collision of dot with hook
-                        //
-                        if (!(ul & 1))
-                              normalStemLen += .5;
-                        shortenStem = false;
-                        }
-                  }
-
-            if (_noteType != NoteType::NORMAL) {
-                  // grace notes stems are not subject to normal
-                  // stem rules
-                  stemLen =  qAbs(ul - dl) * .5;
-                  stemLen += normalStemLen * score()->styleD(StyleIdx::graceNoteMag);
-                  if (up())
-                        stemLen *= -1;
-                  }
-            else {
-                  // normal note (not grace)
-                  qreal staffHeight = staff() ? (staff()->lines()- 1) : 4;
-                  qreal staffHlfHgt = staffHeight * 0.5;
-                  if (up()) {                   // stem up
-                        qreal dy  = dl * .5;                      // note-side vert. pos.
-                        qreal sel = ul * .5 - normalStemLen;      // stem end vert. pos
-
-                        // if stem ends above top line (with some exceptions), shorten it
-                        if (shortenStem && (sel < 0.0)
-                                    && (hookIdx == 0 || tab || !downnote->mirror()))
-                              sel -= sel  * progression.val();
-                        if (sel > staffHlfHgt)                    // if stem ends below ('>') staff mid position,
-                              sel = staffHlfHgt;                  // stretch it to mid position
-                        stemLen = sel - dy;                       // actual stem length
-                        if (-stemLen < shortest)                  // is stem too short,
-                              stemLen = -shortest;                // lengthen it to shortest possible length
-                        }
-                  else {                        // stem down
-                        qreal uy  = ul * .5;                      // note-side vert. pos.
-                        qreal sel = dl * .5 + normalStemLen;      // stem end vert. pos.
-
-                        // if stem ends below bottom line (with some exceptions), shorten it
-                        if (shortenStem && (sel > staffHeight)
-                           && (hookIdx == 0 || tab || downnote->mirror()))
-                              sel -= (sel - staffHeight)  * progression.val();
-                        if (sel < staffHlfHgt)                    // if stem ends above ('<') staff mid position,
-                              sel = staffHlfHgt;                  // stretch it to mid position
-                        stemLen = sel - uy;                       // actual stem length
-                        if (stemLen < shortest)                   // if stem too short,
-                              stemLen = shortest;                 // lengthen it to shortest possible position
-                        }
-                  }
-
-            // adjust stem len for tremolo
-            if (_tremolo && !_tremolo->twoNotes()) {
-                  // hook up odd lines
-                  int tab[2][2][2][4] = {
-                        { { { 0, 0, 0,  1 },  // stem - down - even - lines
-                            { 0, 0, 0,  2 }   // stem - down - odd - lines
-                            },
-                          { { 0, 0, 0, -1 },  // stem - up - even - lines
-                            { 0, 0, 0, -2 }   // stem - up - odd - lines
-                            }
-                          },
-                        { { { 0, 0, 1, 2 },   // hook - down - even - lines
-                            { 0, 0, 1, 2 }    // hook - down - odd - lines
-                            },
-                          { { 0, 0, -1, -2 }, // hook - up - even - lines
-                            { 0, 0, -1, -2 }  // hook - up - odd - lines
-                            }
-                          }
-                        };
-                  int odd = (up() ? upLine() : downLine()) & 1;
-                  int n = tab[_hook ? 1 : 0][up() ? 1 : 0][odd][_tremolo->lines()-1];
-                  stemLen += n * .5;
-                  }
-            // scale stemLen according to staff line spacing
-            if (staff())
-                  stemLen *= staff()->staffType()->lineDistance().val();
-           _stem->setLen(stemLen * _spatium);
+           _stem->setLen(defaultStemLength());
             // if (isGrace())
             //      abort();
             if (_hook) {
@@ -2139,9 +2171,10 @@ void Chord::layoutTablature()
       if (segment())
             segment()->setDotPosX(staffIdx(), headWidth);
       // if tab type is stemless or chord is stemless (possible when imported from MusicXML)
+      // or measure is stemless
       // or duration longer than half (if halves have stems) or duration longer than crochet
       // remove stems
-      if (tab->slashStyle() || _noStem || durationType().type() <
+      if (tab->slashStyle() || _noStem || measure()->slashStyle(staffIdx()) || durationType().type() <
          (tab->minimStyle() != TablatureMinimStyle::NONE ? TDuration::DurationType::V_HALF : TDuration::DurationType::V_QUARTER) ) {
             // delete _stem;
             // delete _hook;
@@ -2900,6 +2933,34 @@ void Chord::setSlash(bool flag, bool stemless)
       }
 
 //---------------------------------------------------------
+//   removeMarkings
+//    - this is normally called after cloning a chord to tie a note over the barline
+//    - there is no special undo handling; the assumption is that undo will simply remove the cloned chord
+//    - two note tremolos are converted into simple notes
+//    - single note tremolos are optionally retained
+//---------------------------------------------------------
+
+void Chord::removeMarkings(bool keepTremolo)
+      {
+      if (tremolo() && !keepTremolo)
+            remove(tremolo());
+      if (arpeggio())
+            remove(arpeggio());
+      for (Element* e : el())
+            remove(e);
+      for (Element* e : articulations())
+            remove(e);
+      for (Element* e : lyricsList())
+            remove(e);
+      for (Element* e : graceNotes())
+            remove(e);
+      for (Note* n : notes()) {
+            for (Element* e : n->el())
+                  n->remove(e);
+            }
+      }
+
+//---------------------------------------------------------
 //   mag
 //---------------------------------------------------------
 
@@ -3085,4 +3146,3 @@ QString Chord::accessibleExtraInfo()
       return QString("%1 %2").arg(rez).arg(ChordRest::accessibleExtraInfo());
       }
 }
-
diff --git a/libmscore/chord.h b/libmscore/chord.h
index f58f001..e053db4 100644
--- a/libmscore/chord.h
+++ b/libmscore/chord.h
@@ -50,13 +50,13 @@ enum class PlayEventType : char    {
 ///    Graphic representation of a chord.
 ///    Single notes are handled as degenerated chords.
 //
-//   @P notes       array[Ms::Note]    the list of notes (read only)
-//   @P lyrics      array[Ms::Lyrics]  the list of lyrics (read only)
-//   @P graceNotes  array[Ms::Chord]   the list of grace note chords (read only)
-//   @P stem        Ms::Stem           the stem of the chord if any (read only)
-//   @P hook        Ms::Hook           the hook of the chord if any (read only)
-//   @P beam        Ms::Beam           the beam of the chord if any (read only)
-//   @P stemSlash   Ms::StemSlash      the stem slash of the chord (acciacatura) if any (read only)
+//   @P beam        Beam            the beam of the chord if any (read only)
+//   @P graceNotes  array[Chord]    the list of grace note chords (read only)
+//   @P hook        Hook            the hook of the chord if any (read only)
+//   @P lyrics      array[Lyrics]   the list of lyrics (read only)
+//   @P notes       array[Note]     the list of notes (read only)
+//   @P stem        Stem            the stem of the chord if any (read only)
+//   @P stemSlash   StemSlash       the stem slash of the chord (acciaccatura) if any (read only)
 //---------------------------------------------------------
 
 class Chord : public ChordRest {
@@ -69,12 +69,12 @@ class Chord : public ChordRest {
             bool  accidental;
             };
 
-      Q_PROPERTY(QQmlListProperty<Ms::Note> notes READ qmlNotes)
-      Q_PROPERTY(QQmlListProperty<Ms::Lyrics> lyrics READ qmlLyrics)
+      Q_PROPERTY(Ms::Beam* beam              READ beam)
       Q_PROPERTY(QQmlListProperty<Ms::Chord> graceNotes READ qmlGraceNotes)
       Q_PROPERTY(Ms::Hook* hook              READ hook)
+      Q_PROPERTY(QQmlListProperty<Ms::Lyrics> lyrics READ qmlLyrics)
+      Q_PROPERTY(QQmlListProperty<Ms::Note> notes READ qmlNotes)
       Q_PROPERTY(Ms::Stem* stem              READ stem)
-      Q_PROPERTY(Ms::Beam* beam              READ beam)
       Q_PROPERTY(Ms::StemSlash* stemSlash    READ stemSlash)
 
       QList<Note*>         _notes;       // sorted to decreasing line step
@@ -112,7 +112,7 @@ class Chord : public ChordRest {
       Chord &operator=(const Chord&) = delete;
 
       virtual Chord* clone() const       { return new Chord(*this, false); }
-      virtual Chord* linkedClone()       { return new Chord(*this, true); }
+      virtual Element* linkedClone()     { return new Chord(*this, true); }
       virtual void undoUnlink() override;
 
       virtual void setScore(Score* s);
@@ -129,6 +129,8 @@ class Chord : public ChordRest {
 
       LedgerLine* ledgerLines()                  { return _ledgerLines; }
 
+      qreal defaultStemLength();
+
       void layoutStem1();
       void layoutHook1();     // create hook if required
       void layoutStem();
@@ -160,6 +162,7 @@ class Chord : public ChordRest {
       StemSlash* stemSlash() const           { return _stemSlash; }
       bool slash();
       void setSlash(bool flag, bool stemless);
+      void removeMarkings(bool keepTremolo = false);
 
       const QList<Chord*>& graceNotes() const { return _graceNotes; }
       QList<Chord*>& graceNotes()             { return _graceNotes; }
@@ -178,7 +181,9 @@ class Chord : public ChordRest {
       bool underBeam() const;
       Hook* hook() const                     { return _hook; }
 
+      //@ add an element to the Chord
       Q_INVOKABLE virtual void add(Ms::Element*);
+      //@ remove the element from the Chord
       Q_INVOKABLE virtual void remove(Ms::Element*);
 
       Note* selectedNote() const;
diff --git a/libmscore/chordlist.cpp b/libmscore/chordlist.cpp
index 83ab950..bf7c4e7 100644
--- a/libmscore/chordlist.cpp
+++ b/libmscore/chordlist.cpp
@@ -437,7 +437,7 @@ void ParsedChord::configure(const ChordList* cl)
       lower << "b" << "-" << "dim";
       raise << "#" << "+" << "aug";
       mod1 << "sus" << "alt";
-      mod2 << "sus" << "add" << "no" << "omit";
+      mod2 << "sus" << "add" << "no" << "omit" << "^";
       symbols << "t" << "^" << "-" << "+" << "o" << "0";
       }
 
diff --git a/libmscore/chordrest.cpp b/libmscore/chordrest.cpp
index 47a06e8..bdf9687 100644
--- a/libmscore/chordrest.cpp
+++ b/libmscore/chordrest.cpp
@@ -41,6 +41,7 @@
 #include "harmony.h"
 #include "figuredbass.h"
 #include "icon.h"
+#include "utils.h"
 
 namespace Ms {
 
@@ -158,7 +159,7 @@ void ChordRest::scanElements(void* data, void (*func)(void*, Element*), bool all
             }
       DurationElement* de = this;
       while (de->tuplet() && de->tuplet()->elements().front() == de) {
-            func(data, de->tuplet());
+            de->tuplet()->scanElements(data, func, all);
             de = de->tuplet();
             }
       if (_tabDur)
@@ -251,7 +252,7 @@ bool ChordRest::readProperties(XmlReader& e)
       if (tag == "durationType") {
             setDurationType(e.readElementText());
             if (actualDurationType().type() != TDuration::DurationType::V_MEASURE) {
-                  if ((type() == Element::Type::REST) &&
+                  if (score()->mscVersion() < 112 && (type() == Element::Type::REST) &&
                               // for backward compatibility, convert V_WHOLE rests to V_MEASURE
                               // if long enough to fill a measure.
                               // OTOH, freshly created (un-initialized) rests have numerator == 0 (< 4/4)
@@ -807,6 +808,7 @@ Element* ChordRest::drop(const DropData& data)
                   {
                   BarLine* bl = static_cast<BarLine*>(e);
                   bl->setTrack(staffIdx() * VOICES);
+                  bl->setGenerated(false);
 
                   if (tick() == m->tick())
                         return m->drop(data);
@@ -834,6 +836,10 @@ Element* ChordRest::drop(const DropData& data)
                   score()->cmdInsertClef(static_cast<Clef*>(e), this);
                   break;
 
+            case Element::Type::KEYSIG:
+            case Element::Type::TIMESIG:
+                  return measure()->drop(data);
+
             case Element::Type::TEMPO_TEXT:
                   {
                   TempoText* tt = static_cast<TempoText*>(e);
@@ -881,7 +887,19 @@ Element* ChordRest::drop(const DropData& data)
                   break;
 
             case Element::Type::HARMONY:
-                  static_cast<Harmony*>(e)->render();
+                  {
+                  // transpose
+                  Harmony* harmony = static_cast<Harmony*>(e);
+                  Interval interval = staff()->part()->instrument()->transpose();
+                  if (!score()->styleB(StyleIdx::concertPitch) && !interval.isZero()) {
+                        interval.flip();
+                        int rootTpc = transposeTpc(harmony->rootTpc(), interval, true);
+                        int baseTpc = transposeTpc(harmony->baseTpc(), interval, true);
+                        score()->undoTransposeHarmony(harmony, rootTpc, baseTpc);
+                        }
+                  // render
+                  harmony->render();
+                  }
                   // fall through
             case Element::Type::TEXT:
             case Element::Type::STAFF_TEXT:
@@ -906,7 +924,7 @@ Element* ChordRest::drop(const DropData& data)
                   //f->setTextStyleType(st);
                   if (st >= TextStyleType::DEFAULT && fromPalette)
                         t->textStyle().restyle(MScore::baseStyle()->textStyle(st), score()->textStyle(st));
-                  if (e->type() == Element::Type::REHEARSAL_MARK)
+                  if (e->type() == Element::Type::REHEARSAL_MARK && fromPalette)
                         t->setXmlText(score()->createRehearsalMarkText(static_cast<RehearsalMark*>(e)));
                   }
                   score()->undoAddElement(e);
diff --git a/libmscore/chordrest.h b/libmscore/chordrest.h
index 0146196..a658d61 100644
--- a/libmscore/chordrest.h
+++ b/libmscore/chordrest.h
@@ -41,17 +41,16 @@ class Spanner;
 //   @@ ChordRest
 ///    Virtual base class. Chords and rests can be part of a beam
 //
+//   @P beamMode      enum (Beam.AUTO, .BEGIN, .MID, .END, .NONE, .BEGIN32, .BEGIN64, .INVALID)
 //   @P durationType  int
-//   @P beamMode      Ms::Beam::Mode (AUTO, BEGIN, MID, END, NONE, BEGIN32, BEGIN64, INVALID)
 //   @P small         bool           small chord/rest
 //-------------------------------------------------------------------
 
 class ChordRest : public DurationElement {
       Q_OBJECT
-      Q_PROPERTY(int            durationType  READ durationTypeTicks  WRITE setDurationType)
       Q_PROPERTY(Ms::Beam::Mode beamMode      READ beamMode           WRITE undoSetBeamMode)
+      Q_PROPERTY(int            durationType  READ durationTypeTicks  WRITE setDurationType)
       Q_PROPERTY(bool           small         READ small              WRITE undoSetSmall)
-      Q_ENUMS(Ms::Beam::Mode)
 
       TDuration _durationType;
       int _staffMove;         // -1, 0, +1, used for crossbeaming
diff --git a/libmscore/clef.cpp b/libmscore/clef.cpp
index 44dcf41..6f4ff0d 100644
--- a/libmscore/clef.cpp
+++ b/libmscore/clef.cpp
@@ -54,6 +54,7 @@ const ClefInfo ClefInfo::clefTable[] = {
 { "F15ma","F",         4,  2, 47, { 2, 5, 1, 4, 7, 3, 6, 6, 3, 7, 4, 8, 5, 9 }, QT_TRANSLATE_NOOP("clefTable", "Bass clef 15ma"),         StaffGroup::STANDARD  }, // F_15MA
 { "PERC2","percussion",2,  0, 45, { 0, 3,-1, 2, 5, 1, 4, 4, 1, 5, 2, 6, 3, 7 }, QT_TRANSLATE_NOOP("clefTable", "Percussion"),             StaffGroup::PERCUSSION}, // PERC2 placeholder
 { "TAB2", "TAB",       5,  0,  0, { 0, 3,-1, 2, 5, 1, 4, 4, 1, 5, 2, 6, 3, 7 }, QT_TRANSLATE_NOOP("clefTable", "Tablature2"),             StaffGroup::TAB       },
+{ "G8vbp","G",         2,  0, 45, { 0, 3,-1, 2, 5, 1, 4, 4, 1, 5, 2, 6, 3, 7 }, QT_TRANSLATE_NOOP("clefTable", "Treble clef optional 8vb"),StaffGroup::STANDARD }, // G5
       };
 
 
@@ -185,7 +186,7 @@ void Clef::layout()
                   Measure* meas = clefSeg->measure();
                   showClef =                    // show this clef if:
                         // it is not a courtesy clef (not at the end of the last measure of the system)
-                        (meas != meas->system()->lastMeasure()) || (clefSeg->tick() != meas->endTick())
+                        ((meas->system() && meas != meas->system()->lastMeasure())) || (clefSeg->tick() != meas->endTick())
                         // if courtesy clef: show if score has courtesy clefs on
                         || ( score()->styleB(StyleIdx::genCourtesyClef)
                               // AND measure is not at the end of a repeat or of a section
@@ -316,6 +317,10 @@ void Clef::layout1()
                   symbol->setSym(SymId::fClef15ma);
                   yoff = 1.0 * curLineDist;
                   break;
+            case ClefType::G5:                              // G clef on 2nd line
+                  symbol->setSym(SymId::gClef8vbParens);
+                  yoff = 3.0 * curLineDist;
+                  break;
             case ClefType::INVALID:
             case ClefType::MAX:
                   return;
@@ -343,7 +348,7 @@ void Clef::draw(QPainter* painter) const
             return;
       QColor color(curColor());
       foreach(Element* e, elements) {
-            e->setColor(color);
+            e->setColor(color);           //??
             QPointF pt(e->pos());
             painter->translate(pt);
             e->draw(painter);
diff --git a/libmscore/clef.h b/libmscore/clef.h
index 64598b5..2e0b157 100644
--- a/libmscore/clef.h
+++ b/libmscore/clef.h
@@ -59,6 +59,7 @@ enum class ClefType : signed char {
       F_15MA,
       PERC2,            // no longer supported, but kept for compat. with old scores; rendered as PERC
       TAB2,
+      G5,
       MAX
       };
 
@@ -111,8 +112,8 @@ class ClefInfo {
 //   @@ Clef
 ///    Graphic representation of a clef.
 //
-//   @P showCourtesy  bool
-//   @P small         bool  set by layout (read only)
+//   @P showCourtesy  bool    show/hide courtesy clef when applicable
+//   @P small         bool    small, mid-staff clef (read only, set by layout)
 //---------------------------------------------------------
 
 class Clef : public Element {
diff --git a/libmscore/cmd.cpp b/libmscore/cmd.cpp
index 2cfaf97..4d4a77b 100644
--- a/libmscore/cmd.cpp
+++ b/libmscore/cmd.cpp
@@ -269,47 +269,28 @@ void Score::cmdAddSpanner(Spanner* spanner, const QPointF& pos)
 
       undoAddElement(spanner);
       select(spanner, SelectType::SINGLE, 0);
+      }
 
-      if (spanner->type() == Element::Type::TRILL) {
-            Element* e = segment->element(staffIdx * VOICES);
-            if (e && e->type() == Element::Type::CHORD) {
-                  Chord* chord = static_cast<Chord*>(e);
-                  Fraction l = chord->duration();
-                  // if (chord->notes().size() > 1) {
-                        // trill do not work for chords
-                  //      }
-                  Note* note = chord->upNote();
-                  while (note->tieFor()) {
-                        note = note->tieFor()->endNote();
-                        l += note->chord()->duration();
-                        }
-                  Segment* s = note->chord()->segment();
-                  s = s->next1(Segment::Type::ChordRest);
-                  while (s) {
-                        Element* e = s->element(staffIdx * VOICES);
-                        if (e)
-                              break;
-                        s = s->next1(Segment::Type::ChordRest);
-                        }
-                  if (s) {
-                        for (ScoreElement* e : spanner->linkList())
-                              static_cast<Spanner*>(e)->setTick2(s->tick());
-                        }
-                  Fraction d(1,32);
-                  Fraction e = l / d;
-                  int n = e.numerator() / e.denominator();
-                  QList<NoteEvent*> events;
-                  int pitch  = chord->upNote()->ppitch();
-                  Key key    = chord->staff()->key(segment->tick());
-                  int pitch2 = diatonicUpDown(key, pitch, 1);
-                  int dpitch = pitch2 - pitch;
-                  for (int i = 0; i < n; i += 2) {
-                        events.append(new NoteEvent(0,      i * 1000 / n,    1000/n));
-                        events.append(new NoteEvent(dpitch, (i+1) *1000 / n, 1000/n));
-                        }
-                  undo(new ChangeNoteEvents(chord, events));
-                  }
-            }
+//---------------------------------------------------------
+//   cmdAddSpanner
+//    used when applying a spanner to a selection
+//---------------------------------------------------------
+
+void Score::cmdAddSpanner(Spanner* spanner, int staffIdx, Segment* startSegment, Segment* endSegment)
+      {
+      int track = staffIdx * VOICES;
+      spanner->setTrack(track);
+      spanner->setTrack2(track);
+      spanner->setTick(startSegment->tick());
+      int tick2;
+      if (!endSegment)
+            tick2 = lastSegment()->tick();
+      else if (endSegment == startSegment)
+            tick2 = startSegment->measure()->last()->tick();
+      else
+            tick2 = endSegment->tick();
+      spanner->setTick2(tick2);
+      undoAddElement(spanner);
       }
 
 //---------------------------------------------------------
@@ -525,6 +506,7 @@ Segment* Score::setNoteRest(Segment* segment, int track, NoteVal nval, Fraction
 
                   ChordRest* ncr;
                   Note* note = 0;
+                  Tie* addTie = 0;
                   if (nval.pitch == -1) {
                         nr = ncr = new Rest(this);
                         nr->setTrack(track);
@@ -537,6 +519,7 @@ Segment* Score::setNoteRest(Segment* segment, int track, NoteVal nval, Fraction
                         if (tie) {
                               tie->setEndNote(note);
                               note->setTieBack(tie);
+                              addTie = tie;
                               }
                         Chord* chord = new Chord(this);
                         chord->setTrack(track);
@@ -555,6 +538,8 @@ Segment* Score::setNoteRest(Segment* segment, int track, NoteVal nval, Fraction
                         }
                   ncr->setTuplet(cr ? cr->tuplet() : 0);
                   undoAddCR(ncr, measure, tick);
+                  if (addTie)
+                        undoAddElement(addTie);
                   _playNote = true;
                   segment = ncr->segment();
                   tick += ncr->actualTicks();
@@ -1391,7 +1376,7 @@ void Score::addArticulation(ArticulationType attr)
 ///   notes.
 //---------------------------------------------------------
 
-void Score::changeAccidental(Accidental::Type idx)
+void Score::changeAccidental(AccidentalType idx)
       {
       foreach(Note* note, selection().noteList())
             changeAccidental(note, idx);
@@ -1454,7 +1439,7 @@ static void changeAccidental2(Note* n, int pitch, int tpc)
 ///   note \a note.
 //---------------------------------------------------------
 
-void Score::changeAccidental(Note* note, Accidental::Type accidental)
+void Score::changeAccidental(Note* note, AccidentalType accidental)
       {
       Chord* chord = note->chord();
       if (!chord)
@@ -1478,7 +1463,7 @@ void Score::changeAccidental(Note* note, Accidental::Type accidental)
       // accidental change may result in pitch change
       //
       AccidentalVal acc2 = measure->findAccidental(note);
-      AccidentalVal acc = (accidental == Accidental::Type::NONE) ? acc2 : Accidental::subtype2value(accidental);
+      AccidentalVal acc = (accidental == AccidentalType::NONE) ? acc2 : Accidental::subtype2value(accidental);
 
       int pitch = line2pitch(note->line(), clef, Key::C) + int(acc);
       if (!note->concertPitch())
@@ -1491,13 +1476,13 @@ void Score::changeAccidental(Note* note, Accidental::Type accidental)
 
       // delete accidental
       // both for this note and for any linked notes
-      if (accidental == Accidental::Type::NONE)
+      if (accidental == AccidentalType::NONE)
             forceRemove = true;
 
       // precautionary or microtonal accidental
       // either way, we display it unconditionally
       // both for this note and for any linked notes
-      else if (acc == acc2 || accidental > Accidental::Type::NATURAL)
+      else if (acc == acc2 || accidental > AccidentalType::NATURAL)
             forceAdd = true;
 
       for (ScoreElement* se : note->linkList()) {
@@ -1516,7 +1501,7 @@ void Score::changeAccidental(Note* note, Accidental::Type accidental)
                   Accidental* a = new Accidental(lns);
                   a->setParent(ln);
                   a->setAccidentalType(accidental);
-                  a->setRole(Accidental::Role::USER);
+                  a->setRole(AccidentalRole::USER);
                   lns->undoAddElement(a);
                   }
             changeAccidental2(ln, pitch, tpc);
@@ -1544,6 +1529,7 @@ bool Score::addArticulation(Element* el, Articulation* a)
             return false;
             }
       a->setParent(cr);
+      a->setTrack(cr->track()); // make sure it propagates between score and parts
       undoAddElement(a);
       return true;
       }
@@ -1561,19 +1547,19 @@ void Score::resetUserStretch()
       Segment* s2 = _selection.endSegment();
       // if either segment is not returned by the selection
       // (for instance, no selection) fall back to first/last measure
-      if(!s1)
-            m1 = firstMeasure();
+      if (!s1)
+            m1 = firstMeasureMM();
       else
             m1 = s1->measure();
-      if(!s2)
-            m2 = lastMeasure();
+      if (!s2)
+            m2 = lastMeasureMM();
       else
             m2 = s2->measure();
-      if(!m1 || !m2)                // should not happen!
+      if (!m1 || !m2)               // should not happen!
             return;
 
-      for (Measure* m = m1; m; m = m->nextMeasure()) {
-            undo(new ChangeStretch(m, 1.0));
+      for (Measure* m = m1; m; m = m->nextMeasureMM()) {
+            m->undoChangeProperty(P_ID::USER_STRETCH, 1.0);
             if (m == m2)
                   break;
             }
@@ -1652,7 +1638,9 @@ void Score::cmdAddStretch(qreal val)
                   break;
             qreal stretch = m->userStretch();
             stretch += val;
-            undo(new ChangeStretch(m, stretch));
+            if (stretch < 0)
+                  stretch = 0;
+            m->undoChangeProperty(P_ID::USER_STRETCH, stretch);
             }
       _layoutAll = true;
       }
@@ -1861,9 +1849,16 @@ Element* Score::move(const QString& cmd)
             if (noteEntryMode())
                   _is.moveToNextInputPos();
             el = nextChordRest(cr);
+            if (!el)
+                 el = cr;
             }
       else if (cmd == "prev-chord") {
             if (noteEntryMode() && _is.segment()) {
+                  // when there is no cr at input position for current voice,
+                  // this is a sign that input cursor has advanced into a gap / empty measure
+                  // use selected chord if present,
+                  if (inputState().cr() == nullptr && cr == selection().cr())
+                        el = cr;
                   Segment* s = _is.segment()->prev1();
                   //
                   // if _is._segment is first chord/rest segment in measure
@@ -1886,7 +1881,8 @@ Element* Score::move(const QString& cmd)
                         s = m->first(Segment::Type::ChordRest);
                   _is.moveInputPos(s);
                   }
-            el = prevChordRest(cr);
+            if (!el)
+                  el = prevChordRest(cr);
             }
       else if (cmd == "next-measure") {
             el = nextMeasure(cr);
@@ -2308,15 +2304,15 @@ void Score::cmd(const QAction* a)
       else if (cmd == "beam-32")
             cmdSetBeamMode(Beam::Mode::BEGIN32);
       else if (cmd == "sharp2")
-            changeAccidental(Accidental::Type::SHARP2);
+            changeAccidental(AccidentalType::SHARP2);
       else if (cmd == "sharp")
-            changeAccidental(Accidental::Type::SHARP);
+            changeAccidental(AccidentalType::SHARP);
       else if (cmd == "nat")
-            changeAccidental(Accidental::Type::NATURAL);
+            changeAccidental(AccidentalType::NATURAL);
       else if (cmd == "flat")
-            changeAccidental(Accidental::Type::FLAT);
+            changeAccidental(AccidentalType::FLAT);
       else if (cmd == "flat2")
-            changeAccidental(Accidental::Type::FLAT2);
+            changeAccidental(AccidentalType::FLAT2);
       else if (cmd == "repitch")
             _is.setRepitchMode(a->isChecked());
       else if (cmd == "flip")
@@ -2884,7 +2880,72 @@ void Score::cmdResequenceRehearsalMarks()
             }
 
       if (noSelection)
-             deselectAll();
+            deselectAll();
+      }
+
+//---------------------------------------------------------
+//   addRemoveBreaks
+//---------------------------------------------------------
+
+void Score::addRemoveBreaks(int interval, bool lock)
+      {
+      Segment* startSegment = selection().startSegment();
+      if (!startSegment) // empty score?
+            return;
+      Segment* endSegment   = selection().endSegment();
+      Measure* startMeasure = startSegment->measure();
+      Measure* endMeasure   = endSegment ? endSegment->measure() : lastMeasureMM();
+      Measure* lastMeasure  = lastMeasureMM();
+
+      // loop through measures in selection
+      // count mmrests as a single measure
+      int count = 0;
+      for (Measure* mm = startMeasure; mm; mm = mm->nextMeasureMM()) {
+
+            // even though we are counting mmrests as a single measure,
+            // we need to find last real measure within mmrest for the actual break
+            Measure* m = mm->isMMRest() ? mm->mmRestLast() : mm;
+
+            if (lock) {
+                  // skip last measure of score
+                  if (mm == lastMeasure)
+                        break;
+                  // skip if it already has a break
+                  if (m->lineBreak() || m->pageBreak())
+                        continue;
+                  // add break if last measure of system
+                  if (mm->system() && mm->system()->lastMeasure() == mm)
+                        m->undoSetLineBreak(true);
+                  }
+
+            else {
+                  if (interval == 0) {
+                        // remove line break if present
+                        if (m->lineBreak())
+                              m->undoSetLineBreak(false);
+                        }
+                  else {
+                        if (++count == interval) {
+                              // skip last measure of score
+                              if (mm == lastMeasure)
+                                    break;
+                              // found place for break; add if not already one present
+                              if (!(m->lineBreak() || m->pageBreak()))
+                                    m->undoSetLineBreak(true);
+                              // reset count
+                              count = 0;
+                              }
+                        else if (m->lineBreak()) {
+                              // remove line break if present in wrong place
+                              m->undoSetLineBreak(false);
+                              }
+                        }
+                  }
+
+            if (mm == endMeasure)
+                  break;
+            }
+
       }
 
 }
diff --git a/libmscore/cursor.cpp b/libmscore/cursor.cpp
index 271bc8f..bc7755b 100644
--- a/libmscore/cursor.cpp
+++ b/libmscore/cursor.cpp
@@ -57,14 +57,14 @@ void Cursor::rewind(int type)
             _segment = 0;
             Measure* m = _score->firstMeasure();
             if (m) {
-                  _segment = m->first(Segment::Type::ChordRest);
-                  firstChordRestInTrack();
+                  _segment = m->first(_filter);
+                  nextInTrack();
                   }
             }
       else if (type == 1) {
             _segment  = _score->selection().startSegment();
             _track    = _score->selection().staffStart() * VOICES;
-            firstChordRestInTrack();
+            nextInTrack();
             }
       else if (type == 2) {
             _segment  = _score->selection().endSegment();
@@ -84,8 +84,8 @@ bool Cursor::next()
       {
       if (!_segment)
             return false;
-      _segment = _segment->next1(Segment::Type::ChordRest);
-      firstChordRestInTrack();
+      _segment = _segment->next1(_filter);
+      nextInTrack();
       _score->inputState().setTrack(_track);
       _score->inputState().setSegment(_segment);
       return _segment != 0;
@@ -106,10 +106,10 @@ bool Cursor::nextMeasure()
             _segment = 0;
             return false;
             }
-      _segment = m->first(Segment::Type::ChordRest);
+      _segment = m->first(_filter);
 //      while (seg && seg->element(_track) == 0)
-//            seg = seg->next1(SegChordRest);
-      firstChordRestInTrack();
+//            seg = seg->next1(_filter);
+      nextInTrack();
       return _segment != 0;
       }
 
@@ -137,8 +137,8 @@ void Cursor::add(Element* s)
             int tick = m->tick();
             _score->cmdAddTimeSig(m, _track, static_cast<TimeSig*>(s), false);
             m = _score->tick2measure(tick);
-            _segment = m->first(Segment::Type::ChordRest);
-            firstChordRestInTrack();
+            _segment = m->first(_filter);
+            nextInTrack();
             }
       else if (s->type() == Element::Type::LAYOUT_BREAK) {
             Measure* m = _segment->measure();
@@ -277,10 +277,10 @@ int Cursor::voice() const
 //    go to first segment at or after _segment which has notes / rests in _track
 //---------------------------------------------------------
 
-inline void Cursor::firstChordRestInTrack()
+void Cursor::nextInTrack()
       {
       while (_segment && _segment->element(_track) == 0)
-            _segment = _segment->next1(Segment::Type::ChordRest);
+            _segment = _segment->next1(_filter);
       }
 
 //---------------------------------------------------------
diff --git a/libmscore/cursor.h b/libmscore/cursor.h
index 49f0132..359201c 100644
--- a/libmscore/cursor.h
+++ b/libmscore/cursor.h
@@ -31,20 +31,22 @@ class Measure;
 //   @P track     int           current track
 //   @P staffIdx  int           current staff (track / 4)
 //   @P voice     int           current voice (track % 4)
+//   @P filter    enum          segment type filter
 //   @P element   Ms::Element*  current element at track, read only
 //   @P segment   Ms::Segment*  current segment, read only
 //   @P measure   Ms::Measure*  current measure, read only
 //   @P tick      int           midi tick position, read only
 //   @P time      double        time at tick position, read only
-//   @P keySignature int        key signature of current staff at tick pos. (read only) 
+//   @P keySignature int        key signature of current staff at tick pos. (read only)
 //   @P score     Ms::Score*    associated score
 //---------------------------------------------------------
 
 class Cursor : public QObject {
       Q_OBJECT
-      Q_PROPERTY(int track          READ track         WRITE setTrack)
-      Q_PROPERTY(int staffIdx       READ staffIdx      WRITE setStaffIdx)
-      Q_PROPERTY(int voice          READ voice         WRITE setVoice)
+      Q_PROPERTY(int track      READ track     WRITE setTrack)
+      Q_PROPERTY(int staffIdx   READ staffIdx  WRITE setStaffIdx)
+      Q_PROPERTY(int voice      READ voice     WRITE setVoice)
+      Q_PROPERTY(int filter     READ filter    WRITE setFilter)
 
       Q_PROPERTY(Ms::Element* element READ element)
       Q_PROPERTY(Ms::Segment* segment READ segment)
@@ -61,9 +63,10 @@ class Cursor : public QObject {
 
       //state
       Segment* _segment;
+      Segment::Type _filter { Segment::Type::ChordRest };
 
       // utility methods
-      void firstChordRestInTrack();
+      void nextInTrack();
 
    public:
       Cursor(Score* c = 0);
@@ -81,6 +84,9 @@ class Cursor : public QObject {
       int voice() const;
       void setVoice(int v);
 
+      int filter() const    { return int(_filter); }
+      void setFilter(int f) { _filter = Segment::Type(f); }
+
       Element* element() const;
       Segment* segment() const                { return _segment;  }
       Measure* measure() const;
diff --git a/libmscore/duration.h b/libmscore/duration.h
index 60ecd5d..91634b7 100644
--- a/libmscore/duration.h
+++ b/libmscore/duration.h
@@ -13,6 +13,7 @@
 #ifndef __DURATION_H__
 #define __DURATION_H__
 
+#include "config.h"
 #include "element.h"
 #include "durationtype.h"
 
@@ -30,13 +31,16 @@ class Spanner;
 //---------------------------------------------------------
 
 class DurationElement : public Element {
-      Q_OBJECT
-      Q_PROPERTY(int duration READ durationTicks WRITE setDuration)
-
       Fraction _duration;
       Tuplet* _tuplet;
-      void setDuration(int ticks)         { _duration = Fraction::fromTicks(ticks); }
-      int durationTicks() const           { return _duration.ticks(); }
+
+#ifdef SCRIPT_INTERFACE
+      Q_OBJECT
+      Q_PROPERTY(FractionWrapper* duration READ durationW WRITE setDurationW)
+
+      void setDurationW(FractionWrapper* f)  { _duration = f->fraction(); }
+      FractionWrapper* durationW() const     { return new FractionWrapper(_duration); }
+#endif
 
    public:
       DurationElement(Score* s);
diff --git a/libmscore/dynamic.cpp b/libmscore/dynamic.cpp
index 4614cbc..8083cdb 100644
--- a/libmscore/dynamic.cpp
+++ b/libmscore/dynamic.cpp
@@ -332,21 +332,6 @@ void Dynamic::reset()
       }
 
 //---------------------------------------------------------
-//   dragAnchor
-//---------------------------------------------------------
-
-QLineF Dynamic::dragAnchor() const
-      {
-      qreal xp = 0.0;
-      for (Element* e = parent(); e; e = e->parent())
-            xp += e->x();
-      qreal yp = measure()->system()->staffYpage(staffIdx());
-      QPointF p(xp, yp);
-
-      return QLineF(p, canvasPos());
-      }
-
-//---------------------------------------------------------
 //   drag
 //---------------------------------------------------------
 
diff --git a/libmscore/dynamic.h b/libmscore/dynamic.h
index 0839155..870dafb 100644
--- a/libmscore/dynamic.h
+++ b/libmscore/dynamic.h
@@ -25,7 +25,7 @@ class Segment;
 //   @@ Dynamic
 ///    dynamics marker; determines midi velocity
 //
-//   @P range  Ms::Dynamic::Range (STAFF, PART, SYSTEM)
+//   @P range  enum (Dynamic.STAFF, .PART, .SYSTEM)
 //-----------------------------------------------------------------------------
 
 class Dynamic : public Text {
@@ -108,8 +108,6 @@ class Dynamic : public Text {
       void setDynRange(Range t) { _dynRange = t;    }
       void undoSetDynRange(Range t);
 
-      virtual QLineF dragAnchor() const override;
-
       virtual QVariant getProperty(P_ID propertyId) const override;
       virtual bool     setProperty(P_ID propertyId, const QVariant&) override;
       virtual QVariant propertyDefault(P_ID id) const override;
diff --git a/libmscore/edit.cpp b/libmscore/edit.cpp
index 4159a12..0cc663e 100644
--- a/libmscore/edit.cpp
+++ b/libmscore/edit.cpp
@@ -55,6 +55,7 @@
 #include "bracket.h"
 #include "ottava.h"
 #include "textframe.h"
+#include "accidental.h"
 
 namespace Ms {
 
@@ -916,15 +917,15 @@ void Score::cmdAddPitch(int step, bool addFlag)
 void Score::addPitch(int step, bool addFlag)
       {
       Position pos;
-      pos.segment   = inputState().segment();
-      pos.staffIdx  = inputState().track() / VOICES;
-      ClefType clef = staff(pos.staffIdx)->clef(pos.segment->tick());
-      pos.line      = relStep(step, clef);
-
       if (addFlag) {
             Element* el = selection().element();
             if (el && el->type() == Element::Type::NOTE) {
-                Chord* chord = static_cast<Note*>(el)->chord();
+                  Note* selectedNote = static_cast<Note*>(el);
+                  pos.segment   = selectedNote->chord()->segment();
+                  pos.staffIdx  = selectedNote->track() / VOICES;
+                  ClefType clef = staff(pos.staffIdx)->clef(pos.segment->tick());
+                  pos.line      = relStep(step, clef);
+                  Chord* chord = static_cast<Note*>(el)->chord();
                   bool error;
                   NoteVal nval = noteValForPosition(pos, error);
                   if (error)
@@ -934,7 +935,12 @@ void Score::addPitch(int step, bool addFlag)
                   return;
                   }
             }
-
+      
+      pos.segment   = inputState().segment();
+      pos.staffIdx  = inputState().track() / VOICES;
+      ClefType clef = staff(pos.staffIdx)->clef(pos.segment->tick());
+      pos.line      = relStep(step, clef);
+      
       if (inputState().repitchMode())
             repitchNote(pos, !addFlag);
       else
@@ -1183,7 +1189,10 @@ void Score::putNote(const QPointF& pos, bool replace)
             qDebug("cannot put note here, get position failed");
             return;
             }
-      putNote(p, replace);
+      if (inputState().repitchMode())
+            repitchNote(p, replace);
+      else
+            putNote(p, replace);
       }
 
 void Score::putNote(const Position& p, bool replace)
@@ -1307,9 +1316,18 @@ void Score::repitchNote(const Position& p, bool replace)
             nval.tpc2 = step2tpc(step % 7, acci);
             }
 
+      if (!_is.segment())
+            return;
+
       Chord* chord;
-      if (_is.cr()->type() == Element::Type::REST) { //skip rests
-            ChordRest* next = nextChordRest(_is.cr());
+      ChordRest* cr = _is.cr();
+      if (!cr) {
+            cr = _is.segment()->nextChordRest(_is.track());
+            if (!cr)
+                  return;
+            }
+      if (cr->type() == Element::Type::REST) { //skip rests
+            ChordRest* next = nextChordRest(cr);
             while(next && next->type() != Element::Type::CHORD)
                   next = nextChordRest(next);
             if (next)
@@ -1317,7 +1335,7 @@ void Score::repitchNote(const Position& p, bool replace)
             return;
             }
       else {
-            chord = static_cast<Chord*>(_is.cr());
+            chord = static_cast<Chord*>(cr);
             }
       Note* note = new Note(this);
       note->setParent(chord);
@@ -1494,24 +1512,45 @@ void Score::cmdAddTie()
 
 void Score::cmdAddOttava(Ottava::Type type)
       {
+      Selection sel = selection();
       ChordRest* cr1;
       ChordRest* cr2;
-      getSelectedChordRest2(&cr1, &cr2);
-      if (!cr1)
-            return;
-      if (cr2 == 0)
-            cr2 = cr1;
-
-      Ottava* ottava = new Ottava(this);
-      ottava->setOttavaType(type);
-
-      ottava->setTrack(cr1->track());
-      ottava->setTrack2(cr1->track());
-      ottava->setTick(cr1->tick());
-      ottava->setTick2(cr2->tick() + cr2->actualTicks());
-      undoAddElement(ottava);
-      if (!noteEntryMode())
-            select(ottava, SelectType::SINGLE, 0);
+      // add on each staff if possible
+      if (sel.isRange() && sel.staffStart() != sel.staffEnd() - 1) {
+            for (int staffIdx = sel.staffStart() ; staffIdx < sel.staffEnd(); ++staffIdx) {
+                  ChordRest* cr1 = sel.firstChordRest(staffIdx * VOICES);
+                  ChordRest* cr2 = sel.lastChordRest(staffIdx * VOICES);
+                  if (!cr1)
+                       continue;
+                  if (cr2 == 0)
+                       cr2 = cr1;
+                  Ottava* ottava = new Ottava(this);
+                  ottava->setOttavaType(type);
+                  ottava->setTrack(cr1->track());
+                  ottava->setTrack2(cr1->track());
+                  ottava->setTick(cr1->tick());
+                  ottava->setTick2(cr2->tick() + cr2->actualTicks());
+                  undoAddElement(ottava);
+                  }
+            }
+      else {
+            getSelectedChordRest2(&cr1, &cr2);
+            if (!cr1)
+                  return;
+            if (cr2 == 0)
+                  cr2 = cr1;
+
+            Ottava* ottava = new Ottava(this);
+            ottava->setOttavaType(type);
+
+            ottava->setTrack(cr1->track());
+            ottava->setTrack2(cr1->track());
+            ottava->setTick(cr1->tick());
+            ottava->setTick2(cr2->tick() + cr2->actualTicks());
+            undoAddElement(ottava);
+            if (!noteEntryMode())
+                  select(ottava, SelectType::SINGLE, 0);
+            }
       }
 
 //---------------------------------------------------------
@@ -1723,7 +1762,7 @@ void Score::deleteItem(Element* el)
                   removeChordRest(rm, false);
                   Rest* rest = new Rest(this);
                   rest->setDurationType(TDuration::DurationType::V_MEASURE);
-                  rest->setDuration(rm->measure()->len());
+                  rest->setDuration(rm->measure()->stretchedLen(rm->staff()));
                   rest->setTrack(rm->track());
                   rest->setParent(rm->parent());
                   Segment* segment = rm->segment();
@@ -1749,7 +1788,7 @@ void Score::deleteItem(Element* el)
 
             case Element::Type::ACCIDENTAL:
                   if (el->parent()->type() == Element::Type::NOTE)
-                        changeAccidental(static_cast<Note*>(el->parent()), Accidental::Type::NONE);
+                        changeAccidental(static_cast<Note*>(el->parent()), AccidentalType::NONE);
                   else
                         undoRemoveElement(el);
                   break;
@@ -1912,6 +1951,13 @@ void Score::deleteItem(Element* el)
                   qDebug("cannot remove %s", el->name());
                   break;
 
+            case Element::Type::TEXT:
+                  if (el->parent()->type() == Element::Type::TBOX)
+                        undoChangeProperty(el, P_ID::TEXT, QString());
+                  else
+                        undoRemoveElement(el);
+                  break;
+
             default:
                   undoRemoveElement(el);
                   break;
@@ -2761,7 +2807,8 @@ MeasureBase* Score::insertMeasure(Element::Type type, MeasureBase* measure, bool
 
 void Score::checkSpanner(int startTick, int endTick)
       {
-      QList<Spanner*> sl;
+      QList<Spanner*> sl;     // spanners to remove
+      QList<Spanner*> sl2;    // spanners to shorten
       auto spanners = _spanner.findOverlapping(startTick, endTick);
 // printf("checkSpanner %d %d\n", startTick, endTick);
 //      for (auto i = spanners.begin(); i < spanners.end(); i++) {
@@ -2798,13 +2845,19 @@ void Score::checkSpanner(int startTick, int endTick)
                         }
                   else {
                         if (s->tick2() > lastTick)
-                              s->undoChangeProperty(P_ID::SPANNER_TICKS, lastTick - s->tick());
+                              sl2.append(s);    //s->undoChangeProperty(P_ID::SPANNER_TICKS, lastTick - s->tick());
+                        else
+                              s->computeEndElement();
                         }
-                  s->computeEndElement();
                   }
             }
       for (auto s : sl)       // actually remove scheduled spanners
             undo(new RemoveElement(s));
+      for (auto s : sl2) {    // shorten spanners that extended past end of score
+            undo(new ChangeProperty(s, P_ID::SPANNER_TICKS, lastTick - s->tick()));
+            s->computeEndElement();
+            }
       }
+
 }
 
diff --git a/libmscore/element.cpp b/libmscore/element.cpp
index 4d34594..3f77070 100644
--- a/libmscore/element.cpp
+++ b/libmscore/element.cpp
@@ -101,7 +101,6 @@ static const ElementName elementNames[] = {
       ElementName("BarLine",              QT_TRANSLATE_NOOP("elementName", "Bar Line")),
       ElementName("StemSlash",            QT_TRANSLATE_NOOP("elementName", "Stem Slash")),
       ElementName("Line",                 QT_TRANSLATE_NOOP("elementName", "Line")),
-      ElementName("Bracket",              QT_TRANSLATE_NOOP("elementName", "Bracket")),
 
       ElementName("Arpeggio",             QT_TRANSLATE_NOOP("elementName", "Arpeggio")),
       ElementName("Accidental",           QT_TRANSLATE_NOOP("elementName", "Accidental")),
@@ -166,6 +165,7 @@ static const ElementName elementNames[] = {
       ElementName("NoteLine",             QT_TRANSLATE_NOOP("elementName", "Note Line")),
       ElementName("LyricsLine",           QT_TRANSLATE_NOOP("elementName", "Melisma Line")),
       ElementName("Glissando",            QT_TRANSLATE_NOOP("elementName", "Glissando")),
+      ElementName("Bracket",              QT_TRANSLATE_NOOP("elementName", "Bracket")),
       ElementName("Segment",              QT_TRANSLATE_NOOP("elementName", "Segment")),
       ElementName("System",               QT_TRANSLATE_NOOP("elementName", "System")),
       ElementName("Compound",             QT_TRANSLATE_NOOP("elementName", "Compound")),
@@ -232,7 +232,7 @@ qreal Element::spatium() const
 
 qreal Element::magS() const
       {
-      return mag() * (_score->spatium() /(MScore::DPI * SPATIUM20));
+      return mag() * (_score->spatium() / (MScore::DPI * SPATIUM20));
       }
 
 //---------------------------------------------------------
@@ -656,7 +656,8 @@ void Element::writeProperties(Xml& xml) const
             xml.tag("lid", _links->lid());
       if (!userOff().isNull()) {
             if (type() == Element::Type::VOLTA_SEGMENT
-                        || type() == Element::Type::GLISSANDO_SEGMENT || isChordRest())
+                || type() == Element::Type::GLISSANDO_SEGMENT || isChordRest()
+                || (xml.clipboardmode && isSLineSegment()))
                   xml.tag("offset", userOff() / spatium());
             else
                   xml.tag("pos", pos() / score()->spatium());
@@ -954,7 +955,7 @@ void StaffLines::draw(QPainter* painter) const
 qreal StaffLines::y1() const
       {
       System* system = measure()->system();
-      if (system == 0)
+      if (system == 0 || staffIdx() >= system->staves()->size())
             return 0.0;
 
       return system->staff(staffIdx())->y() + ipos().y();
@@ -1544,7 +1545,16 @@ QVariant Element::propertyDefault(P_ID id) const
 bool Element::isSLine() const
       {
       return type() == Element::Type::HAIRPIN || type() == Element::Type::OTTAVA || type() == Element::Type::PEDAL
-         || type() == Element::Type::TRILL || type() == Element::Type::VOLTA || type() == Element::Type::TEXTLINE || type() == Element::Type::NOTELINE;
+         || type() == Element::Type::TRILL || type() == Element::Type::VOLTA || type() == Element::Type::TEXTLINE || type() == Element::Type::NOTELINE || type() == Element::Type::GLISSANDO;
+      }
+
+//---------------------------------------------------------
+//   isSLine
+//---------------------------------------------------------
+
+bool Element::isSLineSegment() const
+      {
+      return type() == Element::Type::HAIRPIN_SEGMENT || type() == Element::Type::OTTAVA_SEGMENT || type() == Element::Type::PEDAL_SEGMENT || type() == Element::Type::TRILL_SEGMENT || type() == Element::Type::VOLTA_SEGMENT || type() == Element::Type::TEXTLINE_SEGMENT || type() == Element::Type::GLISSANDO_SEGMENT;
       }
 
 //---------------------------------------------------------
@@ -1691,7 +1701,7 @@ void Element::drawSymbol(SymId id, QPainter* p, const QPointF& o, int n) const
       score()->scoreFont()->draw(id, p, magS(), o, n);
       }
 
-void Element::drawSymbols(const QString& s, QPainter* p, const QPointF& o) const
+void Element::drawSymbols(const QList<SymId>& s, QPainter* p, const QPointF& o) const
       {
       score()->scoreFont()->draw(s, p, magS(), o);
       }
@@ -1713,12 +1723,21 @@ qreal Element::symWidth(SymId id) const
       {
       return score()->scoreFont()->width(id, magS());
       }
-qreal Element::symWidth(const QString& s) const
+qreal Element::symWidth(const QList<SymId>& s) const
       {
       return score()->scoreFont()->width(s, magS());
       }
 
 //---------------------------------------------------------
+//   symAdvance
+//---------------------------------------------------------
+
+qreal Element::symAdvance(SymId id) const
+      {
+      return score()->scoreFont()->advance(id, magS());
+      }
+
+//---------------------------------------------------------
 //   symBbox
 //---------------------------------------------------------
 
@@ -1727,18 +1746,27 @@ QRectF Element::symBbox(SymId id) const
       return score()->scoreFont()->bbox(id, magS());
       }
 
-QRectF Element::symBbox(const QString& s) const
+QRectF Element::symBbox(const QList<SymId>& s) const
       {
       return score()->scoreFont()->bbox(s, magS());
       }
 
 //---------------------------------------------------------
-//   symAttach
+//   symStemDownNW
+//---------------------------------------------------------
+
+QPointF Element::symStemDownNW(SymId id) const
+      {
+      return score()->scoreFont()->stemDownNW(id, magS());
+      }
+
+//---------------------------------------------------------
+//   symStemUpSE
 //---------------------------------------------------------
 
-QPointF Element::symAttach(SymId id) const
+QPointF Element::symStemUpSE(SymId id) const
       {
-      return score()->scoreFont()->attach(id, magS());
+      return score()->scoreFont()->stemUpSE(id, magS());
       }
 
 //---------------------------------------------------------
@@ -1778,30 +1806,38 @@ bool Element::symIsValid(SymId id) const
 //   toTimeSigString
 //---------------------------------------------------------
 
-QString Element::toTimeSigString(const QString& s) const
+QList<SymId> Element::toTimeSigString(const QString& s) const
       {
-      QString d;
-      ScoreFont* f = score()->scoreFont();
+      QList<SymId> d;
       for (int i = 0; i < s.size(); ++i) {
-            switch (s[i].toLatin1()) {
-                  case '+': d += f->toString(SymId::timeSigPlusSmall); break;
-                  case '0': d += f->toString(SymId::timeSig0); break;
-                  case '1': d += f->toString(SymId::timeSig1); break;
-                  case '2': d += f->toString(SymId::timeSig2); break;
-                  case '3': d += f->toString(SymId::timeSig3); break;
-                  case '4': d += f->toString(SymId::timeSig4); break;
-                  case '5': d += f->toString(SymId::timeSig5); break;
-                  case '6': d += f->toString(SymId::timeSig6); break;
-                  case '7': d += f->toString(SymId::timeSig7); break;
-                  case '8': d += f->toString(SymId::timeSig8); break;
-                  case '9': d += f->toString(SymId::timeSig9); break;
-                  case 'C': d += f->toString(SymId::timeSigCommon); break;
-                  case 'O': d += f->toString(SymId::mensuralProlation2); break;
-                  case '(': d += f->toString(SymId::timeSigParensLeftSmall); break;
-                  case ')': d += f->toString(SymId::timeSigParensRightSmall); break;
-                  case '\xA2': d += f->toString(SymId::timeSigCutCommon); break;    // '¢'
-                  case '\xD8': d += f->toString(SymId::mensuralProlation3); break;  // 'Ø'
-                  default:  d += s[i]; break;
+            switch (s[i].unicode()) {
+                  case 43: d += SymId::timeSigPlusSmall; break; // '+'
+                  case 48: d += SymId::timeSig0; break;         // '0'
+                  case 49: d += SymId::timeSig1; break;         // '1'
+                  case 50: d += SymId::timeSig2; break;         // '2'
+                  case 51: d += SymId::timeSig3; break;         // '3'
+                  case 52: d += SymId::timeSig4; break;         // '4'
+                  case 53: d += SymId::timeSig5; break;         // '5'
+                  case 54: d += SymId::timeSig6; break;         // '6'
+                  case 55: d += SymId::timeSig7; break;         // '7'
+                  case 56: d += SymId::timeSig8; break;         // '8'
+                  case 57: d += SymId::timeSig9; break;         // '9'
+                  case 67: d += SymId::timeSigCommon; break;    // 'C'
+                  case 40: d += SymId::timeSigParensLeftSmall; break;  // '('
+                  case 41: d += SymId::timeSigParensRightSmall; break; // ')'
+                  case 162: d += SymId::timeSigCutCommon; break;    // '¢'
+                  case 59664: d += SymId::mensuralProlation1; break;
+                  case 79:                                          // 'O'
+                  case 59665: d += SymId::mensuralProlation2; break;
+                  case 216:                                        // 'Ø'
+                  case 59666: d += SymId::mensuralProlation3; break;
+                  case 59667: d += SymId::mensuralProlation4; break;
+                  case 59668: d += SymId::mensuralProlation5; break;
+                  case 59670: d += SymId::mensuralProlation7; break;
+                  case 59671: d += SymId::mensuralProlation8; break;
+                  case 59673: d += SymId::mensuralProlation10; break;
+                  case 59674: d += SymId::mensuralProlation11; break;
+                  default:  break;  // d += s[i]; break;
                   }
             }
       return d;
@@ -1847,7 +1883,7 @@ Element* Element::nextElement()
                         }
                   case Element::Type::MEASURE: {
                         Measure* m = static_cast<Measure*>(p);
-                        return m->nextElement(staffIdx());
+                        return m->nextElementStaff(staffIdx());
                         }
                   case Element::Type::SYSTEM: {
                         System* sys = static_cast<System*>(p);
@@ -1892,7 +1928,7 @@ Element* Element::prevElement()
                         }
                   case Element::Type::MEASURE: {
                         Measure* m = static_cast<Measure*>(p);
-                        return m->prevElement(staffIdx());
+                        return m->prevElementStaff(staffIdx());
                         }
                   case Element::Type::SYSTEM: {
                         System* sys = static_cast<System*>(p);
diff --git a/libmscore/element.h b/libmscore/element.h
index 01875a6..5205592 100644
--- a/libmscore/element.h
+++ b/libmscore/element.h
@@ -44,7 +44,7 @@ enum class SymId;
 //   Grip
 //---------------------------------------------------------
 
-enum class Grip : char {
+enum class Grip : signed char {
       NO_GRIP = -1,
       START = 0, END = 1,                         // arpeggio etc.
           MIDDLE = 2, APERTURE = 3,               // Line
@@ -144,18 +144,18 @@ struct ElementName {
 ///     The Element class is the virtual base class of all
 ///     score layout elements.
 //
-//    @P type       Ms::Element::Type       element type, read only
-//    @P parent     Ms::Element*            parent in drawing hierarchy
-//    @P track      int
-//    @P color      QColor                  foreground color
-//    @P generated  bool                    generated by layout
+//    @P bbox       rect                  bounding box relative to pos and userOff (read only)
+//    @P color      color                 element drawing color
+//    @P generated  bool                  true if the element has been generated by layout
+//    @P pagePos    point                 position in page coordinated (read only)
+//    @P parent     Element               the parent element in drawing hierarchy
+//    @P placement  enum (Element.ABOVE, Element.BELOW)
+//    @P pos        point                 position relative to parent
+//    @P selected   bool                  true if the element is currently selected
+//    @P track      int                   the track the elment belongs to
+//    @P type       enum (Element.ACCIDENTAL, .ACCIDENTAL, .AMBITUS, .ARPEGGIO, .BAGPIPE_EMBELLISHMENT, .BAR_LINE, .BEAM, .BEND, .BRACKET, .BREATH, .CHORD, .CHORDLINE, .CLEF, .COMPOUND, .DYNAMIC, .ELEMENT, .ELEMENT_LIST, .FBOX, .FIGURED_BASS, .FINGERING, .FRET_DIAGRAM, .FSYMBOL, .GLISSANDO, .GLISSANDO_SEGMENT, .HAIRPIN, .HAIRPIN_SEGMENT, .HARMONY, .HBOX, .HOOK, .ICON, .IMAGE, .INSTRUMENT_CHANGE, .INSTRUMENT_NAME, .JUMP, .KEYSIG, .LASSO, .LAYOUT_BREAK, .LEDGER_LINE, .LINE, .LYRICS, .LYRICSLINE, .LYRICSLINE_SEGMENT, .MARKER, .MEASURE, .MEASURE_LIST, .NOTE, .NOTEDOT, .NOTEHEAD, .NOTELINE, .OSSIA, .OTTAVA, .OTTAVA_SEGMENT, .PAGE, .PEDAL, .PEDAL_SEGMENT, .REHEARSAL_MARK, .REPEAT_MEASURE, .REST, .SEGMENT, .SELECTION, .SHADOW_NOTE, .SLUR, .SLUR_SEGMENT, .SPACER, .STAFF_LINES, .STAFF_LIST, .STAFF_STATE, .STAFF_TEXT, .STEM, .STEM_SLASH, .SYMBOL, .SYSTEM, .TAB_DURATION_SYMBOL, .TBOX, .TEMPO_TEXT, .TEXT, .TEXTLINE, .TEXTLINE_SEGMENT, .TIE, .TIMESIG, .TREMOLO, .TREMOLOBAR, .TRILL, .TRILL_SEGMENT, .TUPLET, .VBOX, .VOLTA, .VOLTA_SEGMENT) (read only)
+//    @P userOff    point                 manual offset to position determined by layout
 //    @P visible    bool
-//    @P selected   bool
-//    @P placement  Ms::Element::Placement  (ABOVE, BELOW)
-//    @P pos        QPointF                 position relativ to parent
-//    @P pagePos    QPointF                 position in page coordinated, read only
-//    @P userOff    QPointF                 manual offset to layout position
-//    @P bbox       QRectF                  Bounding box relative to pos and userOff, read only
 //-------------------------------------------------------------------
 
 class Element : public QObject, public ScoreElement {
@@ -202,7 +202,6 @@ class Element : public QObject, public ScoreElement {
             BAR_LINE,
             STEM_SLASH,
             LINE,
-            BRACKET,
 
             ARPEGGIO,
             ACCIDENTAL,
@@ -269,6 +268,8 @@ class Element : public QObject, public ScoreElement {
             NOTELINE,
             LYRICSLINE,
             GLISSANDO,
+            BRACKET,
+
             SEGMENT,
             SYSTEM,
             COMPOUND,
@@ -317,6 +318,7 @@ class Element : public QObject, public ScoreElement {
       Element(const Element&);
       virtual ~Element();
       Element &operator=(const Element&) = delete;
+      //@ create a copy of the element
       Q_INVOKABLE virtual Ms::Element* clone() const = 0;
       virtual Element* linkedClone();
 
@@ -347,7 +349,6 @@ class Element : public QObject, public ScoreElement {
       void setPos(const QPointF& p)           { _pos = p;                }
       qreal& rxpos()                          { return _pos.rx();        }
       qreal& rypos()                          { return _pos.ry();        }
-      virtual void move(qreal xd, qreal yd)   { _pos += QPointF(xd, yd); }
       virtual void move(const QPointF& s)     { _pos += s;               }
 
       virtual QPointF pagePos() const;          ///< position in page coordinates
@@ -404,6 +405,7 @@ class Element : public QObject, public ScoreElement {
 
       bool isDurationElement() const { return isChordRest() || (type() == Element::Type::TUPLET); }
       bool isSLine() const;
+      bool isSLineSegment() const;
 
       virtual void draw(QPainter*) const {}
 
@@ -452,9 +454,12 @@ class Element : public QObject, public ScoreElement {
 
       // debug functions
       virtual void dump() const;
-      Q_INVOKABLE const char* name() const;
-      virtual QString subtypeName() const;
-      virtual QString userName() const;
+      const char* name() const;
+      virtual Q_INVOKABLE QString subtypeName() const;
+      //@ Returns the human-readable name of the element type
+      virtual Q_INVOKABLE QString userName() const;
+      //@ Returns the name of the element type
+      virtual Q_INVOKABLE QString _name() const { return QString(name()); }
       void dumpQPointF(const char*) const;
 
       virtual Space space() const      { return Space(0.0, width()); }
@@ -522,6 +527,7 @@ class Element : public QObject, public ScoreElement {
       void setStartDragPosition(const QPointF& v) { _startDragPosition = v; }
 
       static const char* name(Element::Type type);
+      //@ Creates an element of Type type, belonging to the Score
       Q_INVOKABLE static Ms::Element* create(Ms::Element::Type type, Score*);
       static Element::Type name2type(const QStringRef&);
       static Element* name2Element(const QStringRef&, Score*);
@@ -558,18 +564,20 @@ class Element : public QObject, public ScoreElement {
 
       void drawSymbol(SymId id, QPainter* p, const QPointF& o = QPointF()) const;
       void drawSymbol(SymId id, QPainter* p, const QPointF& o, int n) const;
-      void drawSymbols(const QString&, QPainter* p, const QPointF& o = QPointF()) const;
+      void drawSymbols(const QList<SymId>&, QPainter* p, const QPointF& o = QPointF()) const;
       qreal symHeight(SymId id) const;
       qreal symWidth(SymId id) const;
-      qreal symWidth(const QString&) const;
+      qreal symWidth(const QList<SymId>&) const;
       QRectF symBbox(SymId id) const;
-      QRectF symBbox(const QString&) const;
-      QPointF symAttach(SymId id) const;
+      QRectF symBbox(const QList<SymId>&) const;
+      QPointF symStemDownNW(SymId id) const;
+      QPointF symStemUpSE(SymId id) const;
       QPointF symCutOutNE(SymId id) const;
       QPointF symCutOutNW(SymId id) const;
       QPointF symCutOutSE(SymId id) const;
       QPointF symCutOutSW(SymId id) const;
-      QString toTimeSigString(const QString& s) const;
+      qreal symAdvance(SymId id) const;
+      QList<SymId> toTimeSigString(const QString& s) const;
       bool symIsValid(SymId id) const;
 
       virtual Element* nextElement();  //< Used for navigation
diff --git a/libmscore/excerpt.cpp b/libmscore/excerpt.cpp
index 84df59e..21e13c3 100644
--- a/libmscore/excerpt.cpp
+++ b/libmscore/excerpt.cpp
@@ -39,6 +39,7 @@
 #include "beam.h"
 #include "utils.h"
 #include "tremolo.h"
+#include "barline.h"
 #include "undo.h"
 
 namespace Ms {
@@ -235,22 +236,26 @@ static void cloneSpanner(Spanner* s, Score* score, int dstTrack, int dstTrack2)
 
             ns->setStartElement(0);
             ns->setEndElement(0);
-            for (ScoreElement* e : *cr1->links()) {
-                  ChordRest* cr = static_cast<ChordRest*>(e);
-                  if (cr == cr1)
-                        continue;
-                  if ((cr->score() == score) && (cr->tick() == ns->tick()) && cr->track() == dstTrack) {
-                        ns->setStartElement(cr);
-                        break;
+            if (cr1->links()) {
+                  for (ScoreElement* e : *cr1->links()) {
+                        ChordRest* cr = static_cast<ChordRest*>(e);
+                        if (cr == cr1)
+                              continue;
+                        if ((cr->score() == score) && (cr->tick() == ns->tick()) && cr->track() == dstTrack) {
+                              ns->setStartElement(cr);
+                              break;
+                              }
                         }
                   }
-            for (ScoreElement* e : *cr2->links()) {
-                  ChordRest* cr = static_cast<ChordRest*>(e);
-                  if (cr == cr2)
-                        continue;
-                  if ((cr->score() == score) && (cr->tick() == ns->tick2()) && cr->track() == dstTrack2) {
-                        ns->setEndElement(cr);
-                        break;
+            if (cr2->links()) {
+                  for (ScoreElement* e : *cr2->links()) {
+                        ChordRest* cr = static_cast<ChordRest*>(e);
+                        if (cr == cr2)
+                              continue;
+                        if ((cr->score() == score) && (cr->tick() == ns->tick2()) && cr->track() == dstTrack2) {
+                              ns->setEndElement(cr);
+                              break;
+                              }
                         }
                   }
             if (!ns->startElement())
@@ -393,6 +398,37 @@ void cloneStaves(Score* oscore, Score* score, const QList<int>& map)
                                     continue;
 
                               Element* oe = oseg->element(srcTrack);
+                              int adjustedBarlineSpan = 0;
+                              if (srcTrack % VOICES == 0 && oseg->segmentType() == Segment::Type::BarLine) {
+                                    // mid-measure barline segment
+                                    // may need to clone barline from a previous staff and/or adjust span
+                                    int oIdx = srcTrack / VOICES;
+                                    if (!oe) {
+                                          // no barline on this staff in original score,
+                                          // but check previous staves
+                                          for (int i = oIdx - 1; i >= 0; --i) {
+                                                oe = oseg->element(i * VOICES);
+                                                if (oe)
+                                                      break;
+                                                }
+                                          }
+                                    if (oe) {
+                                          // barline found, now check span
+                                          BarLine* bl = static_cast<BarLine*>(oe);
+                                          int oSpan1 = bl->staff()->idx();
+                                          int oSpan2 = oSpan1 + bl->span();
+                                          if (oSpan1 <= oIdx && oIdx < oSpan2) {
+                                                // this staff is within span
+                                                // calculate adjusted span for excerpt
+                                                int oSpan = oSpan2 - oIdx;
+                                                adjustedBarlineSpan = qMin(oSpan, score->nstaves());
+                                                }
+                                          else {
+                                                // this staff is not within span
+                                                oe = nullptr;
+                                                }
+                                          }
+                                    }
                               if (oe == 0)
                                     continue;
                               Element* ne;
@@ -403,7 +439,11 @@ void cloneStaves(Score* oscore, Score* score, const QList<int>& map)
                               ne->setTrack(track);
                               ne->scanElements(score, localSetScore);   //necessary?
                               ne->setScore(score);
-                              if (oe->isChordRest()) {
+                              if (oe->type() == Element::Type::BAR_LINE && adjustedBarlineSpan) {
+                                    BarLine* nbl = static_cast<BarLine*>(ne);
+                                    nbl->setSpan(adjustedBarlineSpan);
+                                    }
+                              else if (oe->isChordRest()) {
                                     ChordRest* ocr = static_cast<ChordRest*>(oe);
                                     ChordRest* ncr = static_cast<ChordRest*>(ne);
 
@@ -772,7 +812,7 @@ void cloneStaff(Staff* srcStaff, Staff* dstStaff)
 
 //---------------------------------------------------------
 //   cloneStaff2
-//    staves are in different scores
+//    staves are potentially in different scores
 //---------------------------------------------------------
 
 void cloneStaff2(Staff* srcStaff, Staff* dstStaff, int stick, int etick)
@@ -903,5 +943,36 @@ void cloneStaff2(Staff* srcStaff, Staff* dstStaff, int stick, int etick)
             }
       }
 
-}
+QList<Excerpt*> Excerpt::createAllExcerpt(Score *score) {
+      QList<Excerpt*> all;
+      for (Part* part : score->parts()) {
+            if (part->show()) {
+                  Excerpt* e   = new Excerpt(score);
+                  e->parts().append(part);
+                  QString name = createName(part->partName(), all);
+                  e->setTitle(name);
+                  all.append(e);
+                  }
+            }
+      return all;
+      }
+
+QString Excerpt::createName(const QString& partName, QList<Excerpt*> excerptList) {
+      QString n = partName.simplified();
+      QString name;
+      int count = excerptList.count();
+      for (int i = 0;; ++i) {
+            name = i ? QString("%1-%2").arg(n).arg(i) : QString("%1").arg(n);
+            Excerpt* ee = 0;
+            for (int k = 0; k < count; ++k) {
+                  ee = excerptList[k];
+                  if (ee->title() == name)
+                        break;
+                  }
+            if ((ee == 0) || (ee->title() != name))
+                  break;
+            }
+      return name;
+      }
 
+}
diff --git a/libmscore/excerpt.h b/libmscore/excerpt.h
index 480da9a..d6f2d68 100644
--- a/libmscore/excerpt.h
+++ b/libmscore/excerpt.h
@@ -23,8 +23,8 @@ class XmlReader;
 
 //---------------------------------------------------------
 //   @@ Excerpt
-//   @P partScore  Ms::Score  the score object for this part
-//   @P title      QString    the title of this part
+//   @P partScore  Score      the score object for this part
+//   @P title      string     the title of this part
 //---------------------------------------------------------
 
 class Excerpt : public QObject {
@@ -51,6 +51,9 @@ class Excerpt : public QObject {
       bool operator!=(const Excerpt&) const;
       QString title() const           { return _title; }
       void setTitle(const QString& s) { _title = s;    }
+      
+      static QList<Excerpt*> createAllExcerpt(Score* score);
+      static QString createName(const QString& partName, QList<Excerpt*>);
       };
 
 extern void createExcerpt(Excerpt*);
diff --git a/libmscore/figuredbass.h b/libmscore/figuredbass.h
index 0654ec0..ed0d960 100644
--- a/libmscore/figuredbass.h
+++ b/libmscore/figuredbass.h
@@ -64,17 +64,17 @@ and it is edited (via the normalized text); so it is derived from Text.
 //   @@ FiguredBassItem
 ///   One line of a figured bass indication
 //
-//   @P prefix             Ms::FiguredBassItem::Modifier     (NONE, DOUBLEFLAT, FLAT, NATURAL, SHARP, DOUBLESHARP, PLUS, BACKSLASH, SLASH, NUMOF)  accidental before the digit
-//   @P digit              int                               main digit (0 - 9)
-//   @P suffix             Ms::FiguredBassItem::Modifier     (NONE, DOUBLEFLAT, FLAT, NATURAL, SHARP, DOUBLESHARP, PLUS, BACKSLASH, SLASH, NUMOF)  accidental/diacritic after the digit
-//   @P continuationLine   MS::FiguredBassItem::ContLine     (NONE, SIMPLE, EXTENDED)  whether item has continuation line or not, and which
-//   @P parenthesis1       Ms::FiguredBassItem::Parenthesis  (NONE, ROUNDOPEN, ROUNDCLOSED, SQUAREDOPEN, SQUAREDCLOSED)  parentesis before the prefix
-//   @P parenthesis2       Ms::FiguredBassItem::Parenthesis  (NONE, ROUNDOPEN, ROUNDCLOSED, SQUAREDOPEN, SQUAREDCLOSED)  parentesis after the prefix / before the digit
-//   @P parenthesis3       Ms::FiguredBassItem::Parenthesis  (NONE, ROUNDOPEN, ROUNDCLOSED, SQUAREDOPEN, SQUAREDCLOSED)  parentesis after the digit / before the suffix
-//   @P parenthesis4       Ms::FiguredBassItem::Parenthesis  (NONE, ROUNDOPEN, ROUNDCLOSED, SQUAREDOPEN, SQUAREDCLOSED)  parentesis after the suffix / before the cont. line
-//   @P parenthesis5       Ms::FiguredBassItem::Parenthesis  (NONE, ROUNDOPEN, ROUNDCLOSED, SQUAREDOPEN, SQUAREDCLOSED)  parentesis after the cont. line
-//   @P displayText        QString                           text displayed (depends on configured fonts) (read only)
-//   @P normalizedText     Qstring                           conventional textual representation of item properties (= text used during input) (read ony)
+//   @P continuationLine   enum (FiguredBassItem.NONE, .SIMPLE, .EXTENDED)  whether item has continuation line or not, and of which type
+//   @P digit              int                              main digit(s) (0 - 9)
+//   @P displayText        string                           text displayed (depends on configured fonts) (read only)
+//   @P normalizedText     string                           conventional textual representation of item properties (= text used during input) (read ony)
+//   @P parenthesis1       enum (FiguredBassItem.NONE, .ROUNDOPEN, .ROUNDCLOSED, .SQUAREDOPEN, .SQUAREDCLOSED)  parentesis before the prefix
+//   @P parenthesis2       enum (FiguredBassItem.NONE, .ROUNDOPEN, .ROUNDCLOSED, .SQUAREDOPEN, .SQUAREDCLOSED)  parentesis after the prefix / before the digit
+//   @P parenthesis3       enum (FiguredBassItem.NONE, .ROUNDOPEN, .ROUNDCLOSED, .SQUAREDOPEN, .SQUAREDCLOSED)  parentesis after the digit / before the suffix
+//   @P parenthesis4       enum (FiguredBassItem.NONE, .ROUNDOPEN, .ROUNDCLOSED, .SQUAREDOPEN, .SQUAREDCLOSED)  parentesis after the suffix / before the cont. line
+//   @P parenthesis5       enum (FiguredBassItem.NONE, .ROUNDOPEN, .ROUNDCLOSED, .SQUAREDOPEN, .SQUAREDCLOSED)  parentesis after the cont. line
+//   @P prefix             enum (FiguredBassItem.NONE, .DOUBLEFLAT, .FLAT, .NATURAL, .SHARP, .DOUBLESHARP, .PLUS, .BACKSLASH, .SLASH)  accidental before the digit
+//   @P suffix             enum (FiguredBassItem.NONE, .DOUBLEFLAT, .FLAT, .NATURAL, .SHARP, .DOUBLESHARP, .PLUS, .BACKSLASH, .SLASH)  accidental/diacritic after the digit
 //---------------------------------------------------------
 
 class FiguredBass;
@@ -84,17 +84,17 @@ class FiguredBassItem : public Element {
       Q_ENUMS(Modifier)
       Q_ENUMS(Parenthesis)
       Q_ENUMS(ContLine)
-      Q_PROPERTY(Ms::FiguredBassItem::Modifier     prefix            READ prefix       WRITE undoSetPrefix)
-      Q_PROPERTY(int                               digit             READ digit        WRITE undoSetDigit)
-      Q_PROPERTY(Ms::FiguredBassItem::Modifier     suffix            READ suffix       WRITE undoSetSuffix)
       Q_PROPERTY(Ms::FiguredBassItem::ContLine     continuationLine  READ contLine     WRITE undoSetContLine)
+      Q_PROPERTY(int                               digit             READ digit        WRITE undoSetDigit)
+      Q_PROPERTY(QString                           displayText       READ displayText)
+      Q_PROPERTY(QString                           normalizedText    READ normalizedText)
       Q_PROPERTY(Ms::FiguredBassItem::Parenthesis  parenthesis1      READ parenth1     WRITE undoSetParenth1)
       Q_PROPERTY(Ms::FiguredBassItem::Parenthesis  parenthesis2      READ parenth2     WRITE undoSetParenth2)
       Q_PROPERTY(Ms::FiguredBassItem::Parenthesis  parenthesis3      READ parenth3     WRITE undoSetParenth3)
       Q_PROPERTY(Ms::FiguredBassItem::Parenthesis  parenthesis4      READ parenth4     WRITE undoSetParenth4)
       Q_PROPERTY(Ms::FiguredBassItem::Parenthesis  parenthesis5      READ parenth5     WRITE undoSetParenth5)
-      Q_PROPERTY(QString                           displayText       READ displayText)
-      Q_PROPERTY(QString                           normalizedText    READ normalizedText)
+      Q_PROPERTY(Ms::FiguredBassItem::Modifier     prefix            READ prefix       WRITE undoSetPrefix)
+      Q_PROPERTY(Ms::FiguredBassItem::Modifier     suffix            READ suffix       WRITE undoSetSuffix)
 
    public:
       enum class Modifier : char {
diff --git a/libmscore/fraction.h b/libmscore/fraction.h
index 1b33621..754471c 100644
--- a/libmscore/fraction.h
+++ b/libmscore/fraction.h
@@ -77,8 +77,44 @@ class Fraction {
       QString print() const { return QString("%1/%2").arg(_numerator).arg(_denominator); }
       };
 
+#ifdef SCRIPT_INTERFACE
+
+//---------------------------------------------------------
+//   FractionWrapper
+//---------------------------------------------------------
+
+class FractionWrapper : public QObject {
+      Q_OBJECT
+      Q_PROPERTY(int numerator READ numerator)
+      Q_PROPERTY(int denominator READ denominator)
+      Q_PROPERTY(int ticks READ ticks)
+
+      Fraction f;
+
+   public slots:
+      void setFraction(Fraction _f) { f = _f; }
+
+   public:
+      FractionWrapper(const FractionWrapper& w) : QObject() { f = w.f; }
+      FractionWrapper() {}
+      FractionWrapper(const Fraction& _f) : f(_f) {}
+
+      Fraction fraction() const { return f; }
+      int numerator() const   { return f.numerator(); }
+      int denominator() const { return f.denominator(); }
+      int ticks() const       { return f.ticks(); }
+      };
+
+
+#endif // SCRIPT_INTERFACE
+
 }     // namespace Ms
 
 Q_DECLARE_METATYPE(Ms::Fraction);
+
+#ifdef SCRIPT_INTERFACE
+Q_DECLARE_METATYPE(Ms::FractionWrapper);
+#endif
+
 #endif
 
diff --git a/libmscore/fret.cpp b/libmscore/fret.cpp
index ceaa243..5c9c5cd 100644
--- a/libmscore/fret.cpp
+++ b/libmscore/fret.cpp
@@ -106,6 +106,17 @@ QPointF FretDiagram::pagePos() const
 
 QLineF FretDiagram::dragAnchor() const
       {
+      qreal xp = 0.0;
+      for (Element* e = parent(); e; e = e->parent())
+            xp += e->x();
+      qreal yp;
+      if (parent()->type() == Element::Type::SEGMENT)
+            yp = static_cast<Segment*>(parent())->measure()->system()->staffYpage(staffIdx());
+      else
+            yp = parent()->canvasPos().y();
+      QPointF p1(xp, yp);
+      return QLineF(p1, abbox().topLeft());
+#if 0 // TODOxx
       if (parent()->type() == Element::Type::SEGMENT) {
             Segment* s     = static_cast<Segment*>(parent());
             Measure* m     = s->measure();
@@ -116,7 +127,6 @@ QLineF FretDiagram::dragAnchor() const
 
             qreal x  = 0.0;
             qreal y  = 0.0;
-#if 0 // TODOxx
             qreal tw = width();
             qreal th = height();
             if (_align & AlignmentFlags::BOTTOM)
@@ -129,10 +139,10 @@ QLineF FretDiagram::dragAnchor() const
                   x = tw;
             else if (_align & AlignmentFlags::HCENTER)
                   x = (tw * .5);
-#endif
             return QLineF(p1, abbox().topLeft() + QPointF(x, y));
             }
       return QLineF(parent()->pagePos(), abbox().topLeft());
+#endif
       }
 
 //---------------------------------------------------------
diff --git a/libmscore/glissando.cpp b/libmscore/glissando.cpp
index 8ee7949..084502b 100644
--- a/libmscore/glissando.cpp
+++ b/libmscore/glissando.cpp
@@ -32,6 +32,7 @@ NICE-TO-HAVE TODO:
 #include "style.h"
 #include "sym.h"
 #include "xml.h"
+#include "accidental.h"
 
 namespace Ms {
 
@@ -49,6 +50,8 @@ static const qreal      GLISS_PALETTE_HEIGHT          = 4.0;
 
 void GlissandoSegment::layout()
       {
+      if (staff())
+            setMag(staff()->mag());
       QRectF r = QRectF(0.0, 0.0, pos2().x(), pos2().y()).normalized();
       qreal lw = spatium() * glissando()->lineWidth().val() * .5;
       setbbox(r.adjusted(-lw, -lw, lw, lw));
@@ -75,6 +78,7 @@ void GlissandoSegment::draw(QPainter* painter) const
       qreal h     = pos2().y();
       qreal l     = sqrt(w * w + h * h);
       qreal wi = asin(-h / l) * 180.0 / M_PI;
+      qreal scale = painter->worldTransform().m11();
       painter->rotate(-wi);
 
       if (glissando()->glissandoType() == Glissando::Type::STRAIGHT) {
@@ -82,11 +86,17 @@ void GlissandoSegment::draw(QPainter* painter) const
             }
       else if (glissando()->glissandoType() == Glissando::Type::WAVY) {
             QRectF b = symBbox(SymId::wiggleTrill);
-//            qreal h  = symHeight(SymId::wiggleTrill);     // DEBUG
-            qreal w  = symWidth(SymId::wiggleTrill);
+            qreal w  = symAdvance(SymId::wiggleTrill);
             int n    = (int)(l / w);      // always round down (truncate) to avoid overlap
             qreal x  = (l - n*w) * 0.5;   // centre line in available space
-            drawSymbol(SymId::wiggleTrill, painter, QPointF(x, b.height()*.70), n);
+            QList<SymId> ids;
+            for (int i = 0; i < n; ++i)
+                  ids.append(SymId::wiggleTrill);
+            // this is very ugly but fix #68846 for now
+            bool tmp = MScore::pdfPrinting;
+            MScore::pdfPrinting = true;
+            score()->scoreFont()->draw(ids, painter, magS(), QPointF(x, b.height() * .7), scale *2.0);
+            MScore::pdfPrinting = tmp;
             }
       if (glissando()->showText()) {
             const TextStyle& st = score()->textStyle(TextStyleType::GLISSANDO);
@@ -96,7 +106,7 @@ void GlissandoSegment::draw(QPainter* painter) const
             if (r.width() < l) {
                   qreal yOffset = r.height() + r.y();       // find text descender height
                   // raise text slightly above line and slightly more with WAVY than with STRAIGHT
-                  yOffset += _spatium * (glissando()->glissandoType() == Glissando::Type::WAVY ? 0.5 : 0.1);
+                  yOffset += _spatium * (glissando()->glissandoType() == Glissando::Type::WAVY ? 0.8 : 0.1);
                   painter->setFont(f);
                   qreal x = (l - r.width()) * 0.5;
                   painter->drawText(QPointF(x, -yOffset), glissando()->text());
@@ -116,6 +126,8 @@ QVariant GlissandoSegment::getProperty(P_ID id) const
             case P_ID::GLISS_TYPE:
             case P_ID::GLISS_TEXT:
             case P_ID::GLISS_SHOW_TEXT:
+            case P_ID::GLISSANDO_STYLE:
+            case P_ID::PLAY:
                   return glissando()->getProperty(id);
             default:
                   return LineSegment::getProperty(id);
@@ -132,6 +144,8 @@ bool GlissandoSegment::setProperty(P_ID id, const QVariant& v)
             case P_ID::GLISS_TYPE:
             case P_ID::GLISS_TEXT:
             case P_ID::GLISS_SHOW_TEXT:
+            case P_ID::GLISSANDO_STYLE:
+            case P_ID::PLAY:
                   return glissando()->setProperty(id, v);
             default:
                   return LineSegment::setProperty(id, v);
@@ -148,6 +162,8 @@ QVariant GlissandoSegment::propertyDefault(P_ID id) const
       case P_ID::GLISS_TYPE:
       case P_ID::GLISS_TEXT:
       case P_ID::GLISS_SHOW_TEXT:
+      case P_ID::GLISSANDO_STYLE:
+      case P_ID::PLAY:
                   return glissando()->propertyDefault(id);
             default:
                   return LineSegment::propertyDefault(id);
@@ -167,6 +183,8 @@ Glissando::Glissando(Score* s)
       _text          = "gliss.";
       _showText      = true;
       setDiagonal(true);
+      setGlissandoStyle(MScore::GlissandoStyle::CHROMATIC);
+      setPlayGlissando(true);
       setLineWidth(Spatium(GLISS_DEFAULT_LINE_TICKNESS));
       setAnchor(Spanner::Anchor::NOTE);
       }
@@ -175,6 +193,8 @@ Glissando::Glissando(const Glissando& g)
    : SLine(g)
       {
       _glissandoType = g._glissandoType;
+      _glissandoStyle = g._glissandoStyle;
+      _playGlissando = g._playGlissando;
       _text          = g._text;
       _showText      = g._showText;
       }
@@ -366,6 +386,8 @@ void Glissando::write(Xml& xml) const
       if (_showText && !_text.isEmpty())
             xml.tag("text", _text);
       xml.tag("subtype", int(_glissandoType));
+      writeProperty(xml, P_ID::PLAY);
+      writeProperty(xml, P_ID::GLISSANDO_STYLE);
       SLine::writeProperties(xml);
       xml.etag();
       }
@@ -389,6 +411,11 @@ void Glissando::read(XmlReader& e)
                   }
             else if (tag == "subtype")
                   _glissandoType = Type(e.readInt());
+            else if (tag == "glissandoStyle") {
+                setProperty(P_ID::GLISSANDO_STYLE, Ms::getProperty(P_ID::GLISSANDO_STYLE, e));
+            } else if ( tag == "play") {
+                setPlayGlissando(e.readBool());
+            }
             else if (!SLine::readProperties(e))
                   e.unknown();
             }
@@ -715,6 +742,10 @@ QVariant Glissando::getProperty(P_ID propertyId) const
                   return text();
             case P_ID::GLISS_SHOW_TEXT:
                   return showText();
+            case P_ID::GLISSANDO_STYLE:
+                  return int(glissandoStyle());
+            case P_ID::PLAY:
+                  return bool(playGlissando());
             default:
                   break;
             }
@@ -737,6 +768,12 @@ bool Glissando::setProperty(P_ID propertyId, const QVariant& v)
             case P_ID::GLISS_SHOW_TEXT:
                   setShowText(v.toBool());
                   break;
+            case P_ID::GLISSANDO_STYLE:
+                 setGlissandoStyle(MScore::GlissandoStyle(v.toInt()));
+                 break;
+            case P_ID::PLAY:
+                 setPlayGlissando(v.toBool());
+                 break;
             default:
                   if (!SLine::setProperty(propertyId, v))
                         return false;
@@ -759,11 +796,14 @@ QVariant Glissando::propertyDefault(P_ID propertyId) const
                   return "gliss.";
             case P_ID::GLISS_SHOW_TEXT:
                   return true;
+            case P_ID::GLISSANDO_STYLE:
+                  return int(MScore::GlissandoStyle::CHROMATIC);
+            case P_ID::PLAY:
+                  return true;
             default:
                   break;
             }
       return SLine::propertyDefault(propertyId);
       }
-
 }
 
diff --git a/libmscore/glissando.h b/libmscore/glissando.h
index 8ff5d4a..6704a55 100644
--- a/libmscore/glissando.h
+++ b/libmscore/glissando.h
@@ -51,9 +51,9 @@ class GlissandoSegment : public LineSegment {
 
 //---------------------------------------------------------
 //   @@ Glissando
-//   @P glissandoType  Ms::Glissando::Type (STRAIGHT, WAVY)
-//   @P text           QString
+//   @P glissandoType  enum (Glissando.STRAIGHT, Glissando.WAVY)
 //   @P showText       bool
+//   @P text           string
 //---------------------------------------------------------
 
 class Glissando : public SLine {
@@ -73,6 +73,8 @@ class Glissando : public SLine {
       Type _glissandoType;
       QString _text;
       bool _showText;
+      MScore::GlissandoStyle _glissandoStyle;
+      bool _playGlissando;
 
    protected:
       // make glissando non-editable, until proper support is added for anchor selection
@@ -101,6 +103,10 @@ class Glissando : public SLine {
       // Glissando specific methods
       Type glissandoType() const          { return _glissandoType;}
       void setGlissandoType(Type v)       { _glissandoType = v;   }
+      MScore::GlissandoStyle glissandoStyle() const { return _glissandoStyle;}
+      void setGlissandoStyle(MScore::GlissandoStyle s) { _glissandoStyle = s; }
+      bool playGlissando() const          { return _playGlissando;}
+      void setPlayGlissando(bool v)       { _playGlissando = v; }
       QString text() const                { return _text;         }
       void setText(const QString& t)      { _text = t;            }
       bool showText() const               { return _showText;     }
diff --git a/libmscore/hairpin.h b/libmscore/hairpin.h
index 6866d9a..dc57540 100644
--- a/libmscore/hairpin.h
+++ b/libmscore/hairpin.h
@@ -57,9 +57,9 @@ class HairpinSegment : public LineSegment {
 
 //---------------------------------------------------------
 //   @@ Hairpin
-//   @P hairpinType  Ms::Hairpin::Type  (CRESCENDO, DECRESCENDO)
+//   @P dynRange     enum (Dynamic.STAFF, Dynamic.PART, Dynamic.SYSTEM)
+//   @P hairpinType  enum (Hairpin.CRESCENDO, Hairpin.DECRESCENDO)
 //   @P veloChange   int
-//   @P dynRange     Ms::Dynamic::Range (STAFF, PART, SYSTEM)
 //---------------------------------------------------------
 
 class Hairpin : public SLine {
@@ -71,9 +71,9 @@ class Hairpin : public SLine {
       enum class Type : char { CRESCENDO, DECRESCENDO };
 
    private:
+      Q_PROPERTY(Ms::Dynamic::Range dynRange    READ  dynRange    WRITE undoSetDynRange)
       Q_PROPERTY(Ms::Hairpin::Type  hairpinType READ  hairpinType WRITE undoSetHairpinType)
       Q_PROPERTY(int                veloChange  READ  veloChange  WRITE undoSetVeloChange)
-      Q_PROPERTY(Ms::Dynamic::Range dynRange    READ  dynRange    WRITE undoSetDynRange)
 
       bool  _hairpinCircledTip;
       Type _hairpinType;
diff --git a/libmscore/harmony.cpp b/libmscore/harmony.cpp
index 269bc12..b7ab136 100644
--- a/libmscore/harmony.cpp
+++ b/libmscore/harmony.cpp
@@ -1468,24 +1468,6 @@ void Harmony::textStyleChanged()
       }
 
 //---------------------------------------------------------
-//   dragAnchor
-//---------------------------------------------------------
-
-QLineF Harmony::dragAnchor() const
-      {
-      qreal xp = 0.0;
-      for (Element* e = parent(); e; e = e->parent())
-            xp += e->x();
-      qreal yp;
-      if (parent()->type() == Element::Type::SEGMENT)
-            yp = static_cast<Segment*>(parent())->measure()->system()->staffYpage(staffIdx());
-      else
-            yp = parent()->canvasPos().y();
-      QPointF p(xp, yp);
-      return QLineF(p, canvasPos());
-      }
-
-//---------------------------------------------------------
 //   extensionName
 //---------------------------------------------------------
 
diff --git a/libmscore/harmony.h b/libmscore/harmony.h
index a412a77..23a45d2 100644
--- a/libmscore/harmony.h
+++ b/libmscore/harmony.h
@@ -44,21 +44,20 @@ struct TextSegment {
 
 //---------------------------------------------------------
 //   @@ Harmony
-///    root note and bass note are notated as
-///    "tonal pitch class":
-///
-///           bb   b   -   #  ##
-///            0,  7, 14, 21, 28,  // C
-///            2,  9, 16, 23, 30,  // D
-///            4, 11, 18, 25, 32,  // E
-///           -1,  6, 13, 20, 27,  // F
-///            1,  8, 15, 22, 29,  // G
-///            3, 10, 17, 24, 31,  // A
-///            5, 12, 19, 26, 33,  // B
+///    root note and bass note are notated as "tonal pitch class":
+///   <table>
+///         <tr><td> </td><td>bb</td><td> b</td><td> -</td><td> #</td><td>##</td></tr>
+///         <tr><td>C</td>     <td> 0</td><td> 7</td><td>14</td><td>21</td><td>28</td></tr>
+///         <tr><td>D</td>     <td> 2</td><td> 9</td><td>16</td><td>23</td><td>30</td></tr>
+///         <tr><td>E</td>     <td> 4</td><td>11</td><td>18</td><td>25</td><td>32</td></tr>
+///         <tr><td>F</td>     <td>-1</td><td> 6</td><td>13</td><td>20</td><td>27</td></tr>
+///         <tr><td>G</td>     <td> 1</td><td> 8</td><td>15</td><td>22</td><td>29</td></tr>
+///         <tr><td>A</td>     <td> 3</td><td>10</td><td>17</td><td>24</td><td>31</td></tr>
+///         <tr><td>B</td>     <td> 5</td><td>12</td><td>19</td><td>26</td><td>33</td></tr></table>
 //
-//   @P id int        harmony identifier
-//   @P rootTpc  int  root note as "tonal pitch class"
-//   @P baseTpc  int  bass note as "tonal pitch class"
+//   @P baseTpc   int   bass note as "tonal pitch class"
+//   @P id        int   harmony identifier
+//   @P rootTpc   int   root note as "tonal pitch class"
 //---------------------------------------------------------
 
 struct RenderAction;
@@ -66,9 +65,9 @@ class HDegree;
 
 class Harmony : public Text {
       Q_OBJECT
+      Q_PROPERTY(int baseTpc  READ baseTpc  WRITE setBaseTpc)
       Q_PROPERTY(int id  READ id  WRITE setId)
       Q_PROPERTY(int rootTpc  READ rootTpc  WRITE setRootTpc)
-      Q_PROPERTY(int baseTpc  READ baseTpc  WRITE setBaseTpc)
 
       int _rootTpc;                       // root note for chord
       int _baseTpc;                       // bass note or chord base; used for "slash" chords
@@ -177,7 +176,6 @@ class Harmony : public Text {
       virtual void spatiumChanged(qreal oldValue, qreal newValue) override;
       virtual void localSpatiumChanged(qreal oldValue, qreal newValue) override;
       virtual void textStyleChanged() override;
-      virtual QLineF dragAnchor() const override;
       void setHarmony(const QString& s);
       virtual QPainterPath shape() const override;
       void calculateBoundingRect();
diff --git a/libmscore/hook.cpp b/libmscore/hook.cpp
index a7a0e14..c66d3b1 100644
--- a/libmscore/hook.cpp
+++ b/libmscore/hook.cpp
@@ -26,6 +26,7 @@ Hook::Hook(Score* s)
   : Symbol(s)
       {
       setFlag(ElementFlag::MOVABLE, false);
+      setZ(int(type()) * 100);
       }
 
 //---------------------------------------------------------
diff --git a/libmscore/image.cpp b/libmscore/image.cpp
index 81df717..63ff57e 100644
--- a/libmscore/image.cpp
+++ b/libmscore/image.cpp
@@ -35,6 +35,7 @@ Image::Image(Score* s)
    : BSymbol(s)
       {
       imageType        = ImageType::NONE;
+      rasterDoc        = 0;
       _size            = QSizeF(0, 0);
       _storeItem       = 0;
       _dirty           = false;
@@ -64,9 +65,9 @@ Image::Image(const Image& img)
       _linkPath        = img._linkPath;
       _linkIsValid     = img._linkIsValid;
       if (imageType == ImageType::RASTER)
-            rasterDoc = new QImage(*img.rasterDoc);
+            rasterDoc = img.rasterDoc ? new QImage(*img.rasterDoc) : 0;
       else if (imageType == ImageType::SVG)
-            svgDoc = new QSvgRenderer(img.svgDoc);
+            svgDoc = img.svgDoc ? new QSvgRenderer(img.svgDoc) : 0;
       setZ(img.z());
       }
 
diff --git a/libmscore/instrchange.cpp b/libmscore/instrchange.cpp
index dea6147..e4330ca 100644
--- a/libmscore/instrchange.cpp
+++ b/libmscore/instrchange.cpp
@@ -18,6 +18,8 @@
 #include "undo.h"
 #include "mscore.h"
 #include "xml.h"
+#include "measure.h"
+#include "system.h"
 
 namespace Ms {
 
@@ -123,5 +125,36 @@ bool InstrumentChange::setProperty(P_ID propertyId, const QVariant& v)
             }
       return true;
       }
+
+//---------------------------------------------------------
+//   drag
+//---------------------------------------------------------
+
+QRectF InstrumentChange::drag(EditData* ed)
+      {
+      QRectF f = Element::drag(ed);
+
+      //
+      // move anchor
+      //
+      Qt::KeyboardModifiers km = qApp->keyboardModifiers();
+      if (km != (Qt::ShiftModifier | Qt::ControlModifier)) {
+            int si;
+            Segment* seg = 0;
+            if (_score->pos2measure(ed->pos, &si, 0, &seg, 0) == nullptr)
+                  return f;
+            if (seg && (seg != segment() || staffIdx() != si)) {
+                  QPointF pos1(canvasPos());
+                  score()->undo(new ChangeParent(this, seg, si));
+                  setUserOff(QPointF());
+                  layout();
+                  QPointF pos2(canvasPos());
+                  setUserOff(pos1 - pos2);
+                  ed->startMove = pos2;
+                  }
+            }
+      return f;
+      }
+
 }
 
diff --git a/libmscore/instrchange.h b/libmscore/instrchange.h
index 26042d0..bad5840 100644
--- a/libmscore/instrchange.h
+++ b/libmscore/instrchange.h
@@ -45,6 +45,8 @@ class InstrumentChange : public Text  {
 
       Segment* segment() const                { return (Segment*)parent(); }
 
+      virtual QRectF drag(EditData*) override;
+
       virtual QVariant getProperty(P_ID propertyId) const override;
       virtual bool setProperty(P_ID propertyId, const QVariant&) override;
       virtual QVariant propertyDefault(P_ID) const override;
diff --git a/libmscore/jump.h b/libmscore/jump.h
index c51d344..7b5009f 100644
--- a/libmscore/jump.h
+++ b/libmscore/jump.h
@@ -21,19 +21,20 @@ namespace Ms {
 //   @@ Jump
 ///    Jump label
 //
-//   @P jumpTo      QString
-//   @P playUntil   QString
-//   @P continueAt  QString
-//   @P jumpType    Ms::Jump::Type (DC, DC_AL_FINE, DC_AL_CODA, DS_AL_CODA, DS_AL_FINE, DS, USER) (read only)
+//   @P continueAt  string
+//   @P jumpTo      string
+// not used?
+//      jumpType    enum (Jump.DC, .DC_AL_FINE, .DC_AL_CODA, .DS_AL_CODA, .DS_AL_FINE, .DS, USER) (read only)
+//   @P playUntil   string
 //---------------------------------------------------------
 
 
 class Jump : public Text {
       Q_OBJECT
 
+      Q_PROPERTY(QString continueAt  READ continueAt  WRITE undoSetContinueAt)
       Q_PROPERTY(QString jumpTo      READ jumpTo      WRITE undoSetJumpTo)
       Q_PROPERTY(QString playUntil   READ playUntil   WRITE undoSetPlayUntil)
-      Q_PROPERTY(QString continueAt  READ continueAt  WRITE undoSetContinueAt)
       //Q_Property(Ms::Jump::Type      READ jumpType)
       //Q_ENUMS(Type)
 
diff --git a/libmscore/key.cpp b/libmscore/key.cpp
index c130c3b..4aaaf9c 100644
--- a/libmscore/key.cpp
+++ b/libmscore/key.cpp
@@ -26,6 +26,7 @@ namespace Ms {
 KeySigEvent::KeySigEvent(const KeySigEvent& k)
       {
       _key        = k._key;
+      _mode       = k._mode;
       _custom     = k._custom;
       _keySymbols = k._keySymbols;
       }
@@ -61,7 +62,9 @@ void KeySigEvent::print() const
       if (!isValid())
             qDebug("invalid>");
       else {
-            if (custom())
+            if (isAtonal())
+                  qDebug("atonal>");
+            else if (custom())
                   qDebug("custom>");
             else
                   qDebug("accidental %d>", int(_key));
@@ -85,9 +88,9 @@ void KeySigEvent::setKey(Key v)
 
 bool KeySigEvent::operator==(const KeySigEvent& e) const
       {
-      if (e._custom != _custom)
+      if (e._custom != _custom || e._mode != _mode)
             return false;
-      if (_custom) {
+      if (_custom && !isAtonal()) {
             if (e._keySymbols.size() != _keySymbols.size())
                   return false;
             for (int i = 0; i < _keySymbols.size(); ++i) {
diff --git a/libmscore/key.h b/libmscore/key.h
index b05f6bb..9c495e5 100644
--- a/libmscore/key.h
+++ b/libmscore/key.h
@@ -35,6 +35,11 @@ enum class Key {
       DELTA_ENHARMONIC = 12
       };
 
+enum class KeyMode {
+      UNKNOWN = -1,
+      NONE, MAJOR, MINOR
+      };
+
 static inline bool operator<  (Key a, Key b) { return int(a) < int(b); }
 static inline bool operator>  (Key a, Key b) { return int(a) > int(b); }
 static inline bool operator>  (Key a, int b) { return int(a) > b; }
@@ -63,6 +68,7 @@ struct KeySym {
 
 class KeySigEvent {
       Key _key            { Key::INVALID };          // -7 -> +7
+      KeyMode _mode       { KeyMode::UNKNOWN };
       bool _custom        { false };
       QList<KeySym> _keySymbols;
 
@@ -78,9 +84,12 @@ class KeySigEvent {
       void print() const;
 
       Key key() const            { return _key;                    }
+      KeyMode mode() const       { return _mode;                   }
+      void setMode(KeyMode m)    { _mode = m;                      }
       bool custom() const        { return _custom;                 }
       void setCustom(bool val)   { _custom = val; _key = Key::C;   }
       bool isValid() const       { return _key != Key::INVALID;    }
+      bool isAtonal() const      { return _mode == KeyMode::NONE;  }
       void initFromSubtype(int);    // for backward compatibility
       void initLineList(char*);
       QList<KeySym>& keySymbols()             { return _keySymbols; }
diff --git a/libmscore/keysig.cpp b/libmscore/keysig.cpp
index 6427cb7..3a51b03 100644
--- a/libmscore/keysig.cpp
+++ b/libmscore/keysig.cpp
@@ -91,7 +91,7 @@ void KeySig::layout()
       qreal _spatium = spatium();
       setbbox(QRectF());
 
-      if (isCustom()) {
+      if (isCustom() && !isAtonal()) {
             for (KeySym& ks: _sig.keySymbols()) {
                   ks.pos = ks.spos * _spatium;
                   addbbox(symBbox(ks.sym).translated(ks.pos));
@@ -252,8 +252,8 @@ void KeySig::draw(QPainter* p) const
       p->setPen(curColor());
       for (const KeySym& ks: _sig.keySymbols())
             drawSymbol(ks.sym, p, QPointF(ks.pos.x(), ks.pos.y()));
-      if (!parent() && isCustom() && _sig.keySymbols().isEmpty()) {
-            // atonal key signature - draw something for palette
+      if (!parent() && (isAtonal() || isCustom()) && _sig.keySymbols().isEmpty()) {
+            // empty custom or atonal key signature - draw something for palette
             p->setPen(Qt::gray);
             drawSymbol(SymId::timeSigX, p, QPointF(symWidth(SymId::timeSigX) * -0.5, 2.0 * spatium()));
             }
@@ -322,7 +322,10 @@ void KeySig::write(Xml& xml) const
       {
       xml.stag(name());
       Element::writeProperties(xml);
-      if (_sig.custom()) {
+      if (_sig.isAtonal()) {
+            xml.tag("custom", 1);
+            }
+      else if (_sig.custom()) {
             xml.tag("custom", 1);
             for (const KeySym& ks : _sig.keySymbols()) {
                   xml.stag("KeySym");
@@ -334,6 +337,14 @@ void KeySig::write(Xml& xml) const
       else {
             xml.tag("accidental", int(_sig.key()));
             }
+      switch (_sig.mode()) {
+            case KeyMode::NONE:     xml.tag("mode", "none"); break;
+            case KeyMode::MAJOR:    xml.tag("mode", "major"); break;
+            case KeyMode::MINOR:    xml.tag("mode", "minor"); break;
+            case KeyMode::UNKNOWN:
+            default:
+                  ;
+            }
       if (!_showCourtesy)
             xml.tag("showCourtesySig", _showCourtesy);
       xml.etag();
@@ -387,13 +398,27 @@ void KeySig::read(XmlReader& e)
                   e.readInt();
                   _sig.setCustom(true);
                   }
+            else if (tag == "mode") {
+                  QString m(e.readElementText());
+                  if (m == "none")
+                        _sig.setMode(KeyMode::NONE);
+                  else if (m == "major")
+                        _sig.setMode(KeyMode::MAJOR);
+                  else if (m == "minor")
+                        _sig.setMode(KeyMode::MINOR);
+                  else
+                        _sig.setMode(KeyMode::UNKNOWN);
+                  }
             else if (tag == "subtype")
                   subtype = e.readInt();
             else if (!Element::readProperties(e))
                   e.unknown();
             }
+      // for backward compatibility
       if (!_sig.isValid())
-            _sig.initFromSubtype(subtype);     // for backward compatibility
+            _sig.initFromSubtype(subtype);
+      if (_sig.custom() && _sig.keySymbols().isEmpty())
+            _sig.setMode(KeyMode::NONE);
       }
 
 //---------------------------------------------------------
@@ -551,12 +576,10 @@ Element* KeySig::prevElement()
 QString KeySig::accessibleInfo()
       {
       QString keySigType;
-      if (isCustom()) {
-            if (keySigEvent().keySymbols().isEmpty())
-                  return QString("%1: %2").arg(Element::accessibleInfo()).arg(qApp->translate("MuseScore", keyNames[15]));
-            else
-                  return tr("%1: Custom").arg(Element::accessibleInfo());
-            }
+      if (isAtonal())
+            return QString("%1: %2").arg(Element::accessibleInfo()).arg(qApp->translate("MuseScore", keyNames[15]));
+      else if (isCustom())
+            return tr("%1: Custom").arg(Element::accessibleInfo());
 
       if (key() == Key::C)
             return QString("%1: %2").arg(Element::accessibleInfo()).arg(qApp->translate("MuseScore", keyNames[14]));
diff --git a/libmscore/keysig.h b/libmscore/keysig.h
index ee12441..eb8c8ae 100644
--- a/libmscore/keysig.h
+++ b/libmscore/keysig.h
@@ -50,6 +50,7 @@ class KeySig : public Element {
       virtual void layout() override;
       virtual qreal mag() const override;
 
+      //@ sets the key of the key signature
       Q_INVOKABLE void setKey(Key);
 
       Segment* segment() const            { return (Segment*)parent(); }
@@ -57,9 +58,10 @@ class KeySig : public Element {
       Space space() const;
       virtual void write(Xml&) const override;
       virtual void read(XmlReader&) override;
-      //@ -7 (flats) -- +7 (sharps)
+      //@ returns the key of the key signature (from -7 (flats) to +7 (sharps) )
       Q_INVOKABLE Key key() const         { return _sig.key(); }
       bool isCustom() const               { return _sig.custom(); }
+      bool isAtonal() const               { return _sig.isAtonal(); }
       KeySigEvent keySigEvent() const     { return _sig; }
       bool operator==(const KeySig&) const;
       void changeKeySigEvent(const KeySigEvent&);
diff --git a/libmscore/layout.cpp b/libmscore/layout.cpp
index 4888cbe..14854e9 100644
--- a/libmscore/layout.cpp
+++ b/libmscore/layout.cpp
@@ -1663,7 +1663,7 @@ void Score::addSystemHeader(Measure* m, bool isFirstSystem)
             bool needKeysig =        // keep key sigs in TABs: TABs themselves should hide them
                isFirstSystem || styleB(StyleIdx::genKeysig);
 
-            if (needKeysig && !keysig && ((keyIdx.key() != Key::C) || keyIdx.custom())) {
+            if (needKeysig && !keysig && ((keyIdx.key() != Key::C) || keyIdx.custom() || keyIdx.isAtonal())) {
                   //
                   // create missing key signature
                   //
@@ -1676,7 +1676,7 @@ void Score::addSystemHeader(Measure* m, bool isFirstSystem)
                   keysig->layout();
                   undo(new AddElement(keysig));
                   }
-            else if (!needKeysig && keysig)
+            else if (!needKeysig && keysig && keysig->generated())
                   undoRemoveElement(keysig);
             else if (keysig && !(keysig->keySigEvent() == keyIdx))
                   undo(new ChangeKeySig(keysig, keyIdx, keysig->showCourtesy()));
@@ -2187,7 +2187,7 @@ bool Score::layoutSystem(qreal& minWidth, qreal systemWidth, bool isFirstSystem,
             xo = point(static_cast<Box*>(curMeasure)->boxWidth());
 
       system->setInstrumentNames(longName);
-      system->layout(xo);
+      system->layoutSystem(xo);
 
       qreal minMeasureWidth = point(styleS(StyleIdx::minMeasureWidth));
       minWidth              = system->leftMargin();
@@ -2263,6 +2263,8 @@ bool Score::layoutSystem(qreal& minWidth, qreal systemWidth, bool isFirstSystem,
                               }
                         }
                   qreal stretch = m->userStretch() * measureSpacing;
+                  if (stretch < 1.0)
+                        stretch = 1.0;
                   ww            *= stretch;
                   cautionaryW   = cautionaryWidth(m, hasCourtesy) * stretch;
 
@@ -2452,7 +2454,7 @@ bool Score::layoutSystem1(qreal& minWidth, bool isFirstSystem, bool longName)
             xo = point(static_cast<Box*>(curMeasure)->boxWidth());
 
       system->setInstrumentNames(longName);
-      system->layout(xo);
+      system->layoutSystem(xo);
 
       qreal minMeasureWidth = point(styleS(StyleIdx::minMeasureWidth));
       minWidth              = system->leftMargin();
@@ -2498,7 +2500,10 @@ bool Score::layoutSystem1(qreal& minWidth, bool isFirstSystem, bool longName)
                   else
                         ww = m->minWidth1();
 
-                  ww *= m->userStretch() * styleD(StyleIdx::measureSpacing);
+                  qreal stretch = m->userStretch() * styleD(StyleIdx::measureSpacing);
+                  if (stretch < 1.0)
+                        stretch = 1.0;
+                  ww *= stretch;
                   if (ww < minMeasureWidth)
                         ww = minMeasureWidth;
                   isFirstMeasure = false;
@@ -2545,6 +2550,7 @@ bool Score::layoutSystem1(qreal& minWidth, bool isFirstSystem, bool longName)
 
 void Score::removeGeneratedElements(Measure* sm, Measure* em)
       {
+      Measure* sectionStart = sm;
       for (Measure* m = sm; m; m = m->nextMeasureMM()) {
             //
             // remove generated elements from all measures in [sm;em]
@@ -2552,6 +2558,8 @@ void Score::removeGeneratedElements(Measure* sm, Measure* em)
             //    - do not remove end bar lines
             //    - set size of clefs to small
             //
+            if (m->sectionBreak() && m->nextMeasureMM())
+                  sectionStart = m->nextMeasureMM();
             for (Segment* seg = m->first(); seg; seg = seg->next()) {
                   Segment::Type st = seg->segmentType();
                   if (st == Segment::Type::EndBarLine)
@@ -2569,9 +2577,9 @@ void Score::removeGeneratedElements(Measure* sm, Measure* em)
                               continue;
 
                         // courtesy time sigs and key sigs: remove if not in last measure (generated or not!)
-                        // clefs & keysig: remove if generated and not at beginning of first measure
+                        // clefs & keysig: remove if generated and not at beginning of first measure of a section
                         if ( ((st == Segment::Type::TimeSigAnnounce || st == Segment::Type::KeySigAnnounce) && m != em)
-                              || ((el->type() == Element::Type::CLEF || el->type() == Element::Type::KEYSIG) && el->generated() && seg->tick() != sm->tick())
+                              || ((el->type() == Element::Type::CLEF || el->type() == Element::Type::KEYSIG) && el->generated() && seg->tick() != sectionStart->tick())
                         )
                               {
                               undoRemoveElement(el);
@@ -2659,9 +2667,8 @@ void Score::connectTies(bool silent)
                                     }
                               }
                         // connect a glissando without initial note (old glissando format)
-                        for (Spanner* spanner : n->spannerBack())
-                              if (spanner->type() == Element::Type::GLISSANDO
-                                          && spanner->startElement() == nullptr) {
+                        for (Spanner* spanner : n->spannerBack()) {
+                              if (spanner->type() == Element::Type::GLISSANDO && spanner->startElement() == nullptr) {
                                     Note* initialNote = Glissando::guessInitialNote(n->chord());
                                     n->removeSpannerBack(spanner);
                                     if (initialNote != nullptr) {
@@ -2674,9 +2681,18 @@ void Score::connectTies(bool silent)
                                           spanner->setParent(initialNote);
                                           initialNote->add(spanner);
                                           }
-                                    else
+                                    else {
                                           delete spanner;
+                                          }
+                                    }
+                              }
+                        // spanner with no end element can happen during copy/paste
+                        for (Spanner* spanner : n->spannerFor()) {
+                              if (spanner->endElement() == nullptr) {
+                                    n->removeSpannerFor(spanner);
+                                    delete spanner;
                                     }
+                              }
                         }
                   // connect two note tremolos
                   Tremolo* tremolo = c->tremolo();
@@ -2690,6 +2706,11 @@ void Score::connectTies(bool silent)
                               else {
                                     nc->setTremolo(tremolo);
                                     tremolo->setChords(c, nc);
+                                    // cross-measure tremolos are not supported
+                                    // but can accidentally result from copy & paste
+                                    // remove them now
+                                    if (c->measure() != nc->measure())
+                                          c->remove(tremolo);
                                     }
                               break;
                               }
@@ -2779,16 +2800,29 @@ QList<System*> Score::layoutSystemRow(qreal rowWidth, bool isFirstSystem, bool u
 
       qreal ww = rowWidth;
       qreal minWidth;
+      bool firstInRow = true;
       for (bool a = true; a;) {
             a = layoutSystem(minWidth, ww, isFirstSystem, useLongName);
-            sl.append(_systems[curSystem]);
-            ++curSystem;
-            ww -= minWidth;
+            if ((0.0 < minWidth && minWidth <= ww) || firstInRow) {
+                  // system fits on this row, or we need to take it anyhow
+                  sl.append(_systems[curSystem]);
+                  ++curSystem;
+                  ww -= minWidth;
+                  }
+            else {
+                  // system does not fit on this row, and we don't need it to
+                  // reset to add to next row
+                  if (curMeasure)
+                        curMeasure = curMeasure->prev();
+                  else
+                        curMeasure = lastMeasure();
+                  }
+            firstInRow = false;
             }
       //
-      // dont stretch last system row, if minWidth is <= lastSystemFillLimit
+      // dont stretch last system row, if accumulated minWidth is <= lastSystemFillLimit
       //
-      if (curMeasure == 0 && ((minWidth / rowWidth) <= styleD(StyleIdx::lastSystemFillLimit)))
+      if (curMeasure == 0 && (((rowWidth - ww) / rowWidth) <= styleD(StyleIdx::lastSystemFillLimit)))
             raggedRight = true;
 
       //-------------------------------------------------------
@@ -2974,7 +3008,7 @@ QList<System*> Score::layoutSystemRow(qreal rowWidth, bool isFirstSystem, bool u
                   if (mb->type() == Element::Type::HBOX)
                         minWidth += point(((Box*)mb)->boxWidth());
                   else if (mb->type() == Element::Type::MEASURE) {
-                        Measure* m = (Measure*)mb;
+                        Measure* m = static_cast<Measure*>(mb);
                         if (needRelayout)
                               m->setDirty();
                         minWidth    += m->minWidth2();
@@ -2983,6 +3017,20 @@ QList<System*> Score::layoutSystemRow(qreal rowWidth, bool isFirstSystem, bool u
                   }
             minWidth += system->leftMargin();
             }
+      bool zeroStretch;
+      if (totalWeight < 0.01) {
+            zeroStretch = true;
+            foreach(System* system, sl) {
+                  foreach (MeasureBase* mb, system->measures()) {
+                        if (mb->type() == Element::Type::MEASURE) {
+                              Measure* m = static_cast<Measure*>(mb);
+                              totalWeight += m->ticks();
+                              }
+                        }
+                  }
+            }
+      else
+            zeroStretch = false;
 
       // stretch incomplete row
       qreal rest;
@@ -3014,9 +3062,9 @@ QList<System*> Score::layoutSystemRow(qreal rowWidth, bool isFirstSystem, bool u
                               }
                         mb->setPos(pos);
                         Measure* m    = static_cast<Measure*>(mb);
-                        qreal weight = m->ticks() * m->userStretch();
+                        qreal weight = m->ticks() * (zeroStretch ? 1.0 : m->userStretch());
                         ww           = m->minWidth2() + rest * weight;
-                        m->layout(ww);
+                        m->layoutWidth(ww);
                         }
                   else if (mb->type() == Element::Type::HBOX) {
                         mb->setPos(pos);
@@ -3127,16 +3175,15 @@ void Score::layoutLinear()
                   xo += point(static_cast<Box*>(m)->boxWidth());
             }
 
-      system->layout(xo);
+      system->layoutSystem(xo);
       system->setPos(0.0, spatium() * 10.0);
       curPage = 0;
       Page* page = getEmptyPage();
       page->appendSystem(system);
 
       for (MeasureBase* mb = first(); mb; mb = mb->next()) {
-            Element::Type t = curMeasure->type();
+            Element::Type t = mb->type();
             if (t == Element::Type::VBOX || t == Element::Type::TBOX || t == Element::Type::FBOX) {
-                  curMeasure = curMeasure->next();
                   continue;
                   }
             if (styleB(StyleIdx::createMultiMeasureRests) && mb->type() == Element::Type::MEASURE) {
@@ -3150,6 +3197,11 @@ void Score::layoutLinear()
       if (system->measures().isEmpty())
             return;
       addSystemHeader(firstMeasureMM(), true);
+      // also add a system header after a section break
+      for (Measure* m = firstMeasureMM(); m; m = m->nextMeasureMM()) {
+            if (m->sectionBreak() && m->nextMeasureMM())
+                  addSystemHeader(m->nextMeasureMM(), true);
+            }
       removeGeneratedElements(firstMeasureMM(), lastMeasureMM());
 
       QPointF pos(0.0, 0.0);
@@ -3187,7 +3239,7 @@ void Score::layoutLinear()
                   qreal minMeasureWidth = point(styleS(StyleIdx::minMeasureWidth));
                   if (w < minMeasureWidth)
                         w = minMeasureWidth;
-                  m->layout(w);
+                  m->layoutWidth(w);
                   isFirstMeasure = false;
                   }
             else {
@@ -3201,7 +3253,7 @@ void Score::layoutLinear()
       system->setWidth(pos.x());
       page->setWidth(pos.x());
       system->layout2();
-      page->setHeight(system->height() + 12 * spatium());
+      page->setHeight(system->height() + 20 * spatium());
 
       while (_pages.size() > 1)
             _pages.takeLast();
@@ -3473,7 +3525,7 @@ void Score::layoutPage(const PageContext& pC, qreal d)
                   int n = page->systems()->size();
                   for (int i = 0; i < n; ++i) {
                         System* system = page->systems()->at(i);
-                        system->move(0, y);
+                        system->move(QPointF(0.0, y));
                         }
                   }
             return;
@@ -3560,7 +3612,7 @@ void Score::layoutPage(const PageContext& pC, qreal d)
       qreal y = 0.0;
 
       for (System* system : *page->systems()) {
-            system->move(0, y);
+            system->move(QPointF(0.0, y));
             if (system->addStretch())
                   y += system->stretchDistance();
             }
@@ -3917,8 +3969,8 @@ qreal Score::computeMinWidth(Segment* fs, bool firstMeasureInSystem)
                               }
                         if ((segType == Segment::Type::Clef) && (pt != Segment::Type::ChordRest))
                               minDistance = styleP(StyleIdx::clefLeftMargin);
-                        else if (segType == Segment::Type::StartRepeatBarLine)
-                              minDistance = .5 * _spatium;
+                        else if (segType == Segment::Type::StartRepeatBarLine && pSeg)
+                              minDistance = .5 * _spatium;  // TODO: make style parameter
                         else if (segType == Segment::Type::TimeSig && pt == Segment::Type::Clef) {
                               // missing key signature, but allocate default margin anyhow
                               minDistance = styleP(StyleIdx::keysigLeftMargin);
@@ -3958,16 +4010,15 @@ qreal Score::computeMinWidth(Segment* fs, bool firstMeasureInSystem)
                         rest2[staffIdx] = true;
 
                   // space chord symbols separately from segments
-                  if (hFound || eFound) {
+                  if (hFound || spaceHarmony) {
                         qreal sp = 0.0;
 
                         // space chord symbols unless they miss each other vertically
-                        if (eFound || (hFound && hBbox.top() < hLastBbox[staffIdx].bottom() && hBbox.bottom() > hLastBbox[staffIdx].top()))
+                        if (hFound && hBbox.top() < hLastBbox[staffIdx].bottom() && hBbox.bottom() > hLastBbox[staffIdx].top())
                               sp = hRest[staffIdx] + minHarmonyDistance + hSpace.lw();
-
                         // barline: limit space to maxHarmonyBarDistance
-                        if (eFound && !hFound && spaceHarmony)
-                              sp = qMin(sp, maxHarmonyBarDistance);
+                        else if (spaceHarmony)
+                              sp = qMin(hRest[staffIdx], maxHarmonyBarDistance);
 
                         hLastBbox[staffIdx] = hBbox;
                         hRest[staffIdx] = hSpace.rw();
diff --git a/libmscore/layoutbreak.h b/libmscore/layoutbreak.h
index 5e6c467..469ac2a 100644
--- a/libmscore/layoutbreak.h
+++ b/libmscore/layoutbreak.h
@@ -25,7 +25,7 @@ namespace Ms {
 //   @@ LayoutBreak
 ///    symbols for line break, page break etc.
 //
-//   @P layoutBreakType  Ms::LayoutBreak::Type  (PAGE, LINE, SECTION)
+//   @P layoutBreakType  enum (LayoutBreak.PAGE, LayoutBreak.LINE, LayoutBreak.SECTION)
 //---------------------------------------------------------
 
 class LayoutBreak : public Element {
diff --git a/libmscore/line.cpp b/libmscore/line.cpp
index 62e9d2a..180f01b 100644
--- a/libmscore/line.cpp
+++ b/libmscore/line.cpp
@@ -472,14 +472,15 @@ QPointF SLine::linePos(Grip grip, System** sys) const
                   ChordRest* cr;
                   if (grip == Grip::START) {
                         cr = static_cast<ChordRest*>(startElement());
-                        if (cr) {
+                        if (cr && type() == Element::Type::OTTAVA) {
                               // some sources say to center the text over the note head
-                              // some say to start the text just to left of notehead
-                              // our simple compromise - left align
-                              if (cr->durationType() == TDuration::DurationType::V_MEASURE && type() == Element::Type::OTTAVA)
-                                    x = cr->x();                  // center for measure rests
+                              // others say to start the text just to left of notehead
+                              // some say to include accidental, others don't
+                              // our compromise - left align, but account for accidental
+                              if (cr->durationType() == TDuration::DurationType::V_MEASURE)
+                                    x = cr->x();            // center for measure rests
                               else if (cr->space().lw() > 0.0)
-                                    x = -cr->space().lw();        // account for accidentals, etc
+                                    x = -cr->space().lw();  // account for accidentals, etc
                               }
                         }
                   else {
@@ -658,6 +659,8 @@ QPointF SLine::linePos(Grip grip, System** sys) const
 //                  System* s = static_cast<Note*>(startElement())->chord()->segment()->system();
 //                  *sys = s;
                   Element* e = grip == Grip::START ? startElement() : endElement();
+                  if (!e)
+                        return QPointF();
                   System* s = static_cast<Note*>(e)->chord()->segment()->system();
                   *sys = s;
                   // for GLISSANDO returns the position of the anchor note relative to the system
diff --git a/libmscore/lyrics.cpp b/libmscore/lyrics.cpp
index 7cff1b2..c8435fa 100644
--- a/libmscore/lyrics.cpp
+++ b/libmscore/lyrics.cpp
@@ -311,7 +311,7 @@ void Lyrics::layout1()
       // 2) at least one other character (indicating start of actual lyric)
       // 3) string of non-word characters at end of syllable
       //QRegularExpression leadingPattern("(^[\\d\\W]+)([^\\d\\W]+)");
-      QRegularExpression punctuationPattern("(^[\\d\\W]*)([^\\d\\W].*?)([\\d\\W]*$)");
+      QRegularExpression punctuationPattern("(^[\\d\\W]*)([^\\d\\W].*?)([\\d\\W]*$)", QRegularExpression::UseUnicodePropertiesOption);
       QRegularExpressionMatch punctuationMatch = punctuationPattern.match(s);
       if (punctuationMatch.hasMatch()) {
             // leading and trailing punctuation
diff --git a/libmscore/lyrics.h b/libmscore/lyrics.h
index fc9e11d..0bb3093 100644
--- a/libmscore/lyrics.h
+++ b/libmscore/lyrics.h
@@ -37,7 +37,7 @@ namespace Ms {
 
 //---------------------------------------------------------
 //   @@ Lyrics
-//   @P syllabic  Ms::Lyrics::Syllabic  (SINGLE, BEGIN, END, MIDDLE)
+//   @P syllabic  enum (Lyrics.SINGLE, Lyrics.BEGIN, Lyrics.END, Lyrics.MIDDLE)
 //---------------------------------------------------------
 
 class LyricsLine;
diff --git a/libmscore/marker.h b/libmscore/marker.h
index bfd2b3f..4583c18 100644
--- a/libmscore/marker.h
+++ b/libmscore/marker.h
@@ -21,8 +21,8 @@ namespace Ms {
 //---------------------------------------------------------
 //   @@ Marker
 //
-//   @P label       QString
-//   @P markerType  Ms::Marker::Type  (SEGNO, VARSEGNO, CODA, VARCODA, CODETTA, FINE, TOCODA, USER)
+//   @P label       string
+//   @P markerType  enum (Marker.CODA, .CODETTA, .FINE, .SEGNO, .TOCODA, .USER, .VARCODA, .VARSEGNO)
 //---------------------------------------------------------
 
 class Marker : public Text {
diff --git a/libmscore/measure.cpp b/libmscore/measure.cpp
index 93ac4d3..d8945be 100644
--- a/libmscore/measure.cpp
+++ b/libmscore/measure.cpp
@@ -412,7 +412,7 @@ AccidentalVal Measure::findAccidental(Segment* s, int staffIdx, int line) const
       int startTrack = staffIdx * VOICES;
       int endTrack   = startTrack + VOICES;
       for (Segment* segment = first(st); segment; segment = segment->next(st)) {
-            if (segment == s) {
+            if (segment == s && staff->isPitchedStaff()) {
                   ClefType clef = staff->clef(s->tick());
                   int l = relStep(line, clef);
                   return tversatz.accidentalVal(l);
@@ -452,7 +452,7 @@ AccidentalVal Measure::findAccidental(Segment* s, int staffIdx, int line) const
 ///   Note: minWidth = width - stretch
 //---------------------------------------------------------
 
-void Measure::layout(qreal width)
+void Measure::layoutWidth(qreal width)
       {
       int nstaves = _score->nstaves();
       for (int staffIdx = 0; staffIdx < nstaves; ++staffIdx) {
@@ -1515,6 +1515,8 @@ RepeatMeasure* Measure::cmdInsertRepeatMeasure(int staffIdx)
       RepeatMeasure* rm = new RepeatMeasure(_score);
       rm->setTrack(staffIdx * VOICES);
       rm->setParent(seg);
+      rm->setDurationType(TDuration::DurationType::V_MEASURE);
+      rm->setDuration(stretchedLen(_score->staff(staffIdx)));
       _score->undoAddCR(rm, this, tick());
       foreach (Element* el, _el) {
             if (el->type() == Element::Type::SLUR && el->staffIdx() == staffIdx)
@@ -2115,7 +2117,7 @@ void Measure::read(XmlReader& e, int staffIdx)
                   ks->setTrack(e.track());
                   ks->read(e);
                   int curTick = e.tick();
-                  if (!ks->isCustom() && ks->key() == Key::C && curTick == 0) {
+                  if (!ks->isCustom() && !ks->isAtonal() && ks->key() == Key::C && curTick == 0) {
                         // ignore empty key signature
                         qDebug("remove keysig c at tick 0");
                         delete ks;
@@ -2220,8 +2222,12 @@ void Measure::read(XmlReader& e, int staffIdx)
                         }
                   }
             //----------------------------------------------------
-            else if (tag == "stretch")
-                  _userStretch = e.readDouble();
+            else if (tag == "stretch") {
+                  double val = e.readDouble();
+                  if (val < 0.0)
+                        val = 0;
+                  setUserStretch(val);
+                  }
             else if (tag == "LayoutBreak") {
                   LayoutBreak* lb = new LayoutBreak(score());
                   lb->read(e);
@@ -2550,7 +2556,7 @@ bool Measure::createEndBarLines()
       BarLine* bl = 0;
       int span    = 0;        // span counter
       int aspan   = 0;        // actual span
-      bool mensur = false;    // keep note of mensurstrich case
+      bool mensur = false;    // keep note of Mensurstrich case
       int spanTot;            // to keep track of the target span
       int spanFrom;
       int spanTo;
@@ -2577,7 +2583,7 @@ bool Measure::createEndBarLines()
                         }
                   else {                              // otherwise, get from staff
                         span        = staff->barLineSpan();
-                        // if some span OR last staff (span=0) of a mensurstrich case, get From/To from staff
+                        // if some span OR last staff (span=0) of a Mensurstrich case, get From/To from staff
                         if (span || mensur) {
                               spanFrom    = staff->barLineFrom();
                               spanTo      = staff->barLineTo();
@@ -2640,14 +2646,14 @@ bool Measure::createEndBarLines()
                         // and the bar line for this staff (cbl) is not needed:
                         // DELETE it
                         if (cbl && cbl != bl) {
-                              // mensurstrich special case:
+                              // Mensurstrich special case:
                               // if span arrives inside the end staff (spanTo>0) OR
                               //          span is not multi-staff (spanTot<=1) OR
                               //          current staff is not the last spanned staff (span!=1) OR
                               //          staff is the last score staff
                               //    remove bar line for this staff
                               // If NONE of the above conditions holds, the staff is the last staff of
-                              // a mensurstrich(-like) span: keep its bar line, as it may span to next staff
+                              // a Mensurstrich(-like) span: keep its bar line, as it may span to next staff
                               if (spanTo > 0 || spanTot <= 1 || span != 1 || staffIdx == nstaves-1) {
                                     score()->undoRemoveElement(cbl);
                                     changed = true;
@@ -2684,7 +2690,7 @@ bool Measure::createEndBarLines()
                   --span;
                   }
             // if just finished (span==0) a multi-staff span (spanTot>1) ending at the top of a staff (spanTo<=0)
-            // scan this staff again, as it may have its own bar lines (mensurstich(-like) span)
+            // scan this staff again, as it may have its own bar lines (Mensurstrich(-like) span)
             if (spanTot > 1 && spanTo <= 0 && span == 0) {
                   mensur = true;
                   staffIdx--;
@@ -2865,12 +2871,11 @@ bool Measure::isFullMeasureRest()
 //   isRepeatMeasure
 //---------------------------------------------------------
 
-bool Measure::isRepeatMeasure(Part* part)
+bool Measure::isRepeatMeasure(Staff* staff)
       {
-      int firstStaffIdx = score()->staffIdx(part);
-      int nextStaffIdx  = firstStaffIdx + part->nstaves();
-      int strack        = firstStaffIdx * VOICES;
-      int etrack        = nextStaffIdx * VOICES;
+      int staffIdx = score()->staffIdx(staff);
+      int strack        = staffIdx * VOICES;
+      int etrack        = (staffIdx + 1) * VOICES;
       Segment* s        = first(Segment::Type::ChordRest);
 
       if (s == 0)
@@ -3372,7 +3377,7 @@ void Measure::layoutX(qreal stretch)
                               }
                         if ((segType == Segment::Type::Clef) && (pt != Segment::Type::ChordRest))
                               minDistance = score()->styleS(StyleIdx::clefLeftMargin).val() * _spatium;
-                        else if (segType == Segment::Type::StartRepeatBarLine)
+                        else if (segType == Segment::Type::StartRepeatBarLine && pSeg)
                               minDistance = .5 * _spatium;
                         else if (segType == Segment::Type::TimeSig && pt == Segment::Type::Clef) {
                               // missing key signature, but allocate default margin anyhow
@@ -3414,16 +3419,15 @@ void Measure::layoutX(qreal stretch)
                         rest2[staffIdx] = true;
 
                   // space chord symbols separately from segments
-                  if (hFound || eFound) {
+                  if (hFound || spaceHarmony) {
                         qreal sp = 0.0;
 
                         // space chord symbols unless they miss each other vertically
-                        if (eFound || (hFound && hBbox.top() < hLastBbox[staffIdx].bottom() && hBbox.bottom() > hLastBbox[staffIdx].top()))
+                        if (hFound && hBbox.top() < hLastBbox[staffIdx].bottom() && hBbox.bottom() > hLastBbox[staffIdx].top())
                               sp = hRest[staffIdx] + minHarmonyDistance + hSpace.lw();
-
                         // barline: limit space to maxHarmonyBarDistance
-                        if (eFound && !hFound && spaceHarmony)
-                              sp = qMin(sp, maxHarmonyBarDistance);
+                        else if (spaceHarmony)
+                              sp = qMin(hRest[staffIdx], maxHarmonyBarDistance);
 
                         hLastBbox[staffIdx] = hBbox;
                         hRest[staffIdx] = hSpace.rw();
@@ -3533,7 +3537,7 @@ void Measure::layoutX(qreal stretch)
                   if (stt->slashStyle())        // if no stems
                         distAbove = stt->genDurations() ? -stt->durationBoxY() : 0.0;
                   else {                        // if stems
-                        if (stt->stemsDown())
+                        if (stt->stemsDown() && !mstaff(staffIdx)->hasVoices)
                               distBelow = (STAFFTYPE_TAB_DEFAULTSTEMLEN_UP + STAFFTYPE_TAB_DEFAULTSTEMDIST_UP)*_spatium;
                         else
                               distAbove = (STAFFTYPE_TAB_DEFAULTSTEMLEN_DN + STAFFTYPE_TAB_DEFAULTSTEMDIST_DN)*_spatium;
@@ -4156,7 +4160,7 @@ qreal Measure::userStretch() const
       return (score()->layoutMode() == LayoutMode::FLOAT ? 1.0 : _userStretch);
       }
 
-Element* Measure::nextElement(int staff)
+Element* Measure::nextElementStaff(int staff)
       {
       Segment* firstSeg = segments()->first();
       if (firstSeg)
@@ -4164,7 +4168,7 @@ Element* Measure::nextElement(int staff)
       return score()->firstElement();
       }
 
-Element* Measure::prevElement(int staff)
+Element* Measure::prevElementStaff(int staff)
       {
       Measure* prevM = prevMeasureMM();
       if (prevM) {
diff --git a/libmscore/measure.h b/libmscore/measure.h
index 343802f..748174a 100644
--- a/libmscore/measure.h
+++ b/libmscore/measure.h
@@ -106,8 +106,8 @@ enum class MeasureNumberMode : char {
 //   @@ Measure
 ///    one measure in a system
 //
-//   @P firstSegment    Ms::Segment       the first segment of the measure (read-only)
-//   @P lastSegment     Ms::Segment       the last segment of the measure (read-only)
+//   @P firstSegment    Segment       the first segment of the measure (read-only)
+//   @P lastSegment     Segment       the last segment of the measure (read-only)
 //---------------------------------------------------------
 
 class Measure : public MeasureBase {
@@ -168,6 +168,7 @@ class Measure : public MeasureBase {
 
       void read(XmlReader&, int idx);
       void read(XmlReader& d) { read(d, 0); }
+      virtual void write(Xml& xml) const override { Element::write(xml); }
       void write(Xml&, int, bool writeSystemElements) const;
       void writeBox(Xml&) const;
       void readBox(XmlReader&);
@@ -219,10 +220,10 @@ class Measure : public MeasureBase {
       SegmentList* segments()                   { return &_segments; }
 
       qreal userStretch() const;
-      void setUserStretch(qreal v)              { _userStretch = v;    }
+      void setUserStretch(qreal v)              { _userStretch = v; }
 
       void layoutX(qreal stretch);
-      void layout(qreal width);
+      void layoutWidth(qreal width);
       void layout2();
 
       Chord* findChord(int tick, int track);
@@ -289,7 +290,7 @@ class Measure : public MeasureBase {
       bool hasVoice(int track) const;
       bool isMeasureRest(int staffIdx);
       bool isFullMeasureRest();
-      bool isRepeatMeasure(Part* part);
+      bool isRepeatMeasure(Staff* staff);
       bool visible(int staffIdx) const;
       bool slashStyle(int staffIdx) const;
 
@@ -322,8 +323,8 @@ class Measure : public MeasureBase {
       Measure* mmRestFirst() const;
       Measure* mmRestLast() const;
 
-      Element* nextElement(int staff);
-      Element* prevElement(int staff);
+      Element* nextElementStaff(int staff);
+      Element* prevElementStaff(int staff);
       virtual QString accessibleInfo() override;
       };
 
diff --git a/libmscore/measurebase.h b/libmscore/measurebase.h
index 2fe477a..8eec77a 100644
--- a/libmscore/measurebase.h
+++ b/libmscore/measurebase.h
@@ -31,12 +31,12 @@ class Measure;
 //   @@ MeasureBase
 ///    Virtual base class for Measure, HBox and VBox
 //
-//   @P lineBreak       bool              true if a system break is positioned on this measure
-//   @P nextMeasure     Ms::Measure       the next Measure (read-only)
-//   @P nextMeasureMM   Ms::Measure       the next multi-measure rest Measure (read-only)
-//   @P pageBreak       bool              true if a page break is positioned on this measure
-//   @P prevMeasure     Ms::Measure       the previous Measure (read-only)
-//   @P prevMeasureMM   Ms::Measure       the previous multi-measure rest Measure (read-only)
+//   @P lineBreak       bool        true if a system break is positioned on this measure
+//   @P nextMeasure     Measure     the next Measure (read-only)
+//   @P nextMeasureMM   Measure     the next multi-measure rest Measure (read-only)
+//   @P pageBreak       bool        true if a page break is positioned on this measure
+//   @P prevMeasure     Measure     the previous Measure (read-only)
+//   @P prevMeasureMM   Measure     the previous multi-measure rest Measure (read-only)
 //---------------------------------------------------------
 
 class MeasureBase : public Element {
@@ -84,6 +84,7 @@ class MeasureBase : public Element {
       Ms::Measure* prevMeasureMM() const;
 
       virtual int ticks() const              { return 0;       }
+      virtual void write(Xml&) const override = 0;
       virtual void write(Xml&, int, bool) const = 0;
 
       virtual void layout();
diff --git a/libmscore/mscore.cpp b/libmscore/mscore.cpp
index 71953fa..ef4a557 100644
--- a/libmscore/mscore.cpp
+++ b/libmscore/mscore.cpp
@@ -53,6 +53,7 @@
 #include "hook.h"
 #include "stem.h"
 #include "stemslash.h"
+#include "fraction.h"
 #include "excerpt.h"
 
 namespace Ms {
@@ -94,6 +95,7 @@ int     MScore::mtcType;
 
 bool    MScore::noExcerpts = false;
 bool    MScore::noImages = false;
+bool    MScore::pdfPrinting = false;
 
 #ifdef SCRIPT_INTERFACE
 QQmlEngine* MScore::_qml = 0;
@@ -118,8 +120,8 @@ void MScore::init()
       qRegisterMetaType<MScore::Direction>("Direction");
       qRegisterMetaType<MScore::DirectionH>("DirectionH");
       qRegisterMetaType<Element::Placement>("Placement");
-      qRegisterMetaType<Accidental::Role>("AccidentalRole");
-      qRegisterMetaType<Accidental::Type>("AccidentalType");
+//      qRegisterMetaType<AccidentalRole>("AccidentalRole");
+//      qRegisterMetaType<AccidentalType>("AccidentalType");
       qRegisterMetaType<Spanner::Anchor>("Anchor");
       qRegisterMetaType<NoteHead::Group>("NoteHeadGroup");
       qRegisterMetaType<NoteHead::Type>("NoteHeadType");
@@ -138,7 +140,6 @@ void MScore::init()
       qRegisterMetaType<Lyrics::Syllabic>("Syllabic");
       qRegisterMetaType<LayoutBreak::Type>("LayoutBreakType");
       qRegisterMetaType<Glissando::Type>("GlissandoType");
-//      qRegisterMetaType<TextStyle>("TextStyle");
 #endif
 
       DPMM = DPI / INCH;       // dots/mm
@@ -338,6 +339,9 @@ QQmlEngine* MScore::qml()
             qmlRegisterType<StemSlash>  ("MuseScore", 1, 0, "StemSlash");
             qmlRegisterType<Beam>       ("MuseScore", 1, 0, "Beam");
             qmlRegisterType<Excerpt>    ("MuseScore", 1, 0, "Excerpt");
+            qmlRegisterType<FractionWrapper>   ("MuseScore", 1, 1, "Fraction");
+            qRegisterMetaType<FractionWrapper*>("FractionWrapper*");
+
             qmlRegisterUncreatableType<Element>("MuseScore", 1, 0,
                "Element", tr("you cannot create an element"));
 
diff --git a/libmscore/mscore.h b/libmscore/mscore.h
index a828f13..e9c4705 100644
--- a/libmscore/mscore.h
+++ b/libmscore/mscore.h
@@ -13,6 +13,8 @@
 #ifndef __MSCORE_H__
 #define __MSCORE_H__
 
+#include "config.h"
+
 namespace Ms {
 
 #define MSC_VERSION     "2.06"
@@ -339,7 +341,6 @@ enum class IconType : signed char {
 class MScore : public QObject {
       Q_OBJECT
 
-   private:
       static MStyle* _defaultStyle;       // buildin modified by preferences
       static MStyle* _defaultStyleForParts;
 
@@ -354,6 +355,10 @@ class MScore : public QObject {
    public:
       enum class Direction  : char { AUTO, UP, DOWN };
       enum class DirectionH : char { AUTO, LEFT, RIGHT };
+      enum class OrnamentStyle : char { DEFAULT, BAROQUE};
+      enum class GlissandoStyle : char { CHROMATIC, WHITE_KEYS, BLACK_KEYS, DIATONIC };
+      Q_ENUMS(Direction DirectionH OrnamentStyle GlissandoStyle)
+
       static void init();
 
       static MStyle* defaultStyle();
@@ -404,6 +409,8 @@ class MScore : public QObject {
       static bool noExcerpts;
       static bool noImages;
 
+      static bool pdfPrinting;
+
 #ifdef SCRIPT_INTERFACE
       static QQmlEngine* qml();
 #endif
diff --git a/libmscore/mscoreview.h b/libmscore/mscoreview.h
index 0a92178..533aafb 100644
--- a/libmscore/mscoreview.h
+++ b/libmscore/mscoreview.h
@@ -19,7 +19,7 @@ class Element;
 class Score;
 class Note;
 class Page;
-enum class Grip : char;
+enum class Grip : signed char;
 
 //---------------------------------------------------------
 //   MuseScoreView
@@ -35,7 +35,7 @@ class MuseScoreView {
       Page* point2page(const QPointF&);
       Element* elementAt(const QPointF& p);
       const QList<Element*> elementsAt(const QPointF&);
-      virtual Element* elementNear(QPointF) = 0;
+      virtual Element* elementNear(QPointF) { return 0; }
 
       virtual void layoutChanged() {}
       virtual void dataChanged(const QRectF&) = 0;
@@ -44,21 +44,21 @@ class MuseScoreView {
       virtual void moveCursor()          {}
       virtual void showLoopCursors(bool) {}
 
-      virtual void adjustCanvasPosition(const Element* el, bool playBack) = 0;
+      virtual void adjustCanvasPosition(const Element*, bool /*playBack*/) {};
       virtual void setScore(Score* s) { _score = s; }
       Score* score() const            { return _score; }
-      virtual void removeScore() = 0;
+      virtual void removeScore() {};
 
-      virtual void changeEditElement(Element*) = 0;
-      virtual QCursor cursor() const = 0;
-      virtual void setCursor(const QCursor&) = 0;
-      virtual int gripCount() const = 0;
+      virtual void changeEditElement(Element*) {};
+      virtual QCursor cursor() const { return QCursor(); }
+      virtual void setCursor(const QCursor&) {};
+      virtual int gripCount() const { return 0; }
       virtual const QRectF& getGrip(Grip) const = 0;
-      virtual void setDropRectangle(const QRectF&) = 0;
-      virtual void cmdAddSlur(Note* firstNote, Note* lastNote) = 0;
-      virtual void cmdAddHairpin(bool) = 0;
-      virtual void startEdit() = 0;
-      virtual void startEdit(Element*, Grip startGrip) = 0;
+      virtual void setDropRectangle(const QRectF&) {};
+      virtual void cmdAddSlur(Note* /*firstNote*/, Note* /*lastNote*/) {};
+      virtual void cmdAddHairpin(bool) {};
+      virtual void startEdit() {};
+      virtual void startEdit(Element*, Grip /*startGrip*/) {};
       virtual void drawBackground(QPainter*, const QRectF&) const = 0;
       virtual void setDropTarget(const Element*) {}
 
diff --git a/libmscore/note.cpp b/libmscore/note.cpp
index 35a1c48..fe46a6d 100644
--- a/libmscore/note.cpp
+++ b/libmscore/note.cpp
@@ -515,12 +515,21 @@ qreal Note::tabHeadHeight(StaffType* tab) const
       }
 
 //---------------------------------------------------------
-//   attach
+//   stemDownNW
 //---------------------------------------------------------
 
-QPointF Note::attach() const
+QPointF Note::stemDownNW() const
       {
-      return symAttach(noteHead());
+      return symStemDownNW(noteHead());
+      }
+
+//---------------------------------------------------------
+//   stemUpSE
+//---------------------------------------------------------
+
+QPointF Note::stemUpSE() const
+      {
+      return symStemUpSE(noteHead());
       }
 
 //---------------------------------------------------------
@@ -712,7 +721,7 @@ void Note::draw(QPainter* painter) const
                   foreach(MuseScoreView* view, score()->getViewer())
                         view->drawBackground(painter, bb);
 
-                  if (fretConflict()) {          //on fret conflict, draw on red background
+                  if (fretConflict() && !score()->printing()) {          //on fret conflict, draw on red background
                         painter->save();
                         painter->setPen(Qt::red);
                         painter->setBrush(QBrush(QColor(Qt::red)));
@@ -944,42 +953,42 @@ void Note::read(XmlReader& e)
                         // TODO: for backward compatibility
                         bool bracket = k & 0x8000;
                         k &= 0xfff;
-                        Accidental::Type at = Accidental::Type::NONE;
+                        AccidentalType at = AccidentalType::NONE;
                         switch(k) {
-                              case 0: at = Accidental::Type::NONE; break;
-                              case 1: at = Accidental::Type::SHARP; break;
-                              case 2: at = Accidental::Type::FLAT; break;
-                              case 3: at = Accidental::Type::SHARP2; break;
-                              case 4: at = Accidental::Type::FLAT2; break;
-                              case 5: at = Accidental::Type::NATURAL; break;
-
-                              case 6: at = Accidental::Type::FLAT_SLASH; break;
-                              case 7: at = Accidental::Type::FLAT_SLASH2; break;
-                              case 8: at = Accidental::Type::MIRRORED_FLAT2; break;
-                              case 9: at = Accidental::Type::MIRRORED_FLAT; break;
-                              case 10: at = Accidental::Type::MIRRORED_FLAT_SLASH; break;
-                              case 11: at = Accidental::Type::FLAT_FLAT_SLASH; break;
-
-                              case 12: at = Accidental::Type::SHARP_SLASH; break;
-                              case 13: at = Accidental::Type::SHARP_SLASH2; break;
-                              case 14: at = Accidental::Type::SHARP_SLASH3; break;
-                              case 15: at = Accidental::Type::SHARP_SLASH4; break;
-
-                              case 16: at = Accidental::Type::SHARP_ARROW_UP; break;
-                              case 17: at = Accidental::Type::SHARP_ARROW_DOWN; break;
-                              case 18: at = Accidental::Type::SHARP_ARROW_BOTH; break;
-                              case 19: at = Accidental::Type::FLAT_ARROW_UP; break;
-                              case 20: at = Accidental::Type::FLAT_ARROW_DOWN; break;
-                              case 21: at = Accidental::Type::FLAT_ARROW_BOTH; break;
-                              case 22: at = Accidental::Type::NATURAL_ARROW_UP; break;
-                              case 23: at = Accidental::Type::NATURAL_ARROW_DOWN; break;
-                              case 24: at = Accidental::Type::NATURAL_ARROW_BOTH; break;
-                              case 25: at = Accidental::Type::SORI; break;
-                              case 26: at = Accidental::Type::KORON; break;
+                              case 0: at = AccidentalType::NONE; break;
+                              case 1: at = AccidentalType::SHARP; break;
+                              case 2: at = AccidentalType::FLAT; break;
+                              case 3: at = AccidentalType::SHARP2; break;
+                              case 4: at = AccidentalType::FLAT2; break;
+                              case 5: at = AccidentalType::NATURAL; break;
+
+                              case 6: at = AccidentalType::FLAT_SLASH; break;
+                              case 7: at = AccidentalType::FLAT_SLASH2; break;
+                              case 8: at = AccidentalType::MIRRORED_FLAT2; break;
+                              case 9: at = AccidentalType::MIRRORED_FLAT; break;
+                              case 10: at = AccidentalType::MIRRORED_FLAT_SLASH; break;
+                              case 11: at = AccidentalType::FLAT_FLAT_SLASH; break;
+
+                              case 12: at = AccidentalType::SHARP_SLASH; break;
+                              case 13: at = AccidentalType::SHARP_SLASH2; break;
+                              case 14: at = AccidentalType::SHARP_SLASH3; break;
+                              case 15: at = AccidentalType::SHARP_SLASH4; break;
+
+                              case 16: at = AccidentalType::SHARP_ARROW_UP; break;
+                              case 17: at = AccidentalType::SHARP_ARROW_DOWN; break;
+                              case 18: at = AccidentalType::SHARP_ARROW_BOTH; break;
+                              case 19: at = AccidentalType::FLAT_ARROW_UP; break;
+                              case 20: at = AccidentalType::FLAT_ARROW_DOWN; break;
+                              case 21: at = AccidentalType::FLAT_ARROW_BOTH; break;
+                              case 22: at = AccidentalType::NATURAL_ARROW_UP; break;
+                              case 23: at = AccidentalType::NATURAL_ARROW_DOWN; break;
+                              case 24: at = AccidentalType::NATURAL_ARROW_BOTH; break;
+                              case 25: at = AccidentalType::SORI; break;
+                              case 26: at = AccidentalType::KORON; break;
                               }
                         _accidental->setAccidentalType(at);
                         _accidental->setHasBracket(bracket);
-                        _accidental->setRole(Accidental::Role::USER);
+                        _accidental->setRole(AccidentalRole::USER);
                         hasAccidental = true;   // we now have an accidental
                         }
                   }
@@ -1313,6 +1322,8 @@ bool Note::acceptDrop(const DropData& data) const
          || (type == Element::Type::ICON && static_cast<Icon*>(e)->iconType() == IconType::BRACKETS)
          || (type == Element::Type::SYMBOL)
          || (type == Element::Type::CLEF)
+         || (type == Element::Type::KEYSIG)
+         || (type == Element::Type::TIMESIG)
          || (type == Element::Type::BAR_LINE)
          || (type == Element::Type::SLUR)
          || (type == Element::Type::HAIRPIN)
@@ -1664,38 +1675,42 @@ void Note::layout()
 
 void Note::layout2()
       {
-      // this is now done in Score::layoutChords3()
+      // for standard staves this is done in Score::layoutChords3()
       // so that the results are available there
-      // adjustReadPos();
+      if (staff()->isTabStaff())
+            adjustReadPos();
 
       int dots = chord()->dots();
       if (dots) {
             qreal d  = score()->point(score()->styleS(StyleIdx::dotNoteDistance)) * mag();
             qreal dd = score()->point(score()->styleS(StyleIdx::dotDotDistance)) * mag();
             qreal x  = chord()->dotPosX() - pos().x() - chord()->pos().x();
-
+            bool layoutDots = true;
             // if TAB and stems through staff
             if (staff()->isTabStaff()) {
                   StaffType* tab = staff()->staffType();
-                  if (!tab->stemThrough())            // if !stemThrough, there are no dots at all:
-                        return;                       // stop here
-
-                  // with TAB's, dot Y is not calculated during layoutChords3(),
-                  // as layoutChords3() is not even called for TAB's;
-                  // setDotY() actually also manages creation/deletion of NoteDot's
-                  setDotY(MScore::Direction::AUTO);
-
-                  // use TAB default note-to-dot spacing
-                  dd = STAFFTYPE_TAB_DEFAULTDOTDIST_X * spatium();
-                  d = dd * 0.5;
+                  if (tab->stemThrough()) {
+                        // with TAB's, dot Y is not calculated during layoutChords3(),
+                        // as layoutChords3() is not even called for TAB's;
+                        // setDotY() actually also manages creation/deletion of NoteDot's
+                        setDotY(MScore::Direction::AUTO);
+
+                        // use TAB default note-to-dot spacing
+                        dd = STAFFTYPE_TAB_DEFAULTDOTDIST_X * spatium();
+                        d = dd * 0.5;
+                        }
+                  else {
+                        layoutDots = false; // if !stemThrough, there are no dots at all
+                        }
                   }
-
-            // apply to dots
-            for (int i = 0; i < dots; ++i) {
-                  NoteDot* dot = _dots[i];
-                  if (dot) {
-                        dot->rxpos() = x + d + dd * i;
-                        _dots[i]->adjustReadPos();
+            if (layoutDots) {
+                  // apply to dots
+                  for (int i = 0; i < dots; ++i) {
+                        NoteDot* dot = _dots[i];
+                        if (dot) {
+                              dot->rxpos() = x + d + dd * i;
+                              _dots[i]->adjustReadPos();
+                              }
                         }
                   }
             }
@@ -1759,22 +1774,22 @@ void Note::updateAccidental(AccidentalState* as)
 
       // don't touch accidentals that don't concern tpc such as
       // quarter tones
-      if (!(_accidental && _accidental->accidentalType() > Accidental::Type::NATURAL)) {
+      if (!(_accidental && _accidental->accidentalType() > AccidentalType::NATURAL)) {
             // calculate accidental
-            Accidental::Type acci = Accidental::Type::NONE;
+            AccidentalType acci = AccidentalType::NONE;
 
             AccidentalVal accVal = tpc2alter(tpc());
             if ((accVal != as->accidentalVal(relLine)) || hidden() || as->tieContext(relLine)) {
                   as->setAccidentalVal(relLine, accVal, _tieBack != 0);
                   if (_tieBack)
-                        acci = Accidental::Type::NONE;
+                        acci = AccidentalType::NONE;
                   else {
                         acci = Accidental::value2subtype(accVal);
-                        if (acci == Accidental::Type::NONE)
-                              acci = Accidental::Type::NATURAL;
+                        if (acci == AccidentalType::NONE)
+                              acci = AccidentalType::NATURAL;
                         }
                   }
-            if (acci != Accidental::Type::NONE && !_tieBack && !_hidden) {
+            if (acci != AccidentalType::NONE && !_tieBack && !_hidden) {
                   if (_accidental == 0) {
                         Accidental* a = new Accidental(score());
                         a->setParent(this);
@@ -1791,13 +1806,13 @@ void Note::updateAccidental(AccidentalState* as)
             else {
                   if (_accidental) {
                         // remove this if it was AUTO:
-                        if (_accidental->role() == Accidental::Role::AUTO)
+                        if (_accidental->role() == AccidentalRole::AUTO)
                               score()->undoRemoveElement(_accidental);
                         else {
                               // keep it, but update type if needed
                               acci = Accidental::value2subtype(accVal);
-                              if (acci == Accidental::Type::NONE)
-                                    acci = Accidental::Type::NATURAL;
+                              if (acci == AccidentalType::NONE)
+                                    acci = AccidentalType::NATURAL;
                               if (_accidental->accidentalType() != acci) {
                                     Accidental* a = _accidental->clone();
                                     a->setParent(this);
@@ -1981,16 +1996,6 @@ int Note::line() const
       }
 
 //---------------------------------------------------------
-//   setAccidentalType
-//---------------------------------------------------------
-
-void Note::setAccidentalType(Accidental::Type type)
-      {
-      if (_score)
-      	_score->changeAccidental(this, type);
-      }
-
-//---------------------------------------------------------
 //   setLine
 //---------------------------------------------------------
 
@@ -2686,4 +2691,24 @@ QList<Note*> Note::tiedNotes() const
       return notes;
       }
 
+//---------------------------------------------------------
+//   accidentalType
+//---------------------------------------------------------
+
+AccidentalType Note::accidentalType() const
+      {
+      return _accidental ? _accidental->accidentalType() : AccidentalType::NONE;
+      }
+
+//---------------------------------------------------------
+//   setAccidentalType
+//---------------------------------------------------------
+
+void Note::setAccidentalType(AccidentalType type)
+      {
+      if (_score)
+      	_score->changeAccidental(this, type);
+      }
+
+
 }
diff --git a/libmscore/note.h b/libmscore/note.h
index 42137d4..8fd6523 100644
--- a/libmscore/note.h
+++ b/libmscore/note.h
@@ -22,7 +22,6 @@
 #include "symbol.h"
 #include "noteevent.h"
 #include "pitchspelling.h"
-#include "accidental.h"
 
 class QPainter;
 
@@ -42,6 +41,7 @@ class NoteDot;
 class Spanner;
 class StaffType;
 enum class SymId;
+enum class AccidentalType : char;
 
 static const int MAX_DOTS = 3;
 
@@ -115,72 +115,75 @@ struct NoteVal {
 //   @@ Note
 ///    Graphic representation of a note.
 //
-//   @P subchannel       int                     midi subchannel (for midi articulation) (read only)
-//   @P line             int                     notehead position (read only)
-//   @P fret             int                     fret number in tablature
-//   @P string           int                     string number in tablature
-//   @P tpc              int                     tonal pitch class, as per concert pitch setting
-//   @P tpc1             int                     tonal pitch class, non transposed
-//   @P tpc2             int                     tonal pitch class, transposed
-//   @P pitch            int                     midi pitch
-//   @P ppitch           int                     actual played midi pitch (honoring ottavas) (read only)
-//   @P ghost            bool                    ghost note (guitar: death note)
-//   @P hidden           bool                    hidden, not played note (read only)
-//   @P mirror           bool                    mirror note head on x axis (read only)
-//   @P small            bool                    small note head
-//   @P play             bool                    play note
-//   @P tuning           qreal                   tuning offset in cent
-//   @P veloType         Ms::Note::ValueType     (OFFSET_VAL, USER_VAL)
+//   @P accidental       Accidental       note accidental (null if none)
+//   @P accidentalType   int              note accidental type
+//   @P dots             array[NoteDot]   list of note dots (some can be null, read only)
+//   @P dotsCount        int              number of note dots (read only)
+//   @P elements         array[Element]   list of elements attached to note head
+//   @P fret             int              fret number in tablature
+//   @P ghost            bool             ghost note (guitar: death note)
+//   @P headGroup        enum (NoteHead.HEAD_NORMAL, .HEAD_BREVIS_ALT, .HEAD_CROSS, .HEAD_DIAMOND, .HEAD_DO, .HEAD_FA, .HEAD_LA, .HEAD_MI, .HEAD_RE, .HEAD_SLASH, .HEAD_SOL, .HEAD_TI, .HEAD_XCIRCLE, .HEAD_TRIANGLE)
+//   @P headType         enum (NoteHead.HEAD_AUTO, .HEAD_BREVIS, .HEAD_HALF, .HEAD_QUARTER, .HEAD_WHOLE)
+//   @P hidden           bool             hidden, not played note (read only)
+//   @P line             int              notehead position (read only)
+//   @P mirror           bool             mirror note head on x axis (read only)
+//   @P pitch            int              midi pitch
+//   @P play             bool             play note
+//   @P ppitch           int              actual played midi pitch (honoring ottavas) (read only)
+//   @P small            bool             small note head
+//   @P string           int              string number in tablature
+//   @P subchannel       int              midi subchannel (for midi articulation) (read only)
+//   @P tieBack          Tie              note backward tie (null if none, read only)
+//   @P tieFor           Tie              note forward tie (null if none, read only)
+//   @P tpc              int              tonal pitch class, as per concert pitch setting
+//   @P tpc1             int              tonal pitch class, non transposed
+//   @P tpc2             int              tonal pitch class, transposed
+//   @P tuning           float            tuning offset in cent
+//   @P userDotPosition  enum (Direction.AUTO, Direction.DOWN, Direction.UP)
+//   @P userMirror       enum (DirectionH.AUTO, DirectionH.LEFT, DirectionH.RIGHT)
 //   @P veloOffset       int
-//   @P userMirror       Ms::MScore::DirectionH  (AUTO, LEFT, RIGHT)
-//   @P userDotPosition  Ms::MScore::Direction   (AUTO, UP, DOWN)
-//   @P headGroup        Ms::NoteHead::Group     (HEAD_NORMAL, HEAD_CROSS, HEAD_DIAMOND, HEAD_TRIANGLE, HEAD_MI, HEAD_SLASH, HEAD_XCIRCLE, HEAD_DO, HEAD_RE, HEAD_FA, HEAD_LA, HEAD_TI, HEAD_SOL, HEAD_BREVIS_ALT)
-//   @P headType         Ms::NoteHead::Type      (HEAD_AUTO, HEAD_WHOLE, HEAD_HALF, HEAD_QUARTER, HEAD_BREVIS)
-//   @P elements         array[Ms::Element]      list of elements attached to note head
-//   @P accidental       Ms::Accidental          note accidental (null if none)
-//   @P accidentalType   Ms::Accidental::Type    note accidental type
-//   @P dots             array[Ms::NoteDot]      list of note dots (some can be null, read only)
-//   @P dotsCount        int                     number of note dots (read only)
-//   @P tieFor           Ms::Tie                 note forward tie (null if none, read only)
-//   @P tieBack          Ms::Tie                 note backward tie (null if none, read only)
+//   @P veloType         enum (Note.OFFSET_VAL, Note.USER_VAL)
 //---------------------------------------------------------------------------------------
 
 class Note : public Element {
       Q_OBJECT
-      Q_PROPERTY(int subchannel                          READ subchannel)
-      Q_PROPERTY(int line                                READ line)
-      Q_PROPERTY(int fret                                READ fret             WRITE undoSetFret)
-      Q_PROPERTY(int string                              READ string           WRITE undoSetString)
-      Q_PROPERTY(int tpc                                 READ tpc)
-      Q_PROPERTY(int tpc1                                READ tpc1             WRITE undoSetTpc1)
-      Q_PROPERTY(int tpc2                                READ tpc2             WRITE undoSetTpc2)
-      Q_PROPERTY(int pitch                               READ pitch            WRITE undoSetPitch)
-      Q_PROPERTY(int ppitch                              READ ppitch)
-      Q_PROPERTY(bool ghost                              READ ghost            WRITE undoSetGhost)
-      Q_PROPERTY(bool hidden                             READ hidden)
-      Q_PROPERTY(bool mirror                             READ mirror)
-      Q_PROPERTY(bool small                              READ small            WRITE undoSetSmall)
-      Q_PROPERTY(bool play                               READ play             WRITE undoSetPlay)
-      Q_PROPERTY(qreal tuning                            READ tuning           WRITE undoSetTuning)
-      Q_PROPERTY(Ms::Note::ValueType veloType            READ veloType         WRITE undoSetVeloType)
-      Q_PROPERTY(int veloOffset                          READ veloOffset       WRITE undoSetVeloOffset)
-      Q_PROPERTY(Ms::MScore::DirectionH userMirror       READ userMirror       WRITE undoSetUserMirror)
-      Q_PROPERTY(Ms::MScore::Direction userDotPosition   READ userDotPosition  WRITE undoSetUserDotPosition)
-      Q_PROPERTY(Ms::NoteHead::Group headGroup           READ headGroup        WRITE undoSetHeadGroup)
-      Q_PROPERTY(Ms::NoteHead::Type headType             READ headType         WRITE undoSetHeadType)
-      Q_PROPERTY(QQmlListProperty<Ms::Element> elements  READ qmlElements)
-      Q_PROPERTY(Ms::Accidental* accidental              READ accidental)
-      Q_PROPERTY(Ms::Accidental::Type accidentalType     READ accidentalType   WRITE setAccidentalType)
-      Q_PROPERTY(QQmlListProperty<Ms::NoteDot> dots      READ qmlDots)
-      Q_PROPERTY(int dotsCount                           READ qmlDotsCount)
-      Q_PROPERTY(Ms::Tie* tieFor                         READ tieFor)
-      Q_PROPERTY(Ms::Tie* tieBack                        READ tieBack)
+      Q_PROPERTY(Ms::Accidental*                accidental        READ accidental)
+      Q_PROPERTY(int                            accidentalType    READ qmlAccidentalType  WRITE qmlSetAccidentalType)
+      Q_PROPERTY(QQmlListProperty<Ms::NoteDot>  dots              READ qmlDots)
+      Q_PROPERTY(int                            dotsCount         READ qmlDotsCount)
+      Q_PROPERTY(QQmlListProperty<Ms::Element>  elements          READ qmlElements)
+      Q_PROPERTY(int                            fret              READ fret               WRITE undoSetFret)
+      Q_PROPERTY(bool                           ghost             READ ghost              WRITE undoSetGhost)
+      Q_PROPERTY(Ms::NoteHead::Group            headGroup         READ headGroup          WRITE undoSetHeadGroup)
+      Q_PROPERTY(Ms::NoteHead::Type             headType          READ headType           WRITE undoSetHeadType)
+      Q_PROPERTY(bool                           hidden            READ hidden)
+      Q_PROPERTY(int                            line              READ line)
+      Q_PROPERTY(bool                           mirror            READ mirror)
+      Q_PROPERTY(int                            pitch             READ pitch              WRITE undoSetPitch)
+      Q_PROPERTY(bool                           play              READ play               WRITE undoSetPlay)
+      Q_PROPERTY(int                            ppitch            READ ppitch)
+      Q_PROPERTY(bool                           small             READ small              WRITE undoSetSmall)
+      Q_PROPERTY(int                            string            READ string             WRITE undoSetString)
+      Q_PROPERTY(int                            subchannel        READ subchannel)
+      Q_PROPERTY(Ms::Tie*                       tieBack           READ tieBack)
+      Q_PROPERTY(Ms::Tie*                       tieFor            READ tieFor)
+      Q_PROPERTY(int                            tpc               READ tpc)
+      Q_PROPERTY(int                            tpc1              READ tpc1               WRITE undoSetTpc1)
+      Q_PROPERTY(int                            tpc2              READ tpc2               WRITE undoSetTpc2)
+      Q_PROPERTY(qreal                          tuning            READ tuning             WRITE undoSetTuning)
+      Q_PROPERTY(Ms::MScore::Direction          userDotPosition   READ userDotPosition    WRITE undoSetUserDotPosition)
+      Q_PROPERTY(Ms::MScore::DirectionH         userMirror        READ userMirror         WRITE undoSetUserMirror)
+      Q_PROPERTY(int                            veloOffset        READ veloOffset         WRITE undoSetVeloOffset)
+      Q_PROPERTY(Ms::Note::ValueType            veloType          READ veloType           WRITE undoSetVeloType)
+
       Q_ENUMS(ValueType)
       Q_ENUMS(Ms::MScore::Direction)
       Q_ENUMS(Ms::MScore::DirectionH)
 
    public:
       enum class ValueType : char { OFFSET_VAL, USER_VAL };
+      int qmlAccidentalType() const { return int(accidentalType()); }
+      void qmlSetAccidentalType(int t) { setAccidentalType(static_cast<AccidentalType>(t)); }
 
    private:
       int _subchannel     { 0  };   ///< articulation
@@ -264,7 +267,8 @@ class Note : public Element {
       qreal headHeight() const;
       qreal tabHeadWidth(StaffType* tab = 0) const;
       qreal tabHeadHeight(StaffType* tab = 0) const;
-      QPointF attach() const;
+      QPointF stemDownNW() const;
+      QPointF stemUpSE() const;
 
       SymId noteHead() const;
       NoteHead::Group headGroup() const   { return _headGroup; }
@@ -305,11 +309,11 @@ class Note : public Element {
       void undoSetTpc2(int tpc)      { undoChangeProperty(P_ID::TPC2, tpc); }
       int transposeTpc(int tpc);
 
-      Accidental* accidental() const    { return _accidental; }
+      Accidental* accidental() const      { return _accidental; }
       void setAccidental(Accidental* a)   { _accidental = a;    }
 
-      Accidental::Type accidentalType() const { return _accidental ? _accidental->accidentalType() : Accidental::Type::NONE; }
-      void setAccidentalType(Accidental::Type type);
+      AccidentalType accidentalType() const;
+      void setAccidentalType(AccidentalType type);
 
       int line() const;
       void setLine(int n);
diff --git a/libmscore/ottava.h b/libmscore/ottava.h
index 744e360..309cf82 100644
--- a/libmscore/ottava.h
+++ b/libmscore/ottava.h
@@ -54,7 +54,7 @@ class OttavaSegment : public TextLineSegment {
 
 //---------------------------------------------------------
 //   @@ Ottava
-//   @P ottavaType  Ms::Ottava::Type  (OTTAVA_8VA, OTTAVA_15MA, OTTAVA_8VB, OTTAVA_15MB, OTTAVA_22MA, OTTAVA_22MB)
+//   @P ottavaType  enum (Ottava.OTTAVA_8VA, .OTTAVA_8VB, .OTTAVA_15MA, .OTTAVA_15MB, .OTTAVA_22MA, .OTTAVA_22MB)
 //---------------------------------------------------------
 
 class Ottava : public TextLine {
diff --git a/libmscore/page.cpp b/libmscore/page.cpp
index e17756e..5afbff9 100644
--- a/libmscore/page.cpp
+++ b/libmscore/page.cpp
@@ -51,17 +51,17 @@ const PaperSize paperSizes[] = {
       PaperSize("A7",        MM(74),   MM(105)),
       PaperSize("A8",        MM(52),   MM(74)),
       PaperSize("A9",        MM(37),   MM(52)),
+      PaperSize("A10",       MM(26),   MM(37)),
       PaperSize("B0",        MM(1000), MM(1414)),
       PaperSize("B1",        MM(707),  MM(1000)),
-      PaperSize("B10",       MM(31),   MM(44)),
       PaperSize("B2",        MM(500),  MM(707)),
       PaperSize("B3",        MM(353),  MM(500)),
       PaperSize("B4",        MM(250),  MM(353)),
-      PaperSize("B5",        MM(125),  MM(176)),
-      PaperSize("B6",        MM(88),   MM(125)),
-      PaperSize("B7",        MM(62),   MM(88)),
-      PaperSize("B8",        MM(44),   MM(62)),
-      PaperSize("B9",        MM(163),  MM(229)),
+      PaperSize("B6",        MM(125),  MM(176)),
+      PaperSize("B7",        MM(88),   MM(125)),
+      PaperSize("B8",        MM(62),   MM(88)),
+      PaperSize("B9",        MM(44),   MM(62)),
+      PaperSize("B10",       MM(31),   MM(44)),
       PaperSize("Comm10E",   MM(105),  MM(241)),
       PaperSize("DLE",       MM(110),  MM(220)),
       PaperSize("Folio",     MM(210),  MM(330)),
@@ -130,6 +130,7 @@ Page::Page(Score* s)
    : Element(s),
    _no(0)
       {
+      setFlags(0);
       bspTreeValid = false;
       }
 
@@ -149,6 +150,7 @@ QList<Element*> Page::items(const QRectF& r)
       QList<Element*> el = bspTree.items(r);
       return el;
 #else
+      Q_UNUSED(r)
       return QList<Element*>();
 #endif
       }
@@ -160,6 +162,7 @@ QList<Element*> Page::items(const QPointF& p)
             doRebuildBspTree();
       return bspTree.items(p);
 #else
+      Q_UNUSED(p)
       return QList<Element*>();
 #endif
       }
diff --git a/libmscore/page.h b/libmscore/page.h
index 6ce5e83..cf1f56b 100644
--- a/libmscore/page.h
+++ b/libmscore/page.h
@@ -42,28 +42,32 @@ extern const PaperSize* getPaperSize(const qreal wi, const qreal hi);
 
 //---------------------------------------------------------
 //   @@ PageFormat
-//   @P size              QSizeF  paper size in inch
-//   @P printableWidth    qreal
-//   @P evenLeftMargin    qreal
-//   @P oddLeftMargin     qreal
-//   @P eventTopMargin    qreal
-//   @P oddTopMargin      qreal
-//   @P evenBottomMargin  qreal
-//   @P oddBottomMargin   qreal
+//   @P evenBottomMargin  float
+//   @P evenLeftMargin    float
+//   @P eventTopMargin    float
+//   @P oddBottomMargin   float
+//   @P oddLeftMargin     float
+//   @P oddTopMargin      float
+//   @P printableWidth    float
+//   @P size              size  paper size in inch
 //   @P twosided          bool
 //---------------------------------------------------------
 
+#ifdef SCRIPT_INTERFACE
 class PageFormat : public QObject {
       Q_OBJECT
-      Q_PROPERTY(QSizeF size             READ size             WRITE setSize)
-      Q_PROPERTY(qreal  printableWidth   READ printableWidth   WRITE setPrintableWidth  )
+      Q_PROPERTY(qreal  evenBottomMargin READ evenBottomMargin WRITE setEvenBottomMargin)
       Q_PROPERTY(qreal  evenLeftMargin   READ evenLeftMargin   WRITE setEvenLeftMargin  )
-      Q_PROPERTY(qreal  oddLeftMargin    READ oddLeftMargin    WRITE setOddLeftMargin   )
       Q_PROPERTY(qreal  evenTopMargin    READ evenTopMargin    WRITE setEvenTopMargin  )
-      Q_PROPERTY(qreal  oddTopMargin     READ oddTopMargin     WRITE setOddTopMargin    )
-      Q_PROPERTY(qreal  evenBottomMargin READ evenBottomMargin WRITE setEvenBottomMargin)
       Q_PROPERTY(qreal  oddBottomMargin  READ oddBottomMargin  WRITE setOddBottomMargin )
+      Q_PROPERTY(qreal  oddLeftMargin    READ oddLeftMargin    WRITE setOddLeftMargin   )
+      Q_PROPERTY(qreal  oddTopMargin     READ oddTopMargin     WRITE setOddTopMargin    )
+      Q_PROPERTY(qreal  printableWidth   READ printableWidth   WRITE setPrintableWidth  )
+      Q_PROPERTY(QSizeF size             READ size             WRITE setSize)
       Q_PROPERTY(bool   twosided         READ twosided         WRITE setTwosided        )
+#else
+class PageFormat {
+#endif
 
       QSizeF _size;
       qreal _printableWidth;        // _width - left margin - right margin
diff --git a/libmscore/part.cpp b/libmscore/part.cpp
index 84414d5..b657f1a 100644
--- a/libmscore/part.cpp
+++ b/libmscore/part.cpp
@@ -345,7 +345,7 @@ void Part::removeInstrument(int tick)
       }
 
 //---------------------------------------------------------
-//   instr
+//   instrument
 //---------------------------------------------------------
 
 Instrument* Part::instrument(int tick)
@@ -354,7 +354,7 @@ Instrument* Part::instrument(int tick)
       }
 
 //---------------------------------------------------------
-//   instr
+//   instrument
 //---------------------------------------------------------
 
 const Instrument* Part::instrument(int tick) const
@@ -521,5 +521,118 @@ int Part::endTrack() const
       {
       return _staves.back()->idx() * VOICES + VOICES;
       }
+
+//---------------------------------------------------------
+//   insertTime
+//---------------------------------------------------------
+
+void Part::insertTime(int tick, int len)
+      {
+      if (len == 0)
+            return;
+
+      // move all instruments
+
+      if (len < 0) {
+            // remove instruments between tickpos >= tick and tickpos < (tick+len)
+            // ownership goes back to class InstrumentChange()
+
+            auto si = _instruments.lower_bound(tick);
+            auto ei = _instruments.lower_bound(tick-len);
+            _instruments.erase(si, ei);
+            }
+
+      InstrumentList il;
+      for (auto i = _instruments.lower_bound(tick); i != _instruments.end();) {
+            Instrument* instrument = i->second;
+            int tick = i->first;
+            _instruments.erase(i++);
+            _instruments[tick + len] = instrument;
+            }
+      _instruments.insert(il.begin(), il.end());
+      }
+
+//---------------------------------------------------------
+//   lyricCount
+//---------------------------------------------------------
+
+int Part::lyricCount()
+      {
+      if (!score())
+            return 0;
+      int count = 0;
+      Segment::Type st = Segment::Type::ChordRest;
+      for (Segment* seg = score()->firstMeasure()->first(st); seg; seg = seg->next1(st)) {
+            for (int i = startTrack(); i < endTrack() ; ++i) {
+                  if (seg->lyricsList(i))
+                        count += seg->lyricsList(i)->size();
+                  }
+            }
+      return count;
+      }
+
+//---------------------------------------------------------
+//   harmonyCount
+//---------------------------------------------------------
+
+int Part::harmonyCount()
+      {
+      if (!score())
+            return 0;
+      int count = 0;
+      Segment::Type st = Segment::Type::ChordRest;
+      for (Segment* seg = score()->firstMeasure()->first(st); seg; seg = seg->next1(st)) {
+            for (Element* e : seg->annotations()) {
+                  if (e->type() == Element::Type::HARMONY && e->track() >= startTrack() && e->track() < endTrack())
+                        count++;
+                  }
+            }
+      return count;
+      }
+
+//---------------------------------------------------------
+//   hasPitchedStaff
+//---------------------------------------------------------
+
+bool Part::hasPitchedStaff()
+      {
+      if (!staves())
+            return false;
+      for (Staff* s : *staves()) {
+            if (s && s->isPitchedStaff())
+                  return true;
+            }
+      return false;
+      }
+
+//---------------------------------------------------------
+//   hasTabStaff
+//---------------------------------------------------------
+
+bool Part::hasTabStaff()
+      {
+      if (!staves())
+            return false;
+      for (Staff* s : *staves()) {
+            if (s && s->isTabStaff())
+                  return true;
+            }
+      return false;
+      }
+
+//---------------------------------------------------------
+//   hasDrumStaff
+//---------------------------------------------------------
+
+bool Part::hasDrumStaff()
+      {
+      if (!staves())
+            return false;
+      for (Staff* s : *staves()) {
+            if (s && s->isDrumStaff())
+                  return true;
+            }
+      return false;
+      }
 }
 
diff --git a/libmscore/part.h b/libmscore/part.h
index 0d8d257..795143a 100644
--- a/libmscore/part.h
+++ b/libmscore/part.h
@@ -26,33 +26,43 @@ class InstrumentTemplate;
 
 //---------------------------------------------------------
 //   @@ Part
-//   @P partName   QString  name of the part, used in the mixer
-//   @P show       bool     check/set whether or not a part is shown
-//   @P longName   QString
-//   @P shortName  QString
-//   @P volume     int
-//   @P mute       bool
-//   @P endTrack   int      (read only)
-//   @P startTrack int      (read only)
-//   @  midiProgram int     (read only)
-//   @  midiChannel int     (read only)
-//   @  instrumentId string (read only)
+//   @P endTrack        int         (read only)
+//   @P harmonyCount    int         (read only)
+//   @P hasDrumStaff    bool        (read only)
+//   @P hasPitchedStaff bool        (read only)
+//   @P hasTabStaff     bool        (read only)
+//   @P instrumentId    string      (read only)
+//   @P longName        string
+//   @P lyricCount      int         (read only)
+//   @P midiChannel     int         (read only)
+//   @P midiProgram     int         (read only)
+//   @P mute            bool
+//   @P partName        string      name of the part, used in the mixer
+//   @P shortName       string
+//   @P show            bool        check/set whether or not a part is shown
+//   @P startTrack      int         (read only)
+//   @P volume          int
 //---------------------------------------------------------
 
 class Part : public QObject, public ScoreElement {
       Q_OBJECT
 
-      Q_PROPERTY(QString partName READ partName WRITE setPartName)
-      Q_PROPERTY(bool show READ show WRITE setShow)
-      Q_PROPERTY(QString longName READ longName WRITE setLongName)
-      Q_PROPERTY(QString shortName READ shortName WRITE setShortName)
-      Q_PROPERTY(int volume READ volume WRITE setVolume)
-      Q_PROPERTY(bool mute READ mute WRITE setMute)
-      Q_PROPERTY(int endTrack READ endTrack)
-      Q_PROPERTY(int startTrack READ startTrack)
-      Q_PROPERTY(int midiProgram READ midiProgram)
-      Q_PROPERTY(int midiChannel READ midiChannel)
-      Q_PROPERTY(QString instrumentId READ instrumentId)
+      Q_PROPERTY(int          endTrack          READ endTrack)
+      Q_PROPERTY(int          harmonyCount      READ harmonyCount)
+      Q_PROPERTY(bool         hasDrumStaff      READ hasDrumStaff)
+      Q_PROPERTY(bool         hasPitchedStaff   READ hasPitchedStaff)
+      Q_PROPERTY(bool         hasTabStaff       READ hasTabStaff)
+      Q_PROPERTY(QString      instrumentId      READ instrumentId)
+      Q_PROPERTY(QString      longName          READ longName     WRITE setLongName)
+      Q_PROPERTY(int          lyricCount        READ lyricCount)
+      Q_PROPERTY(int          midiChannel       READ midiChannel)
+      Q_PROPERTY(int          midiProgram       READ midiProgram)
+      Q_PROPERTY(bool         mute              READ mute         WRITE setMute)
+      Q_PROPERTY(QString      partName          READ partName     WRITE setPartName)
+      Q_PROPERTY(QString      shortName         READ shortName    WRITE setShortName)
+      Q_PROPERTY(bool         show              READ show         WRITE setShow)
+      Q_PROPERTY(int          startTrack        READ startTrack)
+      Q_PROPERTY(int          volume            READ volume       WRITE setVolume)
 
       QString _partName;           ///< used in tracklist (mixer)
       InstrumentList _instruments;
@@ -126,13 +136,21 @@ class Part : public QObject, public ScoreElement {
       void setInstrument(const Instrument&&, int tick = -1);
       void setInstrument(const Instrument&, int tick = -1);
       void removeInstrument(int tick);
+      const InstrumentList* instruments() const   { return &_instruments;       }
+
+      void insertTime(int tick, int len);
 
       QString partName() const                 { return _partName; }
       void setPartName(const QString& s)       { _partName = s; }
-      InstrumentList* instruments()              { return &_instruments;       }
 
       QVariant getProperty(P_ID) const override;
       bool setProperty(P_ID, const QVariant&) override;
+
+      int lyricCount();
+      int harmonyCount();
+      bool hasPitchedStaff();
+      bool hasTabStaff();
+      bool hasDrumStaff();
       };
 
 }     // namespace Ms
diff --git a/libmscore/paste.cpp b/libmscore/paste.cpp
index f6831dc..8922a0e 100644
--- a/libmscore/paste.cpp
+++ b/libmscore/paste.cpp
@@ -180,6 +180,18 @@ bool Score::pasteStaff(XmlReader& e, Segment* dst, int dstStaff)
                                     e.incTick(cr->actualTicks());
                                     if (cr->type() == Element::Type::CHORD) {
                                           Chord* chord = static_cast<Chord*>(cr);
+                                          // disallow tie across barline within two-note tremolo
+                                          // tremolos can potentially still straddle the barline if no tie is required
+                                          // but these will be removed later
+                                          if (chord->tremolo() && chord->tremolo()->twoNotes()) {
+                                                Measure* m = tick2measure(tick);
+                                                int ticks = cr->actualTicks();
+                                                int rticks = m->endTick() - tick;
+                                                if (rticks < ticks || (rticks != ticks && rticks < ticks * 2)) {
+                                                      qDebug("tremolo does not fit in measure");
+                                                      return false;
+                                                      }
+                                                }
                                           for (int i = 0; i < graceNotes.size(); ++i) {
                                                 Chord* gc = graceNotes[i];
                                                 gc->setGraceIndex(i);
@@ -201,7 +213,7 @@ bool Score::pasteStaff(XmlReader& e, Segment* dst, int dstStaff)
                                                       }
                                                 }
                                           }
-                                    //shorten last cr to fit in the space made by makeGap
+                                    // shorten last cr to fit in the space made by makeGap
                                     if ((tick - dstTick) + cr->actualTicks() > tickLen) {
                                           int newLength = tickLen - (tick - dstTick);
                                           // check previous CR on same track, if it has tremolo, delete the tremolo
@@ -461,6 +473,8 @@ void Score::pasteChordRest(ChordRest* cr, int tick, const Interval& srcTranspose
                   while (rest) {
                         measure = tick2measure(tick);
                         Chord* c2 = firstpart ? c : static_cast<Chord*>(c->clone());
+                        if (!firstpart)
+                              c2->removeMarkings(true);
                         int mlen = measure->tick() + measure->ticks() - tick;
                         int len = mlen > rest ? rest : mlen;
                         QList<TDuration> dl = toDurationList(Fraction::fromTicks(len), true);
@@ -782,7 +796,7 @@ PasteStatus Score::cmdPaste(const QMimeData* ms, MuseScoreView* view)
             qDebug("no application mime data");
             return PasteStatus::NO_MIME;
             }
-      if ((_selection.isSingle()|| _selection.isList()) && ms->hasFormat(mimeSymbolFormat)) {
+      if ((_selection.isSingle() || _selection.isList()) && ms->hasFormat(mimeSymbolFormat)) {
             QByteArray data(ms->data(mimeSymbolFormat));
             XmlReader e(data);
             QPointF dragOffset;
@@ -807,9 +821,11 @@ PasteStatus Score::cmdPaste(const QMimeData* ms, MuseScoreView* view)
                                     ddata.view       = view;
                                     ddata.element    = nel;
                                     ddata.duration   = duration;
-                                    target->drop(ddata);
-                                    if (_selection.element())
-                                          addRefresh(_selection.element()->abbox());
+                                    if (target->acceptDrop(ddata)) {
+                                          target->drop(ddata);
+                                          if (_selection.element())
+                                                addRefresh(_selection.element()->abbox());
+                                          }
                                     }
                               }
                               delete el;
diff --git a/libmscore/pitchspelling.cpp b/libmscore/pitchspelling.cpp
index 9b061c8..a70d737 100644
--- a/libmscore/pitchspelling.cpp
+++ b/libmscore/pitchspelling.cpp
@@ -527,7 +527,7 @@ static int penalty(int lof1, int lof2, int k)
       }
 
 static const int WINDOW       = 9;
-#if 1 // yet(?) unused
+#if 0 // yet(?) unused
 static const int WINDOW_SHIFT = 3;
 static const int ASIZE        = 1024;   // 2 ** WINDOW
 #endif
diff --git a/libmscore/pitchspelling.h b/libmscore/pitchspelling.h
index 2830f83..df866b3 100644
--- a/libmscore/pitchspelling.h
+++ b/libmscore/pitchspelling.h
@@ -53,7 +53,7 @@ const int   STEP_DELTA_OCTAVE       = 7;  // the number of steps in an octave
 
 enum class Prefer : char { FLATS=8, NEAREST=11, SHARPS=13 };
 enum class NoteSpellingType : char { STANDARD = 0, GERMAN, GERMAN_PURE, SOLFEGGIO, FRENCH };
-enum class NoteCaseType : char { AUTO = -1, CAPITAL = 0, LOWER, UPPER };
+enum class NoteCaseType : signed char { AUTO = -1, CAPITAL = 0, LOWER, UPPER };
 
 extern int pitch2tpc(int pitch, Key, Prefer prefer);
 
diff --git a/libmscore/plugins.h b/libmscore/plugins.h
index fdd7788..3ae5024 100644
--- a/libmscore/plugins.h
+++ b/libmscore/plugins.h
@@ -24,7 +24,7 @@ namespace Ms {
 
 //---------------------------------------------------------
 //   @@ FileIO
-//   @P source QString
+//   @P source string
 //---------------------------------------------------------
 
 class FileIO : public QObject {
@@ -37,11 +37,17 @@ class FileIO : public QObject {
                NOTIFY sourceChanged)
       explicit FileIO(QObject *parent = 0);
 
+      //@ reads file contents and returns a string
       Q_INVOKABLE QString read();
+      //@ return true if the file exists
       Q_INVOKABLE bool exists();
+      //@ write a string to the file
       Q_INVOKABLE bool write(const QString& data);
+      //@ removes the file
       Q_INVOKABLE bool remove();
+      //@ returns a path suitable for a temporary file
       Q_INVOKABLE QString tempPath() {QDir dir; return dir.tempPath();};
+      //@ returns the file modification time
       Q_INVOKABLE int modifiedTime();
 
       QString source() { return mSource; };
@@ -69,8 +75,11 @@ class MsProcess : public QProcess {
       MsProcess(QObject* parent = 0) : QProcess(parent) {}
 
    public slots:
+      //@ --
       Q_INVOKABLE void start(const QString& program)      { QProcess::start(program); }
+      //@ --
       Q_INVOKABLE bool waitForFinished(int msecs = 30000) { return QProcess::waitForFinished(msecs); }
+      //@ --
       Q_INVOKABLE QByteArray readAllStandardOutput()      { return QProcess::readAllStandardOutput(); }
       };
 
@@ -78,8 +87,8 @@ class MsProcess : public QProcess {
 //   @@ ScoreView
 ///    This is an GUI element to show a score.
 //
-//   @P color  QColor  background color
-//   @P scale  qreal   scaling factor
+//   @P color  color    background color
+//   @P scale  float    scaling factor
 //---------------------------------------------------------
 
 class MsScoreView : public QQuickPaintedItem, public MuseScoreView {
@@ -119,9 +128,13 @@ class MsScoreView : public QQuickPaintedItem, public MuseScoreView {
       virtual void drawBackground(QPainter*, const QRectF&) const {}
 
    public slots:
+      //@ --
       Q_INVOKABLE void setScore(Score*);
+      //@ --
       Q_INVOKABLE void setCurrentPage(int n);
+      //@ --
       Q_INVOKABLE void nextPage();
+      //@ --
       Q_INVOKABLE void prevPage();
 
    public:
diff --git a/libmscore/property.cpp b/libmscore/property.cpp
index e97507f..e99fbc9 100644
--- a/libmscore/property.cpp
+++ b/libmscore/property.cpp
@@ -169,6 +169,8 @@ static const PropertyData propertyList[] = {
       { P_ID::LASSO_SIZE,          false, 0,               P_TYPE::SIZE_MM  },
 
       { P_ID::TIME_STRETCH,        false, 0,               P_TYPE::REAL     },
+      { P_ID::ORNAMENT_STYLE,      false, "ornamentStyle", P_TYPE::ORNAMENT_STYLE},
+
       { P_ID::TIMESIG,             false, 0,               P_TYPE::FRACTION },
       { P_ID::TIMESIG_GLOBAL,      false, 0,               P_TYPE::FRACTION },
       { P_ID::TIMESIG_STRETCH,     false, 0,               P_TYPE::FRACTION },
@@ -200,8 +202,8 @@ static const PropertyData propertyList[] = {
       { P_ID::NO_OFFSET,           false, "noOffset",              P_TYPE::INT  },
       { P_ID::IRREGULAR,           true,  "irregular",             P_TYPE::BOOL },
       { P_ID::ANCHOR,              false,  "anchor",               P_TYPE::INT },
-      { P_ID::SLUR_UOFF1,          false,  "o1",                   P_TYPE::POINT  },
 
+      { P_ID::SLUR_UOFF1,          false,  "o1",                   P_TYPE::POINT  },
       { P_ID::SLUR_UOFF2,          false,  "o2",                   P_TYPE::POINT  },
       { P_ID::SLUR_UOFF3,          false,  "o3",                   P_TYPE::POINT  },
       { P_ID::SLUR_UOFF4,          false,  "o4",                   P_TYPE::POINT  },
@@ -225,6 +227,7 @@ static const PropertyData propertyList[] = {
       { P_ID::ROLE,                false, "role",                  P_TYPE::INT },
       { P_ID::TRACK,               false, 0,                       P_TYPE::INT },
 
+      { P_ID::GLISSANDO_STYLE,     false, "glissandoStyle",        P_TYPE::GLISSANDO_STYLE},
       { P_ID::END,                 false, "",                      P_TYPE::INT }
       };
 
@@ -234,7 +237,9 @@ static const PropertyData propertyList[] = {
 
 P_TYPE propertyType(P_ID id)
       {
-      return propertyList[int(id)].type;
+          Q_ASSERT( propertyList[int(id)].id == id);
+
+          return propertyList[int(id)].type;
       }
 
 //---------------------------------------------------------
@@ -243,7 +248,8 @@ P_TYPE propertyType(P_ID id)
 
 bool propertyLink(P_ID id)
       {
-      return propertyList[int(id)].link;
+          Q_ASSERT( propertyList[int(id)].id == id);
+          return propertyList[int(id)].link;
       }
 
 //---------------------------------------------------------
@@ -252,7 +258,8 @@ bool propertyLink(P_ID id)
 
 const char* propertyName(P_ID id)
       {
-      return propertyList[int(id)].name;
+          Q_ASSERT( propertyList[int(id)].id == id);
+          return propertyList[int(id)].name;
       }
 
 //---------------------------------------------------------
@@ -283,6 +290,27 @@ QVariant getProperty(P_ID id, XmlReader& e)
                   return QVariant(e.readSize());
             case P_TYPE::STRING:
                   return QVariant(e.readElementText());
+            case P_TYPE::GLISSANDO_STYLE: {
+                QString value(e.readElementText());
+                if ( value == "whitekeys")
+                    return QVariant(int(MScore::GlissandoStyle::WHITE_KEYS));
+                else if ( value == "blackkeys")
+                    return QVariant(int(MScore::GlissandoStyle::BLACK_KEYS));
+                else if ( value == "diatonic")
+                    return QVariant(int(MScore::GlissandoStyle::DIATONIC));
+                else // e.g., normally "Chromatic"
+                    return QVariant(int(MScore::GlissandoStyle::CHROMATIC));
+            }
+              break;
+            case P_TYPE::ORNAMENT_STYLE:
+                  {
+                      QString value(e.readElementText());
+                      if ( value == "baroque")
+                          return QVariant(int(MScore::OrnamentStyle::BAROQUE));
+                      
+                      return QVariant(int(MScore::OrnamentStyle::DEFAULT));
+                  }
+                  break; // break is really not necessary because of the default return
             case P_TYPE::DIRECTION:
                   {
                   QString value(e.readElementText());
diff --git a/libmscore/property.h b/libmscore/property.h
index e58a64d..91afc2d 100644
--- a/libmscore/property.h
+++ b/libmscore/property.h
@@ -164,6 +164,7 @@ enum class P_ID : unsigned char {
       LASSO_SIZE,
 
       TIME_STRETCH,
+      ORNAMENT_STYLE,
       TIMESIG,
       TIMESIG_GLOBAL,
       TIMESIG_STRETCH,
@@ -220,6 +221,8 @@ enum class P_ID : unsigned char {
       ROLE,
       TRACK,
 
+      GLISSANDO_STYLE,
+
       END
       };
 
@@ -240,6 +243,7 @@ enum class P_TYPE : char {
       COLOR,
       DIRECTION,      // enum class MScore::Direction
       DIRECTION_H,    // enum class MScore::DirectionH
+      ORNAMENT_STYLE, // enum class MScore::OrnamentStyle
       TDURATION,
       LAYOUT_BREAK,
       VALUE_TYPE,
@@ -249,7 +253,8 @@ enum class P_TYPE : char {
       GROUPS,
       SYMID,
       TEXT_STYLE,
-      INT_LIST
+      INT_LIST,
+      GLISSANDO_STYLE
       };
 
 extern QVariant getProperty(P_ID type, XmlReader& e);
diff --git a/libmscore/range.cpp b/libmscore/range.cpp
index 5c77a69..01fb820 100644
--- a/libmscore/range.cpp
+++ b/libmscore/range.cpp
@@ -333,6 +333,7 @@ bool TrackList::write(Measure* measure) const
                   // split note/rest
                   //
 
+                  bool firstpart = true;
                   while (duration.numerator() > 0) {
                         if ((e->type() == Element::Type::REST || e->type() == Element::Type::REPEAT_MEASURE)
                            && (duration >= rest || e == back())
@@ -375,6 +376,8 @@ bool TrackList::write(Measure* measure) const
                               else if (e->type() == Element::Type::CHORD) {
                                     segment = m->getSegment(e, m->tick() + pos.ticks());
                                     Chord* c = static_cast<Chord*>(e)->clone();
+                                    if (!firstpart)
+                                          c->removeMarkings(true);
                                     c->setScore(score);
                                     c->setTrack(_track);
                                     c->setDuration(d);
@@ -428,6 +431,7 @@ bool TrackList::write(Measure* measure) const
                                           }
                                     }
                               }
+                        firstpart = false;
                         }
                   }
             else if (e->type() == Element::Type::BAR_LINE) {
@@ -456,10 +460,11 @@ bool TrackList::write(Measure* measure) const
       //
 
       for (Segment* s = measure->first(); s; s = s->next1()) {
-            Chord* chord = static_cast<Chord*>(s->element(_track));
-            if (chord == 0 || chord->type() != Element::Type::CHORD)
+            Element* e = s->element(_track);
+            if (e == 0 || e->type() != Element::Type::CHORD)
                   continue;
-            foreach (Note* n, chord->notes()) {
+            Chord* chord = static_cast<Chord*>(e);
+            for (Note* n : chord->notes()) {
                   Tie* tie = n->tieFor();
                   if (!tie)
                         continue;
@@ -546,7 +551,8 @@ bool ScoreRange::write(Score* score, int tick) const
             int track = dl->track();
             if (!dl->write(score->tick2measure(tick)))
                   return false;
-            if ((track % VOICES) == 0) {
+            if ((track % VOICES) == VOICES - 1)  {
+                  // clone staff if appropriate after all voices have been copied
                   int staffIdx = track / VOICES;
                   Staff* ostaff = score->staff(staffIdx);
                   LinkedStaves* linkedStaves = ostaff->linkedStaves();
diff --git a/libmscore/read114.cpp b/libmscore/read114.cpp
index 8b21ec7..75628f9 100644
--- a/libmscore/read114.cpp
+++ b/libmscore/read114.cpp
@@ -736,7 +736,7 @@ Score::FileError Score::read114(XmlReader& e)
             qreal tempo = i->second.tempo;
             if (tempomap()->tempo(tick) != tempo) {
                   TempoText* tt = new TempoText(this);
-                  tt->setXmlText(QString("<sym>unicodeNoteQuarterUp</sym> = %1").arg(qRound(tempo*60)));
+                  tt->setXmlText(QString("<sym>metNoteQuarterUp</sym> = %1").arg(qRound(tempo*60)));
                   tt->setTempo(tempo);
                   tt->setTrack(0);
                   tt->setVisible(false);
diff --git a/libmscore/rendermidi.cpp b/libmscore/rendermidi.cpp
index aa8c2cb..b70ed75 100644
--- a/libmscore/rendermidi.cpp
+++ b/libmscore/rendermidi.cpp
@@ -15,12 +15,16 @@
  render score into event list
 */
 
+#include <set>
+
 #include "score.h"
 #include "volta.h"
 #include "note.h"
+#include "glissando.h"
 #include "instrument.h"
 #include "part.h"
 #include "chord.h"
+#include "trill.h"
 #include "style.h"
 #include "slur.h"
 #include "tie.h"
@@ -236,59 +240,64 @@ static void collectNote(EventMap* events, int channel, const Note* note, int vel
                   off += tieLen;
             playNote(events, note, channel, p, velo, on, off);
             }
-#if 0
-      if (note->bend()) {
-            Bend* bend = note->bend();
-            int ticks = note->playTicks();
-            const QList<PitchValue>& points = bend->points();
 
-            // transform into midi values
-            //    pitch is in 1/100 semitones
-            //    midi pitch is 12/16384 semitones
-            //
-            //    time is in noteDuration/60
-
-            int n = points.size();
-            int tick1 = 0;
-            for (int pt = 0; pt < n; ++pt) {
-                  int pitch = points[pt].pitch;
-
-                  if ((pt == 0) && (pitch == points[pt+1].pitch)) {
-                        Event ev(ME_CONTROLLER);
-                        ev.setChannel(channel);
-                        ev.setController(CTRL_PITCH);
-                        int midiPitch = (pitch * 16384) / 300;
-                        ev.setValue(midiPitch);
-                        events->insertMulti(tick, ev);
+      // Bends
+      for (Element* e: note->el()) {
+            if (e == 0 || e->type() != Element::Type::BEND)
+                  continue;
+            Bend* bend = static_cast<Bend*>(e);
+            if (!bend->playBend())
+                  break;
+            const QList<PitchValue>& points = bend->points();
+            int pitchSize = points.size();
+
+            double noteLen = note->playTicks();
+            int lastPointTick = tick1;
+            for(int pitchIndex = 0; pitchIndex < pitchSize-1; pitchIndex++) {
+                  PitchValue pitchValue = points[pitchIndex];
+                  PitchValue nextPitch  = points[pitchIndex+1];
+                  int nextPointTick = tick1 + nextPitch.time / 60.0 * noteLen;
+                  int pitch = pitchValue.pitch;
+
+                  if (pitchIndex == 0 && (pitch == nextPitch.pitch)) {
+                        int midiPitch = (pitch * 16384) / 1200 + 8192;
+                        int msb = midiPitch / 128;
+                        int lsb = midiPitch % 128;
+                        NPlayEvent ev(ME_PITCHBEND, channel, lsb, msb);
+                        events->insert(std::pair<int, NPlayEvent>(lastPointTick, ev));
+                        lastPointTick = nextPointTick;
+                        continue;
                         }
-                  if (pitch != points[pt+1].pitch) {
-                        int pitchDelta = points[pt+1].pitch - pitch;
-                        int tick2      = (points[pt+1].time * ticks) / 60;
-                        int dt = points[pt+1].time - points[pt].time;
-                        for (int tick3 = tick1; tick3 < tick2; tick3 += 16) {
-                              Event ev(ME_CONTROLLER);
-                              ev.setChannel(channel);
-                              ev.setController(CTRL_PITCH);
-
-                              int dx = ((tick3-tick1) * 60) / ticks;
-                              int p  = pitch + dx * pitchDelta / dt;
-
-                              int midiPitch = (p * 16384) / 1200;
-                              ev.setValue(midiPitch);
-                              events->insertMulti(tick + tick3, ev);
-                              }
-                        tick1 = tick2;
+                  if (pitch == nextPitch.pitch && !(pitchIndex == 0 && pitch != 0)) {
+                        lastPointTick = nextPointTick;
+                        continue;
                         }
-                  if (pt == (n-2))
-                        break;
+
+                  double pitchDelta = nextPitch.pitch - pitch;
+                  double tickDelta  = nextPitch.time - pitchValue.time;
+                  /*         B
+                            /.                   pitch is 1/100 semitones
+                    bend   / .  pitchDelta       time is in noteDuration/60
+                          /  .                   midi pitch is 12/16384 semitones
+                         A....
+                       tickDelta   */
+                  for (int i = lastPointTick; i <= nextPointTick; i += 16) {
+                        double dx = ((i-lastPointTick) * 60) / noteLen;
+                        int p = pitch + dx * pitchDelta / tickDelta;
+
+                        // We don't support negative pitch, but Midi does. Let's center by adding 8192.
+                        int midiPitch = (p * 16384) / 1200 + 8192;
+                        // Representing pitch as two bytes
+                        int msb = midiPitch / 128;
+                        int lsb = midiPitch % 128;
+                        NPlayEvent ev(ME_PITCHBEND, channel, lsb, msb);
+                        events->insert(std::pair<int, NPlayEvent>(i, ev));
+                        }
+                  lastPointTick = nextPointTick;
                   }
-            Event ev(ME_CONTROLLER);
-            ev.setChannel(channel);
-            ev.setController(CTRL_PITCH);
-            ev.setValue(0);
-            events->insertMulti(tick + ticks, ev);
+            NPlayEvent ev(ME_PITCHBEND, channel, 0, 64); // 0:64 is 8192 - no pitch bend
+            events->insert(std::pair<int, NPlayEvent>(tick1+noteLen, ev));
             }
-#endif
       }
 
 //---------------------------------------------------------
@@ -347,7 +356,7 @@ static void collectMeasureEvents(EventMap* events, Measure* m, Staff* staff, int
 
                   foreach (Articulation* a, chord->articulations()) {
                         instr->updateVelocity(&velocity,channel, a->subtypeName());
-                  }
+                        }
 
                   for (Chord* c : chord->graceNotesBefore()) {
                         for (const Note* note : c->notes())
@@ -459,15 +468,13 @@ void Score::updateHairpin(Hairpin* h)
       //
 
       int endVelo = velo;
-      if (h->hairpinType() == Hairpin::Type::CRESCENDO)
-            {
+      if (h->hairpinType() == Hairpin::Type::CRESCENDO) {
             if (incr == 0 && velo < st->velocities().nextVelo(tick2-1))
                   endVelo = st->velocities().nextVelo(tick2-1);
             else
                   endVelo += incr;
             }
-      else
-            {
+      else {
             if (incr == 0 && velo > st->velocities().nextVelo(tick2-1))
                   endVelo = st->velocities().nextVelo(tick2-1);
             else
@@ -606,7 +613,7 @@ void Score::renderStaff(EventMap* events, Staff* staff)
             int endTick    = startTick + rs->len;
             int tickOffset = rs->utick - rs->tick;
             for (Measure* m = tick2measure(startTick); m; m = m->nextMeasure()) {
-                  if (lastMeasure && m->isRepeatMeasure(staff->part())) {
+                  if (lastMeasure && m->isRepeatMeasure(staff)) {
                         int offset = m->tick() - lastMeasure->tick();
                         collectMeasureEvents(events, lastMeasure, staff, tickOffset + offset);
                         }
@@ -659,7 +666,7 @@ void Score::renderSpanners(EventMap* events, int staffIdx)
                   if (s->tick2() >= tick1 && s->tick2() <= tick2) {
                         int t = s->tick2() + tickOffset + 1;
                         if (t > repeatList()->last()->utick + repeatList()->last()->len)
-                             t = repeatList()->last()->utick + repeatList()->last()->len;
+                              t = repeatList()->last()->utick + repeatList()->last()->len;
                         channelPedalEvents.at(channel).push_back(std::pair<int, bool>(t, false));
                         }
                   }
@@ -690,12 +697,12 @@ void Score::swingAdjustParams(Chord* chord, int& gateTime, int& ontime, int swin
       MeasureBase* pm = cm->prev();
       Element::Type pt = pm ? pm->type() : Element::Type::INVALID;
       if (!pm || pm->lineBreak() || pm->pageBreak() || pm->sectionBreak()
-            || pt == Element::Type::VBOX || pt == Element::Type::HBOX
-            || pt == Element::Type::FBOX || pt == Element::Type::TBOX) {
+         || pt == Element::Type::VBOX || pt == Element::Type::HBOX
+         || pt == Element::Type::FBOX || pt == Element::Type::TBOX) {
             int offset = (cm->timesig() - cm->len()).ticks();
             if (offset > 0)
                   tick += offset;
-           }
+            }
 
       int swingBeat = swingUnit * 2;
       qreal ticksDuration = (qreal)chord->actualTicks();
@@ -709,10 +716,10 @@ void Score::swingAdjustParams(Chord* chord, int& gateTime, int& ontime, int swin
                   ontime = ontime + swingActualAdjust;
                   }
             }
-            int endTick = tick + ticksDuration;
-            if ((endTick % swingBeat == swingUnit) && (!isSubdivided(ncr,swingUnit))) {
-                  gateTime = gateTime + (swingActualAdjust/10);
-                  }
+      int endTick = tick + ticksDuration;
+      if ((endTick % swingBeat == swingUnit) && (!isSubdivided(ncr,swingUnit))) {
+            gateTime = gateTime + (swingActualAdjust/10);
+            }
       }
 
 //---------------------------------------------------------
@@ -732,47 +739,44 @@ bool Score::isSubdivided(ChordRest* chord, int swingUnit)
       }
 
 //---------------------------------------------------------
-//   renderChord
-//    ontime in 1/1000 of duration
+//   renderTremolo
 //---------------------------------------------------------
 
-static QList<NoteEventList> renderChord(Chord* chord, int gateTime, int ontime)
+void renderTremolo(Chord *chord, QList<NoteEventList> & ell)
       {
-      QList<NoteEventList> ell;
-
-      if (chord->notes().isEmpty())
-            return ell;
       Segment* seg = chord->segment();
-
-      int notes = chord->notes().size();
-      for (int i = 0; i < notes; ++i)
-            ell.append(NoteEventList());
-
-      bool gateEvents = true;
-      //
-      //    process tremolo
-      //
       Tremolo* tremolo = chord->tremolo();
-      if (tremolo) {
-            //int n = 1 << tremolo->lines();
-            //int l = 1000 / n;
-            if (chord->tremoloChordType() == TremoloChordType::TremoloFirstNote) {
-                  int t = MScore::division / (1 << (tremolo->lines() + chord->durationType().hooks()));
-                  Segment::Type st = Segment::Type::ChordRest;
-                  Segment* seg2 = seg->next(st);
-                  int track = chord->track();
-                  while (seg2 && !seg2->element(track))
-                        seg2 = seg2->next(st);
-                  Chord* c2 = seg2 ? static_cast<Chord*>(seg2->element(track)) : 0;
-                  if (c2 && c2->type() == Element::Type::CHORD) {
-                        int tnotes = qMin(notes, c2->notes().size());
-                        int tticks = chord->actualTicks() * 2; // use twice the size
-                        int n = tticks / t;
-                        n /= 2;
-                        int l = 2000 * t / tticks;
-                        for (int k = 0; k < tnotes; ++k) {
-                              NoteEventList* events = &ell[k];
+      int notes = chord->notes().size();
+      //int n = 1 << tremolo->lines();
+      //int l = 1000 / n;
+      if (chord->tremoloChordType() == TremoloChordType::TremoloFirstNote) {
+            int t = MScore::division / (1 << (tremolo->lines() + chord->durationType().hooks()));
+            Segment::Type st = Segment::Type::ChordRest;
+            Segment* seg2 = seg->next(st);
+            int track = chord->track();
+            while (seg2 && !seg2->element(track))
+                  seg2 = seg2->next(st);
+            Chord* c2 = seg2 ? static_cast<Chord*>(seg2->element(track)) : 0;
+            if (c2 && c2->type() == Element::Type::CHORD) {
+                  int notes2 = c2->notes().size();
+                  int tnotes = qMax(notes, notes2);
+                  int tticks = chord->actualTicks() * 2; // use twice the size
+                  int n = tticks / t;
+                  n /= 2;
+                  int l = 2000 * t / tticks;
+                  for (int k = 0; k < tnotes; ++k) {
+                        NoteEventList* events;
+                        if (k < notes) {
+                              // first chord has note
+                              events = &ell[k];
                               events->clear();
+                              }
+                        else {
+                              // otherwise reuse note 0
+                              events = &ell[0];
+                              }
+                        if (k < notes && k < notes2) {
+                              // both chords have note
                               int p1 = chord->notes()[k]->pitch();
                               int p2 = c2->notes()[k]->pitch();
                               int dpitch = p2 - p1;
@@ -781,153 +785,609 @@ static QList<NoteEventList> renderChord(Chord* chord, int gateTime, int ontime)
                                     events->append(NoteEvent(dpitch, l * i * 2 + l, l));
                                     }
                               }
+                        else if (k < notes) {
+                              // only first chord has note
+                              for (int i = 0; i < n; ++i)
+                                    events->append(NoteEvent(0, l * i * 2, l));
+                              }
+                        else {
+                              // only second chord has note
+                              // reuse note 0 of first chord
+                              int p1 = chord->notes()[0]->pitch();
+                              int p2 = c2->notes()[k]->pitch();
+                              int dpitch = p2-p1;
+                              for (int i = 0; i < n; ++i)
+                                    events->append(NoteEvent(dpitch, l * i * 2 + l, l));
+                              }
                         }
-                  else
-                        qDebug("Chord::renderTremolo: cannot find 2. chord");
                   }
-            else if (chord->tremoloChordType() == TremoloChordType::TremoloSecondNote) {
-                  for (int k = 0; k < notes; ++k) {
-                        NoteEventList* events = &(ell)[k];
-                        events->clear();
+            else
+                  qDebug("Chord::renderTremolo: cannot find 2. chord");
+            }
+      else if (chord->tremoloChordType() == TremoloChordType::TremoloSecondNote) {
+            for (int k = 0; k < notes; ++k) {
+                  NoteEventList* events = &(ell)[k];
+                  events->clear();
+                  }
+            }
+      else if (chord->tremoloChordType() == TremoloChordType::TremoloSingle) {
+            int t = MScore::division / (1 << (tremolo->lines() + chord->durationType().hooks()));
+            if (t == 0) // avoid crash on very short tremolo
+                  t = 1;
+            int n = chord->duration().ticks() / t;
+            int l = 1000 / n;
+            for (int k = 0; k < notes; ++k) {
+                  NoteEventList* events = &(ell)[k];
+                  events->clear();
+                  for (int i = 0; i < n; ++i)
+                        events->append(NoteEvent(0, l * i, l));
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   renderArpeggio
+//---------------------------------------------------------
+
+void renderArpeggio(Chord *chord, QList<NoteEventList> & ell)
+      {
+      int notes = chord->notes().size();
+      int l = 64;
+      while (l * notes > chord->upNote()->playTicks())
+            l = 2*l / 3;
+      int start, end, step;
+      bool up = chord->arpeggio()->arpeggioType() != ArpeggioType::DOWN && chord->arpeggio()->arpeggioType() != ArpeggioType::DOWN_STRAIGHT;
+      if (up) {
+            start = 0;
+            end   = notes;
+            step  = 1;
+            }
+      else {
+            start = notes - 1;
+            end   = -1;
+            step  = -1;
+            }
+      int j = 0;
+      for (int i = start; i != end; i += step) {
+            NoteEventList* events = &(ell)[i];
+            events->clear();
+            int ot = (l * j * 1000) / chord->upNote()->playTicks();
+            events->append(NoteEvent(0, ot, 1000 - ot));
+            j++;
+            }
+      }
+
+//---------------------------------------------------------
+//   convertLine
+// find the line in clefF corresponding to lineL2 in clefR
+//---------------------------------------------------------
+
+int convertLine (int lineL2, ClefType clefL, ClefType clefR) {
+      int lineR2 = lineL2;
+      int goalpitch = line2pitch(lineL2, clefL, Key::C);
+      while ( line2pitch(lineR2, clefR, Key::C) > goalpitch )
+            lineR2++;
+      while ( line2pitch(lineR2, clefR, Key::C) < goalpitch )
+            lineR2--;
+      return lineR2;
+      }
+
+//---------------------------------------------------------
+//   convertLine
+// find the line in clef for NoteL corresponding to lineL2 in clef for noteR
+// for example middle C is line 10 in Treble clef, but is line -2 in Bass clef.
+//---------------------------------------------------------
+
+int convertLine(int lineL2, Note *noteL, Note *noteR)
+      {
+      return convertLine(lineL2,
+         noteL->chord()->staff()->clef(noteL->chord()->tick()),
+         noteR->chord()->staff()->clef(noteR->chord()->tick()));
+      }
+
+//---------------------------------------------------------
+//   articulationExcursion
+// noteL is the note to measure the deltastep from, i.e., ornaments are w.r.t. this note
+// noteR is the note to search backward from to find accidentals.
+//    for ornament calculation noteL and noteR are the same, but for glissando they are
+//     the start end end note of glissando.
+// deltastep is the number of diatonic steps between the base note and this articulation step.
+//---------------------------------------------------------
+
+int articulationExcursion(Note *noteL, Note *noteR, int deltastep)
+      {
+      if (0 == deltastep)
+            return 0;
+      Chord *chordL = noteL->chord();
+      Chord *chordR = noteR->chord();
+      int pitchL = noteL->pitch();
+      int tickL = chordL->tick();
+      Staff * staffL = chordL->staff();
+      ClefType clefL = staffL->clef(tickL);
+      // line represents the ledger line of the staff.  0 is the top line, 1, is the space between the top 2 lines,
+      //  ... 8 is the bottom line.
+      int lineL     = noteL->line();
+      // we use line - deltastep, because lines are oriented from top to bottom, while step is oriented from bottom to top.
+      int lineL2    = lineL - deltastep;
+      Measure* measureR = chordR->segment()->measure();
+
+      Segment* segment = noteL->chord()->segment();
+      int lineR2 = convertLine(lineL2, noteL, noteR);
+      // is there another note in this segment on the same line?
+      // if so, use its pitch exactly.
+      int halfsteps;
+      int staffIdx = staffL->idx();
+      int startTrack = staffIdx * VOICES;
+      int endTrack   = startTrack + VOICES;
+      bool done = false;
+      for (int track = startTrack; track < endTrack; ++track) {
+            Element *e = segment->element(track);
+            if (!e || e->type() != Element::Type::CHORD)
+                  continue;
+            Chord* chord = static_cast<Chord*>(e);
+            for (Note* note : chord->notes()) {
+                  if (note->tieBack())
+                        continue;
+                  int pc = (note->line() + 700) % 7;
+                  int pc2 = (lineL2 + 700) % 7;
+                  if (pc2 == pc) {
+                        // e.g., if there is an F# note at this staff/tick, then force every F to be F#.
+                        int octaves = (note->line() - lineL2) / 7;
+                        halfsteps = note->pitch() + 12 * octaves - pitchL;
+                        done = true;
+                        break;
                         }
                   }
-            else if (chord->tremoloChordType() == TremoloChordType::TremoloSingle) {
-                  int t = MScore::division / (1 << (tremolo->lines() + chord->durationType().hooks()));
-                  if (t == 0) // avoid crash on very short tremolo
-                        t = 1;
-                  int n = chord->duration().ticks() / t;
-                  int l = 1000 / n;
-                  for (int k = 0; k < notes; ++k) {
-                        NoteEventList* events = &(ell)[k];
-                        events->clear();
-                        for (int i = 0; i < n; ++i)
-                              events->append(NoteEvent(0, l * i, l));
+            if (!done) {
+                  if (staffL->isPitchedStaff()) {
+                        AccidentalVal acciv2 = measureR->findAccidental(chordR->segment(), chordR->staff()->idx(), lineR2);
+                        int acci2 = int(acciv2);
+                        // we have to add ( note->ppitch() - noteL->epitch() ) which is the delta for transposing instruments.
+                        halfsteps = line2pitch(lineL-deltastep, clefL, Key::C) + noteL->ppitch() - noteL->epitch() + acci2 - pitchL;
+                        }
+                  else {
+                        // cannot rely on accidentals or key signatures
+                        halfsteps = deltastep;
                         }
                   }
             }
-      else if (chord->arpeggio()) {
-            gateEvents = false;     // dont apply gateTime to arpeggio events
-            int l = 64;
-            while (l * notes > chord->upNote()->playTicks())
-                  l = 2*l / 3 ;
-            int start, end, step;
-            bool up = chord->arpeggio()->arpeggioType() != ArpeggioType::DOWN;
-            if (up) {
-                  start = 0;
-                  end   = notes;
-                  step  = 1;
+      return halfsteps;
+      }
+
+//---------------------------------------------------------
+// totalTiedNoteTicks
+//      return the total of the actualTicks of the given note plus
+//      the chain of zero or more notes tied to it to the right.
+//---------------------------------------------------------
+int totalTiedNoteTicks(Note* note)
+      {
+      int total = note->chord()->actualTicks();
+      while (note->tieFor() && (note->chord()->tick() < note->tieFor()->endNote()->chord()->tick())) {
+            note = note->tieFor()->endNote();
+            total += note->chord()->actualTicks();
+            }
+      return total;
+      };
+      
+      
+//---------------------------------------------------------
+//   renderNoteArticulation
+// tickspernote, number of ticks, either _16h or _32nd, i.e., MScore::division/4 or MScore::division/8
+// repeatp, true means repeat the body as many times as possible to fill the time slice.
+// sustainp, true means the last note of the body is sustained to fill remaining time slice
+//---------------------------------------------------------
+
+bool renderNoteArticulation(NoteEventList* events, Note * note, bool chromatic, int requestedTicksPerNote,
+   const vector<int> & prefix, const vector<int> & body,
+   bool repeatp, bool sustainp, const vector<int> & suffix,
+   int fastestFreq=16, int slowestFreq=8 // 16 Hz and 8 Hz
+   )
+      {
+
+      events->clear();
+      Chord *chord = note->chord();
+      int maxticks = totalTiedNoteTicks(note);
+      int space = 1000 * maxticks;
+      int numrepeat = 1;
+      int sustain   = 0;
+      int ontime    = 0;
+
+      int p = prefix.size();
+      int b = body.size();
+      int s = suffix.size();
+      int ticksPerNote = 0;
+            
+      if (p + b + s <= 0 )
+            return false;
+
+      int tick = chord->tick();
+      qreal tempo = chord->score()->tempo(tick);
+      int ticksPerSecond = tempo * MScore::division;
+
+      int minTicksPerNote = int(ticksPerSecond / fastestFreq);
+      int maxTicksPerNote = (0 == slowestFreq) ? 0 : int(ticksPerSecond / slowestFreq);
+            
+      // for fast tempos, we have to slow down the tremblement frequency, i.e., increase the ticks per note
+      if (requestedTicksPerNote >= minTicksPerNote)
+            ;
+      else { // try to divide the requested frequency by a power of 2 if possible, if not, use the maximum frequency, ie., minTicksPerNote
+            ticksPerNote = requestedTicksPerNote;
+            while (ticksPerNote < minTicksPerNote) {
+                  ticksPerNote *= 2; // decrease the tremblement frequency
                   }
-            else {
-                  start = notes - 1;
-                  end   = -1;
-                  step  = -1;
+            if (ticksPerNote > maxTicksPerNote)
+                  ticksPerNote = minTicksPerNote;
+            }
+            
+      ticksPerNote = max(requestedTicksPerNote, minTicksPerNote);
+
+      if (slowestFreq <= 0) // no slowest freq given such as something silly like glissando with 4 notes over 8 counts.
+            ;
+      else if (ticksPerNote <= maxTicksPerNote)
+            ;
+      else {
+            // for slow tempos, such as adagio, we may need to speed up the tremblement freqency, i.e., decrease the ticks per note, to make it sound reasonable.
+            ticksPerNote = requestedTicksPerNote ;
+            while (ticksPerNote > maxTicksPerNote) {
+                  ticksPerNote /= 2;
                   }
-            int j = 0;
-            for (int i = start; i != end; i += step) {
-                  NoteEventList* events = &(ell)[i];
-                  events->clear();
-                  int ot = (l * j * 1000) / chord->upNote()->playTicks();
-                  events->append(NoteEvent(0, ot, 1000 - ot));
-                  j++;
+            if (ticksPerNote < minTicksPerNote)
+                  ticksPerNote = minTicksPerNote;
+            }
+      // calculate whether to shorten the duration value.
+      if ( ticksPerNote*(p + b + s) <= maxticks )
+            ; // plenty of space to play the notes without changing the requested trill note duration
+      else if ( ticksPerNote == minTicksPerNote )
+            return false; // the ornament is impossible to implement respecting the minimum duration and all the notes it contains
+      else {
+            ticksPerNote = maxticks / (p + b + s);  // integer division ignoring remainder
+            if ( slowestFreq <= 0 )
+                  ;
+            else if ( ticksPerNote < minTicksPerNote )
+                  return false;
+            }
+
+      int millespernote = space * ticksPerNote  / maxticks;  // rescale duration into per mille
+
+      // local function:
+      // look ahead in the given vector to see if the current note is the same pitch as the next note or next several notes.
+      // If so, increment the duration by the appropriate note duration, and increment the index, j, to the next note index
+      // of a different pitch.
+      // The total duration of the tied note is returned, and the index is modified.
+      auto tieForward = [millespernote] (int & j, const vector<int> & vec) {
+               int size = vec.size();
+               int duration = millespernote;
+               while ( j < size-1 && vec[j] == vec[j+1] ) {
+                     duration += millespernote;
+                     j++;
+                     }
+               return duration;
+               };
+
+      // local function:
+      auto makeEvent = [note,chord,chromatic,events] (int pitch, int ontime, int duration) {
+               events->append( NoteEvent(chromatic ? pitch : articulationExcursion(note,note,pitch),
+                  ontime/chord->actualTicks(),
+                  duration/chord->actualTicks()));
+               return ontime + duration;
+               };
+
+      // calculate the number of times to repeat the body, and sustain the last note of the body
+      // 1000 = P + numrepeat*B+sustain + S
+      if (repeatp)
+            numrepeat = (space - millespernote*(p + s)) / (millespernote * b);
+      if (sustainp)
+            sustain   = space - millespernote*(p + numrepeat * b + s);
+      // render the prefix
+      for (int j=0; j < p; j++)
+            ontime = makeEvent(prefix[j], ontime, tieForward(j,prefix));
+
+      if (b > 0) {
+            // render the body, but not the final repetion
+            for (int r = 0; r < numrepeat-1; r++) {
+                  for (int j=0; j < b; j++)
+                        ontime = makeEvent(body[j], ontime, millespernote);
                   }
+            // render the final repetion of body, but not the final note of the repition
+            for (int j = 0; j < b - 1; j++)
+                  ontime = makeEvent(body[j], ontime, millespernote);
+            // render the final note of the final repeat of body
+            ontime = makeEvent(body[b-1], ontime, millespernote+sustain);
+            }
+      // render the suffix
+      for (int j = 0; j < s; j++)
+            ontime = makeEvent(suffix[j], ontime, tieForward(j,suffix));
+            
+      return true;
+      }
+
+      
+//---------------------------------------------------------
+//   renderNoteArticulation
+//---------------------------------------------------------
+      
+bool renderNoteArticulation(NoteEventList* events, Note * note, bool chromatic, ArticulationType articulationType, MScore::OrnamentStyle ornamentStyle)
+      {
+            // This struct specifies how to render an articulation.
+            //   atype - the articulation type to implement, such as ArticulationType::Turn
+            //   ostyles - the actual ornament has a property called ornamentStyle whose value is
+            //             a value of type MScore::OrnamentStyle.  This ostyles field indicates the
+            //             the set of ornamentStyles which apply to this rendition.
+            //   duration - the default duration for each note in the rendition, the final duration
+            //            rendered might be less than this if an articulation is attached to a note of
+            //            short duration.
+            //   prefix - vector of integers. indicating which notes to play at the beginning of rendering the
+            //            articulation.  0 represents the principle note, 1==> the note diatonically 1 above
+            //            -1 ==> the note diatonically 1 below.  E.g., in the key of G, if a turn articulation
+            //            occures above the note F#, then 0==>F#, 1==>G, -1==>E.
+            //            These integers indicate which notes actual notes to play when rendering the ornamented
+            //            note.   However, if the same integer appears several times adjacently such as {0,0,0,1}
+            //            That means play the notes tied.  e.g., F# followed by G, but the duration of F# is 3x the
+            //            duration of the G.
+            //    body   - notes to play comprising the body of the rendered ornament.
+            //            The body differs from the prefix and suffix in several ways.
+            //            * body does not support tied notes: {0,0,0,1} means play 4 distinct notes (not tied).
+            //            * if there is sufficient duration in the principle note, AND repeatep is true, then body
+            //               will be rendered multiple times, as the duration allows.
+            //            * to avoid a time gap (or rest) in rendering the articulation, if sustainp is true,
+            //               then the final note of the body will be sustained to fill the left-over time.
+            //    suffix - similar to prefix but played once at the end of the rendered ornament.
+            //    repeatp  - whether the body is repeatable in its entirety.
+            //    sustainp - whether the final note of the body should be sustained to fill the remaining duration.
+            struct OrnamentExcursion {
+                  ArticulationType atype;
+                  set<MScore::OrnamentStyle> ostyles;
+                  int duration;
+                  vector<int> prefix;
+                  vector<int> body;
+                  bool repeatp;
+                  bool sustainp;
+                  vector<int> suffix;
+            };
+            int _16th = MScore::division / 4;
+            int _32nd = _16th / 2;
+            vector<int> emptypattern = {};
+            set<MScore::OrnamentStyle> baroque  = {MScore::OrnamentStyle::BAROQUE};
+            set<MScore::OrnamentStyle> defstyle = {MScore::OrnamentStyle::DEFAULT};
+            set<MScore::OrnamentStyle> any; // empty set has the special meaning of any-style, rather than no-styles.
+            
+            vector<OrnamentExcursion> excursions = {
+                  //  articulation type           set of  duration       body         repeatp      suffix
+                  //                              styles          prefix                    sustainp
+                   {ArticulationType::Turn,        any,     _32nd, {},    {1,0,-1,0},   false, true, {}}
+                  ,{ArticulationType::Reverseturn, any,     _32nd, {},    {-1,0,1,0},   false, true, {}}
+                  ,{ArticulationType::Trill,       baroque, _32nd, {1,0}, {1,0},        true,  true, {}}
+                  ,{ArticulationType::Trill,       defstyle,_32nd, {0,1}, {0,1},        true,  true, {}}
+                  ,{ArticulationType::Plusstop,    baroque, _32nd, {0,-1},{0, -1},      true,  true, {}}
+                  ,{ArticulationType::Mordent,     any,     _32nd, {},    {0,-1,0},     false, true, {}}
+                  ,{ArticulationType::Prall,       any,     _32nd, {},    {0,1,0},      false, true, {}} // inverted mordent
+                  ,{ArticulationType::PrallPrall,  any,     _32nd, {1,0}, {1,0},        false, true, {}}
+                  ,{ArticulationType::PrallMordent,any,     _32nd, {},    {1,0,-1,0},   false, true, {}}
+                  ,{ArticulationType::LinePrall,   any,     _32nd, {2,2,2},{1,0},       true,  true, {}}
+                  ,{ArticulationType::UpPrall,     any,     _16th, {-1,0},{1,0},        true,  true, {1,0}} // p 144 Ex 152 [1]
+                  ,{ArticulationType::UpMordent,   any,     _16th, {-1,0},{1,0},        true,  true, {-1,0}} // p 144 Ex 152 [1]
+                  ,{ArticulationType::DownPrall,   any,     _16th, {1,1,1,0}, {1,0},    true,  true, {}} // p136 Cadence Appuyee [1] [2]
+                  ,{ArticulationType::DownMordent, any,     _16th, {1,1,1,0}, {1,0},    true,  true, {-1, 0}} // p136 Cadence Appuyee + mordent [1] [2]
+                  ,{ArticulationType::PrallUp,     any,     _16th, {1,0}, {1,0},        true,  true, {-1,0}} // p136 Double Cadence [1]
+                  ,{ArticulationType::PrallDown,   any,     _16th, {1,0}, {1,0},        true,  true, {-1,0,0,0}} // p144 ex 153 [1]
+                  ,{ArticulationType::Schleifer,   any,     _32nd, {},    {0},          false, true, {}}
+            };
+            
+            // [1] Some of the articulations/ornaments in the excursions table above come from
+            // Baroque Music, Style and Performance A Handbook, by Robert Donington,(c) 1982
+            // ISBN 0-393-30052-8, W. W. Norton & Company, Inc.
+            
+            // [2] In some cases, the example from [1] does not preserve the timing.
+            // For example, illustrates 2+1/4 counts per half note.
+            
+            for (auto & oe: excursions) {
+                  if (oe.atype == articulationType
+                      && ( 0 == oe.ostyles.size()
+                          || oe.ostyles.end() != oe.ostyles.find(ornamentStyle))) {
+                        return renderNoteArticulation(events, note, chromatic, oe.duration,
+                                                      oe.prefix, oe.body, oe.repeatp, oe.sustainp, oe.suffix);
+                      }
             }
+            return false;
+      }
+      
+//---------------------------------------------------------
+//   renderNoteArticulation
+//---------------------------------------------------------
+bool renderNoteArticulation(NoteEventList* events, Note * note, bool chromatic, Trill::Type trillType, MScore::OrnamentStyle ornamentStyle)
+      {
+      map<Trill::Type,ArticulationType> articulationMap = {
+            {Trill::Type::TRILL_LINE,      ArticulationType::Trill}
+           ,{Trill::Type::UPPRALL_LINE,    ArticulationType::UpPrall}
+           ,{Trill::Type::DOWNPRALL_LINE,  ArticulationType::DownPrall}
+           ,{Trill::Type::PRALLPRALL_LINE, ArticulationType::Trill}
+           };
+      auto it = articulationMap.find(trillType);
+      if (it == articulationMap.cend() )
+            return false;
+      else
+            return renderNoteArticulation(events, note, chromatic, it->second, ornamentStyle);
+      }
+      
+//---------------------------------------------------------
+//   noteHasGlissando
+// true if note is the end of a glissando
+//---------------------------------------------------------
+
+bool noteHasGlissando(Note *note)
+      {
+      for (Spanner* spanner : note->spannerFor()) {
+            if ((spanner->type() == Element::Type::GLISSANDO)
+               && spanner->endElement()
+               && (Element::Type::NOTE == spanner->endElement()->type()))
+                  return true;
+            }
+      return false;
+      }
+
+//---------------------------------------------------------
+//   renderGlissando
+//---------------------------------------------------------
 
-      if (!chord->articulations().isEmpty() && !chord->arpeggio()) {
-            Instrument* instr = chord->part()->instrument(seg->tick());
-            int channel  = 0;  // note->subchannel();
-
-//qDebug("Chord");
-            foreach (Articulation* a, chord->articulations()) {
-                  ArticulationType type = a->articulationType();
-                  for (int k = 0; k < notes; ++k) {
-                        NoteEventList* events = &ell[k];
-
-                        switch (type) {
-                              case ArticulationType::Mordent: {
-                                    //
-                                    // create default playback for Mordent
-                                    //
-                                    events->clear();
-                                    events->append(NoteEvent(0, 0, 125));
-                                    Key key     = chord->staff()->key(chord->segment()->tick());
-                                    int pitch   = chord->notes()[k]->epitch();
-                                    int pitchDown = diatonicUpDown(key, pitch, -1);
-                                    events->append(NoteEvent(pitchDown - pitch, 125, 125));
-                                    events->append(NoteEvent(0, 250, 750));
+void renderGlissando(NoteEventList* events, Note *notestart)
+      {
+      vector<int> empty = {};
+      int Cnote = 60; // pitch of middle C
+      int pitchstart = notestart->epitch();
+      int linestart = notestart->line();
+
+      set<int> blacknotes = {  1,  3,    6, 8, 10};
+      set<int> whitenotes = {0,  2, 4, 5, 7,  9, 11};
+
+      for (Spanner* spanner : notestart->spannerFor()) {
+            if (spanner->type() == Element::Type::GLISSANDO) {
+                  Glissando *glissando = static_cast<Glissando *>(spanner);
+                  MScore::GlissandoStyle glissandoStyle = glissando->glissandoStyle();
+                  Element* ee = spanner->endElement();
+                  // only consider glissando connnected to NOTE.
+                  if (glissando->playGlissando() && Element::Type::NOTE == ee->type()) {
+                        vector<int> body;
+                        Note *noteend = static_cast<Note *>(ee);
+                        int pitchend   = noteend->epitch();
+                        bool direction= pitchend >  pitchstart;
+                        if (pitchend == pitchstart)
+                              continue; // next spanner
+                        if (glissandoStyle == MScore::GlissandoStyle::DIATONIC) { // scale obeying accidentals
+                              int line;
+                              int lineend = convertLine(noteend->line(), noteend, notestart);
+                              int p = pitchstart;
+                              for (line = linestart; (direction) ? (line>lineend) : (line<lineend);
+                                 (direction) ? line-- : line++) {
+                                    int halfsteps = articulationExcursion(notestart, noteend, linestart - line);
+                                    p = pitchstart + halfsteps;
+                                    if (direction ? p < pitchend : p > pitchend)
+                                          body.push_back(halfsteps);
                                     }
-                                    break;
-                              case ArticulationType::Prall:
-                                    //
-                                    // create default playback events for PrallSym
-                                    //
-                                    {
-                                    events->clear();
-                                    events->append(NoteEvent(0, 0, 125));
-                                    Key key       = chord->staff()->key(chord->segment()->tick());
-                                    int pitch     = chord->notes()[k]->epitch();
-                                    int pitchUp = diatonicUpDown(key, pitch, 1);
-                                    events->append(NoteEvent(pitchUp - pitch, 125, 125));
-                                    events->append(NoteEvent(0, 250, 750));
+                              }
+                        else {
+                              for (int p = pitchstart; direction ? p < pitchend : p > pitchend; p += (direction ? 1 : -1)) {
+                                    bool choose = false;
+                                    int mod = ((p - Cnote) + 1200) % 12;
+                                    switch (glissandoStyle) {
+                                          case MScore::GlissandoStyle::CHROMATIC:
+                                                choose = true;
+                                                break;
+                                          case MScore::GlissandoStyle::WHITE_KEYS: // white note
+                                                choose = (whitenotes.find(mod) != whitenotes.end());
+                                                break;
+                                          case MScore::GlissandoStyle::BLACK_KEYS: // black note
+                                                choose =  (blacknotes.find(mod) != blacknotes.end());
+                                                break;
+                                          default:
+                                                choose = false;
+                                          }
+                                    if (choose)
+                                          body.push_back(p - pitchstart);
                                     }
-                                    break;
-                              default:
-//qDebug("   %s", qPrintable(a->subtypeName()));
-                                    instr->updateGateTime(&gateTime, channel, a->subtypeName());
-                                    break;
                               }
+                        renderNoteArticulation(events, notestart, true, MScore::division, empty, body, false, true, empty, 16, 0);
                         }
                   }
             }
+      }
 
-      //
-      //    apply gateTime
-      //
-      if (!gateEvents)
-            return ell;
-      for (int i = 0; i < notes; ++i) {
-            NoteEventList* el = &ell[i];
-            int nn = el->size();
-            if (nn == 0 && chord->tremoloChordType() != TremoloChordType::TremoloSecondNote) {
-                  el->append(NoteEvent(0, ontime, 1000-ontime));
-                  ++nn;
+//---------------------------------------------------------
+// findFirstTrill
+//  search the spanners in the score, finding the first one
+//  which overlaps this chord and is of type Element::Type::TRILL
+//---------------------------------------------------------
+      
+Trill* findFirstTrill(Chord *chord) {
+      for (auto i : chord->score()->spannerMap().findOverlapping(1+chord->tick(), chord->tick() + chord->actualTicks() - 1)) {
+            if (i.value->type() != Element::Type::TRILL)
+                  continue;
+            if (i.value->track() != chord->track())
+                  continue;
+            Trill *trill = static_cast<Trill *>(i.value);
+            if (trill->playArticulation() == false)
+                  continue;
+            return trill;
+            }
+      return nullptr;
+      }
+
+      
+//---------------------------------------------------------
+//   renderChordArticulation
+//---------------------------------------------------------
+
+void renderChordArticulation(Chord *chord, QList<NoteEventList> & ell, int & gateTime)
+      {
+      Segment* seg = chord->segment();
+      Instrument* instr = chord->part()->instrument(seg->tick());
+      int channel  = 0;  // note->subchannel();
+
+      for (int k = 0; k < chord->notes().size(); ++k) {
+            NoteEventList* events = &ell[k];
+            Note *note = chord->notes()[k];
+            Trill *trill;
+            
+            if (noteHasGlissando(note))
+                  renderGlissando(events, note);
+            else if (! chord->staff()->isPitchedStaff()) {
+                  ;
+            }
+            else if ((trill = findFirstTrill(chord)) != nullptr) {
+                  renderNoteArticulation(events, note, false, trill->trillType(), trill->ornamentStyle());
                   }
-            for (int i = 0; i < nn; ++i) {
-                  NoteEvent* e = &(*el)[i];
-                  e->setLen(e->len() * gateTime / 100);
+            else {
+                  for (Articulation* a : chord->articulations()) {
+                        if ( false == a->playArticulation())
+                              continue;
+                        if (! renderNoteArticulation(events, note, false, a->articulationType(), a->ornamentStyle()))
+                              instr->updateGateTime(&gateTime, channel, a->subtypeName());
+                        }
                   }
             }
-      return ell;
       }
 
 //---------------------------------------------------------
-//   createPlayEvents
-//    create default play events
+//   renderChord
+//    ontime in 1/1000 of duration
 //---------------------------------------------------------
 
-void Score::createPlayEvents(Chord* chord)
+static QList<NoteEventList> renderChord(Chord* chord, int gateTime, int ontime)
       {
-      int gateTime = 100;
+      QList<NoteEventList> ell;
+      if (chord->notes().isEmpty())
+            return ell;
 
-      int tick = chord->tick();
-      Slur* slur = 0;
-      for (auto sp : _spanner.map()) {
-            if (sp.second->type() != Element::Type::SLUR || sp.second->staffIdx() != chord->staffIdx())
-                  continue;
-            Slur* s = static_cast<Slur*>(sp.second);
-            if (tick >= s->tick() && tick < s->tick2()) {
-                  slur = s;
-                  break;
-                  }
+      int notes = chord->notes().size();
+      for (int i = 0; i < notes; ++i)
+            ell.append(NoteEventList());
+
+      if (chord->tremolo()) {
+            renderTremolo(chord, ell);
             }
-      // gateTime is 100% for slured notes
-      if (!slur) {
-            Instrument* instr = chord->part()->instrument(tick);
-            instr->updateGateTime(&gateTime, 0, "");
+      else if (chord->arpeggio() && chord->arpeggio()->playArpeggio()) {
+            renderArpeggio(chord, ell);
+	      return ell;  // dont apply gateTime to arpeggio events
+            }
+      else
+            renderChordArticulation(chord, ell, gateTime);
+      //
+      //    apply gateTime
+      //
+      for (int i = 0; i < notes; ++i) {
+            NoteEventList* el = &ell[i];
+            if (el->size() == 0 && chord->tremoloChordType() != TremoloChordType::TremoloSecondNote) {
+                  el->append(NoteEvent(0, ontime, 1000-ontime));
+                  }
+            for ( NoteEvent &e : ell[i])
+                  e.setLen(e.len() * gateTime / 100);
             }
+      return ell;
+      }
 
-      QList<Chord*> gnb = chord->graceNotesBefore();
+
+void Score::createGraceNotesPlayEvents(QList<Chord*> gnb, int tick, Chord* chord, int &ontime)
+      {
       int n = gnb.size();
-      int ontime = 0;
       if (n) {
             //
             //  render grace notes:
@@ -947,15 +1407,13 @@ void Score::createPlayEvents(Chord* chord)
                   qreal chordTimeMS = (chord->actualTicks() / ticksPerSecond) * 1000;
                   ontime = qMin(500, static_cast<int>((graceTimeMS / chordTimeMS) * 1000));
                   }
-            else if (chord->dots() == 1) {
+            else if (chord->dots() == 1)
                   ontime = 667;
-                  }
-            else if (chord->dots() == 2) {
+            else if (chord->dots() == 2)
                   ontime = 571;
-                  }
-            else {
+            else
                   ontime = 500;
-                  }
+
             int graceDuration = ontime / n;
 
             int on = 0;
@@ -978,6 +1436,37 @@ void Score::createPlayEvents(Chord* chord)
                   on += graceDuration;
                   }
             }
+      }
+
+//---------------------------------------------------------
+//   createPlayEvents
+//    create default play events
+//---------------------------------------------------------
+
+void Score::createPlayEvents(Chord* chord)
+      {
+      int gateTime = 100;
+
+      int tick = chord->tick();
+      Slur* slur = 0;
+      for (auto sp : _spanner.map()) {
+            if (sp.second->type() != Element::Type::SLUR || sp.second->staffIdx() != chord->staffIdx())
+                  continue;
+            Slur* s = static_cast<Slur*>(sp.second);
+            if (tick >= s->tick() && tick < s->tick2()) {
+                  slur = s;
+                  break;
+                  }
+            }
+      // gateTime is 100% for slured notes
+      if (!slur) {
+            Instrument* instr = chord->part()->instrument(tick);
+            instr->updateGateTime(&gateTime, 0, "");
+            }
+
+      int ontime = 0;
+
+      Score::createGraceNotesPlayEvents(chord->graceNotesBefore(), tick, chord, ontime);
 
       SwingParameters st = chord->staff()->swing(tick);
       int unit = st.swingUnit;
@@ -985,7 +1474,7 @@ void Score::createPlayEvents(Chord* chord)
       // Check if swing needs to be applied
       if (unit) {
             swingAdjustParams(chord, gateTime, ontime, unit, ratio);
-      }
+            }
       //
       //    render normal (and articulated) chords
       //
@@ -1021,6 +1510,69 @@ void Score::createPlayEvents()
       }
 
 //---------------------------------------------------------
+//   renderMetronome
+//---------------------------------------------------------
+
+int Score::renderMetronome(EventMap* events, Measure* m, int playPos, int tickOffset, bool countIn)
+      {
+      int msrTick = m->tick();
+      qreal tempo       = tempomap()->tempo(msrTick);
+      Fraction timeSig     = sigmap()->timesig(msrTick).nominal();
+      int numerator   = timeSig.numerator();
+      int denominator = timeSig.denominator();
+      int clickTicks  = MScore::division * 4 / denominator;
+      bool triplets = false;
+      // COMPOUND METER: if time sig is 3*n/d, convert to 3d units
+      // note: 3/8, 3/16, ... are NOT considered compound
+      if (numerator > 3 && numerator % 3 == 0) {
+            // if denominator longer than 1/8 OR tempo for compound unit slower than 60MM
+            // (i.e. each denom. unit slower than 180MM = tempo 3.0)
+            // then do not count as compound, but beat click-clack-clack triplets
+            if (denominator < 8 || tempo * denominator / 4 < 3.0)
+                  triplets = true;
+            // otherwise, count as compound meter (one beat every 3 denominator units)
+            else {
+                  numerator   /= 3;
+                  clickTicks  *= 3;
+                  }
+            }
+
+      // NUMBER OF TICKS
+      int numOfClicks = numerator;                          // default to a full measure of 'clicks'
+      int lastPause   = clickTicks;                         // the number of ticks to wait after the last 'click'
+      // if not at the beginning of a measure, add clicks for the initial measure part
+      if (msrTick < playPos) {
+            int delta    = playPos - msrTick;
+            int addClick = (delta + clickTicks - 1) / clickTicks;     // round num. of clicks up
+            numOfClicks += addClick;
+            lastPause    = delta - (addClick - 1) * clickTicks;       // anything after last click time is final pause
+            }
+      // or if measure not complete (anacrusis), add clicks for the missing measure part
+      else if (m->ticks() < clickTicks * numerator) {
+            int delta    = clickTicks * numerator - m->ticks();
+            int addClick = (delta + clickTicks - 1) / clickTicks;
+            numOfClicks += addClick;
+            lastPause    = delta - (addClick - 1) * clickTicks;
+            }
+/*
+      // MIN_CLICKS: be sure to have at least MIN_CLICKS clicks: if less, add full measures
+      while (numOfClicks < MIN_CLICKS)
+            numOfClicks += numerator;
+*/
+      // click-clack-clack triplets
+      if (triplets)
+            numerator = 3;
+      int tick = 0;
+      NPlayEvent event;
+      for (int i = 0; i < numOfClicks; i++) {
+            tick = (countIn ? 0 : m->tick()) + i * clickTicks + tickOffset;
+            event.setType((i % numerator) == 0 ? ME_TICK1 : ME_TICK2);
+            events->insert(std::pair<int,NPlayEvent>(tick, event));
+            }
+      return tick + lastPause;
+      }
+
+//---------------------------------------------------------
 //   renderMidi
 //    export score to event list
 //---------------------------------------------------------
@@ -1052,15 +1604,7 @@ void Score::renderMidi(EventMap* events)
             //    add metronome tick events
             //
             for (Measure* m = tick2measure(startTick); m; m = m->nextMeasure()) {
-                  Fraction ts = sigmap()->timesig(m->tick()).timesig();
-
-                  int tw = MScore::division * 4 / ts.denominator();
-                  for (int i = 0; i < ts.numerator(); i++) {
-                        int tick = m->tick() + i * tw + tickOffset;
-                        NPlayEvent event;
-                        event.setType(i == 0 ? ME_TICK1 : ME_TICK2);
-                        events->insert(std::pair<int,NPlayEvent>(tick, event));
-                        }
+                  renderMetronome(events, m, m->tick(), tickOffset, false);
                   if (m->tick() + m->ticks() >= endTick)
                         break;
                   }
diff --git a/libmscore/repeat.cpp b/libmscore/repeat.cpp
index d876d9f..4cb1bbb 100644
--- a/libmscore/repeat.cpp
+++ b/libmscore/repeat.cpp
@@ -77,7 +77,7 @@ void RepeatMeasure::layout()
 Fraction RepeatMeasure::duration() const
       {
       if (measure())
-            return measure()->len();
+            return measure()->stretchedLen(staff());
       return Fraction(0, 1);
       }
 
diff --git a/libmscore/repeat.h b/libmscore/repeat.h
index c517df4..7a5fea7 100644
--- a/libmscore/repeat.h
+++ b/libmscore/repeat.h
@@ -33,7 +33,8 @@ class RepeatMeasure : public Rest {
    public:
       RepeatMeasure(Score*);
       RepeatMeasure &operator=(const RepeatMeasure&) = delete;
-      virtual RepeatMeasure* clone() const override  { return new RepeatMeasure(*this); }
+      virtual RepeatMeasure* clone() const override   { return new RepeatMeasure(*this); }
+      virtual Element* linkedClone() override         { return Element::linkedClone(); }
       virtual Element::Type type() const override     { return Element::Type::REPEAT_MEASURE; }
       virtual void draw(QPainter*) const override;
       virtual void layout() override;
diff --git a/libmscore/repeatlist.cpp b/libmscore/repeatlist.cpp
index ab0c644..3c87d87 100644
--- a/libmscore/repeatlist.cpp
+++ b/libmscore/repeatlist.cpp
@@ -335,6 +335,8 @@ void RepeatList::unwind()
                               }
                         }
                   else if (endRepeat == 0) {
+                        if (m->playbackCount() >= m->repeatCount())
+                             break;
                         endRepeat   = m;
                         repeatCount = m->repeatCount();
                         loop        = 1;
@@ -353,7 +355,8 @@ void RepeatList::unwind()
                   // jump only once
                   if (jumps.contains(s)) {
                         m = m->nextMeasure();
-                        endRepeat = 0;
+                        if (endRepeat == _score->searchLabel(s->playUntil()))
+                              endRepeat = 0;
                         continue;
                         }
                   jumps.append(s);
@@ -361,9 +364,9 @@ void RepeatList::unwind()
                         Measure* nm = _score->searchLabel(s->jumpTo());
                         endRepeat   = _score->searchLabel(s->playUntil());
                         continueAt  = _score->searchLabel(s->continueAt());
-                        isGoto      = true;
 
                         if (nm && endRepeat) {
+                              isGoto      = true;
                               rs->len = m->endTick() - rs->tick;
                               append(rs);
                               rs = new RepeatSegment;
diff --git a/libmscore/rest.cpp b/libmscore/rest.cpp
index 75d49f4..31c22bd 100644
--- a/libmscore/rest.cpp
+++ b/libmscore/rest.cpp
@@ -113,9 +113,9 @@ void Rest::draw(QPainter* painter) const
             painter->drawLine(QLineF(x1, y-_spatium, x1, y+_spatium));
             painter->drawLine(QLineF(x2, y-_spatium, x2, y+_spatium));
 
-            painter->setFont(score()->scoreFont()->font());
-            QFontMetricsF fm(score()->scoreFont()->font());
-            QString s = toTimeSigString(QString("%1").arg(n));
+//            painter->setFont(score()->scoreFont()->font());
+//            QFontMetricsF fm(score()->scoreFont()->font());
+            QList<SymId> s = toTimeSigString(QString("%1").arg(n));
             y  = -_spatium * 1.5 - staff()->height() *.5;
             qreal x = center(x1, x2);
             x -= symBbox(s).width() * .5;
@@ -189,7 +189,7 @@ bool Rest::acceptDrop(const DropData& data) const
       Element* e = data.element;
       Element::Type type = e->type();
       if (
-         (type == Element::Type::ICON && static_cast<Icon*>(e)->iconType() == IconType::SBEAM)
+            (type == Element::Type::ICON && static_cast<Icon*>(e)->iconType() == IconType::SBEAM)
          || (type == Element::Type::ICON && static_cast<Icon*>(e)->iconType() == IconType::MBEAM)
          || (type == Element::Type::ICON && static_cast<Icon*>(e)->iconType() == IconType::NBEAM)
          || (type == Element::Type::ICON && static_cast<Icon*>(e)->iconType() == IconType::BEAM32)
@@ -197,10 +197,13 @@ bool Rest::acceptDrop(const DropData& data) const
          || (type == Element::Type::ICON && static_cast<Icon*>(e)->iconType() == IconType::AUTOBEAM)
          || (type == Element::Type::ARTICULATION && static_cast<Articulation*>(e)->isFermata())
          || (type == Element::Type::CLEF)
+         || (type == Element::Type::KEYSIG)
+         || (type == Element::Type::TIMESIG)
          || (type == Element::Type::STAFF_TEXT)
          || (type == Element::Type::BAR_LINE)
          || (type == Element::Type::BREATH)
          || (type == Element::Type::CHORD)
+         || (type == Element::Type::NOTE)
          || (type == Element::Type::STAFF_STATE)
          || (type == Element::Type::INSTRUMENT_CHANGE)
          || (type == Element::Type::DYNAMIC)
@@ -212,11 +215,10 @@ bool Rest::acceptDrop(const DropData& data) const
          || (type == Element::Type::TREMOLOBAR)
          || (type == Element::Type::IMAGE)
          || (type == Element::Type::SYMBOL)
+         || (type == Element::Type::REPEAT_MEASURE && durationType().type() == TDuration::DurationType::V_MEASURE)
          ) {
             return true;
             }
-      if(type == Element::Type::REPEAT_MEASURE && durationType().type() == TDuration::DurationType::V_MEASURE)
-            return true;
       return false;
       }
 
diff --git a/libmscore/rest.h b/libmscore/rest.h
index 3884546..07bb424 100644
--- a/libmscore/rest.h
+++ b/libmscore/rest.h
@@ -54,7 +54,7 @@ class Rest : public ChordRest {
       Rest &operator=(const Rest&) = delete;
 
       virtual Rest* clone() const override        { return new Rest(*this, false); }
-      virtual Rest* linkedClone() const           { return new Rest(*this, true); }
+      virtual Element* linkedClone()              { return new Rest(*this, true); }
       virtual Measure* measure() const override   { return parent() ? (Measure*)(parent()->parent()) : 0; }
       virtual qreal mag() const override;
       virtual void draw(QPainter*) const override;
diff --git a/libmscore/score.cpp b/libmscore/score.cpp
index 46ce6a5..b6d4832 100644
--- a/libmscore/score.cpp
+++ b/libmscore/score.cpp
@@ -156,7 +156,7 @@ void MeasureBaseList::add(MeasureBase* e)
       }
 
 //---------------------------------------------------------
-//   erase
+//   remove
 //---------------------------------------------------------
 
 void MeasureBaseList::remove(MeasureBase* el)
@@ -386,7 +386,7 @@ Score::Score(Score* parent)
             }
 
       _synthesizerState = parent->_synthesizerState;
-       accInfo = tr("No selection");
+      accInfo = tr("No selection");
       }
 
 Score::Score(Score* parent, const MStyle* s)
@@ -562,10 +562,11 @@ void Score::fixTicks()
                         }
 //                  }
 
-            //
             // update time signature map
-            //
-            if (!parentScore() && (m->len() != sig)) {
+            // create event if measure len and time signature are different
+            // even if they are equivalent 4/4 vs 2/2
+            if (!parentScore() && ((m->len().numerator() != sig.numerator())
+               || (m->len().denominator() != sig.denominator()))) {
                   sig = m->len();
                   smap->add(tick, SigEvent(sig, m->timesig(),  m->no()));
                   }
@@ -893,22 +894,26 @@ void Score::rebuildMidiMapping()
       {
       _midiMapping.clear();
       int port        = 0;
+      int drumPort    = 0;
       int midiChannel = 0;
       int idx         = 0;
       int maxport     = 0;
       for (Part* part : _parts) {
-            InstrumentList* il = part->instruments();
+            const InstrumentList* il = part->instruments();
             for (auto i = il->begin(); i != il->end(); ++i) {
-                  Instrument* instr = i->second;
+                  const Instrument* instr = i->second;
                   bool drum         = instr->useDrumset();
 
                   for (Channel* channel : instr->channel()) {
                         MidiMapping mm;
                         if (port > maxport)
                               maxport = port;
+                        if (drumPort > maxport)
+                              maxport = drumPort;
                         if (drum) {
-                              mm.port    = port;
+                              mm.port    = drumPort;
                               mm.channel = 9;
+                              drumPort++;
                               }
                         else {
                               mm.port    = port;
@@ -1018,7 +1023,7 @@ QList<System*> Score::searchSystem(const QPointF& pos) const
                   }
             if ((ii == n) || (ns == 0))
                   y2 = page->height();
-            else  {
+            else {
                   qreal sy2 = s->y() + s->bbox().height();
                   y2         = sy2 + (ns->y() - sy2) * .5;
                   }
@@ -1449,7 +1454,7 @@ void Score::addElement(Element* element)
                   {
                   Element* cr = element->parent();
                   if (cr->type() == Element::Type::CHORD)
-                         createPlayEvents(static_cast<Chord*>(cr));
+                        createPlayEvents(static_cast<Chord*>(cr));
                   }
                   break;
             case Element::Type::BREATH:
@@ -1592,7 +1597,7 @@ void Score::removeElement(Element* element)
                   {
                   Element* cr = element->parent();
                   if (cr->type() == Element::Type::CHORD)
-                         createPlayEvents(static_cast<Chord*>(cr));
+                        createPlayEvents(static_cast<Chord*>(cr));
                   }
                   break;
 
@@ -1795,6 +1800,14 @@ void Score::scanElementsInRange(void* data, void (*func)(void*, Element*), bool
                         mmr->scanElements(data, func, all);
                   }
             }
+      for (Element* e : _selection.elements()) {
+            if (e->isSpanner()) {
+                  Spanner* spanner = static_cast<Spanner*>(e);
+                  for (SpannerSegment* ss : spanner->spannerSegments()) {
+                        ss->scanElements(data, func, all);
+                        }
+                  }
+            }
       }
 
 //---------------------------------------------------------
@@ -2042,7 +2055,7 @@ bool Score::appendScore(Score* score)
       {
       if (parts().size() < score->parts().size() || staves().size() < score->staves().size())
             return false;
-      TieMap  tieMap;
+      TieMap tieMap;
 
       MeasureBase* lastMeasure = last();
       if (!lastMeasure)
@@ -2076,6 +2089,24 @@ bool Score::appendScore(Score* score)
             }
       fixTicks();
 
+      // if the appended score has less staves,
+      // make sure the measures have full measure rest
+      for (Measure* m = tick2measure(tickLen); m; m = m->nextMeasure()) {
+            for (int staffIdx = 0; staffIdx < nstaves(); ++staffIdx) {
+                  Fraction f;
+                  for (Segment* s = m->first(Segment::Type::ChordRest); s; s = s->next(Segment::Type::ChordRest)) {
+                        for (int v = 0; v < VOICES; ++v) {
+                              ChordRest* cr = static_cast<ChordRest*>(s->element(staffIdx * VOICES + v));
+                              if (cr == 0)
+                                    continue;
+                              f += cr->actualFraction();
+                              }
+                        }
+                  if (f.isZero())
+                        addRest(m->tick(), staffIdx*VOICES, TDuration(TDuration::DurationType::V_MEASURE), 0);
+                  }
+            }
+
       // adjust key signatures
       for (Staff* st : score->staves()) {
             int staffIdx = score->staffIdx(st);
@@ -2096,7 +2127,7 @@ bool Score::appendScore(Score* score)
                   addElement(ks);
                   }
             // other key signatures (initial other than "C", non-initial)
-           for (auto k : *(st->keyList())) {
+            for (auto k : *(st->keyList())) {
                   int tick = k.first;
                   KeySigEvent key = k.second;
                   joinedStaff->setKey(tick + tickLen, key);
@@ -2438,7 +2469,7 @@ void Score::adjustKeySigs(int sidx, int eidx, KeyList km)
                   KeySigEvent oKey = i->second;
                   KeySigEvent nKey = oKey;
                   int diff = -staff->part()->instrument()->transpose().chromatic;
-                  if (diff != 0 && !styleB(StyleIdx::concertPitch) && !oKey.custom())
+                  if (diff != 0 && !styleB(StyleIdx::concertPitch) && !oKey.custom() && !oKey.isAtonal())
                         nKey.setKey(transposeKey(nKey.key(), diff));
                   staff->setKey(tick, nKey);
                   KeySig* keysig = new KeySig(this);
@@ -2479,8 +2510,8 @@ void Score::cmdRemoveStaff(int staffIdx)
             for (Staff* staff : s->linkedStaves()->staves()) {
                   if (staff != s)
                         s2 = staff;
-                 Score* lscore = staff->score();
-                 if (lscore != this) {
+                  Score* lscore = staff->score();
+                  if (lscore != this) {
                         undoRemoveStaff(staff);
                         if (staff->part()->nstaves() == 0) {
                               int pIndex    = lscore->staffIdx(staff->part());
@@ -2686,6 +2717,7 @@ void Score::deselect(Element* el)
       {
       refresh |= el->abbox();
       _selection.remove(el);
+      setSelectionChanged(true);
       }
 
 //---------------------------------------------------------
@@ -2785,9 +2817,9 @@ void Score::selectAdd(Element* e)
             if (_selection.elements().contains(e))
                   _selection.remove(e);
             else {
-                _selection.add(e);
-                selState = SelState::LIST;
-                }
+                  _selection.add(e);
+                  selState = SelState::LIST;
+                  }
             }
       _selection.setState(selState);
       }
@@ -2806,7 +2838,7 @@ void Score::selectRange(Element* e, int staffIdx)
             int etick = tick + m->ticks();
             activeTrack = staffIdx * VOICES;
             if (_selection.isNone()
-                      || (_selection.isList() && !_selection.isSingle())) {
+               || (_selection.isList() && !_selection.isSingle())) {
                         if (_selection.isList())
                               deselectAll();
                   _selection.setRange(m->tick2segment(tick),
@@ -2829,27 +2861,23 @@ void Score::selectRange(Element* e, int staffIdx)
 
                         ChordRest* cr = static_cast<ChordRest*>(oe);
                         int oetick = cr->segment()->tick();
+                        Segment* startSegment = cr->segment();
+                        Segment* endSegment = m->last();
                         if (tick < oetick) {
-                              _selection.setStartSegment(m->tick2segment(tick));
-                              if (etick >= oetick)
-                                    _selection.setEndSegment(m->last());
-                              else
-                                    _selection.setEndSegment(cr->nextSegmentAfterCR(Segment::Type::ChordRest
+                              startSegment = m->tick2segment(tick);
+                              if (etick <= oetick)
+                                    endSegment = cr->nextSegmentAfterCR(Segment::Type::ChordRest
                                                                                     | Segment::Type::EndBarLine
-                                                                                    | Segment::Type::Clef));
+                                                                                    | Segment::Type::Clef);
 
                               }
-                        else {
-                              _selection.setStartSegment(cr->segment());
-                              _selection.setEndSegment(m->last());
-                              }
-
-                        _selection.setStaffStart(staffIdx);
-                        _selection.setStaffEnd(staffIdx + 1);
-                        if (_selection.staffStart() > cr->staffIdx())
-                              _selection.setStaffStart(cr->staffIdx());
-                        else if (cr->staffIdx() >= _selection.staffEnd())
-                              _selection.setStaffEnd(cr->staffIdx() + 1);
+                        int staffStart = staffIdx;
+                        int endStaff = staffIdx + 1;
+                        if (staffStart > cr->staffIdx())
+                              staffStart = cr->staffIdx();
+                        else if (cr->staffIdx() >= endStaff)
+                              endStaff = cr->staffIdx() + 1;
+                        _selection.setRange(startSegment, endSegment, staffStart, endStaff);
                         }
                   else {
                         deselectAll();
@@ -2869,7 +2897,6 @@ void Score::selectRange(Element* e, int staffIdx)
                   e = e->parent();
             ChordRest* cr = static_cast<ChordRest*>(e);
 
-
             if (_selection.isNone()
                 || (_selection.isList() && !_selection.isSingle())) {
                   if (_selection.isList())
@@ -2889,7 +2916,7 @@ void Score::selectRange(Element* e, int staffIdx)
                               oe = oe->parent();
                         ChordRest* ocr = static_cast<ChordRest*>(oe);
 
-                        Segment* endSeg = tick2segment(ocr->segment()->tick() + ocr->actualTicks());
+                        Segment* endSeg = tick2segmentMM(ocr->segment()->tick() + ocr->actualTicks());
                         if (!endSeg)
                               endSeg = ocr->segment()->next();
 
@@ -2897,7 +2924,6 @@ void Score::selectRange(Element* e, int staffIdx)
                                             endSeg,
                                             oe->staffIdx(),
                                             oe->staffIdx() + 1);
-
                         _selection.extendRangeSelection(cr);
 
                         }
@@ -2956,7 +2982,7 @@ void Score::collectMatch(void* data, Element* e)
                   }
             }
       if ((p->staffStart != -1)
-          && ((p->staffStart > e->staffIdx()) || (p->staffEnd <= e->staffIdx())))
+         && ((p->staffStart > e->staffIdx()) || (p->staffEnd <= e->staffIdx())))
             return;
       if (e->type() == Element::Type::CHORD || e->type() == Element::Type::REST
          || e->type() == Element::Type::NOTE || e->type() == Element::Type::LYRICS
@@ -3010,7 +3036,7 @@ void Score::selectSimilar(Element* e, bool sameStaff)
       score->scanElements(&pattern, collectMatch);
 
       score->select(0, SelectType::SINGLE, 0);
-      foreach (Element* e, pattern.el) {
+      for (Element* e : pattern.el) {
             score->select(e, SelectType::ADD, 0);
             }
       }
@@ -3036,8 +3062,8 @@ void Score::selectSimilarInRange(Element* e)
       score->scanElementsInRange(&pattern, collectMatch);
 
       score->select(0, SelectType::SINGLE, 0);
-      foreach (Element* e, pattern.el) {
-                  score->select(e, SelectType::ADD, 0);
+      for (Element* e : pattern.el) {
+            score->select(e, SelectType::ADD, 0);
             }
       }
 
@@ -3109,12 +3135,12 @@ void Score::lassoSelectEnd()
             }
       if (noteRestCount > 0) {
             endSegment = endCR->nextSegmentAfterCR(Segment::Type::ChordRest
-                                                   | Segment::Type::EndBarLine
-                                                   | Segment::Type::Clef);
+               | Segment::Type::EndBarLine
+               | Segment::Type::Clef);
             _selection.setRange(startSegment, endSegment, startStaff, endStaff+1);
             if (!_selection.isRange())
                   _selection.setState(SelState::RANGE);
-                  _selection.updateSelectedElements();
+            _selection.updateSelectedElements();
             }
       _updateAll = true;
       }
@@ -3134,15 +3160,21 @@ void Score::addLyrics(int tick, int staffIdx, const QString& txt)
                qPrintable(txt), tick);
             return;
             }
-      int track = staffIdx * VOICES;
-      ChordRest* cr = static_cast<ChordRest*>(seg->element(track));
-      if (cr) {
-            Lyrics* l = new Lyrics(this);
-            l->setXmlText(txt);
-            l->setTrack(track);
-            cr->add(l);
+
+      bool lyricsAdded = false;
+      for (int voice = 0; voice < VOICES; ++voice) {
+            int track = staffIdx * VOICES + voice;
+            ChordRest* cr = static_cast<ChordRest*>(seg->element(track));
+            if (cr) {
+                  Lyrics* l = new Lyrics(this);
+                  l->setXmlText(txt);
+                  l->setTrack(track);
+                  cr->add(l);
+                  lyricsAdded = true;
+                  break;
+                  }
             }
-      else {
+      if (!lyricsAdded) {
             qDebug("no chord/rest for lyrics<%s> at tick %d, staff %d",
                qPrintable(txt), tick, staffIdx);
             }
@@ -3459,6 +3491,8 @@ void Score::insertTime(int tick, int len)
       {
       for (Staff* staff : staves())
             staff->insertTime(tick, len);
+      for (Part* part : parts())
+            part->insertTime(tick, len);
       }
 
 //---------------------------------------------------------
@@ -3723,7 +3757,7 @@ bool Score::hasLyrics()
       {
       Segment::Type st = Segment::Type::ChordRest;
       for (Segment* seg = firstMeasure()->first(st); seg; seg = seg->next1(st)) {
-            for (int i = 0; i < ntracks() ; ++i) {
+            for (int i = 0; i < ntracks(); ++i) {
                   if (seg->lyricsList(i) && seg->lyricsList(i)->size() > 0)
                         return true;
                   }
@@ -3740,14 +3774,121 @@ bool Score::hasHarmonies()
       Segment::Type st = Segment::Type::ChordRest;
       for (Segment* seg = firstMeasure()->first(st); seg; seg = seg->next1(st)) {
             for (Element* e : seg->annotations()) {
-                        if (e->type() == Element::Type::HARMONY)
-                              return true;
+                  if (e->type() == Element::Type::HARMONY)
+                        return true;
                   }
             }
       return false;
       }
 
 //---------------------------------------------------------
+//   lyricCount
+//---------------------------------------------------------
+
+int Score::lyricCount()
+      {
+      int count = 0;
+      Segment::Type st = Segment::Type::ChordRest;
+      for (Segment* seg = firstMeasure()->first(st); seg; seg = seg->next1(st)) {
+            for (int i = 0; i < ntracks(); ++i) {
+                  if (seg->lyricsList(i))
+                        count += seg->lyricsList(i)->size();
+                  }
+            }
+      return count;
+      }
+
+//---------------------------------------------------------
+//   harmonyCount
+//---------------------------------------------------------
+
+int Score::harmonyCount()
+      {
+      int count = 0;
+      Segment::Type st = Segment::Type::ChordRest;
+      for (Segment* seg = firstMeasure()->first(st); seg; seg = seg->next1(st)) {
+            for (Element* e : seg->annotations()) {
+                  if (e->type() == Element::Type::HARMONY)
+                        count++;
+                  }
+            }
+      return count;
+      }
+
+QString Score::extractLyrics()
+      {
+      QString result;
+      updateRepeatList(true);
+      setPlaylistDirty();
+      Segment::Type st = Segment::Type::ChordRest;
+      for (int track = 0; track < ntracks(); track += VOICES) {
+            bool found = false;
+            int maxLyrics = 1;
+            for (Measure* m = firstMeasure(); m; m = m->nextMeasure()) {
+                  m->setPlaybackCount(0);
+                  }
+            // follow the repeat segments
+            for (const RepeatSegment* rs : *repeatList()) {
+                  int startTick  = rs->tick;
+                  int endTick    = startTick + rs->len;
+                  for (Measure* m = tick2measure(startTick); m; m = m->nextMeasure()) {
+                        int playCount = m->playbackCount();
+                        for (Segment* seg = m->first(st); seg; seg = seg->next(st)) {
+                              // consider voice 1 only
+                              if (seg->lyricsList(track) == nullptr || seg->lyricsList(track)->size() == 0)
+                                    continue;
+                              if (seg->lyricsList(track)->size() > maxLyrics)
+                                    maxLyrics = seg->lyricsList(track)->size();
+                              if (playCount >= seg->lyricsList(track)->size())
+                                    continue;
+                              Lyrics* l = seg->lyricsList(track)->at(playCount);
+                              if (!l)
+                                    continue;
+                              found = true;
+                              QString lyric = l->plainText().trimmed();
+                              if (l->syllabic() == Lyrics::Syllabic::SINGLE || l->syllabic() == Lyrics::Syllabic::END)
+                                    result += lyric + " ";
+                              else if (l->syllabic() == Lyrics::Syllabic::BEGIN || l->syllabic() == Lyrics::Syllabic::MIDDLE)
+                                    result += lyric;
+                              }
+                        m->setPlaybackCount(m->playbackCount() + 1);
+                        if (m->tick() + m->ticks() >= endTick)
+                              break;
+                        }
+                  }
+            // consider remaning lyrics
+            for (int lyricsNumber = 0; lyricsNumber < maxLyrics; lyricsNumber++) {
+                  for (Measure* m = firstMeasure(); m; m = m->nextMeasure()) {
+                        int playCount = m->playbackCount();
+                        if (lyricsNumber >= playCount) {
+                              for (Segment* seg = m->first(st); seg; seg = seg->next(st)) {
+                                    // consider voice 1 only
+                                    if (seg->lyricsList(track) == nullptr || seg->lyricsList(track)->size() == 0)
+                                          continue;
+                                    if (seg->lyricsList(track)->size() > maxLyrics)
+                                          maxLyrics = seg->lyricsList(track)->size();
+                                    if (lyricsNumber >= seg->lyricsList(track)->size())
+                                          continue;
+                                    Lyrics* l = seg->lyricsList(track)->at(lyricsNumber);
+                                    if (!l)
+                                          continue;
+                                    found = true;
+                                    QString lyric = l->plainText().trimmed();
+                                    if (l->syllabic() == Lyrics::Syllabic::SINGLE || l->syllabic() == Lyrics::Syllabic::END)
+                                          result += lyric + " ";
+                                    else if (l->syllabic() == Lyrics::Syllabic::BEGIN || l->syllabic() == Lyrics:: Syllabic::MIDDLE)
+                                          result += lyric;
+                                    }
+                              }
+                        }
+                  }
+            if (found)
+                  result += "\n\n";
+            }
+      return result.trimmed();
+      }
+
+//---------------------------------------------------------
 //   keysig
 //---------------------------------------------------------
 
@@ -3757,7 +3898,7 @@ int Score::keysig()
       for (int staffIdx = 0; staffIdx < nstaves(); ++staffIdx) {
             Staff* st = staff(staffIdx);
             Key key = st->key(0);
-            if (st->staffType()->group() == StaffGroup::PERCUSSION || st->keySigEvent(0).custom())      // ignore percussion and custom key
+            if (st->staffType()->group() == StaffGroup::PERCUSSION || st->keySigEvent(0).custom() || st->keySigEvent(0).isAtonal())       // ignore percussion and custom / atonal key
                   continue;
             result = key;
             int diff = st->part()->instrument()->transpose().chromatic;
@@ -3807,17 +3948,22 @@ QString Score::createRehearsalMarkText(RehearsalMark* current) const
       QString s2 = after ? after->xmlText()  : "";
       if (s1.isEmpty())
             return s;
-      s = nextRehearsalMarkText(before, current);                       // try to sequence
-      if (!s2.isEmpty()) {
-            if (s != s2 && s != current->xmlText())
-                  return s;                                             // found something between before & after
-            else if (s1.size() == 2)
-                  s = s1[0] + QChar::fromLatin1(s1[1].toLatin1() + 1);  // B1 -> B2, BB -> BC, etc
-            else if (s1[0].isLetter())
-                  s = s1 + QChar::fromLatin1('1');                      // B -> B1, Bridge -> Bridge1, etc
-            }
-      else if (s == current->xmlText()) {
-            s = s1 + QChar::fromLatin1('1');                            // B -> B1, Bridge -> Bridge1, etc
+      s = nextRehearsalMarkText(before, current);     // try to sequence
+      if (s == current->xmlText()) {
+            // no sequence detected (or current happens to be correct)
+            return s;
+            }
+      else if (s == s2) {
+            // next in sequence already present
+            if (s1[0].isLetter()) {
+                  if (s1.size() == 2)
+                        s = s1[0] + QChar::fromLatin1(s1[1].toLatin1() + 1);  // BB, BC, CC
+                  else
+                        s = s1 + QChar::fromLatin1('1');                      // B, B1, C
+                  }
+            else {
+                  s = s1 + QChar::fromLatin1('A');                            // 2, 2A, 3
+                  }
             }
       return s;
       }
@@ -3892,7 +4038,8 @@ void Score::changeVoice(int voice)
       {
       startCmd();
       QList<Element*> el;
-      foreach(Element* e, selection().elements()) {
+      QList<Element*> oel = selection().elements();     // make copy
+      for (Element* e : oel) {
             if (e->type() == Element::Type::NOTE) {
                   Note* note   = static_cast<Note*>(e);
                   Chord* chord = note->chord();
@@ -3901,6 +4048,10 @@ void Score::changeVoice(int voice)
                   if (note->tieFor() || note->tieBack())
                         continue;
 
+                  // move grace notes with main chord only
+                  if (chord->isGrace())
+                        continue;
+
                   if (chord->voice() != voice) {
                         Segment* s       = chord->segment();
                         Measure* m       = s->measure();
@@ -3937,6 +4088,8 @@ void Score::changeVoice(int voice)
                               ChordRest* pcr = nullptr;
                               ChordRest* ncr = nullptr;
                               for (Segment* s2 = m->first(Segment::Type::ChordRest); s2; s2 = s2->next()) {
+                                    if (s2->segmentType() != Segment::Type::ChordRest)
+                                          continue;
                                     ChordRest* cr2 = static_cast<ChordRest*>(s2->element(dstTrack));
                                     if (!cr2 || cr2->type() == Element::Type::REST)
                                           continue;
@@ -3988,6 +4141,14 @@ void Score::changeVoice(int voice)
                                     r->setDuration(chord->duration());
                                     r->setTuplet(chord->tuplet());
                                     r->setParent(s);
+                                    // if there were grace notes, move them
+                                    for (Chord* gc : chord->graceNotes()) {
+                                          Chord* ngc = new Chord(*gc);
+                                          undoRemoveElement(gc);
+                                          ngc->setParent(dstChord);
+                                          ngc->setTrack(dstChord->track());
+                                          undoAddElement(ngc);
+                                          }
                                     // remove chord, replace with rest
                                     undoRemoveElement(chord);
                                     undoAddCR(r, m, s->tick());
@@ -3999,7 +4160,7 @@ void Score::changeVoice(int voice)
 
       if (!el.isEmpty())
             selection().clear();
-      foreach(Element* e, el)
+      for (Element* e : el)
             select(e, SelectType::ADD, -1);
       setLayoutAll(true);
       endCmd();
diff --git a/libmscore/score.h b/libmscore/score.h
index 0a53a73..938ccc7 100644
--- a/libmscore/score.h
+++ b/libmscore/score.h
@@ -24,7 +24,6 @@
 #include "synthesizerstate.h"
 #include "mscoreview.h"
 #include "segment.h"
-#include "accidental.h"
 #include "ottava.h"
 #include "spannermap.h"
 #include "rehearsalmark.h"
@@ -230,51 +229,57 @@ enum class PasteStatus : char {
 
 //---------------------------------------------------------
 //   @@ Score
-//   @P firstMeasure    Ms::Measure       the first measure of the score (read only)
-//   @P firstMeasureMM  Ms::Measure       the first multi-measure rest measure of the score (read only)
-//   @P lastMeasure     Ms::Measure       the last measure of the score (read only)
-//   @P lastMeasureMM   Ms::Measure       the last multi-measure rest measure of the score (read only)
-//   @P lastSegment     Ms::Segment       the last score segment (read-only)
-//   @P name            QString           name of the score
+//   @P composer        string            composer of the score (read only)
+//   @P duration        int               duration of score in seconds (read only)
+//   @P excerpts        array[Excerpt]    the list of the excerpts (linked parts)
+//   @P firstMeasure    Measure           the first measure of the score (read only)
+//   @P firstMeasureMM  Measure           the first multi-measure rest measure of the score (read only)
+//   @P harmonyCount    int               number of harmony items (read only)
+//   @P hasHarmonies    bool              score has chord symbols (read only)
+//   @P hasLyrics       bool              score has lyrics (read only)
+//   @P keysig          int               key signature at the start of the score (read only)
+//   @P lastMeasure     Measure           the last measure of the score (read only)
+//   @P lastMeasureMM   Measure           the last multi-measure rest measure of the score (read only)
+//   @P lastSegment     Segment           the last score segment (read-only)
+//   @P lyricCount      int               number of lyric items (read only)
+//   @P name            string            name of the score
+//   @P nmeasures       int               number of measures (read only)
 //   @P npages          int               number of pages (read only)
 //   @P nstaves         int               number of staves (read only)
 //   @P ntracks         int               number of tracks (staves * 4) (read only)
-//   @P nmeasures       int               number of measures (read only)
-//   @P parts           array[Ms::Part]   the list of parts (read only)
-//   @P title           QString           title of the score (read only)
-//   @P subtitle        QString           subtitle of the score (read only)
-//   @P composer        QString           composer of the score (read only)
-//   @P poet            QString           poet of the score (read only)
-//   @P hasLyrics       bool              score has lyrics (read only)
-//   @P hasHarmonies    bool              score has chord symbols (read only)
-//   @P keysig          int               key signature at the start of the score (read only)
-//   @P duration        int               duration of score in seconds (read only)
-//   @P excerpts        array[Ms::Excerpt] the list of the excerpts (linked parts)
+// not to be documented?
+//   @  pageFormat      PageFormat        the page format for the score
+//   @P parts           array[Part]       the list of parts (read only)
+//   @P poet            string            poet of the score (read only)
+//   @P subtitle        string            subtitle of the score (read only)
+//   @P title           string            title of the score (read only)
 //---------------------------------------------------------
 
 class Score : public QObject {
       Q_OBJECT
-      Q_PROPERTY(Ms::Measure*           firstMeasure      READ firstMeasure)
-      Q_PROPERTY(Ms::Measure*           firstMeasureMM    READ firstMeasureMM)
-      Q_PROPERTY(Ms::Measure*           lastMeasure       READ lastMeasure)
-      Q_PROPERTY(Ms::Measure*           lastMeasureMM     READ lastMeasureMM)
-      Q_PROPERTY(Ms::Segment*           lastSegment       READ lastSegment)
-      Q_PROPERTY(QString                name              READ name           WRITE setName)
-      Q_PROPERTY(int                    npages            READ npages)
-      Q_PROPERTY(int                    nstaves           READ nstaves)
-      Q_PROPERTY(int                    ntracks           READ ntracks)
-      Q_PROPERTY(int                    nmeasures         READ nmeasures)
-      Q_PROPERTY(QQmlListProperty<Ms::Part> parts     READ qmlParts)
-      Q_PROPERTY(QString                title             READ title)
-      Q_PROPERTY(QString                subtitle          READ subtitle)
-      Q_PROPERTY(QString                composer          READ composer)
-      Q_PROPERTY(QString                poet              READ poet)
-      Q_PROPERTY(bool                   hasLyrics         READ hasLyrics)
-      Q_PROPERTY(bool                   hasHarmonies      READ hasHarmonies)
-      Q_PROPERTY(int                    keysig            READ keysig)
-      Q_PROPERTY(int                    duration          READ duration)
-      Q_PROPERTY(QQmlListProperty<Ms::Excerpt> excerpts   READ qmlExcerpts)
-      Q_PROPERTY(Ms::PageFormat*        pageFormat        READ pageFormat     WRITE undoChangePageFormat)
+      Q_PROPERTY(QString                        composer          READ composer)
+      Q_PROPERTY(int                            duration          READ duration)
+      Q_PROPERTY(QQmlListProperty<Ms::Excerpt>  excerpts          READ qmlExcerpts)
+      Q_PROPERTY(Ms::Measure*                   firstMeasure      READ firstMeasure)
+      Q_PROPERTY(Ms::Measure*                   firstMeasureMM    READ firstMeasureMM)
+      Q_PROPERTY(int                            harmonyCount      READ harmonyCount)
+      Q_PROPERTY(bool                           hasHarmonies      READ hasHarmonies)
+      Q_PROPERTY(bool                           hasLyrics         READ hasLyrics)
+      Q_PROPERTY(int                            keysig            READ keysig)
+      Q_PROPERTY(Ms::Measure*                   lastMeasure       READ lastMeasure)
+      Q_PROPERTY(Ms::Measure*                   lastMeasureMM     READ lastMeasureMM)
+      Q_PROPERTY(Ms::Segment*                   lastSegment       READ lastSegment)
+      Q_PROPERTY(int                            lyricCount        READ lyricCount)
+      Q_PROPERTY(QString                        name              READ name           WRITE setName)
+      Q_PROPERTY(int                            nmeasures         READ nmeasures)
+      Q_PROPERTY(int                            npages            READ npages)
+      Q_PROPERTY(int                            nstaves           READ nstaves)
+      Q_PROPERTY(int                            ntracks           READ ntracks)
+      Q_PROPERTY(Ms::PageFormat*                pageFormat        READ pageFormat     WRITE undoChangePageFormat)
+      Q_PROPERTY(QQmlListProperty<Ms::Part>     parts             READ qmlParts)
+      Q_PROPERTY(QString                        poet              READ poet)
+      Q_PROPERTY(QString                        subtitle          READ subtitle)
+      Q_PROPERTY(QString                        title             READ title)
 
    public:
       enum class FileError : char {
@@ -478,9 +483,14 @@ class Score : public QObject {
 
       QQmlListProperty<Ms::Part> qmlParts() { return QQmlListProperty<Ms::Part>(this, _parts); }
       QQmlListProperty<Ms::Excerpt> qmlExcerpts() { return QQmlListProperty<Ms::Excerpt>(this, _excerpts); }
+      FileError loadCompressedMsc(QIODevice*, bool ignoreVersionError);
+      FileError read114(XmlReader&);
+      FileError read1(XmlReader&, bool ignoreVersionError);
 
    protected:
       void createPlayEvents(Chord*);
+      void createGraceNotesPlayEvents(QList<Chord*> gnb, int tick, Chord* chord, int& ontime);
+
       SynthesizerState _synthesizerState;
 
    signals:
@@ -513,6 +523,8 @@ class Score : public QObject {
       void cmdAddOttava(Ottava::Type);
       void cmdAddStretch(qreal);
 
+      void addRemoveBreaks(int interval, bool lock);
+
       bool transpose(Note* n, Interval, bool useSharpsFlats);
       void transposeKeys(int staffStart, int staffEnd, int tickStart, int tickEnd, const Interval&);
       bool transpose(TransposeMode mode, TransposeDirection, Key transposeKey, int transposeInterval,
@@ -524,9 +536,6 @@ class Score : public QObject {
 
       void write(Xml&, bool onlySelection);
       bool read(XmlReader&);
-      FileError read114(XmlReader&);
-      FileError read1(XmlReader&, bool ignoreVersionError);
-      FileError loadCompressedMsc(QString name, bool ignoreVersionError);
 
       QList<Staff*>& staves()                { return _staves; }
       const QList<Staff*>& staves() const    { return _staves; }
@@ -603,8 +612,8 @@ class Score : public QObject {
 
       // undo/redo ops
       void addArticulation(ArticulationType);
-      void changeAccidental(Accidental::Type);
-      void changeAccidental(Note* oNote, Ms::Accidental::Type);
+      void changeAccidental(AccidentalType);
+      void changeAccidental(Note* oNote, Ms::AccidentalType);
 
       void addElement(Element*);
       void removeElement(Element*);
@@ -625,7 +634,9 @@ class Score : public QObject {
       void repitchNote(const Position& pos, bool replace);
       void cmdAddPitch(int pitch, bool addFlag);
 
+      //@ to be used at least once by plugins of type "dialog" before score modifications to make them undoable
       Q_INVOKABLE void startCmd();        // start undoable command
+      //@ to be used at least once by plugins of type "dialog" after score modifications to make them undoable
       Q_INVOKABLE void endCmd(bool rollback = false);          // end undoable command
       void end();             // layout & update canvas
       void end1();
@@ -664,6 +675,7 @@ class Score : public QObject {
       void setShowVBox(bool v)            { _showVBox = v;            }
 
       FileError loadMsc(QString name, bool ignoreVersionError);
+      FileError loadMsc(QString name, QIODevice*, bool ignoreVersionError);
 
       bool saveFile(QFileInfo& info);
       void saveFile(QIODevice* f, bool msczFormat, bool onlySelection = false);
@@ -774,6 +786,7 @@ class Score : public QObject {
       void renderMidi(EventMap* events);
       void renderStaff(EventMap* events, Staff*);
       void renderSpanners(EventMap* events, int staffIdx);
+      int renderMetronome(EventMap* events, Measure* m, int playPos, int tickOffset, bool countIn);
 
       int mscVersion() const    { return _mscVersion; }
       void setMscVersion(int v) { _mscVersion = v; }
@@ -834,6 +847,7 @@ class Score : public QObject {
       RepeatList* repeatList() const;
       qreal utick2utime(int tick) const;
       int utime2utick(qreal utime) const;
+      //@ ??
       Q_INVOKABLE void updateRepeatList(bool expandRepeats);
 
       void nextInputPos(ChordRest* cr, bool);
@@ -861,6 +875,7 @@ class Score : public QObject {
       Ms::Measure* lastMeasureMM() const;
       MeasureBase* measure(int idx) const;
 
+      //@ returns the first segment of the score of the given type (use Segment.Clef, ... enum)
       Q_INVOKABLE Ms::Segment* firstSegment(Segment::Type s = Segment::Type::All) const;
       Ms::Segment* firstSegmentMM(Segment::Type s = Segment::Type::All) const;
       Ms::Segment* lastSegment() const;
@@ -895,6 +910,7 @@ class Score : public QObject {
       void removeAudio();
       void enqueueMidiEvent(MidiInputEvent ev) { midiInputQueue.enqueue(ev); }
 
+      //@ ??
       Q_INVOKABLE void doLayout();
       void layoutSystems();
       void layoutSystems2();
@@ -930,7 +946,9 @@ class Score : public QObject {
       QMap<QString, QString>& metaTags()               { return _metaTags; }
       void setMetaTags(const QMap<QString,QString>& t) { _metaTags = t; }
 
-      Q_INVOKABLE QString metaTag(const QString& s) const;
+      //@ returns as a string the metatag named 'tag'
+      Q_INVOKABLE QString metaTag(const QString& tag) const;
+      //@ sets the metatag named 'tag' to 'val'
       Q_INVOKABLE void setMetaTag(const QString& tag, const QString& val);
 
       QMap<int, LinkedElements*>& links();
@@ -993,10 +1011,14 @@ class Score : public QObject {
       QList<Score*> scoreList();
       bool switchLayer(const QString& s);
       void layoutPage(const PageContext&,  qreal);
+      //@ appends to the score a named part as last part
       Q_INVOKABLE void appendPart(const QString&);
+      //@ appends to the score a number of measures
       Q_INVOKABLE void appendMeasures(int);
 #ifdef SCRIPT_INTERFACE
+      //@ ??
       Q_INVOKABLE void addText(const QString&, const QString&);
+      //@ creates and returns a cursor to be used to navigate the score
       Q_INVOKABLE Ms::Cursor* newCursor();
 #endif
       qreal computeMinWidth(Segment* fs, bool firstMeasureInSystem);
@@ -1007,7 +1029,8 @@ class Score : public QObject {
       bool isSpannerStartEnd(int tick, int track) const;
       void removeSpanner(Spanner*);
       void addSpanner(Spanner*);
-      void cmdAddSpanner(Spanner* e, const QPointF& pos);
+      void cmdAddSpanner(Spanner* spanner, const QPointF& pos);
+      void cmdAddSpanner(Spanner* spanner, int staffIdx, Segment* startSegment, Segment* endSegment);
       void checkSpanner(int startTick, int lastTick);
       const std::set<Spanner*>unmanagedSpanners() { return _unmanagedSpanner; }
       void addUnmanagedSpanner(Spanner*);
@@ -1046,6 +1069,9 @@ class Score : public QObject {
       int nmeasures();
       bool hasLyrics();
       bool hasHarmonies();
+      int  lyricCount();
+      int  harmonyCount();
+      Q_INVOKABLE QString extractLyrics();
       int keysig();
       int duration();
 
@@ -1064,6 +1090,7 @@ class Score : public QObject {
       QString createRehearsalMarkText(RehearsalMark* current) const;
       QString nextRehearsalMarkText(RehearsalMark* previous, RehearsalMark* current) const;
 
+      //@ ??
       Q_INVOKABLE void cropPage(qreal margins);
       bool sanityCheck(const QString& name = nullptr);
 
diff --git a/libmscore/scorefile.cpp b/libmscore/scorefile.cpp
index 80c7f32..bb79e14 100644
--- a/libmscore/scorefile.cpp
+++ b/libmscore/scorefile.cpp
@@ -185,6 +185,13 @@ void Score::write(Xml& xml, bool selectionOnly)
       if (selectionOnly) {
             staffStart   = _selection.staffStart();
             staffEnd     = _selection.staffEnd();
+            // make sure we select full parts
+            Staff* sStaff = staff(staffStart);
+            Part* sPart = sStaff->part();
+            Staff* eStaff = staff(staffEnd - 1);
+            Part* ePart = eStaff->part();
+            staffStart = staffIdx(sPart);
+            staffEnd = staffIdx(ePart) + ePart->nstaves();
             measureStart = _selection.startSegment()->measure();
             if (_selection.endSegment())
                   measureEnd   = _selection.endSegment()->measure()->next();
@@ -466,6 +473,12 @@ void Score::saveCompressedFile(QFileInfo& info, bool onlySelection)
 
 QImage Score::createThumbnail()
       {
+      LayoutMode layoutMode = _layoutMode;
+      if (layoutMode != LayoutMode::PAGE) {
+            startCmd();
+            undo(new ChangeLayoutMode(this, LayoutMode::PAGE));
+            doLayout();
+            }
       Page* page = pages().at(0);
       QRectF fr  = page->abbox();
       qreal mag  = 256.0 / qMax(fr.width(), fr.height());
@@ -482,6 +495,8 @@ QImage Score::createThumbnail()
       p.scale(mag, mag);
       print(&p, 0);
       p.end();
+      if (layoutMode != _layoutMode)
+            endCmd(true);       // rollback
       return pm;
       }
 
@@ -723,14 +738,9 @@ QString readRootFile(MQZipReader* uz, QList<QString>& images)
 //    return false on error
 //---------------------------------------------------------
 
-Score::FileError Score::loadCompressedMsc(QString name, bool ignoreVersionError)
+Score::FileError Score::loadCompressedMsc(QIODevice* io, bool ignoreVersionError)
       {
-      MQZipReader uz(name);
-      if (!uz.exists()) {
-            qDebug("loadCompressedMsc: <%s> not found", qPrintable(name));
-            MScore::lastError = tr("file not found");
-            return FileError::FILE_NOT_FOUND;
-            }
+      MQZipReader uz(io);
 
       QList<QString> sl;
       QString rootfile = readRootFile(&uz, sl);
@@ -801,18 +811,30 @@ Score::FileError Score::loadMsc(QString name, bool ignoreVersionError)
       {
       info.setFile(name);
 
-      if (name.endsWith(".mscz"))
-            return loadCompressedMsc(name, ignoreVersionError);
-
       QFile f(name);
       if (!f.open(QIODevice::ReadOnly)) {
             MScore::lastError = f.errorString();
             return FileError::FILE_OPEN_ERROR;
             }
 
-      XmlReader xml(&f);
-      FileError retval = read1(xml, ignoreVersionError);
-      return retval;
+      if (name.endsWith(".mscz"))
+            return loadCompressedMsc(&f, ignoreVersionError);
+      else {
+            XmlReader r(&f);
+            return read1(r, ignoreVersionError);
+            }
+      }
+
+Score::FileError Score::loadMsc(QString name, QIODevice* io, bool ignoreVersionError)
+      {
+      info.setFile(name);
+
+      if (name.endsWith(".mscz"))
+            return loadCompressedMsc(io, ignoreVersionError);
+      else {
+            XmlReader r(io);
+            return read1(r, ignoreVersionError);
+            }
       }
 
 //---------------------------------------------------------
@@ -1160,6 +1182,7 @@ bool Score::read(XmlReader& e)
             qDebug("%s: xml read error at line %lld col %lld: %s",
                qPrintable(e.getDocName()), e.lineNumber(), e.columnNumber(),
                e.name().toUtf8().data());
+            MScore::lastError = tr("XML read error at line %1 column %2: %3").arg(e.lineNumber()).arg(e.columnNumber()).arg(e.name().toString());
             return false;
             }
 
@@ -1236,6 +1259,7 @@ bool Score::read(XmlReader& e)
 void Score::print(QPainter* painter, int pageNo)
       {
       _printing  = true;
+      MScore::pdfPrinting = true;
       Page* page = pages().at(pageNo);
       QRectF fr  = page->abbox();
 
@@ -1249,6 +1273,7 @@ void Score::print(QPainter* painter, int pageNo)
             e->draw(painter);
             painter->restore();
             }
+      MScore::pdfPrinting = false;
       _printing = false;
       }
 
diff --git a/libmscore/segment.h b/libmscore/segment.h
index 8791dda..c093ec4 100644
--- a/libmscore/segment.h
+++ b/libmscore/segment.h
@@ -36,13 +36,13 @@ class System;
 ///    A segment holds all vertical aligned staff elements.
 ///    Segments are typed and contain only Elements of the same type.
 //
-//   @P next            Ms::Segment       the next segment in the whole score; null at last score segment (read-only)
-//   @P nextInMeasure   Ms::Segment       the next segment in measure; null at last measure segment (read-only)
-//   @P prev            Ms::Segment       the previous segment in the whole score; null at first score segment (read-only)
-//   @P prevInMeasure   Ms::Segment       the previous segment in measure; null at first measure segment (read-only)
-//   @P segmentType     Ms::Segment::Type (Invalid, Clef, KeySig, Ambitus, TimeSig, StartRepeatBarLine, BarLine, ChordRest, Breath, EndBarLine TimeSigAnnounce, KeySigAnnounce, All)
+//   @P annotations     array[Element]    the list of annotations (read only)
+//   @P next            Segment           the next segment in the whole score; null at last score segment (read-only)
+//   @P nextInMeasure   Segment           the next segment in measure; null at last measure segment (read-only)
+//   @P prev            Segment           the previous segment in the whole score; null at first score segment (read-only)
+//   @P prevInMeasure   Segment           the previous segment in measure; null at first measure segment (read-only)
+//   @P segmentType     enum (Segment.All, .Ambitus, .BarLine, .Breath, .ChordRest, .Clef, .EndBarLine, .Invalid, .KeySig, .KeySigAnnounce, .StartRepeatBarLine, .TimeSig, .TimeSigAnnounce)
 //   @P tick            int               midi tick position (read only)
-//   @P annotations     array[Ms::Element] the list of annotations (read only)
 //------------------------------------------------------------------------
 
 /**
@@ -57,13 +57,13 @@ class System;
 
 class Segment : public Element {
       Q_OBJECT
+      Q_PROPERTY(QQmlListProperty<Ms::Element> annotations READ qmlAnnotations)
       Q_PROPERTY(Ms::Segment*       next              READ next1)
       Q_PROPERTY(Ms::Segment*       nextInMeasure     READ next)
       Q_PROPERTY(Ms::Segment*       prev              READ prev1)
       Q_PROPERTY(Ms::Segment*       prevInMeasure     READ prev)
       Q_PROPERTY(Ms::Segment::Type  segmentType       READ segmentType WRITE setSegmentType)
       Q_PROPERTY(int                tick              READ tick)
-      Q_PROPERTY(QQmlListProperty<Ms::Element> annotations READ qmlAnnotations)
       Q_ENUMS(Type)
 
 public:
@@ -139,6 +139,7 @@ public:
 
       Ms::Element* element(int track) const { return _elist.value(track);  }
       // a variant of the above function, specifically designed to be called from QML
+      //@ returns the element at track 'track' (null if none)
       Q_INVOKABLE Ms::Element* elementAt(int track) const;
       ChordRest* cr(int track) const                    {
             Q_ASSERT(_segmentType == Type::ChordRest);
diff --git a/libmscore/select.cpp b/libmscore/select.cpp
index 33975a4..1564505 100644
--- a/libmscore/select.cpp
+++ b/libmscore/select.cpp
@@ -50,6 +50,7 @@
 #include "xml.h"
 #include "staff.h"
 #include "part.h"
+#include "accidental.h"
 
 namespace Ms {
 
diff --git a/libmscore/slur.cpp b/libmscore/slur.cpp
index b567497..05565fa 100644
--- a/libmscore/slur.cpp
+++ b/libmscore/slur.cpp
@@ -419,7 +419,7 @@ void SlurSegment::editDrag(const EditData& ed)
 //   writeProperties
 //---------------------------------------------------------
 
-void SlurSegment::write(Xml& xml, int no) const
+void SlurSegment::writeSlur(Xml& xml, int no) const
       {
       if (ups(Grip::START).off.isNull()
          && ups(Grip::END).off.isNull()
@@ -592,7 +592,7 @@ void Slur::computeBezier(SlurSegment* ss, QPointF p6o)
 //    p1, p2  are in System coordinates
 //---------------------------------------------------------
 
-void SlurSegment::layout(const QPointF& p1, const QPointF& p2)
+void SlurSegment::layoutSegment(const QPointF& p1, const QPointF& p2)
       {
       ups(Grip::START).p = p1;
       ups(Grip::END).p   = p2;
@@ -1030,7 +1030,7 @@ void SlurTie::writeProperties(Xml& xml) const
             xml.tag("track2", track2());
       int idx = 0;
       foreach(const SpannerSegment* ss, spannerSegments())
-            ((SlurSegment*)ss)->write(xml, idx++);
+            ((SlurSegment*)ss)->writeSlur(xml, idx++);
       if (_slurDirection != MScore::Direction::AUTO)
             xml.tag("up", int(_slurDirection));
       if (_lineType)
@@ -1349,12 +1349,12 @@ void Slur::layout()
                   s = frontSegment();
                   }
             s->setSpannerSegmentType(SpannerSegmentType::SINGLE);
-            s->layout(QPointF(0, 0), QPointF(_spatium * 6, 0));
+            s->layoutSegment(QPointF(0, 0), QPointF(_spatium * 6, 0));
             setbbox(frontSegment()->bbox());
             return;
             }
 
-      if (startCR() == 0) {
+      if (startCR() == 0 || startCR()->measure() == 0) {
             qDebug("Slur::layout(): track %d-%d  %p - %p tick %d-%d null start anchor",
                track(), track2(), startCR(), endCR(), tick(), tick2());
             return;
@@ -1453,13 +1453,13 @@ void Slur::layout()
             // case 1: one segment
             if (sPos.system1 == sPos.system2) {
                   segment->setSpannerSegmentType(SpannerSegmentType::SINGLE);
-                  segment->layout(sPos.p1, sPos.p2);
+                  segment->layoutSegment(sPos.p1, sPos.p2);
                   }
             // case 2: start segment
             else if (i == 0) {
                   segment->setSpannerSegmentType(SpannerSegmentType::BEGIN);
                   qreal x = system->bbox().width();
-                  segment->layout(sPos.p1, QPointF(x, sPos.p1.y()));
+                  segment->layoutSegment(sPos.p1, QPointF(x, sPos.p1.y()));
                   }
             // case 3: middle segment
             else if (i != 0 && system != sPos.system2) {
@@ -1467,13 +1467,13 @@ void Slur::layout()
                   qreal x1 = firstNoteRestSegmentX(system);
                   qreal x2 = system->bbox().width();
                   qreal y  = system->staff(staffIdx())->y();
-                  segment->layout(QPointF(x1, y), QPointF(x2, y));
+                  segment->layoutSegment(QPointF(x1, y), QPointF(x2, y));
                   }
             // case 4: end segment
             else {
                   segment->setSpannerSegmentType(SpannerSegmentType::END);
                   qreal x = firstNoteRestSegmentX(system);
-                  segment->layout(QPointF(x, sPos.p2.y()), sPos.p2);
+                  segment->layoutSegment(QPointF(x, sPos.p2.y()), sPos.p2);
                   }
             if (system == sPos.system2)
                   break;
diff --git a/libmscore/slur.h b/libmscore/slur.h
index 49e3696..0332391 100644
--- a/libmscore/slur.h
+++ b/libmscore/slur.h
@@ -59,7 +59,7 @@ struct SlurOffsets {
 
 //---------------------------------------------------------
 //   @@ SlurSegment
-///    also used for Tie
+///    a single segment of slur; also used for Tie
 //---------------------------------------------------------
 
 class SlurSegment : public SpannerSegment {
@@ -86,7 +86,7 @@ class SlurSegment : public SpannerSegment {
       virtual int subtype() const         { return static_cast<int>(spanner()->type()); }
       virtual QString subtypeName() const { return name(spanner()->type()); }
 
-      void layout(const QPointF& p1, const QPointF& p2);
+      void layoutSegment(const QPointF& p1, const QPointF& p2);
       virtual QPainterPath shape() const { return shapePath; }
       virtual void draw(QPainter*) const;
 
@@ -110,7 +110,7 @@ class SlurSegment : public SpannerSegment {
 
       SlurTie* slurTie() const { return (SlurTie*)spanner(); }
 
-      void write(Xml& xml, int no) const;
+      void writeSlur(Xml& xml, int no) const;
       void read(XmlReader&);
       virtual void reset();
       void setSlurOffset(Grip i, const QPointF& val) { _ups[int(i)].off = val;  }
@@ -124,8 +124,8 @@ class SlurSegment : public SpannerSegment {
 
 //-------------------------------------------------------------------
 //   @@ SlurTie
-//   @P lineType       int                    (0 - solid, 1 - dotted, 2 - dashed)
-//   @P slurDirection  Ms::MScore::Direction  (AUTO, UP, DOWN)
+//   @P lineType       int    (0 - solid, 1 - dotted, 2 - dashed)
+//   @P slurDirection  enum (Direction.AUTO, Direction.DOWN, Direction.UP)
 //-------------------------------------------------------------------
 
 class SlurTie : public Spanner {
diff --git a/libmscore/spanner.cpp b/libmscore/spanner.cpp
index 41a52ef..39b466e 100644
--- a/libmscore/spanner.cpp
+++ b/libmscore/spanner.cpp
@@ -18,6 +18,7 @@
 #include "segment.h"
 #include "measure.h"
 #include "undo.h"
+#include "staff.h"
 
 namespace Ms {
 
@@ -538,10 +539,14 @@ void Spanner::computeEndElement()
                         qDebug("%s no end element for tick %d", name(), tick2());
                         return;
                         }
-                  int nticks = endCR()->tick() + endCR()->actualTicks() - _tick;
-                  if (_ticks != nticks) {
-                        qDebug("%s ticks changed, %d -> %d", name(), _ticks, nticks);
-                        setTicks(nticks);
+                  if (!endCR()->measure()->isMMRest()) {
+                        int nticks = endCR()->tick() + endCR()->actualTicks() - _tick;
+                        if (_ticks != nticks) {
+                              qDebug("%s ticks changed, %d -> %d", name(), _ticks, nticks);
+                              setTicks(nticks);
+                              if (type() == Element::Type::OTTAVA)
+                                    staff()->updateOttava();
+                              }
                         }
                   }
                   break;
diff --git a/libmscore/spanner.h b/libmscore/spanner.h
index 5663449..870d210 100644
--- a/libmscore/spanner.h
+++ b/libmscore/spanner.h
@@ -93,11 +93,11 @@ class SpannerSegment : public Element {
 //   @@ Spanner
 ///   Virtual base class for slurs, ties, lines etc.
 //
-//    @P anchor         Ms::Spanner::Anchor     (SEGMENT, MEASURE, CHORD, NOTE)
-//    @P endElement     MS::Element             the element the spanner end is anchored to (read-only)
-//    @P startElement   MS::Element             the element the spanner start is anchored to (read-only)
-//    @P tick           int                     tick start position
-//    @P tick2          int                     tick end position
+//    @P anchor         enum (Spanner.CHORD, Spanner.MEASURE, Spanner.NOTE, Spanner.SEGMENT)
+//    @P endElement     Element           the element the spanner end is anchored to (read-only)
+//    @P startElement   Element           the element the spanner start is anchored to (read-only)
+//    @P tick           int               tick start position
+//    @P tick2          int               tick end position
 //----------------------------------------------------------------------------------
 
 class Spanner : public Element {
diff --git a/libmscore/staff.cpp b/libmscore/staff.cpp
index c5c074f..2439610 100644
--- a/libmscore/staff.cpp
+++ b/libmscore/staff.cpp
@@ -31,6 +31,14 @@
 #include "ottava.h"
 #include "harmony.h"
 
+// #define DEBUG_CLEFS
+
+#ifdef DEBUG_CLEFS
+#define DUMP_CLEFS(s) dumpClefs(s)
+#else
+#define DUMP_CLEFS(s)
+#endif
+
 namespace Ms {
 
 //---------------------------------------------------------
@@ -264,7 +272,7 @@ void Staff::setClef(Clef* clef)
                   }
             }
       clefs.setClef(clef->segment()->tick(), clef->clefTypeList());
-//      dumpClefs("setClef");
+      DUMP_CLEFS("setClef");
       }
 
 //---------------------------------------------------------
@@ -292,7 +300,7 @@ void Staff::removeClef(Clef* clef)
                   break;
                   }
             }
-//      dumpClefs("removeClef");
+      DUMP_CLEFS("removeClef");
       }
 
 //---------------------------------------------------------
@@ -368,7 +376,7 @@ void Staff::clearTimeSig()
       }
 
 //---------------------------------------------------------
-//   Staff::key
+//   Staff::keySigEvent
 //
 //    locates the key sig currently in effect at tick
 //---------------------------------------------------------
@@ -714,7 +722,7 @@ void Staff::setLines(int val)
       }
 
 //---------------------------------------------------------
-//   line distance
+//   lineDistance
 //---------------------------------------------------------
 
 qreal Staff::lineDistance() const
@@ -820,19 +828,28 @@ bool Staff::isLinked(Staff* staff)
 //---------------------------------------------------------
 //   primaryStaff
 ///   if there are linked staves, the primary staff is
-///   the one who is played back
+///   the one who is played back and it's not a tab staff
+///   because we don't have enough information  to play
+///   e.g ornaments. NOTE: it's not necessarily the top staff!
 //---------------------------------------------------------
 
 bool Staff::primaryStaff() const
       {
-      QList<Staff*> s;
       if (!_linkedStaves)
             return true;
+      QList<Staff*> s;
+      QList<Staff*> ss;
       foreach(Staff* staff, _linkedStaves->staves()) {
-            if (staff->score() == score())
+            if (staff->score() == score()) {
                   s.append(staff);
+                  if (!staff->isTabStaff())
+                        ss.append(staff);
+                  }
             }
-      return s.front() == this;
+      if (s.size() == 1) // the linked staves are in different scores
+      	return s.front() == this;
+      else // return a non tab linked staff in this score
+      	return ss.front() == this;
       }
 
 //---------------------------------------------------------
@@ -1019,15 +1036,40 @@ void Staff::insertTime(int tick, int len)
             }
       _keys.insert(kl2.begin(), kl2.end());
 
+      // check if there is a clef at the end of measure
+      // before tick
+      Clef* clef = 0;
+      Measure* m = _score->tick2measure(tick);
+      if (m && (m->tick() == tick) && (m->prevMeasure())) {
+            m = m->prevMeasure();
+            Segment* s = m->findSegment(Segment::Type::Clef, tick);
+            if (s) {
+                  int track = idx() * VOICES;
+                  clef = static_cast<Clef*>(s->element(track));
+                  }
+            }
+
       ClefList cl2;
       for (auto i = clefs.lower_bound(tick); i != clefs.end();) {
             ClefTypeList ctl = i->second;
-            int tick = i->first;
+            int t = i->first;
+            if (clef && tick == t) {
+                  ++i;
+                  continue;
+                  }
             clefs.erase(i++);
-            cl2.setClef(tick + len, ctl);
+            cl2.setClef(t + len, ctl);
             }
       clefs.insert(cl2.begin(), cl2.end());
+
+      // check if there is a clef at the end of measure
+      // before tick: do not remove from clefs list
+
+      if (clef)
+            setClef(clef);
+
       updateOttava();
+      DUMP_CLEFS("  insertTime");
       }
 
 //---------------------------------------------------------
diff --git a/libmscore/stafftext.cpp b/libmscore/stafftext.cpp
index 3a523c2..c3f1376 100644
--- a/libmscore/stafftext.cpp
+++ b/libmscore/stafftext.cpp
@@ -122,7 +122,7 @@ void StaffText::read(XmlReader& e)
                         e.readNext();
                   _setAeolusStops = true;
                   }
-          else if (tag == "swing") {
+            else if (tag == "swing") {
                   QString swingUnit = e.attribute("unit","");
                   int unit = 0;
                   if (swingUnit == TDuration(TDuration::DurationType::V_EIGHTH).name())
diff --git a/libmscore/stafftype.cpp b/libmscore/stafftype.cpp
index acf89c9..fc32771 100644
--- a/libmscore/stafftype.cpp
+++ b/libmscore/stafftype.cpp
@@ -384,7 +384,7 @@ void StaffType::setOnLines(bool val)
       }
 
 //---------------------------------------------------------
-//   set metrics
+//   setDurationMetrics
 //    checks whether the internally computed metrics are is still valid and re-computes them, if not
 //---------------------------------------------------------
 
@@ -918,7 +918,7 @@ bool StaffType::readConfigFile(const QString& fileName)
       }
 
 //---------------------------------------------------------
-//   Get Font Names
+//   fontNames
 //
 //    returns a list of display names for the fonts  configured to work with Tablatures;
 //    the index of a name in the list can be used to retrieve the font data with fontData()
@@ -937,7 +937,7 @@ QList<QString> StaffType::fontNames(bool bDuration)
       }
 
 //---------------------------------------------------------
-//   Get Font Data
+//   fontData
 //
 //    retrieves data about a Tablature font.
 //    returns: true if idx is valid | false if it is not
diff --git a/libmscore/stem.cpp b/libmscore/stem.cpp
index d05f375..441d4eb 100644
--- a/libmscore/stem.cpp
+++ b/libmscore/stem.cpp
@@ -96,9 +96,7 @@ void Stem::layout()
             else {                              // non-TAB
                   // move stem start to note attach point
                   Note* n  = up() ? chord()->downNote() : chord()->upNote();
-                  if (n->mirror())
-                        _up *= -1;
-                  y1 -= n->attach().y() * _up;
+                  y1 += (up() ? n->stemUpSE().y() : n->stemDownNW().y());
                   rypos() = n->rypos();
                   }
             }
@@ -259,7 +257,7 @@ void Stem::editDrag(const EditData& ed)
       layout();
       Chord* c = static_cast<Chord*>(parent());
       if (c->hook())
-            c->hook()->move(0.0, ed.delta.y());
+            c->hook()->move(QPointF(0.0, ed.delta.y()));
       }
 
 //---------------------------------------------------------
diff --git a/libmscore/style.cpp b/libmscore/style.cpp
index 98f1dd7..ca7a6f0 100644
--- a/libmscore/style.cpp
+++ b/libmscore/style.cpp
@@ -209,6 +209,8 @@ static const StyleTypes2 styleTypes2[] = {
       { StyleIdx::tremoloBoxHeight,            StyleType("tremoloBoxHeight",        StyleValueType::SPATIUM) },
       { StyleIdx::tremoloStrokeWidth,          StyleType("tremoloLineWidth",        StyleValueType::SPATIUM) },
       { StyleIdx::tremoloDistance,             StyleType("tremoloDistance",         StyleValueType::SPATIUM) },
+      // TODO { StyleIdx::tremoloBeamLengthMultiplier, StyleType("tremoloBeamLengthMultiplier", StyleValueType::DOUBLE) },
+      // TODO { StyleIdx::tremoloMaxBeamLength,        StyleType("tremoloMaxBeamLength", StyleValueType::SPATIUM) },
       { StyleIdx::linearStretch,               StyleType("linearStretch",           StyleValueType::DOUBLE) },
       { StyleIdx::crossMeasureValues,          StyleType("crossMeasureValues",      StyleValueType::BOOL) },
       { StyleIdx::keySigNaturals,              StyleType("keySigNaturals",          StyleValueType::INT) },
@@ -557,8 +559,10 @@ StyleData::StyleData()
             { StyleIdx::tabClef,                     QVariant(int(ClefType::TAB)) },
             { StyleIdx::tremoloWidth,                QVariant(1.2) },  // tremolo stroke width: note head width
             { StyleIdx::tremoloBoxHeight,            QVariant(0.65) },
-            { StyleIdx::tremoloStrokeWidth,          QVariant(0.35) },
+            { StyleIdx::tremoloStrokeWidth,          QVariant(0.5) },  // was 0.35
             { StyleIdx::tremoloDistance,             QVariant(0.8) },
+            // TODO { StyleIdx::tremoloBeamLengthMultiplier, QVariant(0.62) },
+            // TODO { StyleIdx::tremoloMaxBeamLength,        QVariant(12.0) },
             { StyleIdx::linearStretch,               QVariant(qreal(1.5)) },
             { StyleIdx::crossMeasureValues,          QVariant(false) },
             { StyleIdx::keySigNaturals,              QVariant(int(KeySigNatural::NONE)) },
@@ -1110,7 +1114,7 @@ void StyleData::load(XmlReader& e)
 
                                     }
                               if (idx2 >= int(ArticulationType::ARTICULATIONS))
-                                    e.unknown();
+                                    continue;
                               }
                         }
                   }
@@ -1647,4 +1651,3 @@ void MStyle::setArticulationAnchor(int id, ArticulationAnchor val)
       }
 
 }
-
diff --git a/libmscore/style.h b/libmscore/style.h
index 8f334dd..ed0d73f 100644
--- a/libmscore/style.h
+++ b/libmscore/style.h
@@ -344,6 +344,8 @@ enum class StyleIdx : unsigned char {
       tremoloBoxHeight,
       tremoloStrokeWidth,
       tremoloDistance,
+      // TODO tremoloBeamLengthMultiplier,
+      // TODO tremoloMaxBeamLength,
 
       linearStretch,
       crossMeasureValues,
diff --git a/libmscore/style_p.h b/libmscore/style_p.h
index 8edc050..5b6b88c 100644
--- a/libmscore/style_p.h
+++ b/libmscore/style_p.h
@@ -95,7 +95,8 @@ class StyleData : public QSharedData {
       PageFormat _pageFormat;
       qreal _spatium;
       ArticulationAnchor _articulationAnchor[int(ArticulationType::ARTICULATIONS)];
-
+      MScore::OrnamentStyle _ornamentStyle = MScore::OrnamentStyle::DEFAULT;
+    
       bool _customChordList;        // if true, chordlist will be saved as part of score
 
       void set(StyleIdx id, const QVariant& v)            { _values[int(id)] = v; }
@@ -126,6 +127,9 @@ class StyleData : public QSharedData {
       void setSpatium(qreal v)                                   { _spatium = v;    }
       ArticulationAnchor articulationAnchor(int id) const        { return _articulationAnchor[id]; }
       void setArticulationAnchor(int id, ArticulationAnchor val) { _articulationAnchor[id] = val;  }
+      MScore::OrnamentStyle ornamentStyle()                      { return _ornamentStyle ; }
+      void setOrnamentStyle(MScore::OrnamentStyle val)           { _ornamentStyle = val; }
+    
       friend class TextStyle;
       };
 
diff --git a/libmscore/sym.cpp b/libmscore/sym.cpp
index 4ef6afe..022fe50 100644
--- a/libmscore/sym.cpp
+++ b/libmscore/sym.cpp
@@ -17,8 +17,15 @@
 #include "xml.h"
 #include "mscore.h"
 
+#include FT_GLYPH_H
+#include FT_IMAGE_H
+#include FT_BBOX_H
+
+static FT_Library ftlib;
+
 namespace Ms {
 
+
 //---------------------------------------------------------
 //   scoreFonts
 //    this is the list of available score fonts
@@ -26,7 +33,7 @@ namespace Ms {
 
 static const int FALLBACK_FONT = 2;       // Bravura
 
-QVector<ScoreFont> ScoreFont::_scoreFonts = {
+QVector<ScoreFont> ScoreFont::_scoreFonts {
       ScoreFont("Emmentaler", "MScore",      ":/fonts/mscore/",   "mscore.ttf"   ),
       ScoreFont("Gonville",   "Gootville",   ":/fonts/gootville/", "Gootville.otf" ),
       ScoreFont("Bravura",    "Bravura",     ":/fonts/bravura/",  "Bravura.otf"  )
@@ -494,7 +501,9 @@ QVector<const char*> Sym::symNames = {
       "accidentalWyschnegradsky9TwelfthsSharp",
       "accidentalXenakisOneThirdToneSharp",
       "accidentalXenakisTwoThirdTonesSharp",
+      "analyticsChoralmelodie",
       "analyticsEndStimme",
+      "analyticsHauptrhythmus",
       "analyticsHauptstimme",
       "analyticsInversion1",
       "analyticsNebenstimme",
@@ -564,6 +573,8 @@ QVector<const char*> Sym::symNames = {
       "articMarcatoBelow",
       "articMarcatoStaccatoAbove",
       "articMarcatoStaccatoBelow",
+      "articMarcatoTenutoAbove",
+      "articMarcatoTenutoBelow",
       "articStaccatissimoAbove",
       "articStaccatissimoBelow",
       "articStaccatissimoStrokeAbove",
@@ -635,6 +646,9 @@ QVector<const char*> Sym::symNames = {
       "brassLiftLong",
       "brassLiftMedium",
       "brassLiftShort",
+      "brassLiftSmoothLong",
+      "brassLiftSmoothMedium",
+      "brassLiftSmoothShort",
       "brassMuteClosed",
       "brassMuteHalfClosed",
       "brassMuteOpen",
@@ -655,8 +669,6 @@ QVector<const char*> Sym::symNames = {
       "cClefCombining",
       "cClefReversed",
       "cClefSquare",
-      "cClefTriangular",
-      "cClefTriangularToFClef",
       "caesura",
       "caesuraCurved",
       "caesuraShort",
@@ -891,8 +903,6 @@ QVector<const char*> Sym::symNames = {
       "fClefArrowUp",
       "fClefChange",
       "fClefReversed",
-      "fClefTriangular",
-      "fClefTriangularToCClef",
       "fClefTurned",
       "fermataAbove",
       "fermataBelow",
@@ -921,6 +931,7 @@ QVector<const char*> Sym::symNames = {
       "figbass5Raised3",
       "figbass6",
       "figbass6Raised",
+      "figbass6Raised2",
       "figbass7",
       "figbass7Raised1",
       "figbass7Raised2",
@@ -1081,6 +1092,8 @@ QVector<const char*> Sym::symNames = {
       "harpPedalDivider",
       "harpPedalLowered",
       "harpPedalRaised",
+      "harpSalzedoAeolianAscending",
+      "harpSalzedoAeolianDescending",
       "harpSalzedoFluidicSoundsLeft",
       "harpSalzedoFluidicSoundsRight",
       "harpSalzedoMetallicSounds",
@@ -1416,6 +1429,30 @@ QVector<const char*> Sym::symNames = {
       "mensuralWhiteMaxima",
       "mensuralWhiteMinima",
       "mensuralWhiteSemiminima",
+      "metAugmentationDot",
+      "metNote1024thDown",
+      "metNote1024thUp",
+      "metNote128thDown",
+      "metNote128thUp",
+      "metNote16thDown",
+      "metNote16thUp",
+      "metNote256thDown",
+      "metNote256thUp",
+      "metNote32ndDown",
+      "metNote32ndUp",
+      "metNote512thDown",
+      "metNote512thUp",
+      "metNote64thDown",
+      "metNote64thUp",
+      "metNote8thDown",
+      "metNote8thUp",
+      "metNoteDoubleWhole",
+      "metNoteDoubleWholeSquare",
+      "metNoteHalfDown",
+      "metNoteHalfUp",
+      "metNoteQuarterDown",
+      "metNoteQuarterUp",
+      "metNoteWhole",
       "metricModulationArrowLeft",
       "metricModulationArrowRight",
       "miscDoNotCopy",
@@ -1723,8 +1760,18 @@ QVector<const char*> Sym::symNames = {
       "noteheadXOrnate",
       "noteheadXOrnateEllipse",
       "noteheadXWhole",
+      "octaveBaselineA",
+      "octaveBaselineB",
+      "octaveBaselineM",
+      "octaveBaselineV",
+      "octaveBassa",
+      "octaveLoco",
       "octaveParensLeft",
       "octaveParensRight",
+      "octaveSuperscriptA",
+      "octaveSuperscriptB",
+      "octaveSuperscriptM",
+      "octaveSuperscriptV",
       "ornamentBottomLeftConcaveStroke",
       "ornamentBottomLeftConcaveStrokeLarge",
       "ornamentBottomLeftConvexStroke",
@@ -1764,12 +1811,12 @@ QVector<const char*> Sym::symNames = {
       "ornamentPrecompAppoggTrill",
       "ornamentPrecompAppoggTrillSuffix",
       "ornamentPrecompCadence",
-      "ornamentPrecompCadenceUpperPrefix ",
+      "ornamentPrecompCadenceUpperPrefix",
       "ornamentPrecompCadenceUpperPrefixTurn",
-      "ornamentPrecompCadenceWithTurn ",
+      "ornamentPrecompCadenceWithTurn",
       "ornamentPrecompDescendingSlide",
       "ornamentPrecompDoubleCadenceLowerPrefix",
-      "ornamentPrecompDoubleCadenceUpperPrefix ",
+      "ornamentPrecompDoubleCadenceUpperPrefix",
       "ornamentPrecompDoubleCadenceUpperPrefixTurn",
       "ornamentPrecompInvertedMordentUpperPrefix",
       "ornamentPrecompMordentRelease",
@@ -1815,6 +1862,7 @@ QVector<const char*> Sym::symNames = {
       "ottavaAlta",
       "ottavaBassa",
       "ottavaBassaBa",
+      "ottavaBassaVb",
       "pendereckiTremolo",
       "pictAgogo",
       "pictAlmglocken",
@@ -2102,6 +2150,7 @@ QVector<const char*> Sym::symNames = {
       "quindicesima",
       "quindicesimaAlta",
       "quindicesimaBassa",
+      "quindicesimaBassaMb",
       "repeat1Bar",
       "repeat2Bars",
       "repeat4Bars",
@@ -2130,12 +2179,17 @@ QVector<const char*> Sym::symNames = {
       "restMaxima",
       "restQuarter",
       "restQuarterOld",
+      "restQuarterZ",
       "restWhole",
       "restWholeLegerLine",
       "reversedBrace",
       "reversedBracketBottom",
       "reversedBracketTop",
       "rightRepeatSmall",
+      "schaefferClef",
+      "schaefferFClefToGClef",
+      "schaefferGClefToFClef",
+      "schaefferPreviousClef",
       "segno",
       "segnoSerpent1",
       "segnoSerpent2",
@@ -2149,7 +2203,9 @@ QVector<const char*> Sym::symNames = {
       "smnHistorySharp",
       "smnNatural",
       "smnSharp",
+      "smnSharpDown",
       "smnSharpWhite",
+      "smnSharpWhiteDown",
       "splitBarDivider",
       "staff1Line",
       "staff1LineNarrow",
@@ -2260,10 +2316,15 @@ QVector<const char*> Sym::symNames = {
       "timeSig7",
       "timeSig8",
       "timeSig9",
+      "timeSigBracketLeft",
+      "timeSigBracketLeftSmall",
+      "timeSigBracketRight",
+      "timeSigBracketRightSmall",
       "timeSigCombDenominator",
       "timeSigCombNumerator",
       "timeSigComma",
       "timeSigCommon",
+      "timeSigCut2",
       "timeSigCutCommon",
       "timeSigEquals",
       "timeSigFractionHalf",
@@ -2281,6 +2342,7 @@ QVector<const char*> Sym::symNames = {
       "timeSigParensRightSmall",
       "timeSigPlus",
       "timeSigPlusSmall",
+      "timeSigSlash",
       "timeSigX",
       "tremolo1",
       "tremolo2",
@@ -2316,6 +2378,7 @@ QVector<const char*> Sym::symNames = {
       "ventiduesima",
       "ventiduesimaAlta",
       "ventiduesimaBassa",
+      "ventiduesimaBassaMb",
       "vocalMouthClosed",
       "vocalMouthOpen",
       "vocalMouthPursed",
@@ -2850,7 +2913,7 @@ QVector<QString> Sym::symUserNames = {
       "Quarter-tone flat (van Blankenburg)",
       "Quarter-tone sharp",
       "Quarter-tone sharp",
-      "Quarter tone sharp (Busotti)",
+      "Quarter tone sharp (Bussotti)",
       "Quarter-tone sharp",
       "Half sharp (quarter-tone sharp) (Stein)",
       "Quarter tone sharp with wiggly tail",
@@ -2880,8 +2943,8 @@ QVector<QString> Sym::symUserNames = {
       "1/6 tone low",
       "1/6 tone high",
       "Sori (quarter tone sharp)",
-      "Byzantine-style slashed flat (Tavener)",
-      "Byzantine-style slashed sharp (Tavener)",
+      "Byzantine-style Bakiye flat (Tavener)",
+      "Byzantine-style Bu\u0308yu\u0308k mu\u0308cenneb sharp (Tavener)",
       "Three-quarter-tones flat",
       "Three-quarter-tones flat",
       "Three-quarter-tones flat (Couper)",
@@ -2890,7 +2953,7 @@ QVector<QString> Sym::symUserNames = {
       "Reversed flat and flat (three-quarter-tones flat) (Zimmermann)",
       "Three-quarter-tones sharp",
       "Three-quarter-tones sharp",
-      "Three quarter tones sharp (Busotti)",
+      "Three quarter tones sharp (Bussotti)",
       "One and a half sharps (three-quarter-tones sharp) (Stein)",
       "Triple flat",
       "Triple sharp",
@@ -2922,7 +2985,9 @@ QVector<QString> Sym::symUserNames = {
       "3/4 tone sharp",
       "One-third-tone sharp (Xenakis)",
       "Two-third-tones sharp (Xenakis)",
+      "Choralmelodie (Berg)",
       "End of stimme",
+      "Hauptrhythmus (Berg)",
       "Hauptstimme",
       "Inversion 1",
       "Nebenstimme",
@@ -2992,6 +3057,8 @@ QVector<QString> Sym::symUserNames = {
       "Marcato below",
       "Marcato-staccato above",
       "Marcato-staccato below",
+      "Marcato-tenuto above",
+      "Marcato-tenuto below",
       "Staccatissimo above",
       "Staccatissimo below",
       "Staccatissimo stroke above",
@@ -3063,6 +3130,9 @@ QVector<QString> Sym::symUserNames = {
       "Lift, long",
       "Lift, medium",
       "Lift, short",
+      "Smooth lift, long",
+      "Smooth lift, medium",
+      "Smooth lift, short",
       "Muted (closed)",
       "Half-muted (half-closed)",
       "Open",
@@ -3083,8 +3153,6 @@ QVector<QString> Sym::symUserNames = {
       "Combining C clef",
       "Reversed C clef",
       "C clef (19th century)",
-      "Triangular C clef",
-      "C clef to F clef change",
       "Caesura",
       "Curved caesura",
       "Short caesura",
@@ -3319,8 +3387,6 @@ QVector<QString> Sym::symUserNames = {
       "F clef, arrow up",
       "F clef change",
       "Reversed F clef",
-      "Triangular F clef",
-      "F clef to C clef change",
       "Turned F clef",
       "Fermata above",
       "Fermata below",
@@ -3349,6 +3415,7 @@ QVector<QString> Sym::symUserNames = {
       "Figured bass diminished 5",
       "Figured bass 6",
       "Figured bass 6 raised by half-step",
+      "Figured bass 6 raised by half-step 2",
       "Figured bass 7",
       "Figured bass 7 raised by half-step",
       "Figured bass 7 raised by a half-step 2",
@@ -3509,6 +3576,8 @@ QVector<QString> Sym::symUserNames = {
       "Harp pedal divider",
       "Harp pedal lowered (sharp)",
       "Harp pedal raised (flat)",
+      "Ascending aeolian chords (Salzedo)",
+      "Descending aeolian chords (Salzedo)",
       "Fluidic sounds, left hand (Salzedo)",
       "Fluidic sounds, right hand (Salzedo)",
       "Metallic sounds (Salzedo)",
@@ -3688,7 +3757,7 @@ QVector<QString> Sym::symUserNames = {
       "Wide elision",
       "Baseline hyphen",
       "Non-breaking baseline hyphen",
-      "Natural, hard b (mi)",
+      "Flat, hard b (mi)",
       "Flat, soft b (fa)",
       "Flat with dot",
       "G clef (Corpus Monodicum)",
@@ -3844,6 +3913,30 @@ QVector<QString> Sym::symUserNames = {
       "White mensural maxima",
       "White mensural minima",
       "White mensural semiminima",
+      "Augmentation dot",
+      "1024th note (semihemidemisemihemidemisemiquaver) stem down",
+      "1024th note (semihemidemisemihemidemisemiquaver) stem up",
+      "128th note (semihemidemisemiquaver) stem down",
+      "128th note (semihemidemisemiquaver) stem up",
+      "16th note (semiquaver) stem down",
+      "16th note (semiquaver) stem up",
+      "256th note (demisemihemidemisemiquaver) stem down",
+      "256th note (demisemihemidemisemiquaver) stem up",
+      "32nd note (demisemiquaver) stem down",
+      "32nd note (demisemiquaver) stem up",
+      "512th note (hemidemisemihemidemisemiquaver) stem down",
+      "512th note (hemidemisemihemidemisemiquaver) stem up",
+      "64th note (hemidemisemiquaver) stem down",
+      "64th note (hemidemisemiquaver) stem up",
+      "Eighth note (quaver) stem down",
+      "Eighth note (quaver) stem up",
+      "Double whole note (breve)",
+      "Double whole note (square)",
+      "Half note (minim) stem down",
+      "Half note (minim) stem up",
+      "Quarter note (crotchet) stem down",
+      "Quarter note (crotchet) stem up",
+      "Whole note (semibreve)",
       "Left-pointing arrow for metric modulation",
       "Right-pointing arrow for metric modulation",
       "Do not copy",
@@ -3974,8 +4067,8 @@ QVector<QString> Sym::symUserNames = {
       "Quarter moon white (Walker 7-shape re)",
       "Round black (4-shape sol; 7-shape so)",
       "Round white (4-shape sol; 7-shape so)",
-      "Square black (4-shape la; Aiken 7-shape la)",
-      "Square white (4-shape la; Aiken 7-shape la)",
+      "Square black (4-shape la; Aikin 7-shape la)",
+      "Square white (4-shape la; Aikin 7-shape la)",
       "Triangle left black (stem up; 4-shape fa; 7-shape fa)",
       "Triangle left white (stem up; 4-shape fa; 7-shape fa)",
       "Triangle right black (stem down; 4-shape fa; 7-shape fa)",
@@ -4151,8 +4244,18 @@ QVector<QString> Sym::symUserNames = {
       "Ornate X notehead",
       "Ornate X notehead in ellipse",
       "X notehead whole",
+      "a (baseline)",
+      "b (baseline)",
+      "m (baseline)",
+      "v (baseline)",
+      "Bassa",
+      "Loco",
       "Left parenthesis for octave signs",
       "Right parenthesis for octave signs",
+      "a (superscript)",
+      "b (superscript)",
+      "m (superscript)",
+      "v (superscript)",
       "Ornament bottom left concave stroke",
       "Ornament bottom left concave stroke, large",
       "Ornament bottom left convex stroke",
@@ -4243,6 +4346,7 @@ QVector<QString> Sym::symUserNames = {
       "Ottava alta",
       "Ottava bassa",
       "Ottava bassa (ba)",
+      "Ottava bassa (8vb)",
       "Penderecki unmeasured tremolo",
       "Agogo",
       "Almglocken",
@@ -4452,7 +4556,7 @@ QVector<QString> Sym::symUserNames = {
       "Rim or edge (Weinberg)",
       "Rim (Ghent)",
       "Rim (Caltabiano)",
-      "Rim shot (on stem)",
+      "Rim shot for stem",
       "Sandpaper blocks",
       "Scrape around rim",
       "Scrape from center to edge",
@@ -4520,7 +4624,7 @@ QVector<QString> Sym::symUserNames = {
       "Buzz pizzicato",
       "Damp",
       "Damp all",
-      "Damp (on stem)",
+      "Damp for stem",
       "Fingernail flick",
       "Left-hand pizzicato",
       "Plectrum",
@@ -4530,6 +4634,7 @@ QVector<QString> Sym::symUserNames = {
       "Quindicesima",
       "Quindicesima alta",
       "Quindicesima bassa",
+      "Quindicesima bassa (mb)",
       "Repeat last bar",
       "Repeat last two bars",
       "Repeat last four bars",
@@ -4558,12 +4663,17 @@ QVector<QString> Sym::symUserNames = {
       "Maxima rest",
       "Quarter (crotchet) rest",
       "Old-style quarter (crotchet) rest",
+      "Z-style quarter (crotchet) rest",
       "Whole (semibreve) rest",
       "Whole rest on leger line",
       "Reversed brace",
       "Reversed bracket bottom",
       "Reversed bracket top",
       "Right repeat sign within bar",
+      "Sch\u00e4ffer clef",
+      "Sch\u00e4ffer F clef to G clef change",
+      "Sch\u00e4ffer G clef to F clef change",
+      "Sch\u00e4ffer previous clef",
       "Segno",
       "Segno (serpent)",
       "Segno (serpent with vertical lines)",
@@ -4576,8 +4686,10 @@ QVector<QString> Sym::symUserNames = {
       "Flat history sign",
       "Sharp history sign",
       "Natural (N)",
-      "Sharp",
-      "Sharp (white)",
+      "Sharp stem up",
+      "Sharp stem down",
+      "Sharp (white) stem up",
+      "Sharp (white) stem down",
       "Split bar divider (bar spans a system break)",
       "1-line staff",
       "1-line staff (narrow)",
@@ -4688,10 +4800,15 @@ QVector<QString> Sym::symUserNames = {
       "Time signature 7",
       "Time signature 8",
       "Time signature 9",
+      "Left bracket for whole time signature",
+      "Left bracket for numerator only",
+      "Right bracket for whole time signature",
+      "Right bracket for numerator only",
       "Control character for denominator digit",
       "Control character for numerator digit",
       "Time signature comma",
       "Common time",
+      "Cut time (Bach)",
       "Cut time",
       "Time signature equals",
       "Time signature fraction \u00bd",
@@ -4709,6 +4826,7 @@ QVector<QString> Sym::symUserNames = {
       "Right parenthesis for numerator only",
       "Time signature +",
       "Time signature + (for numerators)",
+      "Time signature slash separator",
       "Open time signature",
       "Combining tremolo 1",
       "Combining tremolo 2",
@@ -4744,6 +4862,7 @@ QVector<QString> Sym::symUserNames = {
       "Ventiduesima",
       "Ventiduesima alta",
       "Ventiduesima bassa",
+      "Ventiduesima bassa (mb)",
       "Mouth closed",
       "Mouth open",
       "Mouth pursed",
@@ -4834,7 +4953,7 @@ QVector<QString> Sym::symUserNames = {
       "Narrow wavy line segment",
       "Wide wavy line segment",
       "Closed hole",
-      "Sharper embouchure",
+      "Flatter embouchure",
       "Half-closed hole",
       "Half-closed hole 2",
       "Half-open hole",
@@ -4848,7 +4967,7 @@ QVector<QString> Sym::symUserNames = {
       "Normal reed position",
       "Very little reed (pull outwards)",
       "Relaxed embouchure",
-      "Flatter embouchure",
+      "Sharper embouchure",
       "Very tight embouchure / strong air pressure",
       "Three-quarters closed hole",
       "Tight embouchure",
@@ -5162,118 +5281,151 @@ QVector<oldName> oldNames = {
 };
 
 //---------------------------------------------------------
-//   sym2pixmap
+//   userName2id
 //---------------------------------------------------------
 
-QPixmap ScoreFont::sym2pixmap(SymId id, qreal mag)
+SymId Sym::userName2id(const QString& s)
       {
-      QString string = toString(id);
-      QRectF  bb(bbox(id, mag));
-      bb.setRect(bb.x() * mag, bb.y() * mag, bb.width() * mag, bb.height() * mag);
+      int val = symUserNames.indexOf(s);
+      return (val == -1) ? SymId::noSym : (SymId)(val);
+      }
 
-      bb.adjust(-5, -5, 5, 5);
-      int w = lrint(bb.width());
-      int h = lrint(bb.height());
-      QPixmap pm(w, h);
-      pm.fill(QColor(0, 0, 0, 0));
-      QPainter painter;
-      painter.begin(&pm);
-      painter.setPen(Qt::black);
-      draw(id, &painter, mag, -bb.topLeft() + QPointF(2.0, 2.0));
-      painter.end();
-      return pm;
+//---------------------------------------------------------
+//   GlyphKey operator==
+//---------------------------------------------------------
+
+bool GlyphKey::operator==(const GlyphKey& k) const
+      {
+      return (face == k.face) && (id == k.id)
+         && (mag == k.mag) && (worldScale == k.worldScale) && (color == k.color);
       }
 
 //---------------------------------------------------------
 //   draw
 //---------------------------------------------------------
 
-void ScoreFont::draw(const QString& s, QPainter* painter, qreal mag, const QPointF& pos) const
+void ScoreFont::draw(SymId id, QPainter* painter, qreal mag, const QPointF& pos) const
       {
-#if defined(Q_OS_WIN) && (QT_VERSION == QT_VERSION_CHECK(5,4,0))
-      if (dynamic_cast<QPrinter*>(painter->device()) &&
-          painter->device()->paintEngine()->type() == QPaintEngine::Pdf)
-            mag *= 4.333;
-#endif
-      qreal imag = 1.0 / mag;
-      painter->scale(mag, mag);
-      painter->setFont(font());
-      painter->drawText(pos * imag, s);
-      painter->scale(imag, imag);
+      qreal worldScale = painter->worldTransform().m11();
+      draw(id, painter, mag, pos, worldScale);
       }
 
-void ScoreFont::draw(SymId id, QPainter* painter, qreal mag, const QPointF& pos) const
+void ScoreFont::draw(SymId id, QPainter* painter, qreal mag, const QPointF& pos, qreal worldScale) const
       {
-      draw(toString(id), painter, mag, pos);
+      if (!sym(id).symList().isEmpty()) {  // is this a compound symbol?
+            draw(sym(id).symList(), painter, mag, pos);
+            return;
+            }
+      if (!isValid(id)) {
+            qDebug("ScoreFont::draw: invalid sym %d\n", int(id));
+            return;
+            }
+      int rv = FT_Load_Glyph(face, sym(id).index(), FT_LOAD_DEFAULT);
+      if (rv) {
+            qDebug("load glyph id %d, failed: 0x%x", int(id), rv);
+            return;
+            }
+
+      if (MScore::pdfPrinting) {
+            if (font == 0) {
+                  QString s(_fontPath+_filename);
+                  if (-1 == QFontDatabase::addApplicationFont(s)) {
+                        qDebug("Mscore: fatal error: cannot load internal font <%s>", qPrintable(s));
+                        return;
+                        }
+                  font = new QFont;
+                  font->setWeight(QFont::Normal);
+                  font->setItalic(false);
+                  font->setFamily(_family);
+                  font->setStyleStrategy(QFont::NoFontMerging);
+                  font->setHintingPreference(QFont::PreferVerticalHinting);
+                  qreal size = 20.0 * MScore::DPI / PPI;
+                  font->setPixelSize(lrint(size));
+                  }
+            qreal imag = 1.0 / mag;
+            painter->scale(mag, mag);
+            painter->setFont(*font);
+            painter->drawText(pos * imag, toString(id));
+            painter->scale(imag, imag);
+            return;
+            }
+
+      QColor color(painter->pen().color());
+
+      int pr           = painter->device()->devicePixelRatio();
+      qreal pixelRatio = qreal(pr > 0 ? pr : 1);
+      worldScale      *= pixelRatio;
+//      if (worldScale < 1.0)
+//            worldScale = 1.0;
+      int scale16      = lrint(worldScale * 6553.6 * mag);
+
+      GlyphKey gk(face, id, mag, worldScale, color);
+      GlyphPixmap* pm = cache->object(gk);
+      if (!pm) {
+            FT_Matrix matrix {
+                  scale16, 0,
+                  0,       scale16
+                  };
+
+            FT_Glyph glyph;
+            FT_Get_Glyph(face->glyph, &glyph);
+            FT_Glyph_Transform(glyph, &matrix, 0);
+            rv = FT_Glyph_To_Bitmap(&glyph, FT_RENDER_MODE_NORMAL, 0, 1);
+            if (rv) {
+                  qDebug("glyph to bitmap failed: 0x%x", rv);
+                  return;
+                  }
+
+            FT_BitmapGlyph gb = (FT_BitmapGlyph)glyph;
+            FT_Bitmap* bm     = &gb->bitmap;
+
+            if (bm->width == 0 || bm->rows == 0) {
+                  qDebug("zero glyph");
+                  return;
+                  }
+            QImage img(QSize(bm->width, bm->rows), QImage::Format_ARGB32);
+            img.fill(Qt::transparent);
+
+            for (int y = 0; y < int(bm->rows); ++y) {
+                  unsigned* dst      = (unsigned*)img.scanLine(y);
+                  unsigned char* src = (unsigned char*)(bm->buffer) + bm->pitch * y;
+                  for (int x = 0; x < int(bm->width); ++x) {
+                        unsigned val = *src++;
+                        color.setAlpha(val);
+                        *dst++ = color.rgba();
+                        }
+                  }
+            pm = new GlyphPixmap;
+            pm->pm = QPixmap::fromImage(img, Qt::NoFormatConversion);
+            pm->pm.setDevicePixelRatio(worldScale);
+            pm->offset = QPointF(qreal(gb->left), -qreal(gb->top)) / worldScale;
+            if (!cache->insert(gk, pm))
+                  qDebug("cannot cache glyph");
+            FT_Done_Glyph(glyph);
+            }
+      painter->drawPixmap(pos + pm->offset, pm->pm);
       }
 
 void ScoreFont::draw(SymId id, QPainter* painter, qreal mag, const QPointF& pos, int n) const
       {
-      QString s = toString(id);
-      QString d;
+      QList<SymId> d;
       for (int i = 0; i < n; ++i)
-            d += s;
+            d += id;
       draw(d, painter, mag, pos);
       }
 
-//---------------------------------------------------------
-//   symToHtml
-//    transform symbol into html code suitable
-//    for QDocument->setHtml()
-//---------------------------------------------------------
-
-QString ScoreFont::symToHtml(SymId s, int leftMargin, const TextStyle* ts, qreal _spatium)
+void ScoreFont::draw(const QList<SymId>& ids, QPainter* p, qreal mag, const QPointF& _pos, qreal scale) const
       {
-      qreal size;
-      if (ts) {
-            size = ts->font(_spatium).pointSizeF();
-            }
-      else {
-            size = _font->pixelSize();
+      QPointF pos(_pos);
+      for (SymId id : ids) {
+            draw(id, p, mag, pos, scale);
+            pos.rx() += (sym(id).advance() * mag);
             }
-
-      QString family = _font->family();
-      return QString(
-      "<data>"
-        "<html>"
-          "<head>"
-            "<meta name=\"qrichtext\" content=\"1\" >"
-            "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf8\" />"
-            "<style type=\"text/css\">"
-              "p, li { white-space: pre-wrap; }"
-              "</style>"
-            "</head>"
-          "<body style=\" font-family:'%1'; font-size:%2pt;\">"
-            "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:%3px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">"
-                "&#%4;"
-              "</p>"
-            "</body>"
-          "</html>"
-      "</data>").arg(family).arg(size).arg(leftMargin).arg(toString(s));
       }
-
-QString ScoreFont::symToHtml(SymId s1, SymId s2, int leftMargin)
+void ScoreFont::draw(const QList<SymId>& ids, QPainter* p, qreal mag, const QPointF& _pos) const
       {
-      qreal size = _font->pixelSize();
-      QString family = _font->family();
-
-      return QString(
-      "<data>"
-        "<html>"
-          "<head>"
-            "<meta name=\"qrichtext\" content=\"1\" >"
-            "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf8\" />"
-            "<style type=\"text/css\">"
-              "p, li { white-space: pre-wrap; }"
-              "</style>"
-            "</head>"
-          "<body style=\" font-family:'%1'; font-size:%2pt;\">"
-            "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:%3px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">"
-                "&#%4;&#%5;"
-              "</p>"
-            "</body>"
-          "</html>"
-      "</data>").arg(family).arg(size).arg(leftMargin).arg(toString(s1)).arg(toString(s2));
+      qreal scale = p->worldTransform().m11();
+      draw(ids, p, mag, _pos, scale);
       }
 
 //---------------------------------------------------------
@@ -5292,16 +5444,19 @@ const char* Sym::id2name(SymId id)
 
 void initScoreFonts()
       {
+      int error = FT_Init_FreeType(&ftlib);
+      if (!ftlib || error)
+            qFatal("init freetype library failed");
+      qDebug("initScoreFonts %p", ftlib);
       int index = 0;
       for (auto i : Sym::symNames)
             Sym::lnhash.insert(i, SymId(index++));
-      ScoreFont::fontFactory("Bravura");       // load reference font
       for (oldName i : oldNames)
             Sym::lonhash.insert(i.name, SymId(i.symId));
-      QFont::insertSubstitution("MScore Text", "Bravura Text");
+      QFont::insertSubstitution("MScore Text",    "Bravura Text");
       QFont::insertSubstitution("Gootville Text", "Bravura Text");
-      QFont::insertSubstitution("ScoreFont", "Bravura Text");
-      QFont::insertSubstitution("MuseJazz", "Bravura Text");
+      QFont::insertSubstitution("ScoreFont",      "Bravura Text");
+      QFont::insertSubstitution("MuseJazz",       "Bravura Text");
       }
 
 //---------------------------------------------------------
@@ -5321,42 +5476,58 @@ static QString codeToString(int code)
       }
 
 //---------------------------------------------------------
+//   toString
+//---------------------------------------------------------
+
+QString ScoreFont::toString(SymId id) const
+      {
+      return codeToString(sym(id).code());
+      }
+
+//---------------------------------------------------------
+//   computeMetrics
+//---------------------------------------------------------
+
+void ScoreFont::computeMetrics(Sym* sym, int code)
+      {
+      FT_UInt index = FT_Get_Char_Index(face, code);
+      if (index != 0) {
+            if (FT_Load_Glyph(face, index, FT_LOAD_DEFAULT) == 0) {
+                  FT_BBox bb;
+                  if (FT_Outline_Get_BBox(&face->glyph->outline, &bb) == 0) {
+                        QRectF bbox;
+                        bbox.setCoords(bb.xMin/640.0, -bb.yMax/640.0, bb.xMax/640.0, -bb.yMin/640.0);
+                        sym->setIndex(index);
+                        sym->setCode(code);
+                        sym->setBbox(bbox);
+                        sym->setAdvance(face->glyph->linearHoriAdvance / 655360.0);
+                        }
+                  }
+            }
+      }
+
+//---------------------------------------------------------
 //   load
 //---------------------------------------------------------
 
 void ScoreFont::load()
       {
-      //qDebug() << "load" << _filename;
-#if !defined(Q_OS_MAC) && !defined(Q_OS_IOS)
-      if (-1 == QFontDatabase::addApplicationFont(_fontPath + _filename)) {
-            qDebug("ScoreFont: fatal error: cannot load internal font <%s>", qPrintable(_fontPath + _filename));
-            if (!QFile(_fontPath + _filename).exists())
-                  qDebug("   file not found");
-            if (!MScore::debugMode)
-                  exit(-1);
+      QString facePath = _fontPath + _filename;
+      QFile f(facePath);
+      if (!f.open(QIODevice::ReadOnly)) {
+            qDebug("ScoreFont::load(): open failed <%s>", qPrintable(facePath));
+            return;
             }
-#endif
-      _font = new QFont();
-      _font->setWeight(QFont::Normal);  // if not set we get system default
-      _font->setItalic(false);
-      _font->setFamily(_family);
-      _font->setStyleStrategy(QFont::NoFontMerging);
-
-      // horizontal hinting is bad as note hooks do not attach to stems
-      // properly at some magnifications
-      _font->setHintingPreference(QFont::PreferVerticalHinting);
+      fontImage = f.readAll();
+      int rval = FT_New_Memory_Face(ftlib, (FT_Byte*)fontImage.data(), fontImage.size(), 0, &face);
+      if (rval) {
+            qDebug("freetype: cannot create face <%s>: %d", qPrintable(facePath), rval);
+            return;
+            }
+      cache = new QCache<GlyphKey, GlyphPixmap>(100);
 
-      qreal size = 20.0 * MScore::DPI / PPI;
-      QFont font2(font());                  // See comment below
-      _font->setPixelSize(lrint(size));
-      font2.setPixelSize(lrint(size)*100);  // See comment below
-      // Since under Windows HintingPreferences always behave as PreferFullHinting (integer result)
-      // unless DirectWrite is enabled during Qt compilation (and it would work only for Windows 7
-      // and above or Vista with Platform Update; it wouldn't work for XP), a trick is used to
-      // retrieve the actual real-number width of the character: the character is scaled up by a
-      // factor 100, its width is extracted with QFontMetricsF::width and then this width is re-scaled
-      // down by a factor 100. See issue #25142: "Stem slightly misaligned on upstem notes"
-      // TODO : Investigate the possible use of QGlyphRun instead
+      qreal pixelSize = 200.0 * MScore::DPI/PPI;
+      FT_Set_Pixel_Sizes(face, 0, int(pixelSize+.5));
 
       QFile fi(_fontPath + "glyphnames.json");
       if (!fi.open(QIODevice::ReadOnly))
@@ -5367,8 +5538,6 @@ void ScoreFont::load()
             qDebug("Json parse error in <%s>(offset: %d): %s", qPrintable(fi.fileName()),
                error.offset, qPrintable(error.errorString()));
 
-      _fm = new QFontMetricsF(font());
-      QFontMetrics fm2(font2);         // See comment above
       for (auto i : o.keys()) {
             bool ok;
             int code = o.value(i).toObject().value("codepoint").toString().mid(2).toInt(&ok, 16);
@@ -5377,9 +5546,7 @@ void ScoreFont::load()
             if (Sym::lnhash.contains(i)) {
                   SymId symId = Sym::lnhash.value(i);
                   Sym* sym = &_symbols[int(symId)];
-                  sym->setString(codeToString(code));
-                  sym->setWidth((fm2.width(sym->string()))/100.0); // Renormalization; see comment above
-                  sym->setBbox(QRectF(_fm->tightBoundingRect(sym->string())));
+                  computeMetrics(sym, code);
                   }
             //else
             //      qDebug("unknown glyph: %s", qPrintable(i));
@@ -5407,13 +5574,14 @@ void ScoreFont::load()
             Sym* sym = &_symbols[int(symId)];
             for (auto i : ooo.keys()) {
                   if (i == "stemDownNW") {
-                        //qreal x = ooo.value(i).toArray().at(0).toDouble();
-                        //qreal y = ooo.value(i).toArray().at(1).toDouble();
+                        qreal x = ooo.value(i).toArray().at(0).toDouble();
+                        qreal y = ooo.value(i).toArray().at(1).toDouble();
+                        sym->setStemDownNW(QPointF(4.0 * x * MScore::DPI/PPI, 4.0 * -y * MScore::DPI/PPI));
                         }
                   else if (i == "stemUpSE") {
                         qreal x = ooo.value(i).toArray().at(0).toDouble();
                         qreal y = ooo.value(i).toArray().at(1).toDouble();
-                        sym->setAttach(QPointF(4.0 * x * MScore::DPI/PPI, 4.0 * -y * MScore::DPI/PPI));
+                        sym->setStemUpSE(QPointF(4.0 * x * MScore::DPI/PPI, 4.0 * -y * MScore::DPI/PPI));
                         }
                   else if (i == "cutOutNE") {
                         qreal x = ooo.value(i).toArray().at(0).toDouble() * scale;
@@ -5508,11 +5676,11 @@ void ScoreFont::load()
       for (const Composed& c : composed) {
             if (!_symbols[int(c.id)].isValid()) {
                   Sym* sym = &_symbols[int(c.id)];
-                  QString s;
+                  QList<SymId> s;
                   for (SymId id : c.rids)
-                        s += _symbols[int(id)].string();
-                  sym->setString(s);
-                  sym->setBbox(QRectF(_fm->tightBoundingRect(s)));
+                        s += id;
+                  sym->setSymList(s);
+                  sym->setBbox(bbox(s, 1.0));
                   }
             }
 
@@ -5528,6 +5696,26 @@ void ScoreFont::load()
                         QString("6stringTabClefSerif"),
                         SymId::sixStringTabClefSerif
                   },
+                  {     QString("noteheadBlack"),
+                        QString("noteheadBlackOversized"),
+                        SymId::noteheadBlack
+                  },
+                  {     QString("noteheadHalf"),
+                        QString("noteheadHalfOversized"),
+                        SymId::noteheadHalf
+                  },
+                  {     QString("noteheadWhole"),
+                        QString("noteheadWholeOversized"),
+                        SymId::noteheadWhole
+                  },
+                  {     QString("noteheadDoubleWhole"),
+                        QString("noteheadDoubleWholeOversized"),
+                        SymId::noteheadDoubleWhole
+                  },
+                  {     QString("noteheadDoubleWholeSquare"),
+                        QString("noteheadDoubleWholeSquareOversized"),
+                        SymId::noteheadDoubleWholeSquare
+                  },
                   {     QString("noteheadDoubleWhole"),
                         QString("noteheadDoubleWholeAlt"),
                         SymId::noteheadDoubleWholeAlt
@@ -5544,19 +5732,17 @@ void ScoreFont::load()
                   // locate the relevant altKey in alternate array
                   for (auto j : oaa) {
                         QJsonObject jo = j.toObject();
-                        if(jo.value("name") == c.altKey) {
+                        if (jo.value("name") == c.altKey) {
                               Sym* sym = &_symbols[int(c.id)];
                               int code = jo.value("codepoint").toString().mid(2).toInt(&ok, 16);
-                              if (ok) {
-                                    QString s = codeToString(code);
-                                    sym->setString(s);
-                                    sym->setBbox(QRectF(_fm->tightBoundingRect(s)));
-                                    }
+                              if (ok)
+                                    computeMetrics(sym, code);
                               break;
                               }
                         }
                   }
             }
+
       // Unicode
       struct UnicodeAlternate {
             SymId       id;
@@ -5577,22 +5763,19 @@ void ScoreFont::load()
 
       for (const UnicodeAlternate& unicode : unicodes) {
             Sym* sym = &_symbols[int(unicode.id)];
-            sym->setString(unicode.string);
-            sym->setBbox(QRectF(_fm->tightBoundingRect(sym->string())));
+            uint code = QChar::surrogateToUcs4(unicode.string[0], unicode.string[1]);
+            computeMetrics(sym, code);
             }
 
-
       // add space symbol
       Sym* sym = &_symbols[int(SymId::space)];
-      sym->setString("\u0020");
-      sym->setBbox(QRectF(_fm->tightBoundingRect(sym->string())));
+      computeMetrics(sym, 32);
 
       /*for (int i = 1; i < int(SymId::lastSym); ++i) {
             Sym sym = _symbols[i];
             if (!sym.isValid())
                   qDebug("invalid symbol %s", Sym::id2name(SymId(i)));
             }*/
-      loaded = true;
       }
 
 //---------------------------------------------------------
@@ -5610,7 +5793,7 @@ ScoreFont* ScoreFont::fontFactory(QString s)
             }
       Q_ASSERT(f);
 
-      if (!f->loaded)
+      if (!f->face)
             f->load();
       return f;
       }
@@ -5622,7 +5805,7 @@ ScoreFont* ScoreFont::fontFactory(QString s)
 ScoreFont* ScoreFont::fallbackFont()
       {
       ScoreFont* f = &_scoreFonts[FALLBACK_FONT];
-      if (!f->loaded)
+      if (!f->face)
             f->load();
       return f;
       }
@@ -5646,17 +5829,43 @@ const QRectF ScoreFont::bbox(SymId id, qreal mag) const
       return QRectF(r.x() * mag, r.y() * mag, r.width() * mag, r.height() * mag);
       }
 
-const QRectF ScoreFont::bbox(const QString& s, qreal mag) const
+const QRectF ScoreFont::bbox(const QList<SymId>& s, qreal mag) const
       {
-      QRectF r(_fm->tightBoundingRect(s));
-      return QRectF(r.x() * mag, r.y() * mag, r.width() * mag, r.height() * mag);
+      QRectF r;
+      QPointF pos;
+      for (SymId id : s) {
+            r |= bbox(id, mag).translated(pos);
+            pos.rx() += sym(id).advance() * mag;
+            }
+      return r;
+      }
+
+qreal ScoreFont::width(const QList<SymId>& s, qreal mag) const
+      {
+      return bbox(s, mag).width();
       }
 
 //---------------------------------------------------------
-//   ~ScoreFont
+//   ScoreFont
 //---------------------------------------------------------
 
+ScoreFont::ScoreFont(const ScoreFont& f)
+      {
+      face = 0;
+      _symbols  = f._symbols;
+      _name     = f._name;
+      _family   = f._family;
+      _fontPath = f._fontPath;
+      _filename = f._filename;
+
+      // fontImage;
+      cache = 0;
+      }
+
 ScoreFont::~ScoreFont()
       {
+      delete cache;
       }
 }
+
+
diff --git a/libmscore/sym.h b/libmscore/sym.h
index 96e03c1..d4895ae 100644
--- a/libmscore/sym.h
+++ b/libmscore/sym.h
@@ -15,8 +15,12 @@
 
 #include "config.h"
 
+#include <ft2build.h>
+#include FT_FREETYPE_H
+
 class QPainter;
 
+
 namespace Ms {
 
 class TextStyle;
@@ -485,7 +489,9 @@ enum class SymId {
       accidentalWyschnegradsky9TwelfthsSharp,
       accidentalXenakisOneThirdToneSharp,
       accidentalXenakisTwoThirdTonesSharp,
+      analyticsChoralmelodie,
       analyticsEndStimme,
+      analyticsHauptrhythmus,
       analyticsHauptstimme,
       analyticsInversion1,
       analyticsNebenstimme,
@@ -555,6 +561,8 @@ enum class SymId {
       articMarcatoBelow,
       articMarcatoStaccatoAbove,
       articMarcatoStaccatoBelow,
+      articMarcatoTenutoAbove,
+      articMarcatoTenutoBelow,
       articStaccatissimoAbove,
       articStaccatissimoBelow,
       articStaccatissimoStrokeAbove,
@@ -626,6 +634,9 @@ enum class SymId {
       brassLiftLong,
       brassLiftMedium,
       brassLiftShort,
+      brassLiftSmoothLong,
+      brassLiftSmoothMedium,
+      brassLiftSmoothShort,
       brassMuteClosed,
       brassMuteHalfClosed,
       brassMuteOpen,
@@ -646,8 +657,6 @@ enum class SymId {
       cClefCombining,
       cClefReversed,
       cClefSquare,
-      cClefTriangular,
-      cClefTriangularToFClef,
       caesura,
       caesuraCurved,
       caesuraShort,
@@ -882,8 +891,6 @@ enum class SymId {
       fClefArrowUp,
       fClefChange,
       fClefReversed,
-      fClefTriangular,
-      fClefTriangularToCClef,
       fClefTurned,
       fermataAbove,
       fermataBelow,
@@ -912,6 +919,7 @@ enum class SymId {
       figbass5Raised3,
       figbass6,
       figbass6Raised,
+      figbass6Raised2,
       figbass7,
       figbass7Raised1,
       figbass7Raised2,
@@ -1072,6 +1080,8 @@ enum class SymId {
       harpPedalDivider,
       harpPedalLowered,
       harpPedalRaised,
+      harpSalzedoAeolianAscending,
+      harpSalzedoAeolianDescending,
       harpSalzedoFluidicSoundsLeft,
       harpSalzedoFluidicSoundsRight,
       harpSalzedoMetallicSounds,
@@ -1407,6 +1417,30 @@ enum class SymId {
       mensuralWhiteMaxima,
       mensuralWhiteMinima,
       mensuralWhiteSemiminima,
+      metAugmentationDot,
+      metNote1024thDown,
+      metNote1024thUp,
+      metNote128thDown,
+      metNote128thUp,
+      metNote16thDown,
+      metNote16thUp,
+      metNote256thDown,
+      metNote256thUp,
+      metNote32ndDown,
+      metNote32ndUp,
+      metNote512thDown,
+      metNote512thUp,
+      metNote64thDown,
+      metNote64thUp,
+      metNote8thDown,
+      metNote8thUp,
+      metNoteDoubleWhole,
+      metNoteDoubleWholeSquare,
+      metNoteHalfDown,
+      metNoteHalfUp,
+      metNoteQuarterDown,
+      metNoteQuarterUp,
+      metNoteWhole,
       metricModulationArrowLeft,
       metricModulationArrowRight,
       miscDoNotCopy,
@@ -1714,8 +1748,18 @@ enum class SymId {
       noteheadXOrnate,
       noteheadXOrnateEllipse,
       noteheadXWhole,
+      octaveBaselineA,
+      octaveBaselineB,
+      octaveBaselineM,
+      octaveBaselineV,
+      octaveBassa,
+      octaveLoco,
       octaveParensLeft,
       octaveParensRight,
+      octaveSuperscriptA,
+      octaveSuperscriptB,
+      octaveSuperscriptM,
+      octaveSuperscriptV,
       ornamentBottomLeftConcaveStroke,
       ornamentBottomLeftConcaveStrokeLarge,
       ornamentBottomLeftConvexStroke,
@@ -1755,12 +1799,12 @@ enum class SymId {
       ornamentPrecompAppoggTrill,
       ornamentPrecompAppoggTrillSuffix,
       ornamentPrecompCadence,
-      ornamentPrecompCadenceUpperPrefix ,
+      ornamentPrecompCadenceUpperPrefix,
       ornamentPrecompCadenceUpperPrefixTurn,
-      ornamentPrecompCadenceWithTurn ,
+      ornamentPrecompCadenceWithTurn,
       ornamentPrecompDescendingSlide,
       ornamentPrecompDoubleCadenceLowerPrefix,
-      ornamentPrecompDoubleCadenceUpperPrefix ,
+      ornamentPrecompDoubleCadenceUpperPrefix,
       ornamentPrecompDoubleCadenceUpperPrefixTurn,
       ornamentPrecompInvertedMordentUpperPrefix,
       ornamentPrecompMordentRelease,
@@ -1806,6 +1850,7 @@ enum class SymId {
       ottavaAlta,
       ottavaBassa,
       ottavaBassaBa,
+      ottavaBassaVb,
       pendereckiTremolo,
       pictAgogo,
       pictAlmglocken,
@@ -2093,6 +2138,7 @@ enum class SymId {
       quindicesima,
       quindicesimaAlta,
       quindicesimaBassa,
+      quindicesimaBassaMb,
       repeat1Bar,
       repeat2Bars,
       repeat4Bars,
@@ -2121,12 +2167,17 @@ enum class SymId {
       restMaxima,
       restQuarter,
       restQuarterOld,
+      restQuarterZ,
       restWhole,
       restWholeLegerLine,
       reversedBrace,
       reversedBracketBottom,
       reversedBracketTop,
       rightRepeatSmall,
+      schaefferClef,
+      schaefferFClefToGClef,
+      schaefferGClefToFClef,
+      schaefferPreviousClef,
       segno,
       segnoSerpent1,
       segnoSerpent2,
@@ -2140,7 +2191,9 @@ enum class SymId {
       smnHistorySharp,
       smnNatural,
       smnSharp,
+      smnSharpDown,
       smnSharpWhite,
+      smnSharpWhiteDown,
       splitBarDivider,
       staff1Line,
       staff1LineNarrow,
@@ -2251,10 +2304,15 @@ enum class SymId {
       timeSig7,
       timeSig8,
       timeSig9,
+      timeSigBracketLeft,
+      timeSigBracketLeftSmall,
+      timeSigBracketRight,
+      timeSigBracketRightSmall,
       timeSigCombDenominator,
       timeSigCombNumerator,
       timeSigComma,
       timeSigCommon,
+      timeSigCut2,
       timeSigCutCommon,
       timeSigEquals,
       timeSigFractionHalf,
@@ -2272,6 +2330,7 @@ enum class SymId {
       timeSigParensRightSmall,
       timeSigPlus,
       timeSigPlusSmall,
+      timeSigSlash,
       timeSigX,
       tremolo1,
       tremolo2,
@@ -2307,6 +2366,7 @@ enum class SymId {
       ventiduesima,
       ventiduesimaAlta,
       ventiduesimaBassa,
+      ventiduesimaBassaMb,
       vocalMouthClosed,
       vocalMouthOpen,
       vocalMouthPursed,
@@ -2466,27 +2526,44 @@ enum class SymId {
 //---------------------------------------------------------
 
 class Sym {
-      QString _string;
-      QPointF _attach;
-      qreal _width;                       // cached width
-      QRectF _bbox;                       // cached bbox
+   protected:
+      int _code = -1;
+      FT_UInt _index;
+      QRectF _bbox;
+      qreal _advance;
+
+      QPointF _stemDownNW;
+      QPointF _stemUpSE;
       QPointF _cutOutNE;
       QPointF _cutOutNW;
       QPointF _cutOutSE;
       QPointF _cutOutSW;
+      QList<SymId> _ids;            // not empty if this is a compound symbol
 
    public:
       Sym() { }
 
-      const QString& string() const              { return _string;   }
-      void setString(const QString& s)           { _string = s;      }
-      bool isValid() const                       { return !_string.isEmpty(); }
-      QPointF attach() const                     { return _attach;   }
-      void setAttach(const QPointF& r)           { _attach = r;      }
-      qreal width() const                        { return _width;    }
-      void setWidth(qreal val)                   { _width = val;     }
+      bool isValid() const                       { return _code != -1; }
+
+      void setSymList(const QList<SymId>& sl)    { _ids = sl;        }
+      const QList<SymId>& symList() const        { return _ids;      }
+
+      FT_UInt index() const                      { return _index;    }
+      void setIndex(FT_UInt i)                   { _index = i; }
+
+      int code() const                           { return _code;     }
+      void setCode(int val)                      { _code = val;      }
+
       QRectF bbox() const                        { return _bbox;     }
       void setBbox(QRectF val)                   { _bbox = val;      }
+
+      qreal advance() const                      { return _advance;  }
+      void setAdvance(qreal val)                 { _advance = val;   }
+
+      QPointF stemDownNW() const                 { return _stemDownNW;   }
+      void setStemDownNW(const QPointF& r)       { _stemDownNW = r;      }
+      QPointF stemUpSE() const                   { return _stemUpSE;   }
+      void setStemUpSE(const QPointF& r)         { _stemUpSE = r;      }
       QPointF cutOutNE() const                   { return _cutOutNE; }
       void setCutOutNE(const QPointF& r)         { _cutOutNE = r;    }
       QPointF cutOutNW() const                   { return _cutOutNW; }
@@ -2501,76 +2578,109 @@ class Sym {
       static const char* id2name(SymId id);
 
       static QString id2userName(SymId id)       { return symUserNames[int(id)]; }
-      static SymId userName2id(const QString& s) { int val = symUserNames.indexOf(s);
-                                                   return (val == -1) ? SymId::noSym : (SymId)(val); }
+      static SymId userName2id(const QString& s);
 
       static QVector<const char*> symNames;
       static QVector<QString> symUserNames;
       static QHash<QString, SymId> lnhash;
       static QHash<QString, SymId> lonhash;
+      friend class ScoreFont;
+      };
+
+//---------------------------------------------------------
+//   GlyphKey
+//---------------------------------------------------------
+
+struct GlyphKey {
+      FT_Face face;
+      SymId id;
+      qreal mag;
+      qreal worldScale;
+      QColor color;
+
+   public:
+      GlyphKey(FT_Face _f, SymId _id, float m, float s, QColor c)
+         : face(_f), id(_id), mag(m), worldScale(s), color(c) {}
+      bool operator==(const GlyphKey&) const;
       };
 
+
+struct GlyphPixmap {
+      QPixmap pm;
+      QPointF offset;
+      };
+
+inline uint qHash(const GlyphKey& k)
+      {
+      return (int(k.id) << 16) + k.mag;
+      }
+
 //---------------------------------------------------------
 //   ScoreFont
 //---------------------------------------------------------
 
 class ScoreFont {
-      QFont* _font = 0;
-      QFontMetricsF* _fm = 0;
+      FT_Face face = 0;
       QVector<Sym> _symbols;
       QString _name;
       QString _family;
       QString _fontPath;
       QString _filename;
-      QString _textFace;
-      bool loaded = false;
+      QByteArray fontImage;
+      QCache<GlyphKey, GlyphPixmap>* cache { 0 };
+      mutable QFont* font { 0 };
 
       static QVector<ScoreFont> _scoreFonts;
       const Sym& sym(SymId id) const { return _symbols[int(id)]; }
       void load();
+      void computeMetrics(Sym* sym, int code);
 
    public:
       ScoreFont() {}
+      ScoreFont(const ScoreFont&);
       ScoreFont(const char* n, const char* f, const char* p, const char* fn)
          : _name(n), _family(f), _fontPath(p), _filename(fn) {
             _symbols = QVector<Sym>(int(SymId::lastSym) + 1);
             }
       ~ScoreFont();
 
-      const QString& name() const           { return _name;           }
+      const QString& name() const           { return _name;   }
+      const QString& family() const         { return _family; }
 
       static ScoreFont* fontFactory(QString);
       static ScoreFont* fallbackFont();
       static const char* fallbackTextFont();
       static const QVector<ScoreFont>& scoreFonts() { return _scoreFonts; }
 
-      const QFont& font() const { return *_font; }
-      const QString& toString(SymId id) const { return _symbols[int(id)].string(); }
+      QString toString(SymId) const;
+      QPixmap sym2pixmap(SymId, qreal) { return QPixmap(); }      // TODOxxxx
 
-      void draw(SymId id, QPainter* painter, qreal mag, const QPointF& pos = QPointF()) const;
-      void draw(const QString&, QPainter*, qreal mag, const QPointF& pos = QPointF()) const;
+      void draw(SymId id, QPainter* painter, qreal mag, const QPointF& pos, qreal scale) const;
+      void draw(SymId id, QPainter* painter, qreal mag, const QPointF& pos) const;
+      void draw(const QList<SymId>&, QPainter*, qreal mag, const QPointF& pos) const;
+      void draw(const QList<SymId>&, QPainter*, qreal mag, const QPointF& pos, qreal scale) const;
       void draw(SymId id, QPainter* painter, qreal mag, const QPointF& pos, int n) const;
 
-      QString symToHtml(SymId, int leftMargin=0, const TextStyle* ts = 0, qreal sp=10.0);
-      QString symToHtml(SymId, SymId, int leftMargin=0);
-      QPixmap sym2pixmap(SymId id, qreal mag);
+      qreal height(SymId id, qreal mag) const         { return sym(id).bbox().height() * mag; }
+      qreal width(SymId id, qreal mag) const          { return sym(id).bbox().width() * mag;  }
+      qreal advance(SymId id, qreal mag) const        { return sym(id).advance() * mag;  }
+      qreal width(const QList<SymId>&, qreal mag) const;
 
-      qreal height(SymId id, qreal mag) const         { return _fm->tightBoundingRect(toString(id)).height() * mag; }
-      qreal width(SymId id, qreal mag) const          { return _symbols[int(id)].width() * mag;  }
-      qreal width(const QString& s, qreal mag) const  { return _fm->width(s) * mag;  }
       const QRectF bbox(SymId id, qreal mag) const;
-      const QRectF bbox(const QString& s, qreal mag) const;
-      QPointF attach(SymId id, qreal mag) const       { return _symbols[int(id)].attach() * mag;   }
-      QPointF cutOutNE(SymId id, qreal mag) const     { return _symbols[int(id)].cutOutNE() * mag; }
-      QPointF cutOutNW(SymId id, qreal mag) const     { return _symbols[int(id)].cutOutNW() * mag; }
-      QPointF cutOutSE(SymId id, qreal mag) const     { return _symbols[int(id)].cutOutSE() * mag; }
-      QPointF cutOutSW(SymId id, qreal mag) const     { return _symbols[int(id)].cutOutSW() * mag; }
-      bool isValid(SymId id) const                    { return _symbols[int(id)].isValid(); }
-      const QString& family() const                   { return _family; }
+      const QRectF bbox(const QList<SymId>& s, qreal mag) const;
+      QPointF stemDownNW(SymId id, qreal mag) const   { return sym(id).stemDownNW() * mag;   }
+      QPointF stemUpSE(SymId id, qreal mag) const     { return sym(id).stemUpSE() * mag;   }
+      QPointF cutOutNE(SymId id, qreal mag) const     { return sym(id).cutOutNE() * mag; }
+      QPointF cutOutNW(SymId id, qreal mag) const     { return sym(id).cutOutNW() * mag; }
+      QPointF cutOutSE(SymId id, qreal mag) const     { return sym(id).cutOutSE() * mag; }
+      QPointF cutOutSW(SymId id, qreal mag) const     { return sym(id).cutOutSW() * mag; }
+
+      bool isValid(SymId id) const                    { return sym(id).isValid(); }
       };
 
 extern void initScoreFonts();
 
 }     // namespace Ms
+
 #endif
 
diff --git a/libmscore/symbol.cpp b/libmscore/symbol.cpp
index c33ff85..dec7572 100644
--- a/libmscore/symbol.cpp
+++ b/libmscore/symbol.cpp
@@ -30,7 +30,6 @@ Symbol::Symbol(Score* s)
    : BSymbol(s)
       {
       _sym = SymId::accidentalSharp;        // arbitrary valid default
-      setZ(int(Element::Type::SYMBOL) * 100);
       }
 
 Symbol::Symbol(const Symbol& s)
@@ -38,7 +37,6 @@ Symbol::Symbol(const Symbol& s)
       {
       _sym       = s._sym;
       _scoreFont = s._scoreFont;
-      setZ(int(Element::Type::SYMBOL) * 100);
       }
 
 //---------------------------------------------------------
diff --git a/libmscore/system.cpp b/libmscore/system.cpp
index e81c451..b62265c 100644
--- a/libmscore/system.cpp
+++ b/libmscore/system.cpp
@@ -43,11 +43,30 @@
 namespace Ms {
 
 //---------------------------------------------------------
+//   y
+//---------------------------------------------------------
+
+qreal SysStaff::y() const
+      {
+      return _bbox.y() + _yOff;
+      }
+
+//---------------------------------------------------------
+//   setYOff
+//---------------------------------------------------------
+
+void SysStaff::setYOff(qreal offset)
+      {
+      _yOff = offset;
+      }
+
+//---------------------------------------------------------
 //   SysStaff
 //---------------------------------------------------------
 
 SysStaff::SysStaff()
       {
+      _yOff = 0.0;
       idx   = 0;
       _show = true;
       }
@@ -119,7 +138,7 @@ void System::removeStaff(int idx)
 //    width of this box.
 //---------------------------------------------------------
 
-void System::layout(qreal xo1)
+void System::layoutSystem(qreal xo1)
       {
       if (isVbox())                 // ignore vbox
             return;
@@ -368,8 +387,9 @@ void System::layout2()
                   }
             qreal sHeight = staff->height();
             qreal dup = staffIdx == 0 ? 0.0 : s->distanceUp();
-            if (staff->lines() == 1)
-                  dup -= _spatium * staff->mag();
+            // one-line staves get additional padding for their bbox
+            qreal off = staff->lines() == 1 ? _spatium * staff->mag() : 0.0;
+            s->setYOff(off);
             s->bbox().setRect(_leftMargin, y + dup, width() - _leftMargin, sHeight);
             y += dup + sHeight + s->distanceDown();
             lastStaffIdx = staffIdx;
diff --git a/libmscore/system.h b/libmscore/system.h
index f213d6e..4c64181 100644
--- a/libmscore/system.h
+++ b/libmscore/system.h
@@ -44,6 +44,7 @@ class BarLine;
 
 class SysStaff {
       QRectF _bbox;           ///< Bbox of StaffLines.
+      qreal _yOff;            ///< offset of top staff line within bbox
       qreal _distanceUp;      ///< distance to previous staff
       qreal _distanceDown;    ///< distance to next staff
       bool _show;             ///< derived from Staff or false if empty
@@ -55,9 +56,10 @@ class SysStaff {
       const QRectF& bbox() const    { return _bbox; }
       QRectF& bbox()                { return _bbox; }
       QRectF& rbb()                 { return _bbox; }
-      qreal y() const               { return _bbox.y(); }
       qreal right() const           { return _bbox.right(); }
       void setbbox(const QRectF& r) { _bbox = r; }
+      qreal y() const;
+      void setYOff(qreal offset);
 
       qreal distanceUp() const      { return _distanceUp;   }
       void setDistanceUp(qreal v)   { _distanceUp = v;      }
@@ -117,7 +119,7 @@ class System : public Element {
 
       Page* page() const                 { return (Page*)parent(); }
 
-      virtual void layout(qreal xoffset);
+      virtual void layoutSystem(qreal xoffset);
       void layout2();                     ///< Called after Measure layout.
       void clear();                       ///< Clear measure list.
 
diff --git a/libmscore/tempo.cpp b/libmscore/tempo.cpp
index bdd55fb..11a5202 100644
--- a/libmscore/tempo.cpp
+++ b/libmscore/tempo.cpp
@@ -273,6 +273,11 @@ int TempoMap::time2tick(qreal time, int* sn) const
       delta = 0.0;
       tempo = 2.0;
       for (auto e = begin(); e != end(); ++e) {
+            // if in a pause period, wait on previous tick
+            if ((time <= e->second.time) && (time > e->second.time - e->second.pause)) {
+                  delta = (time - (e->second.time - e->second.pause) + delta);
+                  break;
+                  }
             if (e->second.time >= time)
                   break;
             delta = e->second.time;
diff --git a/libmscore/tempotext.cpp b/libmscore/tempotext.cpp
index f6ec6e8..32347b5 100644
--- a/libmscore/tempotext.cpp
+++ b/libmscore/tempotext.cpp
@@ -73,7 +73,7 @@ void TempoText::read(XmlReader& e)
             }
       // check sanity
       if (xmlText().isEmpty()) {
-            setXmlText(QString("<sym>unicodeNoteQuarterUp</sym> = %1").arg(lrint(60 * _tempo)));
+            setXmlText(QString("<sym>metNoteQuarterUp</sym> = %1").arg(lrint(60 * _tempo)));
             setVisible(false);
             }
       }
@@ -92,15 +92,44 @@ struct TempoPattern {
 // note: findTempoDuration requires the longer patterns to be before the shorter patterns in tp
 
 static const TempoPattern tp[] = {
-      TempoPattern("<sym>unicodeNoteHalfUp</sym>\\s*<sym>unicodeAugmentationDot</sym>",    1.5/30.0,  TDuration::DurationType::V_HALF, 1),    // dotted 1/2
+      TempoPattern("<sym>metNoteWhole</sym><sym>space</sym><sym>metAugmentationDot</sym>",  1.5/15.0, TDuration::DurationType::V_WHOLE, 1),    // dotted whole
+      TempoPattern("<sym>metNoteWhole</sym>\\s*<sym>metAugmentationDot</sym>",              1.5/15.0, TDuration::DurationType::V_WHOLE, 1),    // dotted whole
+      TempoPattern("<sym>metNoteHalfUp</sym><sym>space</sym><sym>metAugmentationDot</sym><sym>space</sym><sym>metAugmentationDot</sym>", 1.75/30.0, TDuration::DurationType::V_HALF, 2), // double dotted 1/2
+      TempoPattern("<sym>metNoteHalfUp</sym>\\s*<sym>metAugmentationDot</sym>\\s*<sym>metAugmentationDot</sym>",                         1.75/30.0, TDuration::DurationType::V_HALF, 2), // double dotted 1/2
+      TempoPattern("<sym>metNoteHalfUp</sym><sym>space</sym><sym>metAugmentationDot</sym>", 1.5/30.0,  TDuration::DurationType::V_HALF, 1),    // dotted 1/2
+      TempoPattern("<sym>metNoteHalfUp</sym>\\s*<sym>metAugmentationDot</sym>",             1.5/30.0,  TDuration::DurationType::V_HALF, 1),    // dotted 1/2
+      TempoPattern("<sym>metNoteQuarterUp</sym><sym>space</sym><sym>metAugmentationDot</sym><sym>space</sym><sym>metAugmentationDot</sym>", 1.75/60.0, TDuration::DurationType::V_QUARTER, 2), // double dotted 1/4
+      TempoPattern("<sym>metNoteQuarterUp</sym>\\s*<sym>metAugmentationDot</sym>\\s*<sym>metAugmentationDot</sym>",                         1.75/60.0, TDuration::DurationType::V_QUARTER, 2), // double dotted 1/4
+      TempoPattern("<sym>metNoteQuarterUp</sym><sym>space</sym><sym>metAugmentationDot</sym>",         1.5/60.0,  TDuration::DurationType::V_QUARTER, 1), // dotted 1/4
+      TempoPattern("<sym>metNoteQuarterUp</sym>\\s*<sym>metAugmentationDot</sym>",          1.5/60.0,  TDuration::DurationType::V_QUARTER, 1), // dotted 1/4
+      TempoPattern("<sym>metNote8thUp</sym><sym>metAugmentationDot</sym><sym>space</sym><sym>metAugmentationDot</sym>", 1.75/120.0, TDuration::DurationType::V_EIGHTH, 2), // double dotted 1/8
+      TempoPattern("<sym>metNote8thUp</sym>\\s*<sym>metAugmentationDot</sym>\\s*<sym>metAugmentationDot</sym>",         1.75/120.0, TDuration::DurationType::V_EIGHTH, 2), // double dotted 1/8
+      TempoPattern("<sym>metNote8thUp</sym><sym>space</sym><sym>metAugmentationDot</sym>",  1.5/120.0, TDuration::DurationType::V_EIGHTH, 1),  // dotted 1/8
+      TempoPattern("<sym>metNote8thUp</sym>\\s*<sym>metAugmentationDot</sym>",              1.5/120.0, TDuration::DurationType::V_EIGHTH, 1),  // dotted 1/8
+      TempoPattern("<sym>metNote16thUp</sym><sym>space</sym><sym>metAugmentationDot</sym>", 1.5/240.0, TDuration::DurationType::V_16TH, 1),  // dotted 1/16
+      TempoPattern("<sym>metNote16thUp</sym>\\s*<sym>metAugmentationDot</sym>",             1.5/240.0, TDuration::DurationType::V_16TH, 1),  // dotted 1/16
+      TempoPattern("<sym>metNote32ndUp</sym><sym>space</sym><sym>metAugmentationDot</sym>", 1.5/480.0, TDuration::DurationType::V_32ND, 1),  // dotted 1/32
+      TempoPattern("<sym>metNote32ndUp</sym>\\s*<sym>metAugmentationDot</sym>",             1.5/480.0, TDuration::DurationType::V_32ND, 1),  // dotted 1/32
+      TempoPattern("<sym>metNoteWhole</sym>",                                               1.0/15.0, TDuration::DurationType::V_WHOLE),    // whole
+      TempoPattern("<sym>metNoteHalfUp</sym>",                                              1.0/30.0,  TDuration::DurationType::V_HALF),       // 1/2
+      TempoPattern("<sym>metNoteQuarterUp</sym>",                                           1.0/60.0,  TDuration::DurationType::V_QUARTER),    // 1/4
+      TempoPattern("<sym>metNote8thUp</sym>",                                               1.0/120.0, TDuration::DurationType::V_EIGHTH),     // 1/8
+      TempoPattern("<sym>metNote16thUp</sym>",                                              1.0/240.0, TDuration::DurationType::V_16TH),     // 1/16
+      TempoPattern("<sym>metNote32ndUp</sym>",                                              1.0/480.0, TDuration::DurationType::V_32ND),     // 1/32
+      TempoPattern("<sym>metNote64thUp</sym>",                                              1.0/960.0, TDuration::DurationType::V_64TH),     // 1/64
+      // keep the below for backward compatibility
       TempoPattern("<sym>unicodeNoteHalfUp</sym><sym>space</sym><sym>unicodeAugmentationDot</sym>",    1.5/30.0,  TDuration::DurationType::V_HALF, 1),    // dotted 1/2
-      TempoPattern("<sym>unicodeNoteQuarterUp</sym>\\s*<sym>unicodeAugmentationDot</sym>", 1.5/60.0,  TDuration::DurationType::V_QUARTER, 1), // dotted 1/4
+      TempoPattern("<sym>unicodeNoteHalfUp</sym>\\s*<sym>unicodeAugmentationDot</sym>",     1.5/30.0,  TDuration::DurationType::V_HALF, 1),    // dotted 1/2
       TempoPattern("<sym>unicodeNoteQuarterUp</sym><sym>space</sym><sym>unicodeAugmentationDot</sym>", 1.5/60.0,  TDuration::DurationType::V_QUARTER, 1), // dotted 1/4
-      TempoPattern("<sym>unicodeNote8thUp</sym>\\s*<sym>unicodeAugmentationDot</sym>",     1.5/120.0, TDuration::DurationType::V_EIGHTH, 1),  // dotted 1/8
+      TempoPattern("<sym>unicodeNoteQuarterUp</sym>\\s*<sym>unicodeAugmentationDot</sym>",  1.5/60.0,  TDuration::DurationType::V_QUARTER, 1), // dotted 1/4
       TempoPattern("<sym>unicodeNote8thUp</sym><sym>space</sym><sym>unicodeAugmentationDot</sym>",     1.5/120.0, TDuration::DurationType::V_EIGHTH, 1),  // dotted 1/8
-      TempoPattern("<sym>unicodeNoteHalfUp</sym>",                                      1.0/30.0,  TDuration::DurationType::V_HALF),       // 1/2
-      TempoPattern("<sym>unicodeNoteQuarterUp</sym>",                                   1.0/60.0,  TDuration::DurationType::V_QUARTER),    // 1/4
-      TempoPattern("<sym>unicodeNote8thUp</sym>",                                       1.0/120.0, TDuration::DurationType::V_EIGHTH),     // 1/8
+      TempoPattern("<sym>unicodeNote8thUp</sym>\\s*<sym>unicodeAugmentationDot</sym>",      1.5/120.0, TDuration::DurationType::V_EIGHTH, 1),  // dotted 1/8
+      TempoPattern("<sym>unicodeNoteHalfUp</sym>",                                          1.0/30.0,  TDuration::DurationType::V_HALF),       // 1/2
+      TempoPattern("<sym>unicodeNoteQuarterUp</sym>",                                       1.0/60.0,  TDuration::DurationType::V_QUARTER),    // 1/4
+      TempoPattern("<sym>unicodeNote8thUp</sym>",                                           1.0/120.0, TDuration::DurationType::V_EIGHTH),     // 1/8
+      TempoPattern("<sym>unicodeNote16thUp</sym>",                                          1.0/240.0, TDuration::DurationType::V_16TH),     // 1/16
+	TempoPattern("<sym>unicodeNote32ndUp</sym>",                                          1.0/480.0, TDuration::DurationType::V_32ND),     // 1/32
+      TempoPattern("<sym>unicodeNote64thUp</sym>",                                          1.0/480.0, TDuration::DurationType::V_64TH),     // 1/64
       };
 
 //---------------------------------------------------------
@@ -153,7 +182,7 @@ void TempoText::textChanged()
       {
       if (!_followText)
             return;
-      QString s = xmlText();
+      QString s = plainText();
       s.replace(",", ".");
       for (const TempoPattern& pa : tp) {
             QRegExp re(QString(pa.pattern)+"\\s*=\\s*(\\d+[.]{0,1}\\d*)");
diff --git a/libmscore/tempotext.h b/libmscore/tempotext.h
index f71b714..9218aa0 100644
--- a/libmscore/tempotext.h
+++ b/libmscore/tempotext.h
@@ -22,8 +22,8 @@ namespace Ms {
 //   @@ TempoText
 ///    Tempo marker which determines the midi tempo.
 //
-//   @P tempo       qreal  tempo in beats per second (beat=1/4)
-//   @P followText  bool   determine tempo from text
+//   @P tempo       float     tempo in quarter notes (crochets) per second
+//   @P followText  bool      determine tempo from text
 //-------------------------------------------------------------------
 
 class TempoText : public Text  {
diff --git a/libmscore/text.cpp b/libmscore/text.cpp
index 2778e05..3b30eff 100644
--- a/libmscore/text.cpp
+++ b/libmscore/text.cpp
@@ -28,7 +28,7 @@ namespace Ms {
 
 static const qreal subScriptSize   = 0.6;
 static const qreal subScriptOffset = 0.5;       // of x-height
-static const qreal superScriptOffset = -0.5;       // of x-height
+static const qreal superScriptOffset = -.9;      // of x-height
 
 //static const qreal tempotextOffset = 0.4; // of x-height // 80% of 50% = 2 spatiums
 
@@ -303,12 +303,10 @@ void TextBlock::layout(Text* t)
                   QFontMetricsF fm(f.font(t));
                   if (f.format.valign() != VerticalAlignment::AlignNormal) {
                         qreal voffset = fm.xHeight() / subScriptSize;   // use original height
-                        if (f.format.valign() != VerticalAlignment::AlignNormal) {
-                              if (f.format.valign() == VerticalAlignment::AlignSubScript)
-                                    voffset *= subScriptOffset;
-                              else
-                                    voffset *= superScriptOffset;
-                              }
+                        if (f.format.valign() == VerticalAlignment::AlignSubScript)
+                              voffset *= subScriptOffset;
+                        else
+                              voffset *= superScriptOffset;
                         f.pos.setY(voffset);
                         }
                   else
@@ -450,11 +448,7 @@ int TextBlock::column(qreal x, Text* t) const
                   if (c.isHighSurrogate())
                         continue;
                   QFontMetricsF fm(f.font(t));
-                  qreal xo;
-                  if (f.format.type() == CharFormatType::TEXT)
-                        xo = fm.width(f.text.left(idx));
-                  else
-                        xo = t->symWidth(f.text.left(idx));
+                  qreal xo = fm.width(f.text.left(idx));
                   if (x <= f.pos.x() + px + (xo-px)*.5)
                         return col;
                   ++col;
@@ -639,6 +633,8 @@ void TextBlock::simplify()
 
 QString TextBlock::remove(int start, int n)
       {
+      if (n == 0)
+            return QString();
       int col = 0;
       QString s;
       for (auto i = _text.begin(); i != _text.end();) {
@@ -994,8 +990,8 @@ QRectF Text::cursorRect() const
       QFont font;
       if (fragment) {
             font = fragment->font(this);
-            if (font.family() == score()->scoreFont()->font().family())
-                  font = _textStyle.fontPx(spatium());
+//TODOxxxx            if (font.family() == score()->scoreFont()->font().family())
+//                  font = _textStyle.fontPx(spatium());
             }
       else
             font = _textStyle.fontPx(spatium());
@@ -1048,7 +1044,9 @@ void Text::insert(TextCursor* cursor, QChar c)
             deleteSelectedText();
       if (cursor->line() >= _layout.size())
             _layout.append(TextBlock());
-      if (c == QChar::LineFeed) {
+      if (c == QChar::Tabulation)
+            c = QChar::Space;
+      else if (c == QChar::LineFeed) {
             _layout[cursor->line()].setEol(true);
             cursor->setLine(cursor->line() + 1);
             cursor->setColumn(0);
@@ -1558,8 +1556,9 @@ void Text::endEdit()
                   // when we called it for the linked elements
                   // by also checking for empty old text, we avoid creating an unnecessary element on undo stack
                   // that returns us to the initial empty text created upon startEdit()
+                  // (except this is needed for empty text frames to ensure that adding text marks score dity)
 
-                  if (!oldText.isEmpty()) {
+                  if (!oldText.isEmpty() || (parent() && parent()->type() == Element::Type::TBOX)) {
                         // oldText is good for original element
                         // but use original text for each linked element
                         // these can differ (eg, for chord symbols in transposing parts)
@@ -1731,6 +1730,7 @@ bool Text::edit(MuseScoreView*, Grip, int key, Qt::KeyboardModifiers modifiers,
                         s.clear();
                         break;
 
+                  case Qt::Key_Tab:
                   case Qt::Key_Space:
                         s = " ";
                         modifiers = 0;
@@ -2157,7 +2157,7 @@ void Text::deleteSelectedText()
                   qSwap(c1, c2);
             }
       int rows = _layout.size();
-      QList<TextBlock> toDelete;
+
       for (int row = 0; row < rows; ++row) {
             TextBlock& t = _layout[row];
             if (row >= r1 && row <= r2) {
@@ -2167,22 +2167,14 @@ void Text::deleteSelectedText()
                         t.remove(c1, t.columns() - c1);
                   else if (row == r2)
                         t.remove(0, c2);
-                  else {
-                        toDelete.append(t);
-                        }
                   }
             }
       if (r1 != r2) {
-            TextBlock& l1 = _layout[r1];
+            TextBlock& l1       = _layout[r1];
             const TextBlock& l2 = _layout[r2];
             for (const TextFragment& f : l2.fragments())
                   l1.fragments().append(f);
-            _layout.removeAt(r2);
-            QMutableListIterator<TextBlock> i(_layout);
-            while (i.hasNext()) {
-                  if (toDelete.contains(i.next()))
-                        i.remove();
-                  }
+            _layout.erase(_layout.begin() + r1 + 1, _layout.begin() + r2 + 1);
             if (_layout.last() == l1)
                   l1.setEol(false);
             }
@@ -2226,8 +2218,14 @@ void Text::writeProperties(Xml& xml, bool writeText, bool writeStyle) const
                   xml.tag("style", textStyle().name());
             _textStyle.writeProperties(xml, score()->textStyle(_styleIndex));
             }
-      if (writeText)
-            xml.writeXml("text", xmlText());
+      if (writeText) {
+            // Make sure we don't write metNote and metAugmentationDot symbols,
+            // they are not supported in 2.0 and 2.0.1
+            QString t = xmlText();
+            t.replace("<sym>metN",       "<sym>unicodeN");
+            t.replace("<sym>metA",       "<sym>unicodeA");
+            xml.writeXml("text", t);
+            }
       }
 
 //---------------------------------------------------------
@@ -2306,8 +2304,11 @@ bool Text::readProperties(XmlReader& e)
             e.readElementText();
       else if (tag == "html")
             setPlainText(QTextDocumentFragment::fromHtml(e.readXml()).toPlainText());
-      else if (tag == "text")
+      else if (tag == "text") {
             _text = e.readXml();
+            // 2.0 and 2.0.1 had unicode symbols
+            _text.replace("<sym>unicode", "<sym>met");
+            }
       else if (tag == "html-data")
             setXmlText(convertFromHtml(e.readXml()));
       else if (tag == "subtype")          // obsolete
@@ -2438,6 +2439,27 @@ void Text::dragTo(const QPointF& p)
       }
 
 //---------------------------------------------------------
+//   dragAnchor
+//---------------------------------------------------------
+
+QLineF Text::dragAnchor() const
+      {
+      qreal xp = 0.0;
+      for (Element* e = parent(); e; e = e->parent())
+            xp += e->x();
+      qreal yp;
+      if (parent()->type() == Element::Type::SEGMENT)
+            yp = static_cast<Segment*>(parent())->measure()->system()->staffYpage(staffIdx());
+      else
+            yp = parent()->canvasPos().y();
+      QPointF p1(xp, yp);
+      QPointF p2 = canvasPos();
+      if (layoutToParentWidth())
+            p2 += bbox().topLeft();
+      return QLineF(p1, p2);
+      }
+
+//---------------------------------------------------------
 //   getProperty
 //---------------------------------------------------------
 
@@ -2548,7 +2570,7 @@ void Text::paste()
                         if (symState)
                               sym += c;
                         else
-                              insertText(c);
+                              insert(&_cursor, c);
                         }
                   }
             else if (state == 1) {
@@ -2823,20 +2845,20 @@ QString Text::convertFromHtml(const QString& ss) const
             }
 
       if (score() && score()->mscVersion() <= 114) {
-            s.replace(QChar(0xe10e), QString("<sym>accidentalNatural</sym>"));    //natural
+            s.replace(QChar(0xe10e), QString("<sym>accidentalNatural</sym>"));  //natural
             s.replace(QChar(0xe10c), QString("<sym>accidentalSharp</sym>"));    // sharp
-            s.replace(QChar(0xe10d), QString("<sym>accidentalFlat</sym>"));    // flat
-            s.replace(QChar(0xe104), QString("<sym>unicodeNoteHalfUp</sym>")),    // note2_Sym
-            s.replace(QChar(0xe105), QString("<sym>unicodeNoteQuarterUp</sym>"));    // note4_Sym
-            s.replace(QChar(0xe106), QString("<sym>unicodeNote8thUp</sym>"));    // note8_Sym
-            s.replace(QChar(0xe107), QString("<sym>unicodeNote16thUp</sym>"));    // note16_Sym
-            s.replace(QChar(0xe108), QString("<sym>unicodeNote32ndUp</sym>"));    // note32_Sym
-            s.replace(QChar(0xe109), QString("<sym>unicodeNote64thUp</sym>"));    // note64_Sym
-            s.replace(QChar(0xe10a), QString("<sym>unicodeAugmentationDot</sym>"));    // dot
-            s.replace(QChar(0xe10b), QString("<sym>unicodeAugmentationDot</sym> <sym>unicodeAugmentationDot</sym>"));    // dotdot
-            s.replace(QChar(0xe167), QString("<sym>segno</sym>"));    // segno
-            s.replace(QChar(0xe168), QString("<sym>coda</sym>"));    // coda
-            s.replace(QChar(0xe169), QString("<sym>codaSquare</sym>"));    // varcoda
+            s.replace(QChar(0xe10d), QString("<sym>accidentalFlat</sym>"));     // flat
+            s.replace(QChar(0xe104), QString("<sym>metNoteHalfUp</sym>")),      // note2_Sym
+            s.replace(QChar(0xe105), QString("<sym>metNoteQuarterUp</sym>"));   // note4_Sym
+            s.replace(QChar(0xe106), QString("<sym>metNote8thUp</sym>"));       // note8_Sym
+            s.replace(QChar(0xe107), QString("<sym>metNote16thUp</sym>"));      // note16_Sym
+            s.replace(QChar(0xe108), QString("<sym>metNote32ndUp</sym>"));      // note32_Sym
+            s.replace(QChar(0xe109), QString("<sym>metNote64thUp</sym>"));      // note64_Sym
+            s.replace(QChar(0xe10a), QString("<sym>metAugmentationDot</sym>")); // dot
+            s.replace(QChar(0xe10b), QString("<sym>metAugmentationDot</sym><sym>space</sym><sym>metAugmentationDot</sym>"));    // dotdot
+            s.replace(QChar(0xe167), QString("<sym>segno</sym>"));              // segno
+            s.replace(QChar(0xe168), QString("<sym>coda</sym>"));               // coda
+            s.replace(QChar(0xe169), QString("<sym>codaSquare</sym>"));         // varcoda
             }
       return s;
       }
diff --git a/libmscore/text.h b/libmscore/text.h
index 2e950ca..348b77e 100644
--- a/libmscore/text.h
+++ b/libmscore/text.h
@@ -178,7 +178,7 @@ class TextBlock {
 //   @@ Text
 ///    Graphic representation of a text.
 //
-//   @P text  Qstring  the raw text
+//   @P text  string  the raw text
 //---------------------------------------------------------
 
 class Text : public Element {
@@ -291,7 +291,9 @@ class Text : public Element {
 
       virtual void write(Xml& xml) const override;
       virtual void read(XmlReader&) override;
-      void writeProperties(Xml&, bool = true, bool = true) const;
+      virtual void writeProperties(Xml& xml) const { writeProperties(xml, true, true); }
+      void writeProperties(Xml& xml, bool writeText) const { writeProperties(xml, writeText, true); }
+      void writeProperties(Xml&, bool, bool) const;
       bool readProperties(XmlReader&);
 
       void spellCheckUnderline(bool) {}
@@ -306,6 +308,8 @@ class Text : public Element {
       void setAbove(bool val) {  textStyle().setYoff(val ? -2.0 : 7.0); }
       void dragTo(const QPointF&);
 
+      virtual QLineF dragAnchor() const override;
+
       QVariant getProperty(P_ID propertyId) const;
       bool setProperty(P_ID propertyId, const QVariant& v);
       virtual QVariant propertyDefault(P_ID id) const;
diff --git a/libmscore/textframe.cpp b/libmscore/textframe.cpp
index 61b5c68..5673255 100644
--- a/libmscore/textframe.cpp
+++ b/libmscore/textframe.cpp
@@ -102,16 +102,65 @@ void TBox::scanElements(void* data, void (*func)(void*, Element*), bool all)
       }
 
 //---------------------------------------------------------
+//   drop
+//---------------------------------------------------------
+
+Element* TBox::drop(const DropData& data)
+      {
+      Element* e = data.element;
+      switch (e->type()) {
+            case Element::Type::TEXT:
+                  {
+                  Text* t = static_cast<Text*>(e);
+                  _text->undoSetText(t->xmlText());
+                  _text->undoChangeProperty(P_ID::TEXT_STYLE, QVariant::fromValue(t->textStyle()));
+                  delete e;
+                  return _text;
+                  }
+            default:
+                  return VBox::drop(data);
+            }
+      }
+
+//---------------------------------------------------------
+//   add
+///   Add new Element \a el to TBox
+//---------------------------------------------------------
+
+void TBox::add(Element* e)
+      {
+      if (e->type() == Element::Type::TEXT) {
+            // does not normally happen, since drop() handles this directly
+            Text* t = static_cast<Text*>(e);
+            _text->undoSetText(t->xmlText());
+            _text->undoChangeProperty(P_ID::TEXT_STYLE, QVariant::fromValue(t->textStyle()));
+            }
+      else {
+            VBox::add(e);
+            }
+      }
+
+//---------------------------------------------------------
 //   remove
 //---------------------------------------------------------
 
 void TBox::remove(Element* el)
-     {
-     if (el == _text) {
-           _text->clear();
+      {
+      if (el == _text) {
+            // does not normally happen, since Score::deleteItem() handles this directly
+            // but if it does:
+            // replace with new empty text element
+            // this keeps undo/redo happier than just clearing the text
+            qDebug("TBox::remove() - replacing _text");
+            _text = new Text(score());
+            _text->setLayoutToParentWidth(true);
+            _text->setParent(this);
+            _text->setTextStyleType(TextStyleType::FRAME);
+           }
+      else {
+            VBox::remove(el);
            }
-     else
-           MeasureBase::remove(el);
-     }
+      }
+
 }
 
diff --git a/libmscore/textframe.h b/libmscore/textframe.h
index 0a60e42..c97f0c8 100644
--- a/libmscore/textframe.h
+++ b/libmscore/textframe.h
@@ -33,10 +33,12 @@ class TBox : public VBox {
       virtual Element::Type type() const { return Element::Type::TBOX;       }
       virtual void write(Xml&) const override;
       virtual void read(XmlReader&) override;
+      virtual Element* drop(const DropData&) override;
+      virtual void add(Element* e) override;
+      virtual void remove(Element* el) override;
 
       virtual void layout();
       virtual void scanElements(void* data, void (*func)(void*, Element*), bool all=true);
-      virtual void remove(Element* el);
       Text* text()                        { return _text; }
       };
 
diff --git a/libmscore/textline.cpp b/libmscore/textline.cpp
index 0c1e793..3a62c89 100644
--- a/libmscore/textline.cpp
+++ b/libmscore/textline.cpp
@@ -234,10 +234,14 @@ void TextLineSegment::layout1()
             _endText = 0;
             }
 
-      if (_text)
+      if (_text) {
+            _text->setTrack(track());
             _text->layout();
-      if (_endText)
+            }
+      if (_endText) {
+            _endText->setTrack(track());
             _endText->layout();
+            }
 
       QPointF pp1;
       QPointF pp2(pos2());
diff --git a/libmscore/tie.cpp b/libmscore/tie.cpp
index b853f86..a18cb8e 100644
--- a/libmscore/tie.cpp
+++ b/libmscore/tie.cpp
@@ -368,7 +368,7 @@ void Tie::layout()
             segment->setSystem(startNote()->chord()->segment()->measure()->system());
             SlurPos sPos;
             slurPos(&sPos);
-            segment->layout(sPos.p1, sPos.p2);
+            segment->layoutSegment(sPos.p1, sPos.p2);
             return;
             }
 
@@ -421,20 +421,20 @@ void Tie::layout()
 
             // case 1: one segment
             if (sPos.system1 == sPos.system2) {
-                  segment->layout(sPos.p1, sPos.p2);
+                  segment->layoutSegment(sPos.p1, sPos.p2);
                   segment->setSpannerSegmentType(SpannerSegmentType::SINGLE);
                   }
             // case 2: start segment
             else if (i == 0) {
                   qreal x = system->bbox().width();
-                  segment->layout(sPos.p1, QPointF(x, sPos.p1.y()));
+                  segment->layoutSegment(sPos.p1, QPointF(x, sPos.p1.y()));
                   segment->setSpannerSegmentType(SpannerSegmentType::BEGIN);
                   }
             // case 4: end segment
             else {
                   qreal x = firstNoteRestSegmentX(system);
 
-                  segment->layout(QPointF(x, sPos.p2.y()), sPos.p2);
+                  segment->layoutSegment(QPointF(x, sPos.p2.y()), sPos.p2);
                   segment->setSpannerSegmentType(SpannerSegmentType::END);
                   }
             ++i;
diff --git a/libmscore/timesig.cpp b/libmscore/timesig.cpp
index 5af5386..0f65c2e 100644
--- a/libmscore/timesig.cpp
+++ b/libmscore/timesig.cpp
@@ -293,13 +293,13 @@ void TimeSig::layout1()
       if (sigType ==  TimeSigType::FOUR_FOUR) {
             pz = QPointF(0.0, yoff);
             setbbox(symBbox(SymId::timeSigCommon).translated(pz));
-            _numeratorString = score()->scoreFont()->toString(SymId::timeSigCommon);
+            _numeratorString = "C";
             _denominatorString.clear();
             }
       else if (sigType == TimeSigType::ALLA_BREVE) {
             pz = QPointF(0.0, yoff);
             setbbox(symBbox(SymId::timeSigCutCommon).translated(pz));
-            _numeratorString = score()->scoreFont()->toString(SymId::timeSigCutCommon);
+            _numeratorString = '\xA2';
             _denominatorString.clear();
             }
       else {
@@ -307,16 +307,13 @@ void TimeSig::layout1()
                   _numeratorString   = QString("%1").arg(_sig.numerator());   // build numerator string
                   _denominatorString = QString("%1").arg(_sig.denominator()); // build denominator string
                   }
-            QString ns = toTimeSigString(_numeratorString);
-            QString ds = toTimeSigString(_denominatorString);
-            QFont font = score()->scoreFont()->font();
-            QFontMetricsF fm(font);
+            QList<SymId> ns = toTimeSigString(_numeratorString);
+            QList<SymId> ds = toTimeSigString(_denominatorString);
+
+            ScoreFont* font = score()->scoreFont();
             qreal mag = magS();
-            QRectF numRect = fm.tightBoundingRect(ns);          // get 'tight' bounding boxes for strings
-            QRectF denRect = fm.tightBoundingRect(ds);
-            // really Qt does not provide a QRectF::scale() method?!!
-            numRect = QRect(numRect.x()*mag, numRect.y()*mag, fm.width(ns)*mag, numRect.height()*mag);
-            denRect = QRect(denRect.x()*mag, denRect.y()*mag, fm.width(ds)*mag, denRect.height()*mag);
+            QRectF numRect = font->bbox(ns, mag);
+            QRectF denRect = font->bbox(ds, mag);
 
             // position numerator and denominator; vertical displacement:
             // number of lines is odd: 0.0 (strings are directly above and below the middle line)
@@ -364,8 +361,8 @@ void TimeSig::draw(QPainter* painter) const
       if (staff() && !staff()->staffType()->genTimesig())
             return;
       painter->setPen(curColor());
-      QString ns = toTimeSigString(_numeratorString);
-      QString ds = toTimeSigString(_denominatorString);
+      QList<SymId> ns = toTimeSigString(_numeratorString);
+      QList<SymId> ds = toTimeSigString(_denominatorString);
 
       drawSymbols(ns, painter, pz);
       drawSymbols(ds, painter, pn);
diff --git a/libmscore/timesig.h b/libmscore/timesig.h
index 557b250..6986a4c 100644
--- a/libmscore/timesig.h
+++ b/libmscore/timesig.h
@@ -35,26 +35,26 @@ enum class TimeSigType : char {
 //   @@ TimeSig
 ///    This class represents a time signature.
 //
-//   @P numeratorString     QString    text of numerator
-//   @P denominatorString   QString    text of denominator
-//   @P showCourtesySig     bool       show courtesy time signature for this sig if appropriate
-//   @P numerator           int        (read only)
-//   @P denominator         int        (read only)
-//   @P numeratorStretch    int        (read only)
-//   @P denominatorStretch  int        (read only)
-//   @P groups              Ms::Groups
+//   @P denominator         int           (read only)
+//   @P denominatorStretch  int           (read only)
+//   @P denominatorString   string        text of denominator
+//   @P groups              Groups
+//   @P numerator           int           (read only)
+//   @P numeratorStretch    int           (read only)
+//   @P numeratorString     string        text of numerator
+//   @P showCourtesySig     bool          show courtesy time signature for this sig if appropriate
 //---------------------------------------------------------------------------------------
 
 class TimeSig : public Element {
       Q_OBJECT
-      Q_PROPERTY(QString numeratorString   READ numeratorString   WRITE undoSetNumeratorString)
-      Q_PROPERTY(QString denominatorString READ denominatorString WRITE undoSetDenominatorString)
-      Q_PROPERTY(bool showCourtesySig      READ showCourtesySig   WRITE undoSetShowCourtesySig)
-      Q_PROPERTY(int numerator             READ numerator)
       Q_PROPERTY(int denominator           READ denominator)
-      Q_PROPERTY(int numeratorStretch      READ numeratorStretch)
       Q_PROPERTY(int denominatorStretch    READ denominatorStretch)
+      Q_PROPERTY(QString denominatorString READ denominatorString WRITE undoSetDenominatorString)
       Q_PROPERTY(Ms::Groups groups         READ groups            WRITE undoSetGroups)
+      Q_PROPERTY(int numerator             READ numerator)
+      Q_PROPERTY(int numeratorStretch      READ numeratorStretch)
+      Q_PROPERTY(QString numeratorString   READ numeratorString   WRITE undoSetNumeratorString)
+      Q_PROPERTY(bool showCourtesySig      READ showCourtesySig   WRITE undoSetShowCourtesySig)
 
       TimeSigType _timeSigType;
       QString _numeratorString;     // calculated from actualSig() if !customText
@@ -92,6 +92,7 @@ class TimeSig : public Element {
 
       Fraction sig() const               { return _sig; }
       void setSig(const Fraction& f, TimeSigType st = TimeSigType::NORMAL);
+      //@ sets the time signature
       Q_INVOKABLE void setSig(int z, int n, TimeSigType st = TimeSigType::NORMAL) { setSig(Fraction(z, n), st); }
       int numerator() const              { return _sig.numerator(); }
       int denominator() const            { return _sig.denominator(); }
diff --git a/libmscore/transpose.cpp b/libmscore/transpose.cpp
index 02795c6..1b1cf0f 100644
--- a/libmscore/transpose.cpp
+++ b/libmscore/transpose.cpp
@@ -242,9 +242,11 @@ bool Score::transpose(TransposeMode mode, TransposeDirection direction, Key trKe
       {
       bool rangeSelection = selection().isRange();
       int startStaffIdx = 0;
+      int endStaffIdx   = 0;
       int startTick     = 0;
       if (rangeSelection) {
             startStaffIdx = selection().staffStart();
+            endStaffIdx   = selection().staffEnd();
             startTick     = selection().tickStart();
             }
 
@@ -254,13 +256,23 @@ bool Score::transpose(TransposeMode mode, TransposeDirection direction, Key trKe
       if (mode != TransposeMode::DIATONICALLY) {
             if (mode == TransposeMode::BY_KEY) {
                   // calculate interval from "transpose by key"
-                  Key oKey = st->key(startTick);
-                  if (!styleB(StyleIdx::concertPitch)) {
-                        int diff = st->part()->instrument(startTick)->transpose().chromatic;
-                        if (diff)
-                              oKey = transposeKey(oKey, diff);
+                  // find the key of the first pitched staff
+                  Key key = Key::C;
+                  for (int i = startStaffIdx; i < endStaffIdx; ++i) {
+                        Staff* s = staff(i);
+                        if (s->isPitchedStaff()) {
+                              key = s->key(startTick);
+                              if (!styleB(StyleIdx::concertPitch)) {
+                                    int diff = s->part()->instrument(startTick)->transpose().chromatic;
+                                    if (diff)
+                                          key = transposeKey(key, diff);
+                                    }
+                              // remember this staff to use as basis in transposing key signatures
+                              st = s;
+                              break;
+                              }
                         }
-                  interval = keydiff2Interval(oKey, trKey, direction);
+                  interval = keydiff2Interval(key, trKey, direction);
                   }
             else {
                   interval = intervalList[transposeInterval];
@@ -320,7 +332,7 @@ bool Score::transpose(TransposeMode mode, TransposeDirection direction, Key trKe
                         }
                   else if ((e->type() == Element::Type::KEYSIG) && mode != TransposeMode::DIATONICALLY && trKeys) {
                         KeySig* ks     = static_cast<KeySig*>(e);
-                        if (!ks->isCustom()) {
+                        if (!ks->isCustom() && !ks->isAtonal()) {
                               Key key        = st->key(ks->tick());
                               KeySigEvent ke = ks->keySigEvent();
                               ke.setKey(key);
@@ -403,7 +415,7 @@ bool Score::transpose(TransposeMode mode, TransposeDirection direction, Key trKe
                         QList<ScoreElement*> ll = e->linkList();
                         for (ScoreElement* e : ll) {
                               KeySig* ks = static_cast<KeySig*>(e);
-                              if (!ks->isCustom()) {
+                              if (!ks->isCustom() && !ks->isAtonal()) {
                                     Key nKey = transposeKey(ks->key(), interval);
                                     KeySigEvent ke = ks->keySigEvent();
                                     ke.setKey(nKey);
@@ -488,7 +500,7 @@ void Score::transposeKeys(int staffStart, int staffEnd, int tickStart, int tickE
                         continue;
                   if (s->tick() == 0)
                         createKey = false;
-                  if (!ks->isCustom()) {
+                  if (!ks->isCustom() && !ks->isAtonal()) {
                         Key key  = st->key(s->tick());
                         Key nKey = transposeKey(key, interval);
                         // remove initial C major key signatures
diff --git a/libmscore/tremolo.cpp b/libmscore/tremolo.cpp
index cbffd0a..ab40c69 100644
--- a/libmscore/tremolo.cpp
+++ b/libmscore/tremolo.cpp
@@ -9,7 +9,6 @@
 //  as published by the Free Software Foundation and appearing in
 //  the file LICENCE.GPL
 //=============================================================================
-
 #include "tremolo.h"
 #include "score.h"
 #include "style.h"
@@ -117,30 +116,32 @@ void Tremolo::layout()
       qreal _spatium  = spatium() * mag();
 
       qreal w2  = _spatium * score()->styleS(StyleIdx::tremoloWidth).val() * .5;
-      qreal h2  = _spatium * score()->styleS(StyleIdx::tremoloBoxHeight).val()  * .5;
+      // qreal h2  = _spatium * score()->styleS(StyleIdx::tremoloBoxHeight).val()  * .5;
       qreal lw  = _spatium * score()->styleS(StyleIdx::tremoloStrokeWidth).val();
       qreal td  = _spatium * score()->styleS(StyleIdx::tremoloDistance).val();
       path      = QPainterPath();
 
       qreal ty   = 0.0;
-      for (int i = 0; i < _lines; ++i) {
-            path.moveTo(-w2,  ty + h2 - lw);
-            path.lineTo( w2,  ty - h2);
-            path.lineTo( w2,  ty - h2 + lw);
-            path.lineTo(-w2,  ty + h2);
 
-            path.closeSubpath();
+      for (int i = 0; i < _lines; i++) {
+            path.addRect(-w2, ty, 2.0 * w2, lw);
             ty += td;
             }
 
-      QRectF rect = path.boundingRect();
-      if ((parent() == 0) && !twoNotes())
-            rect.setHeight(rect.height() + _spatium);
-      setbbox(rect);
+      // QRectF rect = path.boundingRect();
+      // if ((parent() == 0) && !twoNotes())
+      //       rect.setHeight(rect.height() + _spatium);
 
       _chord1 = static_cast<Chord*>(parent());
-      if (_chord1 == 0)
+      if (_chord1 == 0) {
+            // just for the palette
+            QTransform shearTransform;
+            shearTransform.shear(0.0, -(lw / 2.0) / w2);
+            path = shearTransform.map(path);
+            setbbox(path.boundingRect());
+            addbbox(QRectF(bbox().x(), bbox().bottom(), bbox().width(), _spatium));
             return;
+            }
       Note* anchor1 = _chord1->upNote();
       Stem* stem    = _chord1->stem();
       qreal x, y, h;
@@ -224,6 +225,12 @@ void Tremolo::layout()
                   };
             int idx = _chord1->hook() ? 1 : (_chord1->beam() ? 2 : 0);
             y = (line + t[idx][up][_lines-1][line & 1]) * spatium() * .5;
+
+            QTransform shearTransform;
+            shearTransform.shear(0.0, -(lw / 2.0) / w2);
+            path = shearTransform.map(path);
+
+            setbbox(path.boundingRect());
             setPos(x, y);
             adjustReadPos();
             return;
@@ -246,13 +253,93 @@ void Tremolo::layout()
       _chord2 = static_cast<Chord*>(s->element(track()));
       _chord2->setTremolo(this);
 
-      int x2  = _chord2->stemPosBeam().x();
-      int x1  = _chord1->stemPosBeam().x();
+      Stem *stem2 = _chord2->stem(), *stem1 = _chord1->stem();
+
+      // compute the y coordinates of the tips of the stems
+      qreal y1, y2;
+      qreal firstChordStaffY;
+
+      if (stem2 && stem1) {
+            // stemPageYOffset variable is used for the case when the first
+            // chord is cross-staff
+            firstChordStaffY = stem1->pagePos().y() - stem1->y();  // y coordinate of the staff of the first chord
+            y1 = stem1->y() + stem1->p2().y();
+            y2 = stem2->pagePos().y() - firstChordStaffY + stem2->p2().y();  // ->p2().y() is better than ->stemLen()
+            }
+      else {
+            firstChordStaffY = _chord1->pagePos().y() - _chord1->y();  // y coordinate of the staff of the first chord
+            y1 = _chord1->stemPosBeam().y() - firstChordStaffY + _chord1->defaultStemLength();
+            y2 = _chord2->stemPosBeam().y() - firstChordStaffY + _chord2->defaultStemLength();
+            }
+
+      // improve the case when one stem is up and another is down
+      if (_chord1->beams() == 0 && _chord2->beams() == 0 &&
+          _chord1->up() != _chord2->up()) {
+            qreal meanNote1Y = .5 * (_chord1->upNote()->pagePos().y() - firstChordStaffY + _chord1->downNote()->pagePos().y() - firstChordStaffY);
+            qreal meanNote2Y = .5 * (_chord2->upNote()->pagePos().y() - firstChordStaffY + _chord2->downNote()->pagePos().y() - firstChordStaffY);
+            y1 = .5 * (y1 + meanNote1Y);
+            y2 = .5 * (y2 + meanNote2Y);
+            }
+
+      y = (y1 + y2) * .5;
+      if (!_chord1->up()) {
+            y -= path.boundingRect().height() * .5;
+            }
+      if (!_chord2->up()) {
+            y -= path.boundingRect().height() * .5;
+            }
+
+      // compute the x coordinates of the inner edge of the stems
+      qreal x2  = _chord2->stemPosBeam().x();
+      if (_chord2->up() && stem2) x2 -= stem2->lineWidth();
+      qreal x1  = _chord1->stemPosBeam().x();
+      if (!_chord1->up() && stem1) x1 += stem1->lineWidth();
+
+      x = (x1 + x2) * .5 - _chord1->pagePos().x();
+
+      QTransform xScaleTransform;
+      // TODO const qreal H_MULTIPLIER = score()->styleS(StyleIdx::tremoloBeamLengthMultiplier).val();
+      const qreal H_MULTIPLIER = 0.62;
+      // TODO const qreal MAX_H_LENGTH = _spatium * score()->styleS(StyleIdx::tremoloBeamLengthMultiplier).val();
+      const qreal MAX_H_LENGTH = _spatium * 12.0;
+
+      qreal xScaleFactor = qMin(H_MULTIPLIER * (x2 - x1), MAX_H_LENGTH);
+      xScaleFactor /= (2.0 * w2);
+
+      xScaleTransform.scale(xScaleFactor, 1.0);
+      path = xScaleTransform.map(path);
+
+      qreal beamYOffset = 0.0;
+
+      if (_chord1->beams() == _chord2->beams() && _chord1->beams() > 0) {
+            int beams = _chord1->beams();
+            qreal beamHalfLineWidth = point(score()->styleS(StyleIdx::beamWidth)) * .5 * mag();
+            beamYOffset = beams * _chord1->beam()->beamDist() - beamHalfLineWidth;
+            if (_chord1->up() != _chord2->up()) {  // cross-staff
+                  beamYOffset += beamYOffset + beamHalfLineWidth;
+                  }
+            else if (!_chord1->up() && !_chord2->up()) {
+                  beamYOffset = -beamYOffset;
+                  }
+            }
 
-      // qreal x2     = _chord2->_chord2->up()stemPos(_chord2->up(), true).x();
-      // qreal x1     = _chord1->stemPos(_chord1->up(), true).x();
-      x             = x1 - _chord1->pagePos().x() + (x2 - x1 + _chord1->upNote()->headWidth()) * .5;
-      setPos(x, y);
+      QTransform shearTransform;
+      if (_chord1->beams() == 0 && _chord2->beams() == 0) {
+            if (_chord1->up() && !_chord2->up())
+                  shearTransform.shear(0.0, (y2 - y1 - path.boundingRect().height()) / (x2 - x1));
+            else if (!_chord1->up() && _chord2->up())
+                  shearTransform.shear(0.0, (y2 - y1 + path.boundingRect().height()) / (x2 - x1));
+            else
+                  shearTransform.shear(0.0, (y2 - y1) / (x2 - x1));
+            }
+      else {
+            shearTransform.shear(0.0, (y2 - y1) / (x2 - x1));
+            }
+
+      path = shearTransform.map(path);
+
+      setbbox(path.boundingRect());
+      setPos(x, y + beamYOffset);
       adjustReadPos();
       }
 
@@ -368,4 +455,3 @@ QString Tremolo::accessibleInfo()
       }
 
 }
-
diff --git a/libmscore/trill.cpp b/libmscore/trill.cpp
index 22d2d57..5cfaec0 100644
--- a/libmscore/trill.cpp
+++ b/libmscore/trill.cpp
@@ -20,6 +20,7 @@
 #include "score.h"
 #include "accidental.h"
 #include "segment.h"
+#include "staff.h"
 
 namespace Ms {
 
@@ -29,9 +30,8 @@ const TrillTableItem trillTable[] = {
       { Trill::Type::TRILL_LINE,      "trill",      QT_TRANSLATE_NOOP("trillType", "Trill line")          },
       { Trill::Type::UPPRALL_LINE,    "upprall",    QT_TRANSLATE_NOOP("trillType", "Upprall line")        },
       { Trill::Type::DOWNPRALL_LINE,  "downprall",  QT_TRANSLATE_NOOP("trillType", "Downprall line")      },
-      { Trill::Type::PRALLPRALL_LINE, "prallprall", QT_TRANSLATE_NOOP("trillType", "Prallprall line")     },
-      { Trill::Type::PURE_LINE      , "pure",       QT_TRANSLATE_NOOP("trillType", "Wavy line")           }
-};
+      { Trill::Type::PRALLPRALL_LINE, "prallprall", QT_TRANSLATE_NOOP("trillType", "Prallprall line")     }
+      };
 
 int trillTableSize() {
       return sizeof(trillTable)/sizeof(TrillTableItem);
@@ -85,12 +85,12 @@ void TrillSegment::symbolLine(SymId start, SymId fill)
       ScoreFont* f = score()->scoreFont();
 
       _symbols.clear();
-      _symbols.append(f->toString(start));
-      qreal w1 = f->bbox(start, mag).width();
-      qreal w2 = f->width(fill, mag);
+      _symbols.append(start);
+      qreal w1 = f->advance(start, mag);
+      qreal w2 = f->advance(fill, mag);
       int n    = lrint((w - w1) / w2);
       for (int i = 0; i < n; ++i)
-           _symbols.append(f->toString(fill));
+           _symbols.append(fill);
       QRectF r(f->bbox(_symbols, mag));
       setbbox(r);
       }
@@ -104,14 +104,14 @@ void TrillSegment::symbolLine(SymId start, SymId fill, SymId end)
       ScoreFont* f = score()->scoreFont();
 
       _symbols.clear();
-      _symbols.append(f->toString(start));
-      _symbols.append(f->toString(end));
+      _symbols.append(start);
+      _symbols.append(end);
       qreal w1 = f->bbox(start, mag).width();
       qreal w2 = f->width(fill, mag);
       qreal w3 = f->width(end, mag);
       int n    = lrint((w - w1 - w3) / w2);
       for (int i = 0; i < n; ++i)
-           _symbols.insert(1, f->toString(fill));
+           _symbols.insert(1, fill);
       QRectF r(f->bbox(_symbols, mag));
       setbbox(r);
       }
@@ -124,6 +124,8 @@ void TrillSegment::layout()
       {
       if (parent())
             rypos() += score()->styleS(StyleIdx::trillY).val() * spatium();
+      if (staff())
+            setMag(staff()->mag());
       if (spannerSegmentType() == SpannerSegmentType::SINGLE || spannerSegmentType() == SpannerSegmentType::BEGIN) {
             Accidental* a = trill()->accidental();
             if (a) {
@@ -138,7 +140,6 @@ void TrillSegment::layout()
                         symbolLine(SymId::ornamentTrill, SymId::wiggleTrill);
                         break;
                   case Trill::Type::PRALLPRALL_LINE:
-                  case Trill::Type::PURE_LINE:
                         symbolLine(SymId::wiggleTrill, SymId::wiggleTrill);
                         break;
                   case Trill::Type::UPPRALL_LINE:
@@ -206,6 +207,8 @@ QVariant TrillSegment::getProperty(P_ID id) const
       {
       switch (id) {
             case P_ID::TRILL_TYPE:
+            case P_ID::ORNAMENT_STYLE:
+            case P_ID::PLAY:
                   return trill()->getProperty(id);
             default:
                   return LineSegment::getProperty(id);
@@ -220,6 +223,8 @@ bool TrillSegment::setProperty(P_ID id, const QVariant& v)
       {
       switch (id) {
             case P_ID::TRILL_TYPE:
+            case P_ID::ORNAMENT_STYLE:
+            case P_ID::PLAY:
                   return trill()->setProperty(id, v);
             default:
                   return LineSegment::setProperty(id, v);
@@ -234,6 +239,8 @@ QVariant TrillSegment::propertyDefault(P_ID id) const
       {
       switch (id) {
             case P_ID::TRILL_TYPE:
+            case P_ID::ORNAMENT_STYLE:
+            case P_ID::PLAY:
                   return trill()->propertyDefault(id);
             default:
                   return LineSegment::propertyDefault(id);
@@ -263,6 +270,8 @@ Trill::Trill(Score* s)
       {
       _trillType = Type::TRILL_LINE;
       _accidental = 0;
+      _ornamentStyle    = MScore::OrnamentStyle::DEFAULT;
+      setPlayArticulation(true);
       }
 
 Trill::~Trill()
@@ -361,6 +370,8 @@ void Trill::write(Xml& xml) const
             return;
       xml.stag(QString("%1 id=\"%2\"").arg(name()).arg(xml.spannerId(this)));
       xml.tag("subtype", trillTypeName());
+      writeProperty(xml, P_ID::PLAY);
+      writeProperty(xml, P_ID::ORNAMENT_STYLE);
       SLine::writeProperties(xml);
       if (_accidental)
             _accidental->write(xml);
@@ -386,6 +397,10 @@ void Trill::read(XmlReader& e)
                   _accidental->read(e);
                   _accidental->setParent(this);
                   }
+            else if ( tag == "ornamentStyle")
+                  setProperty(P_ID::ORNAMENT_STYLE, Ms::getProperty(P_ID::ORNAMENT_STYLE, e));
+            else if ( tag == "play")
+                  setPlayArticulation(e.readBool());
             else if (!SLine::readProperties(e))
                   e.unknown();
             }
@@ -406,7 +421,7 @@ void Trill::setTrillType(const QString& s)
       else if (s == "prallprall")
             _trillType = Type::PRALLPRALL_LINE;
       else if (s == "pure")
-            _trillType = Type::PURE_LINE;
+            _trillType = Type::PRALLPRALL_LINE; // obsolete, compatibility only
       else
             qDebug("Trill::setSubtype: unknown <%s>", qPrintable(s));
       }
@@ -426,8 +441,6 @@ QString Trill::trillTypeName() const
                   return "downprall";
             case Type::PRALLPRALL_LINE:
                   return "prallprall";
-            case Type::PURE_LINE:
-                  return "pure";
             default:
                   qDebug("unknown Trill subtype %hhd", trillType());
                   return "?";
@@ -464,6 +477,10 @@ QVariant Trill::getProperty(P_ID propertyId) const
       switch(propertyId) {
             case P_ID::TRILL_TYPE:
                   return int(trillType());
+            case P_ID::ORNAMENT_STYLE:
+                  return int(ornamentStyle());
+            case P_ID::PLAY:
+                  return bool(playArticulation());
             default:
                   break;
             }
@@ -480,6 +497,12 @@ bool Trill::setProperty(P_ID propertyId, const QVariant& val)
             case P_ID::TRILL_TYPE:
                   setTrillType(Type(val.toInt()));
                   break;
+            case P_ID::PLAY:
+                  setPlayArticulation(val.toBool());
+                  break;
+            case P_ID::ORNAMENT_STYLE:
+                  setOrnamentStyle(MScore::OrnamentStyle(val.toInt()));
+                  break;
             default:
                   if (!SLine::setProperty(propertyId, val))
                         return false;
@@ -498,6 +521,11 @@ QVariant Trill::propertyDefault(P_ID propertyId) const
       switch(propertyId) {
             case P_ID::TRILL_TYPE:
                   return 0;
+            case P_ID::ORNAMENT_STYLE:
+                  //return int(score()->style()->ornamentStyle(_ornamentStyle));
+                  return int(MScore::OrnamentStyle::DEFAULT);
+            case P_ID::PLAY:
+                  return true;
             default:
                   return SLine::propertyDefault(propertyId);
             }
diff --git a/libmscore/trill.h b/libmscore/trill.h
index 4997097..4248b3d 100644
--- a/libmscore/trill.h
+++ b/libmscore/trill.h
@@ -29,7 +29,7 @@ class Accidental;
 class TrillSegment : public LineSegment {
       Q_OBJECT
 
-      QString _symbols;
+      QList<SymId> _symbols;
 
       void symbolLine(SymId start, SymId fill);
       void symbolLine(SymId start, SymId fill, SymId end);
@@ -51,13 +51,13 @@ class TrillSegment : public LineSegment {
       virtual void remove(Element*) override;
       virtual void scanElements(void* data, void (*func)(void*, Element*), bool all) override;
 
-      QString symbols() const           { return _symbols; }
-      void setSymbols(const QString& s) { _symbols = s; }
+      QList<SymId> symbols() const           { return _symbols; }
+      void setSymbols(const QList<SymId>& s) { _symbols = s; }
       };
 
 //---------------------------------------------------------
 //   @@ Trill
-//   @P trillType  Ms::Trill::Type  (TRILL_LINE, UPPRALL_LINE, DOWNPRALL_LINE, PRALLPRALL_LINE, PURE_LINE)
+//   @P trillType  enum (Trill.DOWNPRALL_LINE, .PRALLPRALL_LINE, .PURE_LINE, .TRILL_LINE, .UPPRALL_LINE)
 //---------------------------------------------------------
 
 class Trill : public SLine {
@@ -66,13 +66,15 @@ class Trill : public SLine {
 
    public:
       enum class Type : char {
-            TRILL_LINE, UPPRALL_LINE, DOWNPRALL_LINE, PRALLPRALL_LINE, PURE_LINE
+            TRILL_LINE, UPPRALL_LINE, DOWNPRALL_LINE, PRALLPRALL_LINE
             };
 
    private:
       Q_PROPERTY(Ms::Trill::Type trillType READ trillType WRITE undoSetTrillType)
       Type _trillType;
       Accidental* _accidental;
+      MScore::OrnamentStyle _ornamentStyle; // for use in ornaments such as trill
+      bool _playArticulation;
 
    public:
       Trill(Score* s);
@@ -91,6 +93,10 @@ class Trill : public SLine {
       void undoSetTrillType(Type val);
       void setTrillType(Type tt)          { _trillType = tt; }
       Type trillType() const              { return _trillType; }
+      void setOrnamentStyle(MScore::OrnamentStyle val) { _ornamentStyle = val;}
+      MScore::OrnamentStyle ornamentStyle() const { return _ornamentStyle;}
+      void setPlayArticulation(bool val)  { _playArticulation = val;}
+      bool playArticulation() const       { return _playArticulation; }
       QString trillTypeName() const;
       QString trillTypeUserName();
       Accidental* accidental() const      { return _accidental; }
diff --git a/libmscore/tuplet.cpp b/libmscore/tuplet.cpp
index 93c84c5..4dd284a 100644
--- a/libmscore/tuplet.cpp
+++ b/libmscore/tuplet.cpp
@@ -598,6 +598,17 @@ void Tuplet::draw(QPainter* painter) const
       }
 
 //---------------------------------------------------------
+//   scanElements
+//---------------------------------------------------------
+
+void Tuplet::scanElements(void* data, void (*func)(void*, Element*), bool all)
+      {
+      func(data, this);
+      if (_number && all)
+            func(data, _number);
+      }
+
+//---------------------------------------------------------
 //   write
 //---------------------------------------------------------
 
diff --git a/libmscore/tuplet.h b/libmscore/tuplet.h
index 04279e1..ea93072 100644
--- a/libmscore/tuplet.h
+++ b/libmscore/tuplet.h
@@ -95,6 +95,7 @@ class Tuplet : public DurationElement {
       void clear()                                    { _elements.clear(); }
 
       virtual void layout();
+      virtual void scanElements(void* data, void (*func)(void*, Element*), bool all=true);
       Text* number() const { return _number; }
 
       void read(XmlReader&);
diff --git a/libmscore/undo.cpp b/libmscore/undo.cpp
index 736e21f..ef4018b 100644
--- a/libmscore/undo.cpp
+++ b/libmscore/undo.cpp
@@ -487,7 +487,7 @@ void Score::undoChangeKeySig(Staff* ostaff, int tick, KeySigEvent key)
             Interval interval = staff->part()->instrument()->transpose();
             KeySigEvent nkey = key;
             bool concertPitch = score->styleB(StyleIdx::concertPitch);
-            if (interval.chromatic && !concertPitch && !nkey.custom()) {
+            if (interval.chromatic && !concertPitch && !nkey.custom() && !nkey.isAtonal()) {
                   interval.flip();
                   nkey.setKey(transposeKey(key.key(), interval));
                   }
@@ -1572,7 +1572,7 @@ const char* AddElement::name() const
       {
       static char buffer[64];
       if (element->isText())
-            snprintf(buffer, 64, "Add: %s <%s>", element->name(), qPrintable(static_cast<Text*>(element)->text()));
+            snprintf(buffer, 64, "Add: %s <%s>", element->name(), qPrintable(static_cast<Text*>(element)->plainText()));
       else
             snprintf(buffer, 64, "Add: %s", element->name());
       return buffer;
@@ -1634,6 +1634,12 @@ RemoveElement::RemoveElement(Element* e)
                               score->undo(new RemoveElement(note->tieFor()));
                         if (note->tieBack())
                               score->undo(new RemoveElement(note->tieBack()));
+                        for (Spanner* s : note->spannerBack()) {
+                              score->undo(new RemoveElement(s));
+                              }
+                        for (Spanner* s : note->spannerFor()) {
+                              score->undo(new RemoveElement(s));
+                              }
                         }
                   }
             }
@@ -1704,7 +1710,7 @@ const char* RemoveElement::name() const
       {
       static char buffer[64];
       if (element->isText())
-            snprintf(buffer, 64, "Rem: %s <%s>", element->name(), qPrintable(static_cast<Text*>(element)->text()));
+            snprintf(buffer, 64, "Rem: %s <%s>", element->name(), qPrintable(static_cast<Text*>(element)->plainText()));
       else
             snprintf(buffer, 64, "Rem: %s", element->name());
       return buffer;
@@ -2663,27 +2669,6 @@ void AddTextStyle::redo()
       }
 
 //---------------------------------------------------------
-//   ChangeStretch
-//---------------------------------------------------------
-
-ChangeStretch::ChangeStretch(Measure* m, qreal s)
-   : measure(m), stretch(s)
-      {
-      }
-
-//---------------------------------------------------------
-//   flip
-//---------------------------------------------------------
-
-void ChangeStretch::flip()
-      {
-      qreal oStretch = measure->userStretch();
-      measure->setUserStretch(stretch);
-      measure->score()->setLayoutAll(true);
-      stretch = oStretch;
-      }
-
-//---------------------------------------------------------
 //   ChangeStyle
 //---------------------------------------------------------
 
@@ -2994,6 +2979,15 @@ void InsertRemoveMeasures::insertMeasures()
       if (fm->type() == Element::Type::MEASURE) {
             score->fixTicks();
             score->insertTime(fm->tick(), lm->endTick() - fm->tick());
+
+            // move ownership of Instrument back to part
+            for (Segment* s = static_cast<Measure*>(fm)->first(); s != static_cast<Measure*>(lm)->last(); s = s->next1()) {
+                  for (Element* e : s->annotations()) {
+                        if (e->type() == Element::Type::INSTRUMENT_CHANGE) {
+                              e->part()->setInstrument(static_cast<InstrumentChange*>(e)->instrument(), s->tick());
+                              }
+                        }
+                  }
             for (Clef* clef : clefs)
                   clef->staff()->setClef(clef);
             for (KeySig* key : keys)
@@ -3044,6 +3038,22 @@ void InsertRemoveMeasures::removeMeasures()
       score->fixTicks();
       if (fm->type() == Element::Type::MEASURE) {
             score->setPlaylistDirty();
+
+            // check if there is a clef at the end of last measure
+            // remove clef from staff cleflist
+
+            if (lm->type() == Element::Type::MEASURE) {
+                  Measure* m = static_cast<Measure*>(lm);
+                  Segment* s = m->findSegment(Segment::Type::Clef, tick2);
+                  if (s) {
+                        for (int staffIdx = 0; staffIdx <= score->nstaves(); ++staffIdx) {
+                              Clef* clef = static_cast<Clef*>(s->element(staffIdx * VOICES));
+                              if (clef)
+                                    score->staff(staffIdx)->removeClef(clef);
+                              }
+                        }
+                  }
+
             score->insertTime(tick1, -(tick2 - tick1));
             score->setLayoutAll(true);
             for (Spanner* sp : score->unmanagedSpanners())
diff --git a/libmscore/undo.h b/libmscore/undo.h
index 071397d..b12a05f 100644
--- a/libmscore/undo.h
+++ b/libmscore/undo.h
@@ -641,7 +641,7 @@ class ChangePatch : public UndoCommand {
    public:
       ChangePatch(Score* s, Channel* c, const MidiPatch* pt)
          : score(s), channel(c), patch(*pt) {}
-      UNDO_NAME("ChangePitch")
+      UNDO_NAME("ChangePatch")
       };
 
 //---------------------------------------------------------
@@ -745,20 +745,6 @@ class AddTextStyle : public UndoCommand {
       };
 
 //---------------------------------------------------------
-//   ChangeStretch
-//---------------------------------------------------------
-
-class ChangeStretch : public UndoCommand {
-      Measure* measure;
-      qreal stretch;
-      void flip();
-
-   public:
-      ChangeStretch(Measure*, qreal);
-      UNDO_NAME("ChangeStretch")
-      };
-
-//---------------------------------------------------------
 //   ChangeStyle
 //---------------------------------------------------------
 
@@ -1286,7 +1272,7 @@ class LinkUnlink : public UndoCommand {
 class Unlink : public LinkUnlink {
 
    public:
-      Unlink(ScoreElement* e) : LinkUnlink(e, nullptr) {};
+      Unlink(ScoreElement* e) : LinkUnlink(e, nullptr) {}
       virtual void undo() override { doLink();   }
       virtual void redo() override { doUnlink(); }
       UNDO_NAME("Unlink")
diff --git a/libmscore/utils.cpp b/libmscore/utils.cpp
index 01b3436..c902bd5 100644
--- a/libmscore/utils.cpp
+++ b/libmscore/utils.cpp
@@ -624,23 +624,23 @@ int diatonicUpDown(Key k, int pitch, int steps)
       {
       static int ptab[15][7] = {
 //             c  c#   d  d#    e   f  f#   g  g#  a  a#   b
-            { -1,      1,       3,  4,      6,     8,      10 },     // Ces
-            { -1,      1,       3,  5,      6,     8,      10 },     // Ges
-            {  0,      1,       3,  5,      6,     8,      10 },     // Des
-            {  0,      1,       3,  5,      7,     8,      10 },     // As
-            {  0,      2,       3,  5,      7,     8,      10 },     // Es
-            {  0,      2,       3,  5,      7,     9,      10 },     // B
-            {  0,      2,       4,  5,      7,     9,      10 },     // F
-
-            {  0,      2,       4,  5,      7,     9,      11 },     // C
-
-            {  0,      2,       4,  6,      7,     9,      11 },     // G
-            {  1,      2,       4,  6,      7,     9,      11 },     // D
-            {  1,      2,       4,  6,      8,     9,      11 },     // A
-            {  1,      3,       4,  6,      8,     9,      11 },     // E
-            {  1,      3,       4,  6,      8,    10,      11 },     // H
-            {  1,      3,       5,  6,      8,    10,      11 },     // Fis
-            {  1,      3,       5,  6,      8,    10,      12 },     // Cis
+            { -1,      1,       3,  4,      6,     8,      10 },     // Cb Ces
+            { -1,      1,       3,  5,      6,     8,      10 },     // Gb Ges
+            {  0,      1,       3,  5,      6,     8,      10 },     // Db Des
+            {  0,      1,       3,  5,      7,     8,      10 },     // Ab As
+            {  0,      2,       3,  5,      7,     8,      10 },     // Eb Es
+            {  0,      2,       3,  5,      7,     9,      10 },     // Bb B
+            {  0,      2,       4,  5,      7,     9,      10 },     // F  F
+
+            {  0,      2,       4,  5,      7,     9,      11 },     // C  C
+
+            {  0,      2,       4,  6,      7,     9,      11 },     // G  G
+            {  1,      2,       4,  6,      7,     9,      11 },     // D  D
+            {  1,      2,       4,  6,      8,     9,      11 },     // A  A
+            {  1,      3,       4,  6,      8,     9,      11 },     // E  E
+            {  1,      3,       4,  6,      8,    10,      11 },     // B  H
+            {  1,      3,       5,  6,      8,    10,      11 },     // F# Fis
+            {  1,      3,       5,  6,      8,    10,      12 },     // C# Cis
             };
 
       int key    = int(k) + 7;
@@ -865,16 +865,19 @@ int relStep(int pitch, int tpc, ClefType clef)
 
 //---------------------------------------------------------
 //   pitch2step
+//   returns one of { 0, 1, 2, 3, 4, 5, 6 }
 //---------------------------------------------------------
 
 int pitch2step(int pitch)
       {
+      //                            C  C# D  D# E  F  F# G  G# A  A# B
       static const char tab[12] = { 0, 0, 1, 1, 2, 3, 3, 4, 4, 5, 5, 6 };
       return tab[pitch%12];
       }
 
 //---------------------------------------------------------
 //   step2pitch
+//   returns one of { 0, 2, 4, 5, 7, 9, 11 }
 //---------------------------------------------------------
 
 int step2pitch(int step)
diff --git a/libmscore/volta.h b/libmscore/volta.h
index 50231a7..dfd255a 100644
--- a/libmscore/volta.h
+++ b/libmscore/volta.h
@@ -48,7 +48,7 @@ class VoltaSegment : public TextLineSegment {
 
 //---------------------------------------------------------
 //   @@ Volta
-//   @P voltaType  Ms::Volta::Type  (OPEN, CLOSED)
+//   @P voltaType  enum (Volta.CLOSE, Volta.OPEN)
 //---------------------------------------------------------
 
 class Volta : public TextLine {
diff --git a/libmscore/xml.cpp b/libmscore/xml.cpp
index 3032a85..9fe7ad6 100644
--- a/libmscore/xml.cpp
+++ b/libmscore/xml.cpp
@@ -412,7 +412,32 @@ void Xml::tag(P_ID id, QVariant data, QVariant defaultData)
             case P_TYPE::COLOR:
                   tag(name, data);
                   break;
-
+            case P_TYPE::ORNAMENT_STYLE:
+                  switch ( MScore::OrnamentStyle(data.toInt())) {
+                        case MScore::OrnamentStyle::BAROQUE:
+                              tag(name, QVariant("baroque"));
+                              break;
+                        default:
+                             // tag(name, QVariant("default"));
+                             break;
+                             }
+                  break;
+            case P_TYPE::GLISSANDO_STYLE:
+                  switch ( MScore::GlissandoStyle(data.toInt())) {
+                        case MScore::GlissandoStyle::BLACK_KEYS:
+                              tag(name, QVariant("blackkeys"));
+                              break;
+                        case MScore::GlissandoStyle::WHITE_KEYS:
+                              tag(name, QVariant("whitekeys"));
+                              break;
+                        case MScore::GlissandoStyle::DIATONIC:
+                              tag(name, QVariant("diatonic"));
+                              break;
+                        default:
+                             //tag(name, QVariant("Chromatic"));
+                             break;
+                             }
+                  break;
             case P_TYPE::DIRECTION:
                   switch(MScore::Direction(data.toInt())) {
                         case MScore::Direction::UP:
diff --git a/midi/midifile.cpp b/midi/midifile.cpp
index af4e2cf..3634d89 100644
--- a/midi/midifile.cpp
+++ b/midi/midifile.cpp
@@ -102,20 +102,18 @@ void MidiFile::writeEvent(const MidiEvent& event)
                   put(event.velo());
                   break;
 
+            case ME_PITCHBEND:
+                  writeStatus(ME_PITCHBEND, event.channel());
+                  put(event.dataA());
+                  put(event.dataB());
+                  break;
+
             case ME_CONTROLLER:
                   switch(event.controller()) {
                         case CTRL_PROGRAM:
                               writeStatus(ME_PROGRAM, event.channel());
                               put(event.value() & 0x7f);
                               break;
-                        case CTRL_PITCH:
-                              {
-                              writeStatus(ME_PITCHBEND, event.channel());
-                              int v = event.value() + 8192;
-                              put(v & 0x7f);
-                              put((v >> 7) & 0x7f);
-                              }
-                              break;
                         case CTRL_PRESS:
                               writeStatus(ME_AFTERTOUCH, event.channel());
                               put(event.value() & 0x7f);
@@ -599,9 +597,8 @@ bool MidiFile::readEvent(MidiEvent* event)
                   event->setValue(b & 0x7f);
                   break;
             case ME_PITCHBEND:        // pitch bend
-                  event->setType(ME_CONTROLLER);
-                  event->setController(CTRL_PITCH);
-                  event->setValue(((((b & 0x80) ? 0 : b) << 7) + a) - 8192);
+                  event->setDataA(a & 0x7f);
+                  event->setDataB(b & 0x7f);
                   break;
             case ME_PROGRAM:
                   event->setValue(a & 0x7f);
diff --git a/mscore/CMakeLists.txt b/mscore/CMakeLists.txt
index dbcbce0..c0eb25d 100644
--- a/mscore/CMakeLists.txt
+++ b/mscore/CMakeLists.txt
@@ -26,6 +26,7 @@ include_directories(
       ${PROJECT_SOURCE_DIR}
       ${PROJECT_SOURCE_DIR}/thirdparty
       ${QTSINGLEAPPLICATION_INCLUDE_DIRS}
+      ${FREETYPE_INCLUDE_DIRS}
       )
 
 if (SCRIPT_INTERFACE)
@@ -87,6 +88,7 @@ QT5_WRAP_UI (ui_headers
 
       inspector/inspector_element.ui
       inspector/inspector_vbox.ui
+      inspector/inspector_tbox.ui
       inspector/inspector_articulation.ui
       inspector/inspector_spacer.ui
       inspector/inspector_hbox.ui
@@ -121,11 +123,13 @@ QT5_WRAP_UI (ui_headers
       inspector/inspector_empty.ui
       inspector/inspector_fret.ui
       inspector/inspector_break.ui
+      inspector/inspector_bend.ui
+      inspector/inspector_arpeggio.ui
       ${SCRIPT_UI}
       )
 
 if (APPLE)
-      QT5_ADD_RESOURCES (qrc_files musescore.qrc)
+      QT5_ADD_RESOURCES (qrc_files musescore.qrc musescorefonts-Mac.qrc)
 else (APPLE)
       QT5_ADD_RESOURCES (qrc_files musescore.qrc
             musescorefonts-MScore.qrc
@@ -158,6 +162,10 @@ if (USE_PORTMIDI)
       set (AUDIO ${AUDIO} pm.cpp)
 endif (USE_PORTMIDI)
 
+if (USE_LAME)
+      set (AUDIO ${AUDIO} exportmp3.cpp)
+endif (USE_LAME)
+
 if (USE_JACK)
       set (AUDIO ${AUDIO} jackaudio.cpp jackweakapi.cpp)
 endif (USE_JACK)
@@ -209,7 +217,9 @@ add_executable ( ${ExecutableName}
 
       recordbutton.h greendotbutton prefsdialog.h
       scoreview.cpp editinstrument.cpp editstyle.cpp
-      icons.cpp importbww.cpp instrdialog.cpp instrwidget.cpp
+      icons.cpp importbww.cpp
+      importmxml.cpp importmxmlpass1.cpp importmxmlpass2.cpp
+      instrdialog.cpp instrwidget.cpp
       debugger/debugger.cpp menus.cpp
       musescore.cpp navigator.cpp pagesettings.cpp palette.cpp
       mixer.cpp playpanel.cpp selectionwindow.cpp preferences.cpp measureproperties.cpp
@@ -226,7 +236,7 @@ add_executable ( ${ExecutableName}
       importgtp.cpp importgtp-gp4.cpp importgtp-gp5.cpp importgtp-gp6.cpp fotomode.cpp drumtools.cpp
       selinstrument.cpp texteditor.cpp editstafftype.cpp texttools.cpp
       editpitch.cpp editstringdata.cpp editraster.cpp pianotools.cpp mediadialog.cpp
-      workspace.cpp exportmp3.cpp chordview.cpp
+      workspace.cpp chordview.cpp
       album.cpp albummanager.cpp
       textstyle.cpp
       lineproperties.cpp stafftextproperties.cpp splitstaff.cpp
@@ -247,6 +257,7 @@ add_executable ( ${ExecutableName}
       musicxmlfonthandler.cpp musicxmlsupport.cpp exportxml.cpp importxml.cpp importxmlfirstpass.cpp
       savePositions.cpp inspector/inspectorJump.cpp inspector/inspectorMarker.cpp
       inspector/inspectorGlissando.cpp inspector/inspectorNote.cpp inspector/inspectorAmbitus.cpp
+      inspector/inspectorArpeggio.cpp
       paletteBoxButton.cpp driver.cpp exportmidi.cpp noteGroups.cpp
       pathlistdialog.cpp exampleview.cpp inspector/inspectorTextLine.cpp miconengine.cpp
       importmidi/importmidi.cpp
@@ -294,6 +305,7 @@ target_link_libraries(mscore
       qzip
       beatroot
       kqoauth
+      ${FREETYPE_LIBRARIES}
       )
 
 if (MINGW)
@@ -407,8 +419,6 @@ if (MINGW)
       ${CROSSQT}/bin/Qt5XmlPatterns.dll
       ${CROSSQT}/bin/Qt5Qml.dll
       ${CROSSQT}/bin/Qt5Quick.dll
-      ${CROSSQT}/bin/Qt5QuickWidgets.dll
-      ${CROSSQT}/bin/Qt5Script.dll
       ${CROSSQT}/bin/Qt5Sql.dll
       ${CROSSQT}/bin/Qt5Positioning.dll
       ${CROSSQT}/bin/Qt5PrintSupport.dll
@@ -421,6 +431,8 @@ if (MINGW)
       ${CROSSQT}/bin/icudt53.dll
       ${CROSSQT}/bin/Qt5Help.dll
       ${CROSSQT}/bin/Qt5CLucene.dll
+      $ENV{FREETYPE_DIR}/bin/freetype6.dll
+      $ENV{FREETYPE_DIR}/bin/zlib1.dll
       ${PROJECT_SOURCE_DIR}/build/qt.conf
       DESTINATION bin)
 
@@ -513,8 +525,30 @@ else (MINGW)
      install (FILES data/mscore.icns DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME})
      install (FILES data/musescoreDocument.icns DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME})
    else (APPLE)
+     # Linux: install mscore executable (package maintainers may add "MuseScore" and/or "musescore" aliases that symlink to mscore)
      install( TARGETS mscore RUNTIME DESTINATION bin )
-     install( FILES   data/mscore.png DESTINATION share/pixmaps)
+     # install MuseScore icons (use SVGs where possible, but install PNGs as backup for systems that don't support SVG)
+     install( FILES   ../assets/musescore-icon-round.svg RENAME mscore.svg DESTINATION share/icons/hicolor/scalable/apps)
+     install( FILES   ../assets/musescore-icon-round-64.png RENAME mscore.png DESTINATION share/icons/hicolor/64x64/apps)
+     # install MIME (filetype) icons for each mimetype on Linux
+     install( FILES   ../assets/mscz-icon.svg RENAME application-x-musescore.svg
+        DESTINATION share/icons/hicolor/scalable/mimetypes) # SVG icon for .MSCZ files
+     install( FILES   ../assets/mscz-icon-48.png RENAME application-x-musescore.png
+        DESTINATION share/icons/hicolor/48x48/mimetypes) # PNG icon for .MSCZ files
+     install( FILES   ../assets/mscx-icon.svg RENAME application-x-musescore+xml.svg
+        DESTINATION share/icons/hicolor/scalable/mimetypes) # SVG icon for .MSCX files
+     install( FILES   ../assets/mscx-icon-48.png RENAME application-x-musescore+xml.png
+        DESTINATION share/icons/hicolor/48x48/mimetypes) # PNG icon for .MSCX files
+     # use a custom icon for MusicXML files (there isn't a standard icon for MusicXML files)
+     install( FILES   ../assets/mxl-icon.svg RENAME application-vnd.recordare.musicxml.svg
+        DESTINATION share/icons/hicolor/scalable/mimetypes) # SVG icon for .MXL (compressed MusicXML) files
+     install( FILES   ../assets/mxl-icon-48.png RENAME application-vnd.recordare.musicxml.png
+        DESTINATION share/icons/hicolor/48x48/mimetypes) # PNG icon for .MXL (compressed MusicXML) files
+     install( FILES   ../assets/xml-icon.svg RENAME application-vnd.recordare.musicxml+xml.svg
+        DESTINATION share/icons/hicolor/scalable/mimetypes) # SVG icon for .XML (MusicXML) files
+     install( FILES   ../assets/xml-icon-48.png RENAME application-vnd.recordare.musicxml+xml.png
+        DESTINATION share/icons/hicolor/48x48/mimetypes) # PNG icon for .XML (MusicXML) files
+     # Note: must now run "gtk-update-icon-cache" to set the new icons. This is done in the Makefile.
    endif (APPLE)
 endif (MINGW)
 
diff --git a/mscore/articulationprop.cpp b/mscore/articulationprop.cpp
index aa39fc1..7717341 100644
--- a/mscore/articulationprop.cpp
+++ b/mscore/articulationprop.cpp
@@ -55,20 +55,27 @@ ArticulationProperties::ArticulationProperties(Articulation* na, QWidget* parent
 //      const QList<MidiArticulation>& articulation() const;
 //      const QList<Channel>& channel() const;
 
-            foreach(const Channel* a, instrument->channel()) {
-                  if (a->name.isEmpty() || a->name == "normal")
+            for (const Channel* a : instrument->channel()) {
+                  if (a->name.isEmpty() || a->name == "normal") {
                         channelList->addItem(tr("normal"));
-                  else
-                        channelList->addItem(a->name);
+                        channelList->item(channelList->count() - 1)->setData(Qt::UserRole, "normal");
+                        }
+                  else {
+                        channelList->addItem(qApp->translate("InstrumentsXML", a->name.toUtf8().data()));
+                        channelList->item(channelList->count() - 1)->setData(Qt::UserRole, a->name);
+                        }
                   }
-            foreach(const NamedEventList& el, instrument->midiActions()) {
-                  midiActionList->addItem(el.name);
+            for (const NamedEventList& el : instrument->midiActions()) {
+                  midiActionList->addItem(qApp->translate("InstrumentsXML", el.name.toUtf8().data()));
+                  midiActionList->item(midiActionList->count() - 1)->setData(Qt::UserRole, el.name);
                   }
             }
 
 #if 0
-      foreach(const NamedEventList& e, instrument->midiActions)
-            midiActionList->addItem(e.name);
+      for (const NamedEventList& e : instrument->midiActions) {
+            midiActionList->addItem(qApp->translate("InstrumentsXML", e.name.toUtf8().data()));
+            midiActionList->item(midiActionList->count() - 1)->setData(Qt::UserRole, e.name);
+            }
       articulationChange->setChecked(!articulation->articulationName().isEmpty());
       midiAction->setChecked(!articulation->midiActionName().isEmpty());
 
@@ -102,12 +109,12 @@ void ArticulationProperties::saveValues()
       if (articulationChange->isChecked()) {
             QListWidgetItem* i = articulationList->currentItem();
             if (i)
-                  staffText->setChannelName(i->text());
+                  staffText->setChannelName(i->data(Qt::UserRole));
             }
       if (midiAction->isChecked()) {
             QListWidgetItem* i = midiActionList->currentItem();
             if (i)
-                  staffText->setMidiActionName(i->text());
+                  staffText->setMidiActionName(i->data(Qt::UserRole));
             }
 #endif
       if (int(articulation->direction()) != direction->currentIndex())
diff --git a/mscore/bb.cpp b/mscore/bb.cpp
index 5c0e0bc..6a816cb 100644
--- a/mscore/bb.cpp
+++ b/mscore/bb.cpp
@@ -583,6 +583,7 @@ int BBFile::processPendingNotes(Score* score, QList<MNote*>* notes, int len, int
       TDuration d;
       d.setVal(len);
       chord->setDurationType(d);
+      chord->setDuration(d.fraction());
       Segment* s = measure->getSegment(chord, tick);
       s->add(chord);
 
diff --git a/mscore/capella.cpp b/mscore/capella.cpp
index 69de2e9..4d06116 100644
--- a/mscore/capella.cpp
+++ b/mscore/capella.cpp
@@ -221,7 +221,7 @@ static void processBasicDrawObj(QList<BasicDrawObj*> objects, Segment* s, int tr
                                                 Breath* b = new Breath(score);
                                                 b->setTrack(track);
                                                 b->setBreathType(3);
-                                                Segment* seg = s->measure()->getSegment(Segment::Type::Breath, s->tick() + cr ? cr->actualTicks() : 0);
+                                                Segment* seg = s->measure()->getSegment(Segment::Type::Breath, s->tick() + (cr ? cr->actualTicks() : 0));
                                                 seg->add(b);
                                                 }
                                                 break;
@@ -492,7 +492,7 @@ static bool findChordRests(BasicDrawObj const* const o, Score* score, const int
       qDebug("findChordRests o %p nNotes %d score %p track %d tick %d cr1 %p cr2 %p", o, o->nNotes, score, track, tick, cr1, cr2);
 
       if (!(cr1 && cr2)) {
-            qDebug("first or second anchor for BasicDrawObj not found (tick %d type %d track %d first %p second %p)",
+            qDebug("first or second anchor for BasicDrawObj not found (tick %d type %hhu track %d first %p second %p)",
                    tick, o->type, track, cr1, cr2);
             return false;
             }
@@ -791,7 +791,7 @@ static int readCapVoice(Score* score, CapVoice* cvoice, int staffIdx, int tick,
                         qDebug("     <Clef>");
                         CapClef* o = static_cast<CapClef*>(no);
                         ClefType nclef = o->clef();
-                        qDebug("%d:%d <Clef> %s line %d oct %d clef %hhd", tick, staffIdx, o->name(), o->line, o->oct, o->clef());
+                        qDebug("%d:%d <Clef> %s line %hhd oct %hhd clef %hhd", tick, staffIdx, o->name(), o->line, o->oct, o->clef());
                         if (nclef == ClefType::INVALID)
                               break;
                         // staff(staffIdx)->setClef(tick, nclef);
@@ -1227,7 +1227,7 @@ void convertCapella(Score* score, Capella* cap, bool capxMode)
                         }
                         break;
                   default:
-                        qDebug("page background object type %d", o->type);
+                        qDebug("page background object type %hhu", o->type);
                         break;
                   }
             }
@@ -1686,7 +1686,7 @@ QList<BasicDrawObj*> Capella::readDrawObjectArray()
                         }
                         break;
                   default:
-                        qFatal("readDrawObjectArray unsupported type %d", type);
+                        qFatal("readDrawObjectArray unsupported type %hhu", type);
                         break;
                   }
             }
@@ -1760,7 +1760,7 @@ void BasicDurationalObj::read()
             objects = cap->readDrawObjectArray();
             }
       Q_ASSERT(!(c & 0x80));
-      qDebug("DurationObj ndots %d nodur %d postgr %d bsm %d inv %d notbl %d t %d hsh %d cnt %d trp %d ispro %d",
+      qDebug("DurationObj ndots %d nodur %d postgr %d bsm %d inv %d notbl %d t %hhd hsh %d cnt %d trp %d ispro %d",
              nDots, noDuration, postGrace, bSmall, invisible, notBlack, t, horizontalShift, count, tripartite, isProlonging
              );
       }
@@ -2151,7 +2151,7 @@ void Capella::readStaveLayout(CapStaffLayout* sl, int idx)
       sl->form = Form(clef & 7);
       sl->line = ClefLine((clef >> 3) & 7);
       sl->oct  = Oct((clef >> 6));
-      qDebug("   clef %x  form %d, line %d, oct %d", clef, sl->form, sl->line, sl->oct);
+      qDebug("   clef %x  form %hhd, line %hhd, oct %hhd", clef, sl->form, sl->line, sl->oct);
 
       // Schlagzeuginformation
       unsigned char b   = readByte();
@@ -2264,7 +2264,7 @@ void CapClef::read()
       form            = Form(b & 7);
       line            = ClefLine((b >> 3) & 7);
       oct             = Oct(b >> 6);
-      qDebug("Clef::read form %d line %d oct %d", form, line, oct);
+      qDebug("Clef::read form %hhd line %hhd oct %hhd", form, line, oct);
       }
 
 //---------------------------------------------------------
@@ -2298,7 +2298,7 @@ ClefType CapClef::clefType(Form form, ClefLine line, Oct oct)
             default:
                   if (form == Form::FORM_NULL)
                         return ClefType::INVALID;
-                  qDebug("unknown clef %d %d %d", form, line, oct);
+                  qDebug("unknown clef %hhd %hhd %hhd", form, line, oct);
                   break;
             }
       return ClefType::INVALID;
@@ -2365,7 +2365,7 @@ void CapExplicitBarline::read()
       _barMode = b >> 4;         // 0 = auto, 1 = nur Zeilen, 2 = durchgezogen
       Q_ASSERT(_barMode <= 2);
 
-      qDebug("         Expl.Barline type %d mode %d", _type, _barMode);
+      qDebug("         Expl.Barline type %hhd mode %d", _type, _barMode);
       }
 
 //---------------------------------------------------------
@@ -2530,7 +2530,7 @@ int BasicDurationalObj::ticks() const
             case TIMESTEP::D256:        len = MScore::division >> 6; break;
             case TIMESTEP::D_BREVE:     len = MScore::division * 8; break;
             default:
-                  qDebug("BasicDurationalObj::ticks: illegal duration value %d", t);
+                  qDebug("BasicDurationalObj::ticks: illegal duration value %hhd", t);
                   break;
             }
       int slen = len;
diff --git a/mscore/capxml.cpp b/mscore/capxml.cpp
index 3c73469..a94538b 100644
--- a/mscore/capxml.cpp
+++ b/mscore/capxml.cpp
@@ -139,7 +139,7 @@ void BasicDurationalObj::readCapx(XmlReader& e, unsigned int& fullm)
             else
                   e.unknown();
             }
-      qDebug("DurationObj ndots %d nodur %d postgr %d bsm %d inv %d notbl %d t %d hsh %d cnt %d trp %d ispro %d fullm %d",
+      qDebug("DurationObj ndots %d nodur %d postgr %d bsm %d inv %d notbl %d t %hhd hsh %d cnt %d trp %d ispro %d fullm %d",
              nDots, noDuration, postGrace, bSmall, invisible, notBlack, t, horizontalShift, count, tripartite, isProlonging, fullm
              );
       }
@@ -191,7 +191,7 @@ void CapClef::readCapx(XmlReader& e)
       else if (clef == "treble") { form = Form::G; line = ClefLine::L2; oct = Oct::OCT_NULL; }
       else if (clef == "bass") { form = Form::F; line = ClefLine::L4; oct = Oct::OCT_NULL; }
       else { /* default */ form = Form::G; line = ClefLine::L2; oct = Oct::OCT_NULL; }
-      qDebug("Clef::read '%s' -> form %d line %d oct %d", qPrintable(clef), form, line, oct);
+      qDebug("Clef::read '%s' -> form %hhd line %hhd oct %hhd", qPrintable(clef), form, line, oct);
       e.readNext();
       }
 
diff --git a/mscore/continuouspanel.cpp b/mscore/continuouspanel.cpp
index 5cab780..d1f2604 100644
--- a/mscore/continuouspanel.cpp
+++ b/mscore/continuouspanel.cpp
@@ -23,6 +23,7 @@
 #include "libmscore/keysig.h"
 #include "libmscore/barline.h"
 
+#include "preferences.h"
 #include "scoreview.h"
 #include "continuouspanel.h"
 
@@ -45,8 +46,6 @@ ContinuousPanel::ContinuousPanel(ScoreView* sv)
       _offsetPanel            = 0.0;
       _x                      = 0.0;
       _y                      = 0.0;
-      _heightName             = 0.0;
-      _lineHeightName         = 0.0;
       _widthClef              = 0.0;
       _widthKeySig            = 0.0;
       _widthTimeSig           = 0.0;
@@ -125,7 +124,7 @@ void ContinuousPanel::paint(const QRect& /*r*/, QPainter& p)
       qStableSort(elementsCurrent.begin(), elementsCurrent.end(), elementLessThan);
 
       _currentMeasure = nullptr;
-      foreach(const Element* e, elementsCurrent) {
+      for (const Element* e : elementsCurrent) {
             e->itemDiscovered = 0;
             if (!e->visible()) {
                   if (_score->printing() || !_score->showInvisible())
@@ -152,9 +151,9 @@ void ContinuousPanel::paint(const QRect& /*r*/, QPainter& p)
             }
       if (_currentMeasure == nullptr)
             return;
+
       findElementWidths(elementsCurrent);
 
-      //
       // Don't show panel if staff names are visible
       if (_sv->xoffset() / _sv->mag() + _xPosMeasure > 0) {
             _visible = false;
@@ -173,44 +172,41 @@ void ContinuousPanel::paint(const QRect& /*r*/, QPainter& p)
 //---------------------------------------------------------
 
 void ContinuousPanel::findElementWidths(const QList<Element*>& el) {
-      //
       // The first pass serves to get the maximum width for each elements
-      //
-      _heightName = 0;
-      _lineHeightName = 0;
+      qreal lineWidthName = 0;
       _widthClef = 0;
       _widthKeySig = 0;
       _widthTimeSig = 0;
       _xPosTimeSig = 0;
-      foreach(const Element* e, el) {
+      for (const Element* e : el) {
             e->itemDiscovered = 0;
             if (!e->visible()) {
                   if (_score->printing() || !_score->showInvisible())
                         continue;
                   }
 
-           if (e->type() == Element::Type::STAFF_LINES) {
+            if (e->type() == Element::Type::STAFF_LINES) {
                   Staff* currentStaff = _score->staff(e->staffIdx());
                   Segment* parent = _score->tick2segment(_currentMeasureTick);
 
-                  //
-                  // Find maximum height for the staff name
-                  //
-                  QList<StaffName>& staffNamesShort = currentStaff->part()->instrument()->shortNames();
-                  QString staffName = staffNamesShort.isEmpty() ? "" : staffNamesShort[0].name();
+                  // Find maximum width for the staff name
+                  QList<StaffName>& staffNamesLong = currentStaff->part()->instrument()->longNames();
+                  QString staffName = staffNamesLong.isEmpty() ? " " : staffNamesLong[0].name();
                   if (staffName == "") {
-                        QList<StaffName>& staffNamesLong = currentStaff->part()->instrument()->longNames();
-                        staffName = staffNamesLong.isEmpty() ? " " : staffNamesLong[0].name();
-                  }
+                        QList<StaffName>& staffNamesShort = currentStaff->part()->instrument()->shortNames();
+                        staffName = staffNamesShort.isEmpty() ? "" : staffNamesShort[0].name();
+                        }
                   Text* newName = new Text(_score);
                   newName->setXmlText(staffName);
                   newName->setParent(parent);
                   newName->setTrack(e->track());
+                  newName->textStyle().setFamily("FreeSans");
+                  newName->textStyle().setSizeIsSpatiumDependent(true);
+                  newName->layout();
+                  newName->setPlainText(newName->plainText());
                   newName->layout();
 
-                  //
                   // Find maximum width for the current Clef
-                  //
                   Clef* newClef = new Clef(_score);
                   ClefType currentClef = currentStaff->clef(_currentMeasureTick);
                   newClef->setClefType(currentClef);
@@ -218,9 +214,7 @@ void ContinuousPanel::findElementWidths(const QList<Element*>& el) {
                   newClef->setTrack(e->track());
                   newClef->layout();
 
-                  //
                   // Find maximum width for the current KeySignature
-                  //
                   KeySig* newKs = new KeySig(_score);
                   KeySigEvent currentKeySigEvent = currentStaff->keySigEvent(_currentMeasureTick);
                   newKs->setKeySigEvent(currentKeySigEvent);
@@ -231,9 +225,7 @@ void ContinuousPanel::findElementWidths(const QList<Element*>& el) {
                   newKs->setHideNaturals(true);
                   newKs->layout();
 
-                  //
                   // Find maximum width for the current TimeSignature
-                  //
                   TimeSig* newTs = new TimeSig(_score);
 
                   // Try to get local time signature, if not, get the current measure one
@@ -246,11 +238,8 @@ void ContinuousPanel::findElementWidths(const QList<Element*>& el) {
                   newTs->setTrack(e->track());
                   newTs->layout();
 
-                  if ((newName->height() > _heightName) && (newName->xmlText() != ""))
-                        _heightName = newName->height();
-
-                  if ((newName->lineHeight() > _lineHeightName) && (newName->xmlText() != ""))
-                        _lineHeightName = newName->lineHeight();
+                  if ((newName->width() > lineWidthName) && (newName->xmlText() != ""))
+                        lineWidthName = newName->width();
 
                   if (newClef->width() > _widthClef)
                         _widthClef = newClef->width();
@@ -272,9 +261,14 @@ void ContinuousPanel::findElementWidths(const QList<Element*>& el) {
       _leftMarginTotal += _score->styleP(StyleIdx::keysigLeftMargin);
       _leftMarginTotal += _score->styleP(StyleIdx::timesigLeftMargin);
 
-      _newWidth = _heightName + _widthClef + _widthKeySig + _widthTimeSig + _leftMarginTotal + _panelRightPadding;
+      _newWidth = _widthClef + _widthKeySig + _widthTimeSig + _leftMarginTotal + _panelRightPadding;
       _xPosMeasure -= _offsetPanel;
-      //qDebug() << "_xPosMeasure="<< _xPosMeasure << "_width ="<<_width<< " offsetpanel ="<<_offsetPanel << "newWidth ="<<_newWidth  << "oldWidth ="<<_oldWidth << "_measureWidth ="<<_measureWidth;
+
+      lineWidthName += _score->spatium() + _score->styleP(StyleIdx::clefLeftMargin) + _widthClef;
+      if (_newWidth < lineWidthName) {
+            _newWidth = lineWidthName;
+            _oldWidth = 0;
+            }
       if (_oldWidth == 0) {
             _oldWidth = _newWidth;
             _width = _newWidth;
@@ -305,46 +299,54 @@ void ContinuousPanel::findElementWidths(const QList<Element*>& el) {
 
 void ContinuousPanel::draw(QPainter& painter, const QList<Element*>& el) {
       painter.save();
+      painter.setRenderHint(QPainter::Antialiasing, preferences.antialiasedDrawing);
+      painter.setRenderHint(QPainter::TextAntialiasing, true);
 
-      //
       // Draw colored rectangle
-      //
       painter.setClipping(false);
       QPointF pos(_offsetPanel, 0);
       painter.translate(pos);
-      QColor c(MScore::selectColor[0]);
-      QPen pen(c);
+      QPen pen;
       pen.setWidthF(0.0);
-      pen.setStyle( Qt::NoPen );
+      pen.setStyle(Qt::NoPen);
       painter.setPen(pen);
-      painter.setOpacity(0.80);
-      painter.setBrush(QColor(205, 210, 235, 255));
-      painter.drawRect(_rect);
+      painter.setBrush(preferences.fgColor);
+      QRectF bg(_rect);
+      bg.setWidth(_widthClef + _widthKeySig + _widthTimeSig + _leftMarginTotal + _panelRightPadding);
+      QPixmap* fgPixmap = _sv->fgPixmap();
+      if (fgPixmap == 0 || fgPixmap->isNull())
+            painter.fillRect(bg, preferences.fgColor);
+      else {
+            painter.setMatrixEnabled(false);
+            painter.drawTiledPixmap(bg, *fgPixmap, bg.topLeft()
+               - QPoint(lrint(_sv->matrix().dx()), lrint(_sv->matrix().dy())));
+            painter.setMatrixEnabled(true);
+            }
+
       painter.setClipRect(_rect);
       painter.setClipping(true);
 
-      //
+      QColor color(MScore::layoutBreakColor);
+
       // Draw measure text number
-      //
-      painter.setOpacity(1);
-      painter.setBrush(QColor(0, 0, 0, 255));
       QString text = _mmRestCount ? QString("#%1-%2").arg(_currentMeasureNo+1).arg(_currentMeasureNo+_mmRestCount) : QString("#%1").arg(_currentMeasureNo+1);
       Text* newElement = new Text(_score);
       newElement->setTextStyleType(TextStyleType::DEFAULT);
       newElement->setFlag(ElementFlag::MOVABLE, false);
       newElement->setXmlText(text);
+      newElement->textStyle().setFamily("FreeSans");
+      newElement->textStyle().setSizeIsSpatiumDependent(true);
+      newElement->setColor(color);
       newElement->sameLayout();
-      pos = QPointF (_heightName * 1.5, _y + newElement->height());
+      pos = QPointF(_score->styleP(StyleIdx::clefLeftMargin) + _widthClef, _y + newElement->height());
       painter.translate(pos);
       newElement->draw(&painter);
-      pos += QPointF (_offsetPanel, 0);
+      pos += QPointF(_offsetPanel, 0);
       painter.translate(-pos);
       delete newElement;
 
-      //
       // This second pass draws the elements spaced evently using the width of the largest element
-      //
-      foreach(const Element* e, el) {
+      for (const Element* e : el) {
             e->itemDiscovered = 0;
             if (!e->visible()) {
                   if (_score->printing() || !_score->showInvisible())
@@ -355,9 +357,20 @@ void ContinuousPanel::draw(QPainter& painter, const QList<Element*>& el) {
                   Staff* currentStaff = _score->staff(e->staffIdx());
                   Segment* parent = _score->tick2segmentMM(_currentMeasureTick);
 
-                  //
-                  // Get barline height (used to center instrument name
-                  //
+                  pos = QPointF (_offsetPanel, e->pagePos().y());
+                  painter.translate(pos);
+
+                  // Draw staff lines
+                  StaffLines* newStaffLines = static_cast<StaffLines*>(e->clone());
+                  newStaffLines->setWidth(bg.width());
+                  newStaffLines->setParent(parent);
+                  newStaffLines->setTrack(e->track());
+                  newStaffLines->layout();
+                  newStaffLines->setColor(color);
+                  newStaffLines->draw(&painter);
+                  delete newStaffLines;
+
+                  // Draw barline
                   BarLine* newBarLine = new BarLine(_score);
                   newBarLine->setBarLineType(BarLineType::NORMAL);
                   newBarLine->setParent(parent);
@@ -366,75 +379,53 @@ void ContinuousPanel::draw(QPainter& painter, const QList<Element*>& el) {
                   newBarLine->setSpanFrom(currentStaff->barLineFrom());
                   newBarLine->setSpanTo(currentStaff->barLineTo());
                   newBarLine->layout();
+                  newBarLine->setColor(color);
+                  newBarLine->draw(&painter);
+                  delete newBarLine;
 
-                  //
                   // Draw the current staff name
-                  //
-                  QList<StaffName>& staffNamesShort = currentStaff->part()->instrument()->shortNames();
-                  QString staffName = staffNamesShort.isEmpty() ? "" : staffNamesShort[0].name();
+                  QList<StaffName>& staffNamesLong = currentStaff->part()->instrument()->longNames();
+                  QString staffName = staffNamesLong.isEmpty() ? " " : staffNamesLong[0].name();
                   if (staffName == "") {
-                        QList<StaffName>& staffNamesLong = currentStaff->part()->instrument()->longNames();
-                        staffName = staffNamesLong.isEmpty() ? " " : staffNamesLong[0].name();
-                  }
+                        QList<StaffName>& staffNamesShort = currentStaff->part()->instrument()->shortNames();
+                        staffName = staffNamesShort.isEmpty() ? "" : staffNamesShort[0].name();
+                        }
 
                   Text* newName = new Text(_score);
                   newName->setXmlText(staffName);
                   newName->setParent(parent);
                   newName->setTrack(e->track());
+                  newName->setColor(color);
+                  newName->textStyle().setFamily("FreeSans");
+                  newName->textStyle().setSizeIsSpatiumDependent(true);
+                  newName->layout();
+                  newName->setPlainText(newName->plainText());
                   newName->layout();
-                  pos = QPointF (_offsetPanel, e->pagePos().y());
-                  painter.translate(pos);
-
-                  //if (currentStaff->part()->startTrack() == currentStaff->idx() * VOICES) {
                   if (currentStaff->part()->staff(0) == currentStaff) {
-                        painter.rotate(-90);
-                        pos = QPointF (- newBarLine->height() / 2 - newName->width() / 2, _heightName - newName->height() + _lineHeightName * 0.8);  // Because we rotate the canvas, height and width are swaped
+                        double _spatium = _score->spatium();
+                        pos = QPointF (_score->styleP(StyleIdx::clefLeftMargin) + _widthClef, 0 - _spatium * 2);
                         painter.translate(pos);
                         newName->draw(&painter);
-                        //qDebug() << "_heightName=" << _heightName << "Barline height=" << newBarLine->height() << "  newName->height=" << newName->height() << "  staff (e->height)=" << e->height() << "  newName->width()=" << newName->width() << "  newName->linespace()=" << newName->lineSpacing() << "  newName->lineHeight()=" << newName->lineHeight() << " pos (" << pos.x() << "," << pos.y() << ")";
                         painter.translate(-pos);
-                        painter.rotate(90);
-                  }
-                  pos = QPointF (_heightName, 0);
-                  painter.translate(pos);
+                        }
                   delete newName;
 
-                  //
-                  // Draw staff lines
-                  //
-                  StaffLines* newStaffLines = static_cast<StaffLines*>(e->clone());
-                  newStaffLines->setWidth(_width);
-                  newStaffLines->setParent(parent);
-                  newStaffLines->setTrack(e->track());
-                  newStaffLines->layout();
-                  newStaffLines->draw(&painter);
-                  delete newStaffLines;
-
-                  //
-                  // Draw barline
-                  //
-                  newBarLine->draw(&painter);
-                  delete newBarLine;
-
-                  //
                   // Draw the current Clef
-                  //
                   Clef* newClef = new Clef(_score);
                   ClefType currentClef = currentStaff->clef(_currentMeasureTick);
                   newClef->setClefType(currentClef);
                   newClef->setParent(parent);
                   newClef->setTrack(e->track());
+                  newClef->setColor(color);
                   newClef->layout();
-                  pos = QPointF(_score->styleP(StyleIdx::clefLeftMargin),0);
+                  pos = QPointF(_score->styleP(StyleIdx::clefLeftMargin), 0);
                   painter.translate(pos);
                   newClef->draw(&painter);
                   pos = QPointF(_widthClef,0);
                   painter.translate(pos);
                   delete newClef;
 
-                  //
                   // Draw the current KeySignature
-                  //
                   KeySig* newKs = new KeySig(_score);
                   KeySigEvent currentKeySigEvent = currentStaff->keySigEvent(_currentMeasureTick);
                   newKs->setKeySigEvent(currentKeySigEvent);
@@ -443,6 +434,7 @@ void ContinuousPanel::draw(QPainter& painter, const QList<Element*>& el) {
                   // This also adds naturals to the key signature (if set in the score style)
                   newKs->setParent(parent);
                   newKs->setTrack(e->track());
+                  newKs->setColor(color);
 
                   newKs->setHideNaturals(true);
                   pos = QPointF(_score->styleP(StyleIdx::keysigLeftMargin),0);
@@ -454,26 +446,23 @@ void ContinuousPanel::draw(QPainter& painter, const QList<Element*>& el) {
                   pos = QPointF(_widthKeySig + _xPosTimeSig, 0);
                   painter.translate(pos);
 
-                  //
                   // Draw the current TimeSignature
-                  //
                   TimeSig* newTs = new TimeSig(_score);
 
                   // Try to get local time signature, if not, get the current measure one
                   TimeSig* currentTimeSig = currentStaff->timeSig(_currentMeasureTick);
                   if (currentTimeSig) {
                         newTs->setFrom(currentTimeSig);
-                      //else
-                        //    newTs->setSig(_currentTimeSig.numerator(), _currentTimeSig.denominator(), TimeSigType::NORMAL);
-                      newTs->setParent(parent);
-                      newTs->setTrack(e->track());
-                      newTs->layout();
-                      pos = QPointF(_score->styleP(StyleIdx::timesigLeftMargin),0);
-                      painter.translate(pos);
-                      newTs->draw(&painter);
-                      delete newTs;
-                      }
-                  pos = QPointF(_offsetPanel + _heightName + _widthClef + _widthKeySig + _xPosTimeSig + _leftMarginTotal, e->pagePos().y());
+                        newTs->setParent(parent);
+                        newTs->setTrack(e->track());
+                        newTs->setColor(color);
+                        newTs->layout();
+                        pos = QPointF(_score->styleP(StyleIdx::timesigLeftMargin),0);
+                        painter.translate(pos);
+                        newTs->draw(&painter);
+                        delete newTs;
+                        }
+                  pos = QPointF(_offsetPanel + _widthClef + _widthKeySig + _xPosTimeSig + _leftMarginTotal, e->pagePos().y());
                   painter.translate(-pos);
                   }
             }
diff --git a/mscore/continuouspanel.h b/mscore/continuouspanel.h
index 388ea2d..2614989 100644
--- a/mscore/continuouspanel.h
+++ b/mscore/continuouspanel.h
@@ -40,8 +40,6 @@ class ContinuousPanel {
       qreal _newWidth;        // New panel width
       qreal _measureWidth;
       qreal _height;
-      qreal _heightName;
-      qreal _lineHeightName;
       qreal _widthClef;
       qreal _widthKeySig;
       qreal _widthTimeSig;
diff --git a/mscore/data/icons/png/window-close-hover.png b/mscore/data/icons/png/window-close-hover.png
index a5b3ffa..8b985ef 100644
Binary files a/mscore/data/icons/png/window-close-hover.png and b/mscore/data/icons/png/window-close-hover.png differ
diff --git a/mscore/data/icons/png/window-close-hover at 2x.png b/mscore/data/icons/png/window-close-hover at 2x.png
index d061346..43acd3b 100644
Binary files a/mscore/data/icons/png/window-close-hover at 2x.png and b/mscore/data/icons/png/window-close-hover at 2x.png differ
diff --git a/mscore/data/icons/png/window-close.png b/mscore/data/icons/png/window-close.png
index 522cb04..7491a09 100644
Binary files a/mscore/data/icons/png/window-close.png and b/mscore/data/icons/png/window-close.png differ
diff --git a/mscore/data/icons/png/window-close at 2x.png b/mscore/data/icons/png/window-close at 2x.png
index 5f656f7..afea7f1 100644
Binary files a/mscore/data/icons/png/window-close at 2x.png and b/mscore/data/icons/png/window-close at 2x.png differ
diff --git a/mscore/data/icons/png/window-float.png b/mscore/data/icons/png/window-float.png
index abc25de..a708eb6 100644
Binary files a/mscore/data/icons/png/window-float.png and b/mscore/data/icons/png/window-float.png differ
diff --git a/mscore/data/icons/png/window-float at 2x.png b/mscore/data/icons/png/window-float at 2x.png
index b99d094..2576829 100644
Binary files a/mscore/data/icons/png/window-float at 2x.png and b/mscore/data/icons/png/window-float at 2x.png differ
diff --git a/mscore/data/shortcuts.xml b/mscore/data/shortcuts.xml
index 7343a91..b45ebfa 100644
--- a/mscore/data/shortcuts.xml
+++ b/mscore/data/shortcuts.xml
@@ -383,10 +383,12 @@
   <SC>
     <key>delete-measures</key>
     <seq>Ctrl+Del</seq>
+    <seq>Ctrl+Backspace</seq>
     </SC>
   <SC>
     <key>full-measure-rest</key>
     <seq>Ctrl+Shift+Del</seq>
+    <seq>Ctrl+Shift+Backspace</seq>
     </SC>
   <SC>
     <key>append-measure</key>
@@ -637,6 +639,10 @@
     <seq>Ctrl+-</seq>
     </SC>
   <SC>
+    <key>zoom100</key>
+    <seq>Ctrl+0</seq>
+    </SC>
+  <SC>
     <key>mirror-note</key>
     <seq>Shift+X</seq>
     </SC>
diff --git a/mscore/data/splash.png b/mscore/data/splash.png
index ab73330..3f2fdba 100644
Binary files a/mscore/data/splash.png and b/mscore/data/splash.png differ
diff --git a/mscore/debugger/debugger.cpp b/mscore/debugger/debugger.cpp
index b60e59a..31c3de2 100644
--- a/mscore/debugger/debugger.cpp
+++ b/mscore/debugger/debugger.cpp
@@ -591,6 +591,7 @@ void Debugger::updateElement(Element* el)
                   case Element::Type::MEASURE:          ew = new MeasureView;         break;
                   case Element::Type::CHORD:            ew = new ChordDebug;          break;
                   case Element::Type::NOTE:             ew = new ShowNoteWidget;      break;
+                  case Element::Type::REPEAT_MEASURE:
                   case Element::Type::REST:             ew = new RestView;            break;
                   case Element::Type::CLEF:             ew = new ClefView;            break;
                   case Element::Type::TIMESIG:          ew = new TimeSigView;         break;
@@ -1205,7 +1206,7 @@ void ShowNoteWidget::accidentalClicked()
 RestView::RestView()
    : ShowElementBase()
       {
-      // chort rest
+      // chord rest
       crb.setupUi(addWidget());
       crb.beamMode->addItem("auto");
       crb.beamMode->addItem("beam begin");
@@ -2393,8 +2394,8 @@ void AccidentalView::setElement(Element* e)
       ShowElementBase::setElement(e);
 
       acc.hasBracket->setChecked(s->hasBracket());
-      acc.accAuto->setChecked(s->role() == Accidental::Role::AUTO);
-      acc.accUser->setChecked(s->role() == Accidental::Role::USER);
+      acc.accAuto->setChecked(s->role() == AccidentalRole::AUTO);
+      acc.accUser->setChecked(s->role() == AccidentalRole::USER);
       acc.small->setChecked(s->small());
       }
 
@@ -2473,6 +2474,7 @@ void KeySigView::setElement(Element* e)
       keysig.showCourtesySig->setChecked(ks->showCourtesy());
       keysig.accidentalType->setValue(int(ev.key()));
       keysig.custom->setChecked(ev.custom());
+      keysig.atonal->setChecked(ev.isAtonal());
       keysig.invalid->setChecked(!ev.isValid());
       }
 
diff --git a/mscore/debugger/keysig.ui b/mscore/debugger/keysig.ui
index 9b6236d..6539f1e 100644
--- a/mscore/debugger/keysig.ui
+++ b/mscore/debugger/keysig.ui
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>493</width>
-    <height>131</height>
+    <height>135</height>
    </rect>
   </property>
   <property name="windowTitle">
@@ -41,13 +41,6 @@
       <property name="spacing">
        <number>0</number>
       </property>
-      <item row="1" column="0">
-       <widget class="QLabel" name="label_5">
-        <property name="text">
-         <string notr="true">accidentalType</string>
-        </property>
-       </widget>
-      </item>
       <item row="2" column="0">
        <widget class="QCheckBox" name="custom">
         <property name="text">
@@ -55,7 +48,7 @@
         </property>
        </widget>
       </item>
-      <item row="1" column="1">
+      <item row="1" column="2">
        <widget class="QSpinBox" name="accidentalType">
         <property name="readOnly">
          <bool>true</bool>
@@ -68,31 +61,45 @@
         </property>
        </widget>
       </item>
-      <item row="2" column="1">
-       <widget class="QCheckBox" name="invalid">
+      <item row="1" column="3">
+       <widget class="QLabel" name="label_8">
         <property name="text">
-         <string notr="true">invalid</string>
+         <string notr="true">naturalType</string>
         </property>
        </widget>
       </item>
-      <item row="1" column="2">
-       <widget class="QLabel" name="label_8">
+      <item row="1" column="0">
+       <widget class="QLabel" name="label_5">
         <property name="text">
-         <string notr="true">naturalType</string>
+         <string notr="true">accidentalType</string>
         </property>
        </widget>
       </item>
-      <item row="1" column="3">
+      <item row="0" column="0" colspan="3">
+       <widget class="QCheckBox" name="showCourtesySig">
+        <property name="text">
+         <string notr="true">showCourtesySig</string>
+        </property>
+       </widget>
+      </item>
+      <item row="1" column="4">
        <widget class="QSpinBox" name="naturalType">
         <property name="readOnly">
          <bool>true</bool>
         </property>
        </widget>
       </item>
-      <item row="0" column="0" colspan="2">
-       <widget class="QCheckBox" name="showCourtesySig">
+      <item row="2" column="2">
+       <widget class="QCheckBox" name="invalid">
         <property name="text">
-         <string notr="true">showCourtesySig</string>
+         <string notr="true">invalid</string>
+        </property>
+       </widget>
+      </item>
+      <item row="2" column="1">
+       <widget class="QCheckBox" name="atonal">
+        <property name="text">
+         <string>atonal</string>
         </property>
        </widget>
       </item>
diff --git a/mscore/dragdrop.cpp b/mscore/dragdrop.cpp
index 7a0e7d0..a782709 100644
--- a/mscore/dragdrop.cpp
+++ b/mscore/dragdrop.cpp
@@ -500,12 +500,13 @@ void ScoreView::dropEvent(QDropEvent* event)
                         if (el == 0 || el->type() == Element::Type::MEASURE) {
                               int staffIdx;
                               Segment* seg;
-                              el = _score->pos2measure(pos, &staffIdx, 0, &seg, 0);
+                              QPointF offset;
+                              el = _score->pos2measure(pos, &staffIdx, 0, &seg, &offset);
                               if (el && el->type() == Element::Type::MEASURE) {
                                     dragElement->setTrack(staffIdx * VOICES);
                                     dragElement->setParent(seg);
                                     if (applyUserOffset)
-                                          dragElement->setUserOff(pos - seg->canvasPos());
+                                          dragElement->setUserOff(offset);
                                     score()->undoAddElement(dragElement);
                                     }
                               else {
diff --git a/mscore/drumview.cpp b/mscore/drumview.cpp
index 5749605..74cd64b 100644
--- a/mscore/drumview.cpp
+++ b/mscore/drumview.cpp
@@ -52,19 +52,19 @@ static int pitch2y(int pitch)
 //---------------------------------------------------------
 
 DrumItem::DrumItem(Note* n)
-   : QGraphicsPolygonItem(), note(n)
+   : QGraphicsPolygonItem(), _note(n)
       {
       setFlags(flags() | QGraphicsItem::ItemIsSelectable);
-      int pitch = n->pitch();
+      int pitch = _note->pitch();
       QPolygonF p;
       double h2 = keyHeight/2;
       p << QPointF(0, -h2) << QPointF(h2, 0.0) << QPointF(0.0, h2) << QPointF(-h2, 0.0);
       setPolygon(p);
       setBrush(QBrush());
-      setSelected(n->selected());
-      setData(0, QVariant::fromValue<void*>(n));
+      setSelected(_note->selected());
+      setData(0, QVariant::fromValue<void*>(_note));
 
-      setPos(n->chord()->tick() + 480, pitch2y(pitch) + keyHeight / 4);
+      setPos(_note->chord()->tick() + 480, pitch2y(pitch) + keyHeight / 4);
       setFlag(QGraphicsItem::ItemIgnoresTransformations, true);
       }
 
diff --git a/mscore/drumview.h b/mscore/drumview.h
index 01e29c6..3f3466e 100644
--- a/mscore/drumview.h
+++ b/mscore/drumview.h
@@ -34,7 +34,7 @@ class Note;
 //---------------------------------------------------------
 
 class DrumItem : public QGraphicsPolygonItem {
-      Note* note;
+      Note* _note;
 
       virtual void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget = 0);
 
diff --git a/mscore/editstaff.cpp b/mscore/editstaff.cpp
index 5a86c9e..96cbf24 100644
--- a/mscore/editstaff.cpp
+++ b/mscore/editstaff.cpp
@@ -41,6 +41,8 @@
 
 namespace Ms {
 
+extern bool useFactorySettings;
+
 //---------------------------------------------------------
 //   EditStaff
 //---------------------------------------------------------
@@ -89,6 +91,14 @@ EditStaff::EditStaff(Staff* s, QWidget* parent)
       updateStaffType();
       updateInstrument();
 
+      if (!useFactorySettings) {
+            QSettings settings;
+            settings.beginGroup("EditStaff");
+            resize(settings.value("size", QSize(484, 184)).toSize());
+            move(settings.value("pos", QPoint(10, 10)).toPoint());
+            settings.endGroup();
+            }
+
       connect(buttonBox,            SIGNAL(clicked(QAbstractButton*)), SLOT(bboxClicked(QAbstractButton*)));
       connect(changeInstrument,     SIGNAL(clicked()),            SLOT(showInstrumentDialog()));
       connect(changeStaffType,      SIGNAL(clicked()),            SLOT(showStaffTypeDialog()));
@@ -106,6 +116,20 @@ EditStaff::EditStaff(Staff* s, QWidget* parent)
       }
 
 //---------------------------------------------------------
+//   closeEvent
+//---------------------------------------------------------
+
+void EditStaff::closeEvent(QCloseEvent* ev)
+      {
+      QSettings settings;
+      settings.beginGroup("EditStaff");
+      settings.setValue("size", size());
+      settings.setValue("pos", pos());
+      settings.endGroup();
+      QWidget::closeEvent(ev);
+      }
+
+//---------------------------------------------------------
 //   updateStaffType
 //---------------------------------------------------------
 
diff --git a/mscore/editstaff.h b/mscore/editstaff.h
index abcaac2..f5ac8c5 100644
--- a/mscore/editstaff.h
+++ b/mscore/editstaff.h
@@ -44,6 +44,7 @@ class EditStaff : public QDialog, private Ui::EditStaffBase {
       Instrument  instrument;
       int         _minPitchA, _maxPitchA, _minPitchP, _maxPitchP;
 
+      virtual void closeEvent(QCloseEvent*);
       void apply();
       void updateInterval(const Interval&);
       void updateStaffType();
diff --git a/mscore/editstyle.cpp b/mscore/editstyle.cpp
index 64fbfb9..3692924 100644
--- a/mscore/editstyle.cpp
+++ b/mscore/editstyle.cpp
@@ -45,7 +45,7 @@ EditStyle::EditStyle(Score* s, QWidget* parent)
       {
       setupUi(this);
       setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
-      cs     = s;
+      cs = s;
 
       styleWidgets = {
             { StyleIdx::staffUpperBorder,        staffUpperBorder       },
@@ -210,7 +210,7 @@ EditStyle::EditStyle(Score* s, QWidget* parent)
 
       // figured bass init
       QList<QString> fbFontNames = FiguredBass::fontNames();
-      foreach(const QString& family, fbFontNames)
+      for (const QString& family: fbFontNames)
             comboFBFont->addItem(family);
       comboFBFont->setCurrentIndex(0);
       connect(comboFBFont, SIGNAL(currentIndexChanged(int)), SLOT(on_comboFBFont_currentIndexChanged(int)));
@@ -250,11 +250,18 @@ EditStyle::EditStyle(Score* s, QWidget* parent)
             + QString("</i></td></tr><tr><td>$$</td><td>-</td><td><i>")
             + tr("the $ sign itself")
             + QString("</i></td></tr><tr><td>$:tag:</td><td>-</td><td><i>")
-            + tr("meta data tag")
+            + tr("meta data tag, see below")
             + QString("</i></td></tr></table><p>")
-            + tr("Available tags and their current values:")
+            + tr("Available meta data tags and their current values:")
             + QString("</p><table>");
-      // shown all tags for curent score, see also Score::init()
+      // show all tags for current score/part, see also Score::init()
+      if (cs->parentScore()) {
+            QMapIterator<QString, QString> j(cs->parentScore()->metaTags());
+            while (j.hasNext()) {
+                  j.next();
+                  toolTipHeaderFooter += QString("<tr><td>%1</td><td>-</td><td>%2</td></tr>").arg(j.key()).arg(j.value());
+                  }
+            }
       QMapIterator<QString, QString> i(cs->metaTags());
       while (i.hasNext()) {
             i.next();
@@ -723,7 +730,7 @@ void EditStyle::setValues()
 
       QString mfont(lstyle.value(StyleIdx::MusicalSymbolFont).toString());
       int idx = 0;
-      for (auto i : ScoreFont::scoreFonts()) {
+      for (const auto& i : ScoreFont::scoreFonts()) {
             if (i.name().toLower() == mfont.toLower()) {
                   musicalSymbolFont->setCurrentIndex(idx);
                   break;
diff --git a/mscore/exampleview.h b/mscore/exampleview.h
index e09ead8..8c0c497 100644
--- a/mscore/exampleview.h
+++ b/mscore/exampleview.h
@@ -20,7 +20,7 @@ namespace Ms {
 class Element;
 class Score;
 class Note;
-enum class Grip : char;
+enum class Grip : signed char;
 
 //---------------------------------------------------------
 //   ExampleView
diff --git a/mscore/excerptsdialog.cpp b/mscore/excerptsdialog.cpp
index cc3b0e0..fae2d30 100644
--- a/mscore/excerptsdialog.cpp
+++ b/mscore/excerptsdialog.cpp
@@ -146,21 +146,13 @@ void ExcerptsDialog::deleteClicked()
 
 QString ExcerptsDialog::createName(const QString& partName)
       {
-      QString n = partName.simplified();
-      QString name;
-      for (int i = 0;; ++i) {
-            name = i ? QString("%1-%2").arg(n).arg(i) : QString("%1").arg(n);
-            Excerpt* ee = 0;
-            int n = excerptList->count();
-            for (int k = 0; k < n; ++k) {
-                  ee = static_cast<ExcerptItem*>(excerptList->item(k))->excerpt();
-                  if (ee->title() == name)
-                        break;
-                  }
-            if ((ee == 0) || (ee->title() != name))
-                  break;
+      int count = excerptList->count();
+      QList<Excerpt*> excerpts;
+      for (int i = 0; i < count; ++i) {
+            Excerpt* ee = static_cast<ExcerptItem*>(excerptList->item(i))->excerpt();
+            excerpts.append(ee);
             }
-      return name;
+      return Excerpt::createName(partName, excerpts);
       }
 
 //---------------------------------------------------------
@@ -184,15 +176,11 @@ void ExcerptsDialog::newClicked()
 
 void ExcerptsDialog::newAllClicked()
       {
-      int n = partList->count();
+      QList<Excerpt*> excerpts = Excerpt::createAllExcerpt(score);
       ExcerptItem* ei = 0;
-      for (int i = 0; i < n; ++i) {
-            Excerpt* e   = new Excerpt(score);
-            PartItem* pi = static_cast<PartItem*>(partList->item(i));
-            e->parts().append(pi->part());
-            QString name = createName(pi->part()->partName());
-            e->setTitle(name);
-            excerptList->addItem(new ExcerptItem(e));
+      for (Excerpt* e : excerpts) {
+            ei = new ExcerptItem(e);
+            excerptList->addItem(ei);
             }
       if (ei) {
             excerptList->selectionModel()->clearSelection();
diff --git a/mscore/exportaudio.cpp b/mscore/exportaudio.cpp
index d5f3ca3..d616eb7 100644
--- a/mscore/exportaudio.cpp
+++ b/mscore/exportaudio.cpp
@@ -102,7 +102,7 @@ bool MuseScore::saveAudio(Score* score, const QString& name)
             // init instruments
             //
             foreach(Part* part, score->parts()) {
-                  InstrumentList* il = part->instruments();
+                  const InstrumentList* il = part->instruments();
                   for(auto i = il->begin(); i!= il->end(); i++) {
                         foreach(const Channel* a, i->second->channel()) {
                               a->updateInitList();
diff --git a/mscore/exportmidi.cpp b/mscore/exportmidi.cpp
index dfd91e4..c8e2e41 100644
--- a/mscore/exportmidi.cpp
+++ b/mscore/exportmidi.cpp
@@ -22,6 +22,7 @@
 #include "libmscore/text.h"
 #include "libmscore/measure.h"
 #include "libmscore/repeatlist.h"
+#include "preferences.h"
 
 namespace Ms {
 
@@ -252,19 +253,24 @@ bool ExportMidi::write(const QString& name, bool midiExpandRepeats)
 
                         if (staff->isTop()) {
                               track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_RESET_ALL_CTRL, 0));
-                              // set pitch bend sensitivity to 12 semitones:
-                              /*track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_LRPN, 0));
-                              track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_HRPN, 0));
-                              track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_HDATA, 12));
-
-                              // reset fine tuning
-                              track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_LRPN, 1));
-                              track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_HRPN, 0));
-                              track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_HDATA, 64));
-
-                              // deactivate rpn
-                              track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_LRPN, 127));
-                              track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_HRPN, 127));*/
+                              // We need this to get the correct pitch of bends
+                              // Hidden under preferences because some software
+                              // crashes when receiving RPNs: https://musescore.org/en/node/37431
+                              if (channel != 9 && preferences.midiExportRPNs) {
+                                    // set pitch bend sensitivity to 12 semitones:
+                                    track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_LRPN, 0));
+                                    track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_HRPN, 0));
+                                    track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_HDATA, 12));
+
+                                    // reset fine tuning
+                                    /*track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_LRPN, 1));
+                                    track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_HRPN, 0));
+                                    track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_HDATA, 64));*/
+
+                                    // deactivate rpn
+                                    track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_LRPN, 127));
+                                    track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_HRPN, 127));
+                              }
 
                               if (ch->program != -1)
                                     track.insert(0, MidiEvent(ME_CONTROLLER, channel, CTRL_PROGRAM, ch->program));
@@ -275,14 +281,16 @@ bool ExportMidi::write(const QString& name, bool midiExpandRepeats)
                               }
 
                         // Export port to MIDI META event
-                        MidiEvent ev;
-                        ev.setType(ME_META);
-                        ev.setMetaType(META_PORT_CHANGE);
-                        ev.setLen(1);
-                        unsigned char* data = new unsigned char[1];
-                        data[0] = int(track.outPort());
-                        ev.setEData(data);
-                        track.insert(0, ev);
+                        if (track.outPort() >= 0 && track.outPort() <= 127) {
+                              MidiEvent ev;
+                              ev.setType(ME_META);
+                              ev.setMetaType(META_PORT_CHANGE);
+                              ev.setLen(1);
+                              unsigned char* data = new unsigned char[1];
+                              data[0] = int(track.outPort());
+                              ev.setEData(data);
+                              track.insert(0, ev);
+                              }
 
                         for (auto i = events.begin(); i != events.end(); ++i) {
                               NPlayEvent event(i->second);
@@ -299,6 +307,10 @@ bool ExportMidi::write(const QString& name, bool midiExpandRepeats)
                                     track.insert(i->first, MidiEvent(ME_CONTROLLER, channel,
                                                                      event.controller(), event.value()));
                                     }
+                              else if(event.type() == ME_PITCHBEND) {
+                                    track.insert(i->first, MidiEvent(ME_PITCHBEND, channel,
+                                                                     event.dataA(), event.dataB()));
+                                    }
                               else {
                                     qDebug("writeMidi: unknown midi event 0x%02x", event.type());
                                     }
diff --git a/mscore/exportmp3.cpp b/mscore/exportmp3.cpp
index 2fac0d3..d1ebe5a 100644
--- a/mscore/exportmp3.cpp
+++ b/mscore/exportmp3.cpp
@@ -718,7 +718,7 @@ bool MuseScore::saveMp3(Score* score, const QString& name)
             // init instruments
             //
             foreach(Part* part, score->parts()) {
-                  InstrumentList* il = part->instruments();
+                  const InstrumentList* il = part->instruments();
                   for(auto i = il->begin(); i!= il->end(); i++) {
                         foreach(const Channel* a, i->second->channel()) {
                               a->updateInitList();
diff --git a/mscore/exportxml.cpp b/mscore/exportxml.cpp
index 7ba9b55..3b381eb 100644
--- a/mscore/exportxml.cpp
+++ b/mscore/exportxml.cpp
@@ -288,9 +288,9 @@ class ExportMusicXml {
       int findTrill(const Trill* tl) const;
       void chord(Chord* chord, int staff, const QList<Lyrics*>* ll, bool useDrumset);
       void rest(Rest* chord, int staff);
-      void clef(int staff, ClefType clef);
+      void clef(int staff, const Clef* clef);
       void timesig(TimeSig* tsig);
-      void keysig(const KeySigEvent ks, ClefType ct, int staff = 0, bool visible = true);
+      void keysig(const KeySig* ks, ClefType ct, int staff = 0, bool visible = true);
       void barlineLeft(Measure* m);
       void barlineRight(Measure* m);
       void lyrics(const QList<Lyrics*>* ll, const int trk);
@@ -414,6 +414,22 @@ void Technical::etag(Xml& xml)
             xml.etag();
       technicalPrinted = false;
       }
+      
+//---------------------------------------------------------
+//   color2xml
+//---------------------------------------------------------
+
+/**
+ Return \a el color.
+ */
+
+static QString color2xml(const Element* el)
+      {
+      if (el->color() != MScore::defaultColor)
+            return QString(" color=\"%1\"").arg(el->color().name().toUpper());
+      else
+            return "";
+      }
 
 //---------------------------------------------------------
 //   slurHandler
@@ -556,17 +572,20 @@ void SlurHandler::doSlurStart(const Slur* s, Notations& notations, Xml& xml)
       {
       // check if on slur list (i.e. stop already seen)
       int i = findSlur(s);
-      //define line type
-      QString rest = slurTieLineStyle(s);
+      // compose tag
+      QString tagName = "slur";
+      tagName += slurTieLineStyle(s); // define line type
+      tagName += color2xml(s);
+      tagName += QString(" type=\"start\"%1")
+                  .arg(s->slurDirection() == MScore::Direction::UP ? " placement=\"above\"" : "");
+
       if (i >= 0) {
             // remove from list and print start
             slur[i] = 0;
             started[i] = false;
             notations.tag(xml);
-            xml.tagE(QString("slur%1 type=\"start\"%2 number=\"%3\"")
-                     .arg(rest)
-                     .arg(s->slurDirection() == MScore::Direction::UP ? " placement=\"above\"" : "")
-                     .arg(i + 1));
+            tagName += QString(" number=\"%1\"").arg(i + 1);
+            xml.tagE(tagName);
             }
       else {
             // find free slot to store it
@@ -575,7 +594,8 @@ void SlurHandler::doSlurStart(const Slur* s, Notations& notations, Xml& xml)
                   slur[i] = s;
                   started[i] = true;
                   notations.tag(xml);
-                  xml.tagE(QString("slur%1 type=\"start\" number=\"%2\"").arg(rest).arg(i + 1));
+                  tagName += QString(" number=\"%1\"").arg(i + 1);
+                  xml.tagE(tagName);
                   }
             else
                   qDebug("no free slur slot");
@@ -646,8 +666,7 @@ static void glissando(const Glissando* gli, int number, bool start, Notations& n
                   break;
             }
       tagName += QString(" number=\"%1\" type=\"%2\"").arg(number).arg(start ? "start" : "stop");
-      if (gli->color() != MScore::defaultColor)
-            tagName += " color=\"" + gli->color().name().toUpper() + "\"";
+      tagName += color2xml(gli);
       notations.tag(xml);
       if (start && gli->showText() && gli->text() != "")
             xml.tag(tagName, gli->text());
@@ -1512,12 +1531,13 @@ void ExportMusicXml::timesig(TimeSig* tsig)
       QString ns = tsig->numeratorString();
 
       attr.doAttr(xml, true);
+      QString tagName = "time";
       if (st == TimeSigType::FOUR_FOUR)
-            xml.stag("time symbol=\"common\"");
+            tagName += " symbol=\"common\"";
       else if (st == TimeSigType::ALLA_BREVE)
-            xml.stag("time symbol=\"cut\"");
-      else
-            xml.stag("time");
+            tagName += " symbol=\"cut\"";
+      tagName += color2xml(tsig);
+      xml.stag(tagName);
 
       QRegExp rx("^\\d+(\\+\\d+)+$"); // matches a compound numerator
       if (rx.exactMatch(ns))
@@ -1556,23 +1576,25 @@ static double accSymId2alter(SymId id)
 //   keysig
 //---------------------------------------------------------
 
-void ExportMusicXml::keysig(const KeySigEvent kse, ClefType ct, int staff, bool visible)
+void ExportMusicXml::keysig(const KeySig* ks, ClefType ct, int staff, bool visible)
       {
       static char table2[]  = "CDEFGAB";
       int po = ClefInfo::pitchOffset(ct); // actually 7 * oct + step for topmost staff line
       //qDebug("keysig st %d key %d custom %d ct %hhd st %d", staff, kse.key(), kse.custom(), ct, staff);
       //qDebug(" pitch offset clef %d stp %d oct %d ", po, po % 7, po / 7);
 
-      QString tg = "key";
+      QString tagName = "key";
       if (staff)
-            tg += QString(" number=\"%1\"").arg(staff);
+            tagName += QString(" number=\"%1\"").arg(staff);
       if (!visible)
-            tg += " print-object=\"no\"";
+            tagName += " print-object=\"no\"";
+      tagName += color2xml(ks);
       attr.doAttr(xml, true);
-      xml.stag(tg);
+      xml.stag(tagName);
 
+      const KeySigEvent kse = ks->keySigEvent();
       const QList<KeySym> keysyms = kse.keySymbols();
-      if (kse.custom() && keysyms.size() > 0) {
+      if (kse.custom() && !kse.isAtonal() && keysyms.size() > 0) {
 
             // non-traditional key signature
             // MusicXML order is left-to-right order, while KeySims in keySymbols()
@@ -1597,10 +1619,16 @@ void ExportMusicXml::keysig(const KeySigEvent kse, ClefType ct, int staff, bool
       else {
             // traditional key signature
             xml.tag("fifths", static_cast<int>(kse.key()));
-            if (kse.custom())
-                  xml.tag("mode", "none");
+            switch (kse.mode()) {
+                  case KeyMode::NONE:     xml.tag("mode", "none"); break;
+                  case KeyMode::MAJOR:    xml.tag("mode", "major"); break;
+                  case KeyMode::MINOR:    xml.tag("mode", "minor"); break;
+                  case KeyMode::UNKNOWN:
+                  default:
+                        if (kse.custom())
+                              xml.tag("mode", "none");
+                  }
             }
-
       xml.etag();
       }
 
@@ -1608,21 +1636,24 @@ void ExportMusicXml::keysig(const KeySigEvent kse, ClefType ct, int staff, bool
 //   clef
 //---------------------------------------------------------
 
-void ExportMusicXml::clef(int staff, ClefType clef)
+void ExportMusicXml::clef(int staff, const Clef* clef)
       {
-      clefDebug("ExportMusicXml::clef(staff %d, clef %d)", staff, clef);
+      ClefType ct = clef->clefType();
+      clefDebug("ExportMusicXml::clef(staff %d, clef %d)", staff, ct);
 
-      attr.doAttr(xml, true);
+      QString tagName = "clef";
       if (staff)
-            xml.stag(QString("clef number=\"%1\"").arg(staff));
-      else
-            xml.stag("clef");
-      QString sign = ClefInfo::sign(clef);
-      int line   = ClefInfo::line(clef);
+            tagName += QString(" number=\"%1\"").arg(staff);
+      tagName += color2xml(clef);
+      attr.doAttr(xml, true);
+      xml.stag(tagName);
+
+      QString sign = ClefInfo::sign(ct);
+      int line   = ClefInfo::line(ct);
       xml.tag("sign", sign);
       xml.tag("line", line);
-      if (ClefInfo::octChng(clef))
-            xml.tag("clef-octave-change", ClefInfo::octChng(clef));
+      if (ClefInfo::octChng(ct))
+            xml.tag("clef-octave-change", ClefInfo::octChng(ct));
       xml.etag();
       }
 
@@ -1703,7 +1734,10 @@ void ExportMusicXml::wavyLineStartStop(Chord* chord, Notations& notations, Ornam
                   notations.tag(xml);
                   ornaments.tag(xml);
                   xml.tagE("trill-mark");
-                  xml.tagE(QString("wavy-line type=\"start\" number=\"%1\"").arg(n + 1));
+                  QString tagName = "wavy-line type=\"start\"";
+                  tagName += QString(" number=\"%1\"").arg(n + 1);
+                  tagName += color2xml(tr);
+                  xml.tagE(tagName);
                   trillStart.remove(chord);
                   }
             }
@@ -1768,7 +1802,11 @@ static void tremoloSingleStartStop(Chord* chord, Notations& notations, Ornaments
             if (type != "" && count > 0) {
                   notations.tag(xml);
                   ornaments.tag(xml);
-                  xml.tag(QString("tremolo type=\"%1\"").arg(type), count);
+                  QString tagName = "tremolo";
+                  tagName += QString(" type=\"%1\"").arg(type);
+                  if (type == "single" || type == "start")
+                        tagName += color2xml(tr);
+                  xml.tag(tagName, count);
                   }
             }
       }
@@ -1790,16 +1828,18 @@ void ExportMusicXml::chordAttributes(Chord* chord, Notations& notations, Technic
                 || at == ArticulationType::Longfermata
                 || at == ArticulationType::Verylongfermata) {
                   notations.tag(xml);
-                  QString type = a->up() ? "upright" : "inverted";
+                  QString tagName = "fermata";
+                  tagName += QString(" type=\"%1\"").arg(a->up() ? "upright" : "inverted");
+                  tagName += color2xml(a);
                   if (at == ArticulationType::Fermata)
-                        xml.tagE(QString("fermata type=\"%1\"").arg(type));
+                        xml.tagE(tagName);
                   else if (at == ArticulationType::Shortfermata)
-                        xml.tag(QString("fermata type=\"%1\"").arg(type), "angled");
+                        xml.tag(tagName, "angled");
                   // MusicXML does not support the very long fermata,
                   // export as long fermata (better than not exporting at all)
                   else if (at == ArticulationType::Longfermata
                            || at == ArticulationType::Verylongfermata)
-                        xml.tag(QString("fermata type=\"%1\"").arg(type), "square");
+                        xml.tag(tagName, "square");
                   }
             }
 
@@ -2362,10 +2402,10 @@ void ExportMusicXml::chord(Chord* chord, int staff, const QList<Lyrics*>* ll, bo
             double alter2 = 0.0;
             if (acc) {
                   switch (acc->accidentalType()) {
-                        case Accidental::Type::MIRRORED_FLAT:  alter2 = -0.5; break;
-                        case Accidental::Type::SHARP_SLASH:    alter2 = 0.5;  break;
-                        case Accidental::Type::MIRRORED_FLAT2: alter2 = -1.5; break;
-                        case Accidental::Type::SHARP_SLASH4:   alter2 = 1.5;  break;
+                        case AccidentalType::MIRRORED_FLAT:  alter2 = -0.5; break;
+                        case AccidentalType::SHARP_SLASH:    alter2 = 0.5;  break;
+                        case AccidentalType::MIRRORED_FLAT2: alter2 = -1.5; break;
+                        case AccidentalType::SHARP_SLASH4:   alter2 = 1.5;  break;
                         default:                                             break;
                         }
                   }
@@ -2477,9 +2517,7 @@ void ExportMusicXml::chord(Chord* chord, int staff, const QList<Lyrics*>* ll, bo
                   }
 
             QString noteheadTagname = QString("notehead");
-            QColor noteheadColor = note->color();
-            if (noteheadColor != MScore::defaultColor)
-                  noteheadTagname += " color=\"" + noteheadColor.name().toUpper() + "\"";
+            noteheadTagname += color2xml(note);
             bool leftParenthesis, rightParenthesis = false;
             for (Element* elem : note->el()) {
                   if (elem->type() == Element::Type::SYMBOL) {
@@ -2516,7 +2554,7 @@ void ExportMusicXml::chord(Chord* chord, int staff, const QList<Lyrics*>* ll, bo
                   xml.tag(noteheadTagname, "ti");
             else if (note->headGroup() == NoteHead::Group::HEAD_SOL)
                   xml.tag(noteheadTagname, "so");
-            else if (noteheadColor != MScore::defaultColor)
+            else if (note->color() != MScore::defaultColor)
                   xml.tag(noteheadTagname, "normal");
             else if (rightParenthesis && leftParenthesis)
                   xml.tag(noteheadTagname, "normal");
@@ -3518,12 +3556,17 @@ void ExportMusicXml::lyrics(const QList<Lyrics*>* ll, const int trk)
                         // write formatted
                         MScoreTextToMXML mttm("text", attr, defFmt, mtf);
                         mttm.writeTextFragments(l->fragmentList(), xml);
+#if 0
                         /*
                          Temporarily disabled because it doesn't work yet (and thus breaks the regression test).
                          See MusicXml::xmlLyric: "// TODO-WS      l->setTick(tick);"
                         if((l)->endTick() > 0)
                               xml.tagE("extend");
                         */
+#else
+                        if (l->ticks())
+                              xml.tagE("extend");
+#endif
                         xml.etag();
                         }
                   }
@@ -4124,20 +4167,23 @@ void ExportMusicXml::keysigTimesig(const Measure* m, const Part* p)
             //qDebug(" singleKey %d", singleKey);
             if (singleKey) {
                   // keysig applies to all staves
-                  keysig(keysigs.value(0)->keySigEvent(), p->staff(0)->clef(m->tick()), 0, keysigs.value(0)->visible());
+                  keysig(keysigs.value(0), p->staff(0)->clef(m->tick()), 0, keysigs.value(0)->visible());
                   }
             else {
                   // staff-specific keysigs
                   foreach(int st, keysigs.keys())
-                  keysig(keysigs.value(st)->keySigEvent(), p->staff(st)->clef(m->tick()), st + 1, keysigs.value(st)->visible());
+                  keysig(keysigs.value(st), p->staff(st)->clef(m->tick()), st + 1, keysigs.value(st)->visible());
                   }
             }
       else {
             // always write a keysig at tick = 0
             if (m->tick() == 0) {
-                  KeySigEvent kse;
-                  kse.setKey(Key::C);
-                  keysig(kse, p->staff(0)->clef(m->tick()));
+                  //KeySigEvent kse;
+                  //kse.setKey(Key::C);
+                  KeySig* ks = new KeySig(_score);
+                  ks->setKey(Key::C);
+                  keysig(ks, p->staff(0)->clef(m->tick()));
+                  delete ks;
                   }
             }
 
@@ -4410,7 +4456,9 @@ void ExportMusicXml::write(QIODevice* dev)
                         if (di.notehead != NoteHead::Group::HEAD_INVALID)
                               scoreInstrument(xml, idx + 1, i + 1, di.name);
                         }
-                  xml.tag(QString("midi-device port=\"%1\"").arg(part->midiPort() + 1), "");
+                  int midiPort = part->midiPort() + 1;
+                  if (midiPort >= 1 && midiPort <= 16)
+                        xml.tag(QString("midi-device port=\"%1\"").arg(midiPort), "");
 
                   for (int i = 0; i < 128; ++i) {
                         DrumInstrument di = drumset->drum(i);
@@ -4424,8 +4472,15 @@ void ExportMusicXml::write(QIODevice* dev)
                   foreach(int instNr, rim.keys()) {
                         scoreInstrument(xml, idx + 1, instNr + 1, MScoreTextToMXML::toPlainText(rim.value(instNr)->trackName()));
                         }
-                  foreach(int instNr, rim.keys()) {
-                        xml.tag(QString("midi-device %1 port=\"%2\"").arg(instrId(idx+1, instNr + 1)).arg(part->midiPort() + 1), "");
+                  for (auto ii = rim.constBegin(); ii != rim.constEnd(); ii++) {
+                        int instNr = ii.key();
+                        int midiPort = part->midiPort() + 1;
+                        if (ii.value()->channel().size() > 0)
+                              midiPort = score()->midiMapping(ii.value()->channel(0)->channel)->port + 1;
+                        if (midiPort >= 1 && midiPort <= 16)
+                              xml.tag(QString("midi-device %1 port=\"%2\"").arg(instrId(idx+1, instNr + 1)).arg(midiPort), "");
+                        else
+                              xml.tag(QString("midi-device %1").arg(instrId(idx+1, instNr + 1)), "");
                         midiInstrument(xml, idx + 1, instNr + 1, rim.value(instNr), _score);
                         }
                   }
@@ -4666,13 +4721,12 @@ void ExportMusicXml::write(QIODevice* dev)
 
                                     Clef* cle = static_cast<Clef*>(seg->element(st));
                                     if (cle) {
-                                          ClefType ct = cle->clefType();
-                                          clefDebug("exportxml: clef at start measure ti=%d ct=%d gen=%d", tick, int(ct), cle->generated());
+                                          clefDebug("exportxml: clef at start measure ti=%d ct=%d gen=%d", tick, int(cle->clefType()), cle->generated());
                                           // output only clef changes, not generated clefs at line beginning
                                           // exception: at tick=0, export clef anyway
                                           if (tick == 0 || !cle->generated()) {
                                                 clefDebug("exportxml: clef exported");
-                                                clef(sstaff, ct);
+                                                clef(sstaff, cle);
                                                 }
                                           else {
                                                 clefDebug("exportxml: clef not exported");
@@ -4792,15 +4846,15 @@ void ExportMusicXml::write(QIODevice* dev)
                                           // these have already been output
                                           // also ignore clefs at the end of a measure
                                           //
-                                          ClefType ct = ((Clef*)el)->clefType();
+                                          Clef* cle = static_cast<Clef*>(el);
                                           int ti = seg->tick();
-                                          clefDebug("exportxml: clef in measure ti=%d ct=%d gen=%d", ti, ct, el->generated());
+                                          clefDebug("exportxml: clef in measure ti=%d ct=%d gen=%d", ti, int(cle->clefType()), el->generated());
                                           if (el->generated()) {
                                                 clefDebug("exportxml: generated clef not exported");
                                                 break;
                                                 }
                                           if (!el->generated() && ti != m->tick() && ti != m->endTick())
-                                                clef(sstaff, ct);
+                                                clef(sstaff, cle);
                                           else {
                                                 clefDebug("exportxml: clef not exported");
                                                 }
@@ -4997,10 +5051,11 @@ void ExportMusicXml::harmony(Harmony const* const h, FretDiagram const* const fd
       //      }
       int rootTpc = h->rootTpc();
       if (rootTpc != Tpc::TPC_INVALID) {
-            if (h->textStyle().hasFrame())
-                  xml.stag(QString("harmony print-frame=\"yes\""));     // .append(relative));
-            else
-                  xml.stag(QString("harmony print-frame=\"no\""));      // .append(relative));
+            QString tagName = "harmony";
+            bool frame = h->textStyle().hasFrame();
+            tagName += QString(" print-frame=\"%1\"").arg(frame ? "yes" : "no"); // .append(relative));
+            tagName += color2xml(h);
+            xml.stag(tagName);
             xml.stag("root");
             xml.tag("root-step", tpc2stepName(rootTpc));
             int alter = int(tpc2alter(rootTpc));
diff --git a/mscore/file.cpp b/mscore/file.cpp
index ca31b04..c9f7de7 100644
--- a/mscore/file.cpp
+++ b/mscore/file.cpp
@@ -163,6 +163,7 @@ static bool readScoreError(const QString& name, Score::FileError error, bool ask
                   return false;
             case Score::FileError::FILE_BAD_FORMAT:
                   msg +=  QObject::tr("bad format");
+                  detailedMsg = MScore::lastError;
                   break;
             case Score::FileError::FILE_UNKNOWN_TYPE:
                   msg += QObject::tr("unknown type");
@@ -200,20 +201,25 @@ static bool readScoreError(const QString& name, Score::FileError error, bool ask
             fprintf(stderr, "%s\n", qPrintable(msg));
             return rv;
             }
+      QMessageBox msgBox;
+      msgBox.setWindowTitle(QObject::tr("MuseScore: Load Error"));
+      msgBox.setText(msg);
+      msgBox.setDetailedText(detailedMsg);
+      msgBox.setTextFormat(Qt::RichText);
       if (canIgnore && ask)  {
-            QMessageBox msgBox;
-            msgBox.setWindowTitle(QObject::tr("MuseScore: Load Error"));
-            msgBox.setText(msg);
-            msgBox.setDetailedText(detailedMsg);
-            msgBox.setTextFormat(Qt::RichText);
             msgBox.setIcon(QMessageBox::Warning);
             msgBox.setStandardButtons(
                QMessageBox::Cancel | QMessageBox::Ignore
                );
             return msgBox.exec() == QMessageBox::Ignore;
             }
-      else
-            QMessageBox::critical(0, QObject::tr("MuseScore: Load Error"), msg);
+      else {
+            msgBox.setIcon(QMessageBox::Critical);
+            msgBox.setStandardButtons(
+               QMessageBox::Ok
+               );
+            msgBox.exec();
+            }
       return rv;
       }
 
@@ -392,11 +398,7 @@ bool MuseScore::saveFile(Score* score)
             if (QFileInfo(fname).suffix().isEmpty())
                   fname += ".mscz";
 
-            fn = mscore->getSaveScoreName(
-               tr("MuseScore: Save Score"),
-               fname,
-               filter
-               );
+            fn = mscore->getSaveScoreName(tr("MuseScore: Save Score"), fname, filter);
             if (fn.isEmpty())
                   return false;
             score->fileInfo()->setFile(fn);
@@ -602,12 +604,12 @@ void MuseScore::newFile()
                                     // transpose key
                                     //
                                     KeySigEvent nKey = ks;
-                                    if (!nKey.custom() && part->instrument()->transpose().chromatic && !score->styleB(StyleIdx::concertPitch)) {
+                                    if (!nKey.custom() && !nKey.isAtonal() && part->instrument()->transpose().chromatic && !score->styleB(StyleIdx::concertPitch)) {
                                           int diff = -part->instrument()->transpose().chromatic;
                                           nKey.setKey(transposeKey(nKey.key(), diff));
                                           }
-                                    // do not create empty, invisible keysig
-                                    if (nKey.custom() || nKey.key() != Key::C) {
+                                    // do not create empty keysig unless custom or atonal
+                                    if (nKey.custom() || nKey.isAtonal() || nKey.key() != Key::C) {
                                           staff->setKey(0, nKey);
                                           KeySig* keysig = new KeySig(score);
                                           keysig->setTrack(staffIdx * VOICES);
@@ -617,13 +619,18 @@ void MuseScore::newFile()
                                           }
                                     }
                               }
+
+                        // determined if this staff is linked to previous so we can reuse rests
+                        bool linkedToPrevious = staffIdx && staff->isLinked(_score->staff(staffIdx - 1));
                         if (measure->timesig() != measure->len()) {
+                              if (!linkedToPrevious)
+                                    puRests.clear();
                               QList<TDuration> dList = toDurationList(measure->len(), false);
                               if (!dList.isEmpty()) {
                                     int ltick = tick;
                                     int k = 0;
                                     foreach (TDuration d, dList) {
-                                          if (k < puRests.count() && staff->linkedStaves())
+                                          if (k < puRests.count())
                                                 rest = static_cast<Rest*>(puRests[k]->linkedClone());
                                           else {
                                                 rest = new Rest(score, d);
@@ -638,11 +645,9 @@ void MuseScore::newFile()
                                           k++;
                                           }
                                     }
-                              if (!staff->linkedStaves())
-                                    puRests.clear();
                               }
                         else {
-                              if (rest && staff->linkedStaves())
+                              if (linkedToPrevious && rest)
                                     rest = static_cast<Rest*>(rest->linkedClone());
                               else
                                     rest = new Rest(score, TDuration(TDuration::DurationType::V_MEASURE));
@@ -651,8 +656,6 @@ void MuseScore::newFile()
                               rest->setTrack(staffIdx * VOICES);
                               Segment* seg = measure->getSegment(rest, tick);
                               seg->add(rest);
-                              if (!staff->linkedStaves())
-                                    rest = nullptr;
                               }
                         }
                   }
@@ -726,7 +729,7 @@ void MuseScore::newFile()
       if (newWizard->createTempo()) {
             double tempo = newWizard->tempo();
             TempoText* tt = new TempoText(score);
-            tt->setXmlText(QString("<sym>unicodeNoteQuarterUp</sym> = %1").arg(tempo));
+            tt->setXmlText(QString("<sym>metNoteQuarterUp</sym> = %1").arg(tempo));
             tempo /= 60;      // bpm -> bps
 
             tt->setTempo(tempo);
@@ -1213,10 +1216,11 @@ QString MuseScore::getFotoFilename(QString& filter, QString* selectedFilter)
 //   getPaletteFilename
 //---------------------------------------------------------
 
-QString MuseScore::getPaletteFilename(bool open)
+QString MuseScore::getPaletteFilename(bool open, const QString& name)
       {
       QString title;
       QString filter;
+      QString wd      = QString("%1/%2").arg(QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation)).arg(QCoreApplication::applicationName());
       if (open) {
             title  = tr("MuseScore: Load Palette");
             filter = tr("MuseScore Palette (*.mpal)");
@@ -1224,16 +1228,17 @@ QString MuseScore::getPaletteFilename(bool open)
       else {
             title  = tr("MuseScore: Save Palette");
             filter = tr("MuseScore Palette (*.mpal)");
-
-            // create dataPath/profiles if it does not exist
-            QDir dir;
-            dir.mkpath(dataPath);
-            QString path = dataPath + "/profiles";
-            dir.mkpath(path);
             }
 
-      QFileInfo myPalettes(dataPath + "/profiles");
+      QFileInfo myPalettes(wd);
       QString defaultPath = myPalettes.absoluteFilePath();
+      if (!name.isEmpty()) {
+            QString fname = createDefaultFileName(name);
+            QFileInfo myName(fname);
+            if (myName.isRelative())
+                  myName.setFile(defaultPath, fname);
+            defaultPath = myName.absoluteFilePath();
+            }
 
       if (preferences.nativeDialogs) {
             QString fn;
@@ -1541,7 +1546,9 @@ void MuseScore::exportFile()
       fl.append(tr("FLAC Audio (*.flac)"));
       fl.append(tr("Ogg Vorbis Audio (*.ogg)"));
 #endif
+#ifdef USE_LAME
       fl.append(tr("MP3 Audio (*.mp3)"));
+#endif
       fl.append(tr("Standard MIDI File (*.mid)"));
       fl.append(tr("MusicXML File (*.xml)"));
       fl.append(tr("Compressed MusicXML File (*.mxl)"));
@@ -1556,9 +1563,15 @@ void MuseScore::exportFile()
             lastSaveDirectory = settings.value("lastSaveDirectory", preferences.myScoresPath).toString();
       QString saveDirectory = lastSaveCopyDirectory;
 
-      if (saveDirectory.isEmpty()) {
+      if (saveDirectory.isEmpty())
             saveDirectory = preferences.myScoresPath;
-            }
+
+      if (lastSaveCopyFormat.isEmpty())
+            lastSaveCopyFormat = settings.value("lastSaveCopyFormat", "pdf").toString();
+      QString saveFormat = lastSaveCopyFormat;
+
+      if (saveFormat.isEmpty())
+            saveFormat = "pdf";
 
       QString name;
 #ifdef Q_OS_WIN
@@ -1571,10 +1584,13 @@ void MuseScore::exportFile()
       else
 #endif
       if (cs->parentScore())
-            name = QString("%1/%2-%3.pdf").arg(saveDirectory).arg(cs->parentScore()->name()).arg(createDefaultFileName(cs->name()));
+            name = QString("%1/%2-%3.%4").arg(saveDirectory).arg(cs->parentScore()->name()).arg(createDefaultFileName(cs->name())).arg(saveFormat);
       else
-            name = QString("%1/%2.pdf").arg(saveDirectory).arg(cs->name());
+            name = QString("%1/%2.%3").arg(saveDirectory).arg(cs->name()).arg(saveFormat);
 
+      int idx = fl.indexOf(QRegExp(".+\\(\\*\\." + saveFormat + "\\)"), Qt::CaseInsensitive);
+      if (idx != -1)
+            fl.move(idx, 0);
       QString filter = fl.join(";;");
       QString fn = getSaveScoreName(saveDialogTitle, name, filter);
       if (fn.isEmpty())
@@ -1582,6 +1598,7 @@ void MuseScore::exportFile()
 
       QFileInfo fi(fn);
       lastSaveCopyDirectory = fi.absolutePath();
+      lastSaveCopyFormat = fi.suffix();
 
       if (fi.suffix().isEmpty())
             QMessageBox::critical(this, tr("MuseScore: Export"), tr("Cannot determine file type"));
@@ -1605,7 +1622,9 @@ bool MuseScore::exportParts()
       fl.append(tr("FLAC Audio (*.flac)"));
       fl.append(tr("Ogg Vorbis Audio (*.ogg)"));
 #endif
+#ifdef USE_LAME
       fl.append(tr("MP3 Audio (*.mp3)"));
+#endif
       fl.append(tr("Standard MIDI File (*.mid)"));
       fl.append(tr("MusicXML File (*.xml)"));
       fl.append(tr("Compressed MusicXML File (*.mxl)"));
@@ -1625,6 +1644,16 @@ bool MuseScore::exportParts()
           saveDirectory = preferences.myScoresPath;
           }
 
+      if (saveDirectory.isEmpty())
+            saveDirectory = preferences.myScoresPath;
+
+      if (lastSaveCopyFormat.isEmpty())
+            lastSaveCopyFormat = settings.value("lastSaveCopyFormat", "pdf").toString();
+      QString saveFormat = lastSaveCopyFormat;
+
+      if (saveFormat.isEmpty())
+            saveFormat = "pdf";
+
       QString scoreName = cs->parentScore() ? cs->parentScore()->name() : cs->name();
       QString name;
 #ifdef Q_OS_WIN
@@ -1632,8 +1661,11 @@ bool MuseScore::exportParts()
             name = QString("%1/%2").arg(saveDirectory).arg(scoreName);
       else
 #endif
-      name = QString("%1/%2.pdf").arg(saveDirectory).arg(scoreName);
+      name = QString("%1/%2.%3").arg(saveDirectory).arg(scoreName).arg(saveFormat);
 
+      int idx = fl.indexOf(QRegExp(".+\\(\\*\\." + saveFormat + "\\)"), Qt::CaseInsensitive);
+      if (idx != -1)
+            fl.move(idx, 0);
       QString filter = fl.join(";;");
       QString fn = getSaveScoreName(saveDialogTitle, name, filter);
       if (fn.isEmpty())
@@ -1641,6 +1673,7 @@ bool MuseScore::exportParts()
 
       QFileInfo fi(fn);
       lastSaveCopyDirectory = fi.absolutePath();
+      lastSaveCopyFormat = fi.suffix();
 
       QString ext = fi.suffix();
       if (ext.isEmpty()) {
@@ -1801,13 +1834,25 @@ bool MuseScore::saveAs(Score* cs, bool saveCopy, const QString& path, const QStr
       else if (ext == "wav" || ext == "flac" || ext == "ogg")
             rv = saveAudio(cs, fn);
 #endif
+#ifdef USE_LAME
       else if (ext == "mp3")
             rv = saveMp3(cs, fn);
+#endif
       else if (ext == "spos") {
+            if (layoutMode != LayoutMode::PAGE) {
+                  cs->startCmd();
+                  cs->undo(new ChangeLayoutMode(cs, LayoutMode::PAGE));
+                  cs->doLayout();
+                  }
             // save positions of segments
             rv = savePositions(cs, fn, true);
             }
       else if (ext == "mpos") {
+            if (layoutMode != LayoutMode::PAGE) {
+                  cs->startCmd();
+                  cs->undo(new ChangeLayoutMode(cs, LayoutMode::PAGE));
+                  cs->doLayout();
+                  }
             // save positions of measures
             rv = savePositions(cs, fn, false);
             }
@@ -1848,19 +1893,16 @@ bool MuseScore::savePdf(const QString& saveName)
 bool MuseScore::savePdf(Score* cs, const QString& saveName)
       {
       cs->setPrinting(true);
-      QPrinter printerDev(QPrinter::HighResolution);
+      MScore::pdfPrinting = true;
+      QPdfWriter printerDev(saveName);
+      printerDev.setResolution(preferences.exportPdfDpi);
       const PageFormat* pf = cs->pageFormat();
-      printerDev.setPaperSize(pf->size(), QPrinter::Inch);
+      printerDev.setPageSize(QPageSize(pf->size(), QPageSize::Inch));
 
       printerDev.setCreator("MuseScore Version: " VERSION);
-      printerDev.setFullPage(true);
       if (!printerDev.setPageMargins(QMarginsF()))
             qDebug("unable to clear printer margins");
-      printerDev.setColorMode(QPrinter::Color);
-      printerDev.setDocName(cs->name());
-      printerDev.setOutputFormat(QPrinter::PdfFormat);
-
-      printerDev.setOutputFileName(saveName);
+      printerDev.setTitle(cs->name());
 
       QPainter p;
       if (!p.begin(&printerDev))
@@ -1872,28 +1914,16 @@ bool MuseScore::savePdf(Score* cs, const QString& saveName)
 
       const QList<Page*> pl = cs->pages();
       int pages    = pl.size();
-      int offset   = cs->pageNumberOffset();
-      int fromPage = printerDev.fromPage() - 1 - offset;
-      int toPage   = printerDev.toPage() - 1 - offset;
-      if (fromPage < 0)
-            fromPage = 0;
-      if ((toPage < 0) || (toPage >= pages))
-            toPage = pages - 1;
-
-      for (int copy = 0; copy < printerDev.numCopies(); ++copy) {
-            bool firstPage = true;
-            for (int n = fromPage; n <= toPage; ++n) {
-                  if (!firstPage)
-                        printerDev.newPage();
-                  firstPage = false;
-
-                  cs->print(&p, n);
-                  if ((copy + 1) < printerDev.numCopies())
-                        printerDev.newPage();
-                  }
+      bool firstPage = true;
+      for (int n = 0; n < pages; ++n) {
+            if (!firstPage)
+                  printerDev.newPage();
+            firstPage = false;
+            cs->print(&p, n);
             }
       p.end();
       cs->setPrinting(false);
+      MScore::pdfPrinting = false;
       return true;
       }
 
@@ -1926,13 +1956,6 @@ bool MuseScore::savePdf(QList<Score*> cs, const QString& saveName)
       double mag = printerDev.logicalDpiX() / MScore::DPI;
       p.scale(mag, mag);
 
-      //
-      // start pageOffset with configured offset of
-      // first score
-      //
-      int pageOffset = 0;
-      if (firstScore)
-            pageOffset = firstScore->pageNumberOffset();
       bool firstPage = true;
       for (Score* s : cs) {
             LayoutMode layoutMode = s->layoutMode();
@@ -1942,14 +1965,7 @@ bool MuseScore::savePdf(QList<Score*> cs, const QString& saveName)
                   s->doLayout();
                   }
             s->setPrinting(true);
-            //
-            // here we ignore the configured page offset
-            //
-            int oldPageOffset = s->pageNumberOffset();
-            s->setPageNumberOffset(pageOffset);
-            bool oldFirstPageNumber = s->style(StyleIdx::footerFirstPage).toBool();
-            s->style()->set(StyleIdx::footerFirstPage, true);
-            s->doLayout();
+            MScore::pdfPrinting = true;
 
             const PageFormat* pf = s->pageFormat();
             printerDev.setPaperSize(pf->size(), QPrinter::Inch);
@@ -1962,13 +1978,10 @@ bool MuseScore::savePdf(QList<Score*> cs, const QString& saveName)
                   firstPage = false;
                   s->print(&p, n);
                   }
-            pageOffset += pages;
-
             //reset score
             s->setPrinting(false);
-            s->setPageNumberOffset(oldPageOffset);
-            s->style()->set(StyleIdx::footerFirstPage, oldFirstPageNumber);
-            s->doLayout();
+            MScore::pdfPrinting = false;
+
             if (layoutMode != s->layoutMode())
                   s->endCmd(true);       // rollback
             }
@@ -2534,6 +2547,7 @@ bool MuseScore::saveSvg(Score* score, const QString& saveName)
       printer.setViewBox(QRectF(0.0, 0.0, w * mag, h * mag));
 
       score->setPrinting(true);
+      MScore::pdfPrinting = true;
 
       QPainter p(&printer);
       p.setRenderHint(QPainter::Antialiasing, true);
@@ -2550,6 +2564,7 @@ bool MuseScore::saveSvg(Score* score, const QString& saveName)
             }
 
       score->setPrinting(false);
+      MScore::pdfPrinting = false;
       p.end();
       return true;
       }
diff --git a/mscore/importgtp.cpp b/mscore/importgtp.cpp
index e29ee01..b991938 100644
--- a/mscore/importgtp.cpp
+++ b/mscore/importgtp.cpp
@@ -1028,7 +1028,7 @@ void GuitarPro::setTempo(int tempo, Measure* measure)
       {
       TempoText* tt = new TempoText(score);
       tt->setTempo(double(tempo)/60.0);
-      tt->setXmlText(QString("<sym>unicodeNoteQuarterUp</sym> = %1").arg(tempo));
+      tt->setXmlText(QString("<sym>metNoteQuarterUp</sym> = %1").arg(tempo));
 
       tt->setTrack(0);
       Segment* segment = measure->getSegment(Segment::Type::ChordRest, measure->tick());
@@ -1126,7 +1126,7 @@ void GuitarPro::createSlur(bool hasSlur, int staffIdx, ChordRest* cr)
       }
 
 //---------------------------------------------------------
-//   createSlur
+//   createOttava
 //---------------------------------------------------------
 
 void GuitarPro::createOttava(bool hasOttava, int track, ChordRest* cr, QString value)
@@ -2143,6 +2143,10 @@ void GuitarPro3::read(QFile* fp)
             }
       }
 
+//---------------------------------------------------------
+//   readBeatEffects
+//---------------------------------------------------------
+
 int GuitarPro3::readBeatEffects(int track, Segment* segment)
       {
       int effects = 0;
@@ -2394,10 +2398,13 @@ Score::FileError importGTP(Score* score, const QString& name)
                   p->setStaves(2);
                   Staff* s1 = p->staff(1);
 
-                  StaffType st = *StaffType::preset(StaffTypes::TAB_DEFAULT);
-                  st.setSlashStyle(true);
+                  int lines = staff->part()->instrument()->stringData()->strings();
+                  StaffTypes sts = StaffTypes::TAB_DEFAULT;
+                  if (lines == 4)
+                        sts = StaffTypes::TAB_4COMMON;
+                  StaffType st = *StaffType::preset(sts);
                   s1->setStaffType(&st);
-                  s1->setLines(staff->part()->instrument()->stringData()->strings());
+                  s1->setLines(lines);
                   cloneStaff(s,s1);
                   p->staves()->front()->addBracket(BracketItem(BracketType::NORMAL, 2));
                   }
@@ -2410,12 +2417,6 @@ Score::FileError importGTP(Score* score, const QString& name)
             excerpt->parts().append(part);
             score->excerpts().append(excerpt);
 
-            if (staff->part()->instrument()->stringData()->strings() > 0 && part->staves()->front()->staffType()->group() == StaffGroup::STANDARD) {
-                  Staff* staff2 = pscore->staff(1);
-                  staff2->setStaffType(StaffType::preset(StaffTypes::TAB_DEFAULT));
-                  staff2->setLines(staff->part()->instrument()->stringData()->strings());
-            }
-
             //
             // create excerpt title
             //
diff --git a/mscore/importmidi/importmidi_lyrics.cpp b/mscore/importmidi/importmidi_lyrics.cpp
index 7b308de..3716049 100644
--- a/mscore/importmidi/importmidi_lyrics.cpp
+++ b/mscore/importmidi/importmidi_lyrics.cpp
@@ -135,26 +135,28 @@ BestTrack findBestTrack(
       return bestTrack;
       }
 
-void addTitle(Score *score, const QString &string, int *textCounter)
+bool isTitlePrefix(const QString &text)
       {
-      if (string.left(TEXT_PREFIX.size()) == QString::fromStdString(TEXT_PREFIX)) {
-            ++*textCounter;
-            Text* text = new Text(score);
-            if (*textCounter == 1)
-                  text->setTextStyleType(TextStyleType::TITLE);
-            else if (*textCounter == 2)
-                  text->setTextStyleType(TextStyleType::COMPOSER);
-            text->setPlainText(string.right(string.size() - TEXT_PREFIX.size()));
-
-            MeasureBase* measure = score->first();
-            if (measure->type() != Element::Type::VBOX) {
-                  measure = new VBox(score);
-                  measure->setTick(0);
-                  measure->setNext(score->first());
-                  score->measures()->add(measure);
-                  }
-            measure->add(text);
+      return (text.left(TEXT_PREFIX.size()) == QString::fromStdString(TEXT_PREFIX));
+      }
+
+void addTitleToScore(Score *score, const QString &string, int textCounter)
+      {
+      Text* text = new Text(score);
+      if (textCounter == 1)
+            text->setTextStyleType(TextStyleType::TITLE);
+      else if (textCounter == 2)
+            text->setTextStyleType(TextStyleType::COMPOSER);
+      text->setPlainText(string.right(string.size() - TEXT_PREFIX.size()));
+
+      MeasureBase* measure = score->first();
+      if (measure->type() != Element::Type::VBOX) {
+            measure = new VBox(score);
+            measure->setTick(0);
+            measure->setNext(score->first());
+            score->measures()->add(measure);
             }
+      measure->add(text);
       }
 
 // remove slashes in kar format
@@ -176,19 +178,31 @@ std::string removeSlashes(const std::string &text)
       return str;
       }
 
-void addLyricsToScore(
-            const std::multimap<ReducedFraction, std::string> &lyricTrack,
-            const std::vector<std::pair<ReducedFraction, ReducedFraction>> &matchedLyricTimes,
-            const Staff *staffAddTo)
+void addTitleIfAny(const std::multimap<ReducedFraction, std::string> &lyricTrack, Score *score)
       {
-      Score *score = staffAddTo->score();
       int textCounter = 0;
       for (const auto &lyric: lyricTrack) {
             if (lyric.first == ReducedFraction(0, 1)) {
                   QString text = MidiCharset::convertToCharset(lyric.second);
-                  addTitle(score, text, &textCounter);
+                  if (isTitlePrefix(text)) {
+                        ++textCounter;
+                        addTitleToScore(score, text, textCounter);
+                        }
+                  }
+            else if (lyric.first > ReducedFraction(0, 1)) {
+                  break;
                   }
             }
+      }
+
+void addLyricsToScore(
+            const std::multimap<ReducedFraction, std::string> &lyricTrack,
+            const std::vector<std::pair<ReducedFraction, ReducedFraction>> &matchedLyricTimes,
+            const Staff *staffAddTo)
+      {
+      Score *score = staffAddTo->score();
+
+      addTitleIfAny(lyricTrack, score);
 
       for (const auto &timePair: matchedLyricTimes) {
             const auto quantizedTime = timePair.first;
@@ -198,9 +212,10 @@ void addLyricsToScore(
             Q_ASSERT_X(it != lyricTrack.end(),
                        "MidiLyrics::addLyricsToScore", "Lyric time not found");
 
-            if (originalTime != ReducedFraction(0, 1)) {     // not title
-                  QString text = MidiCharset::convertToCharset(it->second);
-                  score->addLyrics(quantizedTime.ticks(), staffAddTo->idx(), removeSlashes(text));
+            QString text = MidiCharset::convertToCharset(it->second);
+            if (originalTime != ReducedFraction(0, 1) || !isTitlePrefix(text)) { // not title
+                  score->addLyrics(quantizedTime.ticks(), staffAddTo->idx(),
+                                   removeSlashes(text));
                   }
             }
       }
diff --git a/mscore/importmidi/importmidi_tempo.cpp b/mscore/importmidi/importmidi_tempo.cpp
index 2c05efd..b924011 100644
--- a/mscore/importmidi/importmidi_tempo.cpp
+++ b/mscore/importmidi/importmidi_tempo.cpp
@@ -55,7 +55,7 @@ void setTempoToScore(Score *score, int tick, double beatsPerSecond)
 
             TempoText *tempoText = new TempoText(score);
             tempoText->setTempo(beatsPerSecond);
-            tempoText->setXmlText(QString("<sym>unicodeNoteQuarterUp</sym> = %1").arg(tempoInBpm));
+            tempoText->setXmlText(QString("<sym>metNoteQuarterUp</sym> = %1").arg(tempoInBpm));
             tempoText->setTrack(0);
 
             Measure *measure = score->tick2measure(tick);
diff --git a/mscore/importmxml.cpp b/mscore/importmxml.cpp
new file mode 100644
index 0000000..fbc07a0
--- /dev/null
+++ b/mscore/importmxml.cpp
@@ -0,0 +1,53 @@
+//=============================================================================
+//  MuseScore
+//  Linux Music Score Editor
+//
+//  Copyright (C) 2015 Werner Schweer and others
+//
+//  This program is free software; you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License version 2.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, write to the Free Software
+//  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+//=============================================================================
+
+#include "libmscore/box.h"
+#include "libmscore/measure.h"
+#include "libmscore/page.h"
+#include "libmscore/part.h"
+#include "libmscore/staff.h"
+#include "libmscore/sym.h"
+#include "libmscore/symbol.h"
+
+#include "importmxml.h"
+#include "importmxmlpass1.h"
+#include "importmxmlpass2.h"
+#include "preferences.h"
+
+namespace Ms {
+
+Score::FileError importMusicXMLfromBuffer(Score* score, const QString& name, QIODevice* dev)
+      {
+      qDebug("importMusicXMLfromBuffer(score %p, name '%s', dev %p)",
+             score, qPrintable(name), dev);
+
+      // pass 1
+      dev->seek(0);
+      MusicXMLParserPass1 pass1(score);
+      Score::FileError res = pass1.parse(dev);
+      if (res != Score::FileError::FILE_NO_ERROR)
+            return res;
+
+      // pass 2
+      dev->seek(0);
+      MusicXMLParserPass2 pass2(score, pass1);
+      return pass2.parse(dev);
+      }
+
+} // namespace Ms
diff --git a/mscore/symboldialog.h b/mscore/importmxml.h
similarity index 54%
copy from mscore/symboldialog.h
copy to mscore/importmxml.h
index fcb2d19..2733d71 100644
--- a/mscore/symboldialog.h
+++ b/mscore/importmxml.h
@@ -1,9 +1,8 @@
 //=============================================================================
-//  MusE Score
+//  MuseScore
 //  Linux Music Score Editor
-//  $Id: symboldialog.h 4341 2011-06-06 08:18:18Z lasconic $
 //
-//  Copyright (C) 2002-2009 Werner Schweer and others
+//  Copyright (C) 2015 Werner Schweer and others
 //
 //  This program is free software; you can redistribute it and/or modify
 //  it under the terms of the GNU General Public License version 2.
@@ -18,35 +17,17 @@
 //  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 //=============================================================================
 
-#ifndef __SYMBOLDIALOG_H__
-#define __SYMBOLDIALOG_H__
+#ifndef __IMPORTMXML_H__
+#define __IMPORTMXML_H__
 
-#include "ui_symboldialog.h"
+#include "libmscore/score.h"
+#include "importxmlfirstpass.h"
+#include "musicxml.h" // for the creditwords definition
+#include "musicxmlsupport.h"
 
 namespace Ms {
 
-class Palette;
-class Element;
-
-
-//---------------------------------------------------------
-//   SymbolDialog
-//---------------------------------------------------------
-
-class SymbolDialog : public QWidget, Ui::SymbolDialogBase {
-      Q_OBJECT
-
-      Palette* sp;
-      void createSymbolPalette();
-      void createSymbols();
-
-   private slots:
-      void systemFlagChanged(int);
-      void systemFontChanged(int);
-
-   public:
-      SymbolDialog(QWidget* parent = 0);
-      };
-}
+Score::FileError importMusicXMLfromBuffer(Score* score, const QString& name, QIODevice* dev);
 
+} // namespace Ms
 #endif
diff --git a/mscore/importmxmlpass1.cpp b/mscore/importmxmlpass1.cpp
new file mode 100644
index 0000000..33cef8d
--- /dev/null
+++ b/mscore/importmxmlpass1.cpp
@@ -0,0 +1,2904 @@
+//=============================================================================
+//  MuseScore
+//  Linux Music Score Editor
+//
+//  Copyright (C) 2015 Werner Schweer and others
+//
+//  This program is free software; you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License version 2.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, write to the Free Software
+//  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+//=============================================================================
+
+#include "libmscore/box.h"
+#include "libmscore/measure.h"
+#include "libmscore/page.h"
+#include "libmscore/part.h"
+#include "libmscore/staff.h"
+#include "libmscore/stringdata.h"
+#include "libmscore/sym.h"
+#include "libmscore/symbol.h"
+#include "libmscore/timesig.h"
+
+#include "importmxmlpass1.h"
+#include "importmxmlpass2.h"
+#include "preferences.h"
+
+namespace Ms {
+
+//---------------------------------------------------------
+//   noteTypeToFraction
+//---------------------------------------------------------
+
+/**
+ Convert MusicXML note type to fraction.
+ */
+
+static Fraction noteTypeToFraction(const QString& type)
+      {
+      if (type == "1024th")
+            return Fraction(1, 1024);
+      else if (type == "512th")
+            return Fraction(1, 512);
+      else if (type == "256th")
+            return Fraction(1, 256);
+      else if (type == "128th")
+            return Fraction(1, 128);
+      else if (type == "64th")
+            return Fraction(1, 64);
+      else if (type == "32nd")
+            return Fraction(1, 32);
+      else if (type == "16th")
+            return Fraction(1, 16);
+      else if (type == "eighth")
+            return Fraction(1, 8);
+      else if (type == "quarter")
+            return Fraction(1, 4);
+      else if (type == "half")
+            return Fraction(1, 2);
+      else if (type == "whole")
+            return Fraction(1, 1);
+      else if (type == "breve")
+            return Fraction(2, 1);
+      else if (type == "long")
+            return Fraction(4, 1);
+      else if (type == "maxima")
+            return Fraction(8, 1);
+      else
+            return Fraction(0, 0);
+      }
+
+//---------------------------------------------------------
+//   calculateFraction
+//---------------------------------------------------------
+
+/**
+ Convert note type, number of dots and actual and normal notes into a duration
+ */
+
+static Fraction calculateFraction(const QString& type, const int dots, const Fraction timeMod)
+      {
+      // type
+      Fraction f = noteTypeToFraction(type);
+      if (f.isValid()) {
+            // dot(s)
+            Fraction f_no_dots = f;
+            for (int i = 0; i < dots; ++i)
+                  f += (f_no_dots / (2 << i));
+            // tuplet
+            if (timeMod.isValid())
+                  f *= timeMod;
+            // clean up (just in case)
+            f.reduce();
+            }
+      return f;
+      }
+
+//---------------------------------------------------------
+//   allocateStaves
+//---------------------------------------------------------
+
+/**
+ Allocate MuseScore staff to MusicXML voices.
+ For each staff, allocate at most VOICES voices to the staff.
+ */
+
+// for regular (non-overlapping) voices:
+// 1) assign voice to a staff (allocateStaves)
+// 2) assign voice numbers (allocateVoices)
+// due to cross-staving, it is not a priori clear to which staff
+// a voice has to be assigned
+// allocate ordered by number of chordrests in the MusicXML voice
+//
+// for overlapping voices:
+// 1) assign voice to staves it is found in (allocateStaves)
+// 2) assign voice numbers (allocateVoices)
+
+static void allocateStaves(VoiceList& vcLst)
+      {
+      // initialize
+      int voicesAllocated[MAX_STAVES]; // number of voices allocated on each staff
+      for (int i = 0; i < MAX_STAVES; ++i)
+            voicesAllocated[i] = 0;
+
+      // handle regular (non-overlapping) voices
+      // note: outer loop executed vcLst.size() times, as each inner loop handles exactly one item
+      for (int i = 0; i < vcLst.size(); ++i) {
+            // find the regular voice containing the highest number of chords and rests that has not been handled yet
+            int max = 0;
+            QString key;
+            for (VoiceList::const_iterator j = vcLst.constBegin(); j != vcLst.constEnd(); ++j) {
+                  if (!j.value().overlaps() && j.value().numberChordRests() > max && j.value().staff() == -1) {
+                        max = j.value().numberChordRests();
+                        key = j.key();
+                        }
+                  }
+            if (key != "") {
+                  int prefSt = vcLst.value(key).preferredStaff();
+                  if (voicesAllocated[prefSt] < VOICES) {
+                        vcLst[key].setStaff(prefSt);
+                        voicesAllocated[prefSt]++;
+                        }
+                  else
+                        // out of voices: mark as used but not allocated
+                        vcLst[key].setStaff(-2);
+                  }
+            }
+
+      // handle overlapping voices
+      // for every staff allocate remaining voices (if space allows)
+      // the ones with the highest number of chords and rests get allocated first
+      for (int h = 0; h < MAX_STAVES; ++h) {
+            // note: middle loop executed vcLst.size() times, as each inner loop handles exactly one item
+            for (int i = 0; i < vcLst.size(); ++i) {
+                  // find the overlapping voice containing the highest number of chords and rests that has not been handled yet
+                  int max = 0;
+                  QString key;
+                  for (VoiceList::const_iterator j = vcLst.constBegin(); j != vcLst.constEnd(); ++j) {
+                        if (j.value().overlaps() && j.value().numberChordRests(h) > max && j.value().staffAlloc(h) == -1) {
+                              max = j.value().numberChordRests(h);
+                              key = j.key();
+                              }
+                        }
+                  if (key != "") {
+                        int prefSt = h;
+                        if (voicesAllocated[prefSt] < VOICES) {
+                              vcLst[key].setStaffAlloc(prefSt, 1);
+                              voicesAllocated[prefSt]++;
+                              }
+                        else
+                              // out of voices: mark as used but not allocated
+                              vcLst[key].setStaffAlloc(prefSt, -2);
+                        }
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   allocateVoices
+//---------------------------------------------------------
+
+/**
+ Allocate MuseScore voice to MusicXML voices.
+ For each staff, the voices are number 1, 2, 3, 4
+ in the same order they are numbered in the MusicXML file.
+ */
+
+static void allocateVoices(VoiceList& vcLst)
+      {
+      int nextVoice[MAX_STAVES]; // number of voices allocated on each staff
+      for (int i = 0; i < MAX_STAVES; ++i)
+            nextVoice[i] = 0;
+      // handle regular (non-overlapping) voices
+      // a voice is allocated on one specific staff
+      for (VoiceList::const_iterator i = vcLst.constBegin(); i != vcLst.constEnd(); ++i) {
+            int staff = i.value().staff();
+            QString key   = i.key();
+            if (staff >= 0) {
+                  vcLst[key].setVoice(nextVoice[staff]);
+                  nextVoice[staff]++;
+                  }
+            }
+      // handle overlapping voices
+      // each voice may be in every staff
+      for (VoiceList::const_iterator i = vcLst.constBegin(); i != vcLst.constEnd(); ++i) {
+            for (int j = 0; j < MAX_STAVES; ++j) {
+                  int staffAlloc = i.value().staffAlloc(j);
+                  QString key   = i.key();
+                  if (staffAlloc >= 0) {
+                        vcLst[key].setVoice(j, nextVoice[j]);
+                        nextVoice[j]++;
+                        }
+                  }
+            }
+      }
+
+
+//---------------------------------------------------------
+//   copyOverlapData
+//---------------------------------------------------------
+
+/**
+ Copy the overlap data from the overlap detector to the voice list.
+ */
+
+static void copyOverlapData(VoiceOverlapDetector& vod, VoiceList& vcLst)
+      {
+      for (VoiceList::const_iterator i = vcLst.constBegin(); i != vcLst.constEnd(); ++i) {
+            QString key = i.key();
+            if (vod.stavesOverlap(key))
+                  vcLst[key].setOverlap(true);
+            }
+      }
+
+//---------------------------------------------------------
+//   MusicXMLParserPass1
+//---------------------------------------------------------
+
+MusicXMLParserPass1::MusicXMLParserPass1(Score* score)
+      : _divs(0), _score(score)
+      {
+      // nothing
+      }
+
+//---------------------------------------------------------
+//   initPartState
+//---------------------------------------------------------
+
+/**
+ Initialize members as required for reading the MusicXML part element.
+ TODO: factor out part reading into a separate class
+ TODO: preferably use automatically initialized variables
+ Note that Qt automatically initializes new elements in QVector (tuplets).
+ */
+
+void MusicXMLParserPass1::initPartState(const QString& /* partId */)
+      {
+      _timeSigDura = Fraction(0, 0);       // invalid
+      _octaveShifts.clear();
+      }
+
+//---------------------------------------------------------
+//   determineMeasureLength
+//---------------------------------------------------------
+
+/**
+ Determine the length in ticks of each measure in all parts.
+ Return false on error.
+ */
+
+bool MusicXMLParserPass1::determineMeasureLength(QVector<Fraction>& ml) const
+      {
+      ml.clear();
+
+      // determine number of measures: max number of measures in any part
+      int nMeasures = 0;
+      foreach (const MusicXmlPart &part, _parts) {
+            if (part.nMeasures() > nMeasures)
+                  nMeasures = part.nMeasures();
+            }
+
+      // determine max length of a specific measure in all parts
+      for (int i = 0; i < nMeasures; ++i) {
+            Fraction maxMeasDur;
+            foreach (const MusicXmlPart &part, _parts) {
+                  if (i < part.nMeasures()) {
+                        Fraction measDurPartJ = part.measureDuration(i);
+                        if (measDurPartJ > maxMeasDur)
+                              maxMeasDur = measDurPartJ;
+                        }
+                  }
+            //qDebug("determineMeasureLength() measure %d %s (%d)", i, qPrintable(maxMeasDur.print()), maxMeasDur.ticks());
+            ml.append(maxMeasDur);
+            }
+      return true;
+      }
+
+//---------------------------------------------------------
+//   getVoiceList
+//---------------------------------------------------------
+
+/**
+ Get the VoiceList for part \a id.
+ Return an empty VoiceList on error.
+ */
+
+VoiceList MusicXMLParserPass1::getVoiceList(const QString id) const
+      {
+      if (_parts.contains(id))
+            return _parts.value(id).voicelist;
+      return VoiceList();
+      }
+
+//---------------------------------------------------------
+//   getInstrList
+//---------------------------------------------------------
+
+/**
+ Get the MusicXmlInstrList for part \a id.
+ Return an empty MusicXmlInstrList on error.
+ */
+
+MusicXmlInstrList MusicXMLParserPass1::getInstrList(const QString id) const
+      {
+      if (_parts.contains(id))
+            return _parts.value(id)._instrList;
+      return MusicXmlInstrList();
+      }
+
+//---------------------------------------------------------
+//   determineMeasureLength
+//---------------------------------------------------------
+
+/**
+ Set default notehead, line and stem direction
+ for instrument \a instrId in part \a id.
+ */
+
+void MusicXMLParserPass1::setDrumsetDefault(const QString& id,
+                                            const QString& instrId,
+                                            const NoteHead::Group hg,
+                                            const int line,
+                                            const MScore::Direction sd)
+      {
+      if (_drumsets.contains(id)
+          && _drumsets[id].contains(instrId)) {
+            _drumsets[id][instrId].notehead = hg;
+            _drumsets[id][instrId].line = line;
+            _drumsets[id][instrId].stemDirection = sd;
+            }
+      }
+
+
+//---------------------------------------------------------
+//   determineStaffMoveVoice
+//---------------------------------------------------------
+
+/**
+ For part \a id, determine MuseScore (ms) staffmove, track and voice from MusicXML (mx) staff and voice
+ MusicXML staff is 0 for the first staff, 1 for the second.
+ Note: track is the first track of the ms staff in the score, add ms voice for elements in a voice
+ Return true if OK, false on error
+ TODO: finalize
+ */
+
+bool MusicXMLParserPass1::determineStaffMoveVoice(const QString& id, const int mxStaff, const QString& mxVoice,
+                                                  int& msMove, int& msTrack, int& msVoice) const
+      {
+      VoiceList voicelist = getVoiceList(id);
+      msMove = 0; // TODO
+      msTrack = 0; // TODO
+      msVoice = 0; // TODO
+
+
+      // Musicxml voices are counted for all staffs of an
+      // instrument. They are not limited. In mscore voices are associated
+      // with a staff. Every staff can have at most VOICES voices.
+
+      // The following lines map musicXml voices to mscore voices.
+      // If a voice crosses two staffs, this is expressed with the
+      // "move" parameter in mscore.
+
+      // Musicxml voices are unique within a part, but not across parts.
+
+      //qDebug("voice mapper before: voice='%s' staff=%d", qPrintable(mxVoice), mxStaff);
+      int s; // staff mapped by voice mapper
+      int v; // voice mapped by voice mapper
+      if (voicelist.value(mxVoice).overlaps()) {
+            // for overlapping voices, the staff does not change
+            // and the voice is mapped and staff-dependent
+            s = mxStaff;
+            v = voicelist.value(mxVoice).voice(s);
+            }
+      else {
+            // for non-overlapping voices, both staff and voice are
+            // set by the voice mapper
+            s = voicelist.value(mxVoice).staff();
+            v = voicelist.value(mxVoice).voice();
+            }
+
+      //qDebug("voice mapper mapped: s=%d v=%d", s, v);
+      if (s < 0 || v < 0) {
+            qDebug("ImportMusicXml: too many voices (staff=%d voice='%s' -> s=%d v=%d)",
+                   mxStaff + 1, qPrintable(mxVoice), s, v);
+            return false;
+            }
+
+      msMove  = mxStaff - s;
+      msVoice = v;
+
+      // make score-relative instead on part-relative
+      Part* part = _partMap.value(id);
+      Q_ASSERT(part);
+      int scoreRelStaff = _score->staffIdx(part); // zero-based number of parts first staff in the score
+      msTrack = (scoreRelStaff + s) * VOICES;
+
+      //qDebug("voice mapper after: scoreRelStaff=%d partRelStaff=%d msMove=%d msTrack=%d msVoice=%d",
+      //       scoreRelStaff, s, msMove, msTrack, msVoice);
+      // note: relStaff is the staff number relative to the parts first staff
+      //       voice is the voice number in the staff
+
+      return true;
+      }
+
+//---------------------------------------------------------
+//   hasPart
+//---------------------------------------------------------
+
+/**
+ Check if part \a id is found.
+ */
+
+bool MusicXMLParserPass1::hasPart(const QString& id) const
+      {
+      return _parts.contains(id);
+      }
+
+//---------------------------------------------------------
+//   trackForPart
+//---------------------------------------------------------
+
+/**
+ Return the (score relative) track number for the first staff of part \a id.
+ */
+
+int MusicXMLParserPass1::trackForPart(const QString& id) const
+      {
+      Part* part = _partMap.value(id);
+      Q_ASSERT(part);
+      int scoreRelStaff = _score->staffIdx(part); // zero-based number of parts first staff in the score
+      return scoreRelStaff * VOICES;
+      }
+
+//---------------------------------------------------------
+//   getMeasureStart
+//---------------------------------------------------------
+
+/**
+ Return the measure start time for measure \a i.
+ */
+
+Fraction MusicXMLParserPass1::getMeasureStart(const int i) const
+      {
+      if (0 <= i && i < _measureStart.size())
+            return _measureStart.at(i);
+      else
+            return Fraction(0, 0);       // invalid
+      }
+
+//---------------------------------------------------------
+//   octaveShift
+//---------------------------------------------------------
+
+/**
+ Return the octave shift for part \a id in \a staff at \a f.
+ */
+
+int MusicXMLParserPass1::octaveShift(const QString& id, const int staff, const Fraction f) const
+      {
+      if (_parts.contains(id))
+            return _parts.value(id).octaveShift(staff, f);
+
+      return 0;
+      }
+
+//---------------------------------------------------------
+//   logDebugTrace
+//---------------------------------------------------------
+
+/**
+ Log debug (function) trace.
+ */
+
+void MusicXMLParserPass1::logDebugTrace(const QString& /*info*/)
+      {
+      //qDebug("Trace %s", qPrintable(info));
+      }
+
+//---------------------------------------------------------
+//   logDebugInfo
+//---------------------------------------------------------
+
+/**
+ Log debug \a info (non-fatal events relevant for debugging).
+ */
+
+void MusicXMLParserPass1::logDebugInfo(const QString& /*info*/)
+      {
+      //qDebug("Info at line %lld col %lld: %s",
+      //       _e.lineNumber(), _e.columnNumber(), qPrintable(info));
+      }
+
+//---------------------------------------------------------
+//   logError
+//---------------------------------------------------------
+
+/**
+ Log \a error (possibly non-fatal but to be reported to the user anyway).
+ */
+
+void MusicXMLParserPass1::logError(const QString& error)
+      {
+      QString err;
+      err = QString("Error at line %1 col %2: %3").arg(_e.lineNumber()).arg(_e.columnNumber()).arg(error);
+      qDebug("%s", qPrintable(err));
+      _parseStatus += err;
+      }
+
+
+//---------------------------------------------------------
+//   skipLogCurrElem
+//---------------------------------------------------------
+
+/**
+ Skip the current element, log debug as info.
+ */
+
+void MusicXMLParserPass1::skipLogCurrElem()
+      {
+      logDebugInfo(QString("skipping '%1'").arg(_e.name().toString()));
+      _e.skipCurrentElement();
+      }
+
+//---------------------------------------------------------
+//   createMeasures
+//---------------------------------------------------------
+
+/**
+ Create required measures with correct number, start tick and length for Score \a score.
+ */
+
+static void createMeasures(Score* score, const QVector<Fraction>& ml, const QVector<Fraction>& ms)
+      {
+      for (int i = 0; i < ml.size(); ++i) {
+            Measure* measure  = new Measure(score);
+            measure->setTick(ms.at(i).ticks());
+            measure->setLen(ml.at(i));
+            measure->setNo(i);
+            score->measures()->add(measure);
+            }
+      }
+
+//---------------------------------------------------------
+//   determineMeasureStart
+//---------------------------------------------------------
+
+/**
+ Determine the start ticks of each measure
+ i.e. the sum of all previous measures length
+ or start tick measure equals start tick previous measure plus length previous measure
+ */
+
+static void determineMeasureStart(const QVector<Fraction>& ml, QVector<Fraction>& ms)
+      {
+      ms.resize(ml.size());
+      if (!(ms.size() > 0))
+            return;  // no parts read
+
+      // first measure starts at t = 0
+      ms[0] = Fraction(0, 1);
+      // all others start at start time previous measure plus length previous measure
+      for (int i = 1; i < ml.size(); i++)
+            ms[i] = ms.at(i - 1) + ml.at(i - 1);
+      //for (int i = 0; i < ms.size(); i++)
+      //      qDebug("measurestart ms[%d] %s", i + 1, qPrintable(ms.at(i).print()));
+      }
+
+//---------------------------------------------------------
+//   addText
+//---------------------------------------------------------
+
+/**
+ Add text \a strTxt to VBox \a vbx using TextStyleType \a stl.
+ */
+
+static void addText(VBox* vbx, Score* s, QString strTxt, TextStyleType stl)
+      {
+      if (!strTxt.isEmpty()) {
+            Text* text = new Text(s);
+            text->setTextStyleType(stl);
+            text->setXmlText(strTxt);
+            vbx->add(text);
+            }
+      }
+
+//---------------------------------------------------------
+//   addText
+//---------------------------------------------------------
+
+/**
+ Add text \a strTxt to VBox \a vbx using TextStyleType \a stl.
+ Also sets Align and Yoff.
+ */
+
+static void addText2(VBox* vbx, Score* s, QString strTxt, TextStyleType stl, Align v, double yoffs)
+      {
+      if (!strTxt.isEmpty()) {
+            Text* text = new Text(s);
+            text->setTextStyleType(stl);
+            text->setXmlText(strTxt);
+            text->textStyle().setAlign(v);
+            text->textStyle().setYoff(yoffs);
+            vbx->add(text);
+            }
+      }
+
+//---------------------------------------------------------
+//   doCredits
+//---------------------------------------------------------
+
+/**
+ Create Text elements for the credits read from MusicXML credit-words elements.
+ Apply simple heuristics using only default x and y to recognize the meaning of credit words
+ If no credits are found, create credits from meta data.
+ */
+
+static void doCredits(Score* score, const CreditWordsList& credits, const int pageWidth, const int pageHeight)
+      {
+      const PageFormat* pf = score->pageFormat();
+      /*
+      qDebug("MusicXml::doCredits()");
+      qDebug("page format set (inch) w=%g h=%g tm=%g spatium=%g DPMM=%g DPI=%g",
+             pf->width(), pf->height(), pf->oddTopMargin(), score->spatium(), MScore::DPMM, MScore::DPI);
+      */
+      // page width, height and odd top margin in tenths
+      const double ph  = pf->height() * 10 * MScore::DPI / score->spatium();
+      const int pw1 = pageWidth / 3;
+      const int pw2 = pageWidth * 2 / 3;
+      const int ph2 = pageHeight / 2;
+      /*
+      const double pw  = pf->width() * 10 * MScore::DPI / score->spatium();
+      const double tm  = pf->oddTopMargin() * 10 * MScore::DPI / score->spatium();
+      const double tov = ph - tm;
+      qDebug("page format set (tenths) w=%g h=%g tm=%g tov=%g", pw, ph, tm, tov);
+      qDebug("page format (xml, tenths) w=%d h=%d", pageWidth, pageHeight);
+      qDebug("page format pw1=%d pw2=%d ph2=%d", pw1, pw2, ph2);
+      */
+      // dump the credits
+      /*
+      for (ciCreditWords ci = credits.begin(); ci != credits.end(); ++ci) {
+            CreditWords* w = *ci;
+            qDebug("credit-words defx=%g defy=%g just=%s hal=%s val=%s words='%s'",
+                   w->defaultX,
+                   w->defaultY,
+                   qPrintable(w->justify),
+                   qPrintable(w->hAlign),
+                   qPrintable(w->vAlign),
+                   qPrintable(w->words));
+            }
+      */
+
+      int nWordsHeader = 0;               // number of credit-words in the header
+      int nWordsFooter = 0;               // number of credit-words in the footer
+      for (ciCreditWords ci = credits.begin(); ci != credits.end(); ++ci) {
+            CreditWords* w = *ci;
+            double defy = w->defaultY;
+            // and count #words in header and footer
+            if (defy > ph2)
+                  nWordsHeader++;
+            else
+                  nWordsFooter++;
+            } // end for (ciCreditWords ...
+
+      // if there are any credit words in the header, use these
+      // else use the credit words in the footer (if any)
+      bool useHeader = nWordsHeader > 0;
+      bool useFooter = nWordsHeader == 0 && nWordsFooter > 0;
+      //qDebug("header %d footer %d useHeader %d useFooter %d",
+      //       nWordsHeader, nWordsFooter, useHeader, useFooter);
+
+      // determine credits height and create vbox to contain them
+      qreal vboxHeight = 10;            // default height in spatium
+      double miny = pageHeight;
+      double maxy = 0;
+      if (pageWidth > 1 && pageHeight > 1) {
+            for (ciCreditWords ci = credits.begin(); ci != credits.end(); ++ci) {
+                  CreditWords* w = *ci;
+                  double defy = w->defaultY;
+                  if ((useHeader && defy > ph2) || (useFooter && defy < ph2)) {
+                        if (defy > maxy) maxy = defy;
+                        if (defy < miny) miny = defy;
+                        }
+                  }
+            //qDebug("miny=%g maxy=%g", miny, maxy);
+            if (miny < (ph - 1) && maxy > 1) {  // if both miny and maxy set
+                  double diff = maxy - miny;    // calculate height in tenths
+                  if (diff > 1 && diff < ph2) { // and size is reasonable
+                        vboxHeight = diff;
+                        vboxHeight /= 10;       // height in spatium
+                        vboxHeight += 2.5;      // guesstimated correction for last line
+                        }
+                  }
+            }
+      //qDebug("vbox height %g sp", vboxHeight);
+      VBox* vbox = new VBox(score);
+      vbox->setBoxHeight(Spatium(vboxHeight));
+
+      QString remainingFooterText;
+      QMap<int, CreditWords*> creditMap;  // store credit-words sorted on y pos
+      bool creditWordsUsed = false;
+
+      for (ciCreditWords ci = credits.begin(); ci != credits.end(); ++ci) {
+            CreditWords* w = *ci;
+            double defx = w->defaultX;
+            double defy = w->defaultY;
+            // handle all credit words in the box
+            if ((useHeader && defy > ph2) || (useFooter && defy < ph2)) {
+                  creditWordsUsed = true;
+                  // composer is in the right column
+                  if (pw2 < defx) {
+                        // found composer
+                        addText2(vbox, score, w->words,
+                                 TextStyleType::COMPOSER, AlignmentFlags::RIGHT | AlignmentFlags::BOTTOM,
+                                 (miny - w->defaultY) * score->spatium() / (10 * MScore::DPI));
+                        }
+                  // poet is in the left column
+                  else if (defx < pw1) {
+                        // found poet
+                        addText2(vbox, score, w->words,
+                                 TextStyleType::POET, AlignmentFlags::LEFT | AlignmentFlags::BOTTOM,
+                                 (miny - w->defaultY) * score->spatium() / (10 * MScore::DPI));
+                        }
+                  // save others (in the middle column) to be handled later
+                  else {
+                        creditMap.insert(defy, w);
+                        }
+                  }
+            // keep remaining footer text for possible use as copyright
+            else if (useHeader && defy < ph2) {
+                  //qDebug("add to copyright: '%s'", qPrintable(w->words));
+                  remainingFooterText += w->words;
+                  }
+            } // end for (ciCreditWords ...
+
+      /*
+       QMap<int, CreditWords*>::const_iterator ci = creditMap.constBegin();
+       while (ci != creditMap.constEnd()) {
+       CreditWords* w = ci.value();
+       qDebug("creditMap %d credit-words defx=%g defy=%g just=%s hal=%s val=%s words=%s",
+       ci.key(),
+       w->defaultX,
+       w->defaultY,
+       qPrintable(w->justify),
+       qPrintable(w->hAlign),
+       qPrintable(w->vAlign),
+       qPrintable(w->words));
+       ++ci;
+       }
+       */
+
+      // assign title, subtitle and copyright
+      QList<int> keys = creditMap.uniqueKeys(); // note: ignoring credit-words at the same y pos
+
+      // if any credit-words present, the highest is the title
+      // note that the keys are sorted in ascending order
+      // -> use the last key
+      if (keys.size() >= 1) {
+            CreditWords* w = creditMap.value(keys.at(keys.size() - 1));
+            //qDebug("title='%s'", qPrintable(w->words));
+            addText2(vbox, score, w->words,
+                     TextStyleType::TITLE, AlignmentFlags::HCENTER | AlignmentFlags::TOP,
+                     (maxy - w->defaultY) * score->spatium() / (10 * MScore::DPI));
+            }
+
+      // add remaining credit-words as subtitles
+      for (int i = 0; i < (keys.size() - 1); i++) {
+            CreditWords* w = creditMap.value(keys.at(i));
+            //qDebug("subtitle='%s'", qPrintable(w->words));
+            addText2(vbox, score, w->words,
+                     TextStyleType::SUBTITLE, AlignmentFlags::HCENTER | AlignmentFlags::TOP,
+                     (maxy - w->defaultY) * score->spatium() / (10 * MScore::DPI));
+            }
+
+      // use metadata if no workable credit-words found
+      if (!creditWordsUsed) {
+
+            QString strTitle;
+            QString strSubTitle;
+            QString strComposer;
+            QString strPoet;
+            QString strTranslator;
+
+            if (!(score->metaTag("movementTitle").isEmpty() && score->metaTag("workTitle").isEmpty())) {
+                  strTitle = score->metaTag("movementTitle");
+                  if (strTitle.isEmpty())
+                        strTitle = score->metaTag("workTitle");
+                  }
+            if (!(score->metaTag("movementNumber").isEmpty() && score->metaTag("workNumber").isEmpty())) {
+                  strSubTitle = score->metaTag("movementNumber");
+                  if (strSubTitle.isEmpty())
+                        strSubTitle = score->metaTag("workNumber");
+                  }
+            QString metaComposer = score->metaTag("composer");
+            QString metaPoet = score->metaTag("poet");
+            QString metaTranslator = score->metaTag("translator");
+            if (!metaComposer.isEmpty()) strComposer = metaComposer;
+            if (!metaPoet.isEmpty()) strPoet = metaPoet;
+            if (!metaTranslator.isEmpty()) strTranslator = metaTranslator;
+
+            addText(vbox, score, strTitle.toHtmlEscaped(),      TextStyleType::TITLE);
+            addText(vbox, score, strSubTitle.toHtmlEscaped(),   TextStyleType::SUBTITLE);
+            addText(vbox, score, strComposer.toHtmlEscaped(),   TextStyleType::COMPOSER);
+            addText(vbox, score, strPoet.toHtmlEscaped(),       TextStyleType::POET);
+            addText(vbox, score, strTranslator.toHtmlEscaped(), TextStyleType::TRANSLATOR);
+            }
+
+      if (vbox) {
+            vbox->setTick(0);
+            score->measures()->add(vbox);
+            }
+
+      // if no <rights> element was read and some text was found in the footer
+      // set the rights metadata to the value found
+      // TODO: remove formatting
+      // note that MusicXML files can contain at least two different copyright statements:
+      // - in the <rights> element (metadata)
+      // - in the <credit-words> (the printed version)
+      // while MuseScore supports only the first one
+      if (score->metaTag("copyright") == "" && remainingFooterText != "")
+            score->setMetaTag("copyright", remainingFooterText);
+      }
+
+//---------------------------------------------------------
+//   parse
+//---------------------------------------------------------
+
+/**
+ Parse MusicXML in \a device and extract pass 1 data.
+ */
+
+Score::FileError MusicXMLParserPass1::parse(QIODevice* device)
+      {
+      logDebugTrace("MusicXMLParserPass1::parse device");
+      _parts.clear();
+      _e.setDevice(device);
+      Score::FileError res = parse();
+      if (res != Score::FileError::FILE_NO_ERROR)
+            return res;
+
+      // Determine the start tick of each measure in the part
+      determineMeasureLength(_measureLength);
+      determineMeasureStart(_measureLength, _measureStart);
+      createMeasures(_score, _measureLength, _measureStart);
+      return res;
+      }
+
+//---------------------------------------------------------
+//   parse
+//---------------------------------------------------------
+
+/**
+ Start the parsing process, after verifying the top-level node is score-partwise
+ */
+
+Score::FileError MusicXMLParserPass1::parse()
+      {
+      logDebugTrace("MusicXMLParserPass1::parse");
+
+      bool found = false;
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "score-partwise") {
+                  found = true;
+                  scorePartwise();
+                  }
+            else {
+                  logError(QString("this is not a MusicXML score-partwise file (top-level node '%1')")
+                           .arg(_e.name().toString()));
+                  _e.skipCurrentElement();
+                  return Score::FileError::FILE_BAD_FORMAT;
+                  }
+            }
+
+      if (!found) {
+            logError("this is not a MusicXML score-partwise file, node <score-partwise> not found");
+            return Score::FileError::FILE_BAD_FORMAT;
+            }
+
+      return Score::FileError::FILE_NO_ERROR;
+      }
+
+//---------------------------------------------------------
+//   scorePartwise
+//---------------------------------------------------------
+
+/**
+ Parse the MusicXML top-level (XPath /score-partwise) node.
+ */
+
+void MusicXMLParserPass1::scorePartwise()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "score-partwise");
+      logDebugTrace("MusicXMLParserPass1::scorePartwise");
+
+      MusicXmlPartGroupList partGroupList;
+      CreditWordsList credits;
+      int pageWidth;                             ///< Page width read from defaults
+      int pageHeight;                            ///< Page height read from defaults
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "part")
+                  part();
+            else if (_e.name() == "part-list") {
+                  // if any credits are present, they have been read now
+                  // add the credits to the score before adding any measure
+                  // note that a part-list element must always be present
+                  doCredits(_score, credits, pageWidth, pageHeight);
+                  // and read the part list
+                  partList(partGroupList);
+                  }
+            else if (_e.name() == "work") {
+                  while (_e.readNextStartElement()) {
+                        if (_e.name() == "work-number")
+                              _score->setMetaTag("workNumber", _e.readElementText());
+                        else if (_e.name() == "work-title")
+                              _score->setMetaTag("workTitle", _e.readElementText());
+                        else
+                              skipLogCurrElem();
+                        }
+                  }
+            else if (_e.name() == "identification")
+                  identification();
+            else if (_e.name() == "defaults")
+                  defaults(pageWidth, pageHeight);
+            else if (_e.name() == "movement-number")
+                  _score->setMetaTag("movementNumber", _e.readElementText());
+            else if (_e.name() == "movement-title")
+                  _score->setMetaTag("movementTitle", _e.readElementText());
+            else if (_e.name() == "credit")
+                  credit(credits);
+            else
+                  skipLogCurrElem();
+            }
+
+      // add brackets where required
+
+      /*
+       qDebug("partGroupList");
+       for (int i = 0; i < (int) partGroupList.size(); i++) {
+       MusicXmlPartGroup* pg = partGroupList[i];
+       qDebug("part-group span %d start %d type %hhd barlinespan %d",
+       pg->span, pg->start, pg->type, pg->barlineSpan);
+       }
+       */
+
+      // set of (typically multi-staff) parts containing one or more explicit brackets
+      // spanning only that part: these won't get an implicit brace later
+      // e.g. a two-staff piano part with an explicit brace
+      QSet<Part const* const> partSet;
+
+      // handle the explicit brackets
+      const QList<Part*>& il = _score->parts();
+      for (int i = 0; i < (int) partGroupList.size(); i++) {
+            MusicXmlPartGroup* pg = partGroupList[i];
+            // add part to set
+            if (pg->span == 1)
+                  partSet << il.at(pg->start);
+            // determine span in staves
+            int stavesSpan = 0;
+            for (int j = 0; j < pg->span; j++)
+                  stavesSpan += il.at(pg->start + j)->nstaves();
+            // add bracket and set the span
+            // TODO: use group-symbol default-x to determine horizontal order of brackets
+            if (pg->type == BracketType::NO_BRACKET)
+                  il.at(pg->start)->staff(0)->setBracket(0, BracketType::NO_BRACKET);
+            else
+                  il.at(pg->start)->staff(0)->addBracket(BracketItem(pg->type, stavesSpan));
+            if (pg->barlineSpan)
+                  il.at(pg->start)->staff(0)->setBarLineSpan(pg->span);
+            }
+
+      // handle the implicit brackets:
+      // multi-staff parts w/o explicit brackets get a brace
+      foreach(Part const* const p, il) {
+            if (p->nstaves() > 1 && !partSet.contains(p)) {
+                  p->staff(0)->addBracket(BracketItem(BracketType::BRACE, p->nstaves()));
+                  p->staff(0)->setBarLineSpan(p->nstaves());
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   identification
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/identification node:
+ read the metadata.
+ */
+
+void MusicXMLParserPass1::identification()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "identification");
+      logDebugTrace("MusicXMLParserPass1::identification");
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "creator") {
+                  // type is an arbitrary label
+                  QString strType = _e.attributes().value("type").toString();
+                  _score->setMetaTag(strType, _e.readElementText());
+                  }
+            else if (_e.name() == "rights")
+                  _score->setMetaTag("copyright", _e.readElementText());
+            else if (_e.name() == "encoding") {
+                  // TODO
+                  _e.skipCurrentElement(); // skip but don't log
+                  // _score->setMetaTag("encoding", _e.readElementText()); works with DOM but not with pull parser
+                  // temporarily fake the encoding tag (compliant with DOM parser) to help the autotester
+                  if (MScore::debugMode)
+                        _score->setMetaTag("encoding", "MuseScore 0.7.02007-09-10");
+                  }
+            else if (_e.name() == "source")
+                  _score->setMetaTag("source", _e.readElementText());
+            else if (_e.name() == "miscellaneous")
+                  // TODO
+                  _e.skipCurrentElement();  // skip but don't log
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   text2syms
+//---------------------------------------------------------
+
+/**
+ Convert SMuFL code points to MuseScore <sym>...</sym>
+ */
+
+static QString text2syms(const QString& t)
+      {
+      //QTime time;
+      //time.start();
+
+      // first create a map from symbol (Unicode) text to symId
+      // note that this takes about 1 msec on a Core i5,
+      // caching does not gain much
+
+      ScoreFont* sf = ScoreFont::fallbackFont();
+      QMap<QString, SymId> map;
+      int maxStringSize = 0;        // maximum string size found
+
+      for (int i = int(SymId::noSym); i < int(SymId::lastSym); ++i) {
+            SymId id((SymId(i)));
+            QString string(sf->toString(id));
+            // insert all syms except space to prevent matching all regular spaces
+            if (id != SymId::space)
+                  map.insert(string, id);
+            if (string.size() > maxStringSize)
+                  maxStringSize = string.size();
+            }
+      //qDebug("text2syms map count %d maxsz %d filling time elapsed: %d ms",
+      //       map.size(), maxStringSize, time.elapsed());
+
+      // then look for matches
+      QString in = t;
+      QString res;
+
+      while (in != "") {
+            // try to find the largest match possible
+            int maxMatch = qMin(in.size(), maxStringSize);
+            QString sym;
+            while (maxMatch > 0) {
+                  QString toBeMatched = in.left(maxMatch);
+                  if (map.contains(toBeMatched)) {
+                        sym = Sym::id2name(map.value(toBeMatched));
+                        break;
+                        }
+                  maxMatch--;
+                  }
+            if (maxMatch > 0) {
+                  // found a match, add sym to res and remove match from string in
+                  res += "<sym>";
+                  res += sym;
+                  res += "</sym>";
+                  in.remove(0, maxMatch);
+                  }
+            else {
+                  // not found, move one char from res to in
+                  res += in.left(1);
+                  in.remove(0, 1);
+                  }
+            }
+
+      //qDebug("text2syms total time elapsed: %d ms, res '%s'", time.elapsed(), qPrintable(res));
+      return res;
+      }
+
+//---------------------------------------------------------
+//   decodeEntities
+//---------------------------------------------------------
+
+/**
+ Decode &#...; in string \a src into UNICODE (utf8) character.
+ */
+
+static QString decodeEntities( const QString& src )
+      {
+      QString ret(src);
+      QRegExp re("&#([0-9]+);");
+      re.setMinimal(true);
+
+      int pos = 0;
+      while ( (pos = re.indexIn(src, pos)) != -1 ) {
+            ret = ret.replace(re.cap(0), QChar(re.cap(1).toInt(0,10)));
+            pos += re.matchedLength();
+            }
+      return ret;
+      }
+
+//---------------------------------------------------------
+//   nextPartOfFormattedString
+//---------------------------------------------------------
+
+// TODO: probably should be shared between pass 1 and 2
+
+/**
+ Read the next part of a MusicXML formatted string and convert to MuseScore internal encoding.
+ */
+
+static QString nextPartOfFormattedString(QXmlStreamReader& e)
+      {
+      //QString lang       = e.attribute(QString("xml:lang"), "it");
+      QString fontWeight = e.attributes().value("font-weight").toString();
+      QString fontSize   = e.attributes().value("font-size").toString();
+      QString fontStyle  = e.attributes().value("font-style").toString();
+      QString underline  = e.attributes().value("underline").toString();
+      QString fontFamily = e.attributes().value("font-family").toString();
+      // TODO: color, enclosure, yoffset in only part of the text, ...
+
+      QString txt        = e.readElementText();
+      // replace HTML entities
+      txt = decodeEntities(txt);
+      QString syms       = text2syms(txt);
+
+      QString importedtext;
+
+      if (!fontSize.isEmpty()) {
+            bool ok = true;
+            float size = fontSize.toFloat(&ok);
+            if (ok)
+                  importedtext += QString("<font size=\"%1\"/>").arg(size);
+            }
+      if (!fontFamily.isEmpty() && txt == syms) {
+            // add font family only if no <sym> replacement made
+            importedtext += QString("<font face=\"%1\"/>").arg(fontFamily);
+            }
+      if (fontWeight == "bold")
+            importedtext += "<b>";
+      if (fontStyle == "italic")
+            importedtext += "<i>";
+      if (!underline.isEmpty()) {
+            bool ok = true;
+            int lines = underline.toInt(&ok);
+            if (ok && (lines > 0))  // 1,2, or 3 underlines are imported as single underline
+                  importedtext += "<u>";
+            else
+                  underline = "";
+            }
+      if (txt == syms) {
+            txt.replace(QString("\r"), QString("")); // convert Windows line break \r\n -> \n
+            importedtext += txt.toHtmlEscaped();
+            }
+      else {
+            // <sym> replacement made, should be no need for line break or other conversions
+            importedtext += syms;
+            }
+      if (underline != "")
+            importedtext += "</u>";
+      if (fontStyle == "italic")
+            importedtext += "</i>";
+      if (fontWeight == "bold")
+            importedtext += "</b>";
+      //qDebug("importedtext '%s'", qPrintable(importedtext));
+      return importedtext;
+      }
+
+//---------------------------------------------------------
+//   credit
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/credit node:
+ read the credits for later handling by doCredits().
+ */
+
+void MusicXMLParserPass1::credit(CreditWordsList& credits)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "credit");
+      logDebugTrace("MusicXMLParserPass1::credit");
+
+      QString page = _e.attributes().value("page").toString();
+      // handle only page 1 credits (to extract title etc.)
+      // assume no page attribute means page 1
+      if (page == "" || page == "1") {
+            // multiple credit-words elements may be present,
+            // which are appended
+            // use the position info from the first one
+            // font information is ignored, credits will be styled
+            bool creditWordsRead = false;
+            double defaultx = 0;
+            double defaulty = 0;
+            QString justify;
+            QString halign;
+            QString valign;
+            QString crwords;
+            while (_e.readNextStartElement()) {
+                  if (_e.name() == "credit-words") {
+                        // IMPORT_LAYOUT
+                        if (!creditWordsRead) {
+                              defaultx = _e.attributes().value("default-x").toString().toDouble();
+                              defaulty = _e.attributes().value("default-y").toString().toDouble();
+                              justify  = _e.attributes().value("justify").toString();
+                              halign   = _e.attributes().value("halign").toString();
+                              valign   = _e.attributes().value("valign").toString();
+                              creditWordsRead = true;
+                              }
+                        crwords += nextPartOfFormattedString(_e);
+                        }
+                  else if (_e.name() == "credit-type")
+                        skipLogCurrElem();
+                  else
+                        skipLogCurrElem();
+                  }
+            if (crwords != "") {
+                  CreditWords* cw = new CreditWords(defaultx, defaulty, justify, halign, valign, crwords);
+                  credits.append(cw);
+                  }
+            }
+      else
+            skipLogCurrElem();
+
+      Q_ASSERT(_e.isEndElement() && _e.name() == "credit");
+      }
+
+//---------------------------------------------------------
+//   mustSetSize
+//---------------------------------------------------------
+
+/**
+ Determine if i is a style type for which the default size must be set
+ */
+
+// The MusicXML specification does not specify to which kinds of text
+// the word-font setting applies. Setting all sizes to the size specified
+// gives bad results, e.g. for measure numbers, so a selection is made.
+// Some tweaking may still be required.
+
+static bool mustSetSize(const int i)
+      {
+      return
+            i == int(TextStyleType::TITLE)
+            || i == int(TextStyleType::SUBTITLE)
+            || i == int(TextStyleType::COMPOSER)
+            || i == int(TextStyleType::POET)
+            || i == int(TextStyleType::INSTRUMENT_LONG)
+            || i == int(TextStyleType::INSTRUMENT_SHORT)
+            || i == int(TextStyleType::INSTRUMENT_EXCERPT)
+            || i == int(TextStyleType::TEMPO)
+            || i == int(TextStyleType::METRONOME)
+            || i == int(TextStyleType::TRANSLATOR)
+            || i == int(TextStyleType::SYSTEM)
+            || i == int(TextStyleType::STAFF)
+            || i == int(TextStyleType::REPEAT_LEFT)
+            || i == int(TextStyleType::REPEAT_RIGHT)
+            || i == int(TextStyleType::TEXTLINE)
+            || i == int(TextStyleType::GLISSANDO)
+            || i == int(TextStyleType::INSTRUMENT_CHANGE);
+      }
+
+//---------------------------------------------------------
+//   updateStyles
+//---------------------------------------------------------
+
+/**
+ Update the style definitions to match the MusicXML word-font and lyric-font.
+ */
+
+static void updateStyles(Score* score,
+                         const QString& wordFamily, const QString& wordSize,
+                         const QString& lyricFamily, const QString& lyricSize)
+      {
+      const float fWordSize = wordSize.toFloat();   // note conversion error results in value 0.0
+      const float fLyricSize = lyricSize.toFloat(); // but avoid comparing float with exact value later
+
+      // loop over all text styles (except the empty, always hidden, first one)
+      // set all text styles to the MusicXML defaults
+      for (int i = int(TextStyleType::DEFAULT) + 1; i < int(TextStyleType::TEXT_STYLES); ++i) {
+            TextStyle ts = score->style()->textStyle(TextStyleType(i));
+            if (i == int(TextStyleType::LYRIC1) || i == int(TextStyleType::LYRIC2)) {
+                  if (lyricFamily != "") ts.setFamily(lyricFamily);
+                  if (fLyricSize > 0.001) ts.setSize(fLyricSize);
+                  }
+            else {
+                  if (wordFamily != "") ts.setFamily(wordFamily);
+                  if (fWordSize > 0.001 && mustSetSize(i)) ts.setSize(fWordSize);
+                  }
+            score->style()->setTextStyle(ts);
+            }
+      }
+
+//---------------------------------------------------------
+//   defaults
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/defaults node:
+ read the general score layout settings.
+ */
+
+void MusicXMLParserPass1::defaults(int& pageWidth, int& pageHeight)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "defaults");
+      logDebugTrace("MusicXMLParserPass1::defaults");
+
+      double millimeter = _score->spatium()/10.0;
+      double tenths = 1.0;
+      QString lyricFontFamily;
+      QString lyricFontSize;
+      QString wordFontFamily;
+      QString wordFontSize;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "scaling") {
+                  while (_e.readNextStartElement()) {
+                        if (_e.name() == "millimeters")
+                              millimeter = _e.readElementText().toDouble();
+                        else if (_e.name() == "tenths")
+                              tenths = _e.readElementText().toDouble();
+                        else
+                              skipLogCurrElem();
+                        }
+                  double _spatium = MScore::DPMM * (millimeter * 10.0 / tenths);
+                  if (preferences.musicxmlImportLayout)
+                        _score->setSpatium(_spatium);
+                  }
+            else if (_e.name() == "page-layout") {
+                  PageFormat pf;
+                  pageLayout(pf, millimeter / (tenths * INCH), pageWidth, pageHeight);
+                  if (preferences.musicxmlImportLayout)
+                        _score->setPageFormat(pf);
+                  }
+            else if (_e.name() == "system-layout") {
+                  while (_e.readNextStartElement()) {
+                        if (_e.name() == "system-margins")
+                              skipLogCurrElem();
+                        else if (_e.name() == "system-distance") {
+                              Spatium val(_e.readElementText().toDouble() / 10.0);
+                              if (preferences.musicxmlImportLayout) {
+                                    _score->style()->set(StyleIdx::minSystemDistance, val);
+                                    qDebug("system distance %f", val.val());
+                                    }
+                              }
+                        else if (_e.name() == "top-system-distance")
+                              skipLogCurrElem();
+                        else
+                              skipLogCurrElem();
+                        }
+                  }
+            else if (_e.name() == "staff-layout") {
+                  while (_e.readNextStartElement()) {
+                        if (_e.name() == "staff-distance") {
+                              Spatium val(_e.readElementText().toDouble() / 10.0);
+                              if (preferences.musicxmlImportLayout)
+                                    _score->style()->set(StyleIdx::staffDistance, val);
+                              }
+                        else
+                              skipLogCurrElem();
+                        }
+                  }
+            else if (_e.name() == "music-font")
+                  skipLogCurrElem();
+            else if (_e.name() == "word-font") {
+                  wordFontFamily = _e.attributes().value("font-family").toString();
+                  wordFontSize = _e.attributes().value("font-size").toString();
+                  _e.skipCurrentElement();
+                  }
+            else if (_e.name() == "lyric-font") {
+                  lyricFontFamily = _e.attributes().value("font-family").toString();
+                  lyricFontSize = _e.attributes().value("font-size").toString();
+                  _e.skipCurrentElement();
+                  }
+            else if (_e.name() == "appearance")
+                  skipLogCurrElem();
+            else if (_e.name() == "lyric-language")
+                  skipLogCurrElem();
+            else
+                  skipLogCurrElem();
+            }
+
+      /*
+       qDebug("word font family '%s' size '%s' lyric font family '%s' size '%s'",
+       qPrintable(wordFontFamily), qPrintable(wordFontSize),
+       qPrintable(lyricFontFamily), qPrintable(lyricFontSize));
+       */
+      updateStyles(_score, wordFontFamily, wordFontSize, lyricFontFamily, lyricFontSize);
+
+      _score->setDefaultsRead(true); // TODO only if actually succeeded ?
+      }
+
+//---------------------------------------------------------
+//   pageLayout
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/defaults/page-layout node:
+ read the page layout.
+ */
+
+void MusicXMLParserPass1::pageLayout(PageFormat& pf, const qreal conversion,
+                                     int& pageWidth, int& pageHeight)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "page-layout");
+      logDebugTrace("MusicXMLParserPass1::pageLayout");
+
+      qreal _oddRightMargin  = 0.0;
+      qreal _evenRightMargin = 0.0;
+      QSizeF size;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "page-margins") {
+                  QString type = _e.attributes().value("type").toString();
+                  if (type == "")
+                        type = "both";
+                  qreal lm = 0.0, rm = 0.0, tm = 0.0, bm = 0.0;
+                  while (_e.readNextStartElement()) {
+                        if (_e.name() == "left-margin")
+                              lm = _e.readElementText().toDouble() * conversion;
+                        else if (_e.name() == "right-margin")
+                              rm = _e.readElementText().toDouble() * conversion;
+                        else if (_e.name() == "top-margin")
+                              tm = _e.readElementText().toDouble() * conversion;
+                        else if (_e.name() == "bottom-margin")
+                              bm = _e.readElementText().toDouble() * conversion;
+                        else
+                              skipLogCurrElem();
+                        }
+                  pf.setTwosided(type == "odd" || type == "even");
+                  if (type == "odd" || type == "both") {
+                        pf.setOddLeftMargin(lm);
+                        _oddRightMargin = rm;
+                        pf.setOddTopMargin(tm);
+                        pf.setOddBottomMargin(bm);
+                        }
+                  if (type == "even" || type == "both") {
+                        pf.setEvenLeftMargin(lm);
+                        _evenRightMargin = rm;
+                        pf.setEvenTopMargin(tm);
+                        pf.setEvenBottomMargin(bm);
+                        }
+                  }
+            else if (_e.name() == "page-height") {
+                  double val = _e.readElementText().toDouble();
+                  size.rheight() = val * conversion;
+                  // set pageHeight and pageWidth for use by doCredits()
+                  pageHeight = static_cast<int>(val + 0.5);
+                  }
+            else if (_e.name() == "page-width") {
+                  double val = _e.readElementText().toDouble();
+                  size.rwidth() = val * conversion;
+                  // set pageHeight and pageWidth for use by doCredits()
+                  pageWidth = static_cast<int>(val + 0.5);
+                  }
+            else
+                  skipLogCurrElem();
+            }
+      pf.setSize(size);
+      qreal w1 = size.width() - pf.oddLeftMargin() - _oddRightMargin;
+      qreal w2 = size.width() - pf.evenLeftMargin() - _evenRightMargin;
+      pf.setPrintableWidth(qMax(w1, w2));   // silently adjust right margins
+      }
+
+//---------------------------------------------------------
+//   partList
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part-list:
+ create the parts and for each part set id and name.
+ Also handle the part-groups.
+ */
+
+void MusicXMLParserPass1::partList(MusicXmlPartGroupList& partGroupList)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "part-list");
+      logDebugTrace("MusicXMLParserPass1::partList");
+
+      int scoreParts = 0; // number of score-parts read sofar
+      MusicXmlPartGroupMap partGroups;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "part-group")
+                  partGroup(scoreParts, partGroupList, partGroups);
+            else if (_e.name() == "score-part") {
+                  scorePart();
+                  scoreParts++;
+                  }
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   createPart
+//---------------------------------------------------------
+
+/**
+ Create the part, set its \a id and insert it in PartMap \a pm.
+ Part name (if any) will be set later.
+ */
+
+static void createPart(Score* score, const QString& id, PartMap& pm)
+      {
+      Part* part = new Part(score);
+      pm.insert(id, part);
+      part->setId(id);
+      score->appendPart(part);
+      Staff* staff = new Staff(score);
+      staff->setPart(part);
+      part->staves()->push_back(staff);
+      score->staves().push_back(staff);
+      // TODO TBD tuplets.resize(VOICES); // part now contains one staff, thus VOICES voices
+      }
+
+//---------------------------------------------------------
+//   partGroupStart
+//---------------------------------------------------------
+
+typedef std::map<int,MusicXmlPartGroup*> MusicXmlPartGroupMap;
+
+/**
+ Store part-group start with number \a n, first part \a p and symbol / \a s in the partGroups
+ map \a pgs for later reference, as at this time insufficient information is available to be able
+ to generate the brackets.
+ */
+
+static void partGroupStart(MusicXmlPartGroupMap& pgs, int n, int p, QString s, bool barlineSpan)
+      {
+      qDebug("partGroupStart number=%d part=%d symbol=%s", n, p, s.toLatin1().data());
+
+      if (pgs.count(n) > 0) {
+            qDebug("part-group number=%d already active", n);
+            return;
+            }
+
+      BracketType bracketType = BracketType::NO_BRACKET;
+      if (s == "")
+            ;        // ignore (handle as NO_BRACKET)
+      else if (s == "none")
+            ;        // already set to NO_BRACKET
+      else if (s == "brace")
+            bracketType = BracketType::BRACE;
+      else if (s == "bracket")
+            bracketType = BracketType::NORMAL;
+      else if (s == "line")
+            bracketType = BracketType::LINE;
+      else if (s == "square")
+            bracketType = BracketType::SQUARE;
+      else {
+            qDebug("part-group symbol=%s not supported", s.toLatin1().data());
+            return;
+            }
+
+      MusicXmlPartGroup* pg = new MusicXmlPartGroup;
+      pg->span = 0;
+      pg->start = p;
+      pg->barlineSpan = barlineSpan,
+      pg->type = bracketType;
+      pgs[n] = pg;
+      }
+
+//---------------------------------------------------------
+//   partGroupStop
+//---------------------------------------------------------
+
+/**
+ Handle part-group stop with number \a n and part \a p.
+
+ For part group n, the start part, span (in parts) and type are now known.
+ To generate brackets, the span in staves must also be known.
+ */
+
+static void partGroupStop(MusicXmlPartGroupMap& pgs, int n, int p,
+                          MusicXmlPartGroupList& pgl)
+      {
+      if (pgs.count(n) == 0) {
+            qDebug("part-group number=%d not active", n);
+            return;
+            }
+
+      pgs[n]->span = p - pgs[n]->start;
+      //qDebug("partgroupstop number=%d start=%d span=%d type=%hhd",
+      //       n, pgs[n]->start, pgs[n]->span, pgs[n]->type);
+      pgl.push_back(pgs[n]);
+      pgs.erase(n);
+      }
+
+//---------------------------------------------------------
+//   partGroup
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part-list/part-group node.
+ */
+
+void MusicXMLParserPass1::partGroup(const int scoreParts,
+                                    MusicXmlPartGroupList& partGroupList,
+                                    MusicXmlPartGroupMap& partGroups)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "part-group");
+      logDebugTrace("MusicXMLParserPass1::partGroup");
+      bool barlineSpan = true;
+      int number = _e.attributes().value("number").toInt();
+      if (number > 0) number--;
+      QString symbol = "";
+      QString type = _e.attributes().value("type").toString();
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "group-symbol")
+                  symbol = _e.readElementText();
+            else if (_e.name() == "group-barline") {
+                  if (_e.readElementText() == "no")
+                        barlineSpan = false;
+                  }
+            else
+                  skipLogCurrElem();
+            }
+
+      if (type == "start")
+            partGroupStart(partGroups, number, scoreParts, symbol, barlineSpan);
+      else if (type == "stop")
+            partGroupStop(partGroups, number, scoreParts, partGroupList);
+      else
+            qDebug("MusicXMLParserPass1::partGroup: part-group type '%s' not supported",
+                   qPrintable(type));  // TODO
+      }
+
+//---------------------------------------------------------
+//   scorePart
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part-list/score-part node:
+ create the part and sets id and name.
+ Note that a part is created even if no part-name is present
+ which is invalid MusicXML but is (sometimes ?) generated by NWC2MusicXML.
+ */
+
+void MusicXMLParserPass1::scorePart()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "score-part");
+      logDebugTrace("MusicXMLParserPass1::scorePart");
+      QString id = _e.attributes().value("id").toString();
+
+      if (_parts.contains(id)) {
+            logError(QString("duplicate part id '%1'").arg(id));
+            skipLogCurrElem();
+            return;
+            }
+      else {
+            _parts.insert(id, MusicXmlPart(id));
+            _drumsets.insert(id, MusicXMLDrumset());
+            createPart(_score, id, _partMap);
+            }
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "part-name") {
+                  // Element part-name contains the displayed (full) part name
+                  // It is displayed by default, but can be suppressed (print-object=”no”)
+                  // As of MusicXML 3.0, formatting is deprecated, with part-name in plain text
+                  // and the formatted version in the part-name-display element
+                  bool doLong = !(_e.attributes().value("print-object") == "no");
+                  QString name = _e.readElementText();
+                  _partMap[id]->setPartName(name);
+                  if (doLong)
+                        _partMap[id]->setLongName(name);
+                  }
+            else if (_e.name() == "part-name-display") {
+                  // TODO
+                  _e.skipCurrentElement(); // skip but don't log
+                  }
+            else if (_e.name() == "part-abbreviation") {
+                  // Element part-name contains the displayed (abbreviated) part name
+                  // It is displayed by default, but can be suppressed (print-object=”no”)
+                  // As of MusicXML 3.0, formatting is deprecated, with part-name in plain text
+                  // and the formatted version in the part-abbreviation-display element
+                  if (!(_e.attributes().value("print-object") == "no"))
+                        _partMap[id]->setPlainShortName(_e.readElementText());
+                  }
+            else if (_e.name() == "part-abbreviation-display")
+                  _e.skipCurrentElement();  // skip but don't log
+            else if (_e.name() == "score-instrument")
+                  scoreInstrument(id);
+            else if (_e.name() == "midi-device")
+                  _e.skipCurrentElement();  // skip but don't log
+            else if (_e.name() == "midi-instrument")
+                  midiInstrument(id);
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   scoreInstrument
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part-list/score-part/score-instrument node.
+ */
+
+void MusicXMLParserPass1::scoreInstrument(const QString& partId)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "score-instrument");
+      logDebugTrace("MusicXMLParserPass1::scoreInstrument");
+      QString instrId = _e.attributes().value("id").toString();
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "ensemble")
+                  skipLogCurrElem();
+            else if (_e.name() == "instrument-name") {
+                  QString instrName = _e.readElementText();
+                  /*
+                  qDebug("partId '%s' instrId '%s' instrName '%s'",
+                         qPrintable(partId),
+                         qPrintable(instrId),
+                         qPrintable(instrName)
+                         );
+                   */
+                  _drumsets[partId].insert(instrId, MusicXMLDrumInstrument(instrName));
+                  // Element instrument-name is typically not displayed in the score,
+                  // but used only internally
+                  if (_drumsets[partId].contains(instrId))
+                        _drumsets[partId][instrId].name = instrName;
+                  // try to prevent an empty track name
+                  if (_partMap[partId]->partName() == "")
+                        _partMap[partId]->setPartName(instrName);
+                  }
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   midiInstrument
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part-list/score-part/midi-instrument node.
+ */
+
+void MusicXMLParserPass1::midiInstrument(const QString& partId)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "midi-instrument");
+      logDebugTrace("MusicXMLParserPass1::midiInstrument");
+      QString instrId = _e.attributes().value("id").toString();
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "midi-bank")
+                  skipLogCurrElem();
+            else if (_e.name() == "midi-channel") {
+                  int channel = _e.readElementText().toInt();
+                  if (channel < 1) {
+                        logError(QString("MusicXml::xmlScorePart: incorrect midi-channel: %1").arg(channel));
+                        channel = 1;
+                        }
+                  else if (channel > 16) {
+                        logError(QString("MusicXml::xmlScorePart: incorrect midi-channel: %1").arg(channel));
+                        channel = 16;
+                        }
+                  if (_drumsets[partId].contains(instrId))
+                        _drumsets[partId][instrId].midiChannel = channel - 1;
+                  }
+            else if (_e.name() == "midi-program") {
+                  int program = _e.readElementText().toInt();
+                  // Bug fix for Cubase 6.5.5 which generates <midi-program>0</midi-program>
+                  // Check program number range
+                  if (program < 1) {
+                        logError(QString("MusicXml::xmlScorePart: incorrect midi-program: %1").arg(program));
+                        program = 1;
+                        }
+                  else if (program > 128) {
+                        logError(QString("MusicXml::xmlScorePart: incorrect midi-program: %1").arg(program));
+                        program = 128;
+                        }
+                  if (_drumsets[partId].contains(instrId))
+                        _drumsets[partId][instrId].midiProgram = program - 1;
+                  }
+            else if (_e.name() == "midi-unpitched") {
+                  if (_drumsets[partId].contains(instrId))
+                        _drumsets[partId][instrId].pitch = _e.readElementText().toInt() - 1;
+                  }
+            else if (_e.name() == "volume") {
+                  double vol = _e.readElementText().toDouble();
+                  if (vol >= 0 && vol <= 100) {
+                        if (_drumsets[partId].contains(instrId))
+                              _drumsets[partId][instrId].midiVolume = static_cast<int>((vol / 100) * 127);
+                        }
+                  else
+                        logError(QString("MusicXml::xmlScorePart: incorrect midi-volume: %1").arg(vol));
+                  }
+            else if (_e.name() == "pan") {
+                  double pan = _e.readElementText().toDouble();
+                  if (pan >= -90 && pan <= 90) {
+                        if (_drumsets[partId].contains(instrId))
+                              _drumsets[partId][instrId].midiPan = static_cast<int>(((pan + 90) / 180) * 127);
+                        }
+                  else
+                        logError(QString("MusicXml::xmlScorePart: incorrect midi-volume: %g1").arg(pan));
+                  }
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   part
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part node:
+ read the parts data to determine measure timing and octave shifts.
+ Assign voices and staves.
+ */
+
+void MusicXMLParserPass1::part()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "part");
+      logDebugTrace("MusicXMLParserPass1::part");
+      const QString id = _e.attributes().value("id").toString();
+
+      if (!_parts.contains(id)) {
+            logError(QString("MusicXMLParserPass1::part cannot find part '%1'").arg(id));
+            skipLogCurrElem();
+            }
+
+      initPartState(id);
+
+      VoiceOverlapDetector vod;
+      Fraction time;  // current time within part
+      Fraction mdur;  // measure duration
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "measure") {
+                  measure(id, time, mdur, vod);
+                  time += mdur;
+                  }
+            else
+                  skipLogCurrElem();
+            }
+
+      // allocate MuseScore staff to MusicXML voices
+      allocateStaves(_parts[id].voicelist);
+      // allocate MuseScore voice to MusicXML voices
+      allocateVoices(_parts[id].voicelist);
+      // calculate the octave shifts
+      _parts[id].calcOctaveShifts();
+
+      // debug: print results
+      /*
+      qDebug("voiceMapperStats: new staff");
+      VoiceList& vl = _parts[id].voicelist;
+      for (auto i = vl.constBegin(); i != vl.constEnd(); ++i) {
+            qDebug("voiceMapperStats: voice %s staff data %s",
+                   qPrintable(i.key()), qPrintable(i.value().toString()));
+            }
+      */
+      }
+
+//---------------------------------------------------------
+//   measureDurationAsFraction
+//---------------------------------------------------------
+
+/**
+ Determine a suitable measure duration value given the time signature
+ by setting the duration denominator to be greater than or equal
+ to the time signature denominator
+ */
+
+static Fraction measureDurationAsFraction(const Fraction length, const int tsigtype)
+      {
+      if (tsigtype <= 0)
+            // invalid tsigtype
+            return length;
+
+      Fraction res = length;
+      while (res.denominator() < tsigtype) {
+            res.setNumerator(res.numerator() * 2);
+            res.setDenominator(res.denominator() * 2);
+            }
+      return res;
+      }
+
+//---------------------------------------------------------
+//   measure
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure node:
+ read the measures data as required to determine measure timing, octave shifts
+ and assign voices and staves.
+ */
+
+void MusicXMLParserPass1::measure(const QString& partId,
+                                  const Fraction time,
+                                  Fraction& mdur,
+                                  VoiceOverlapDetector& vod)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "measure");
+      logDebugTrace("MusicXMLParserPass1::measure");
+      QString number = _e.attributes().value("number").toString();
+
+      Fraction mTime; // current time stamp within measure
+      Fraction mDura; // current total measure duration
+      vod.newMeasure();
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "attributes")
+                  attributes(partId);
+            else if (_e.name() == "note") {
+                  Fraction dura;
+                  // note: chord and grace note handling done in note()
+                  note(partId, time + mTime, dura, vod);
+                  if (dura.isValid()) {
+                        mTime += dura;
+                        if (mTime > mDura)
+                              mDura = mTime;
+                        }
+                  }
+            else if (_e.name() == "forward") {
+                  Fraction dura;
+                  forward(dura);
+                  if (dura.isValid()) {
+                        mTime += dura;
+                        if (mTime > mDura)
+                              mDura = mTime;
+                        }
+                  }
+            else if (_e.name() == "backup") {
+                  Fraction dura;
+                  backup(dura);
+                  if (dura.isValid()) {
+                        if (dura <= mTime)
+                              mTime -= dura;
+                        else {
+                              logError("backup beyond measure start");
+                              mTime.set(0, 1);
+                              }
+                        }
+                  }
+            else if (_e.name() == "direction")
+                  direction(partId, time + mTime);
+            else
+                  skipLogCurrElem();
+
+            /*
+             qDebug("mTime %s (%s) mDura %s (%s)",
+             qPrintable(mTime.print()),
+             qPrintable(mTime.reduced().print()),
+             qPrintable(mDura.print()),
+             qPrintable(mDura.reduced().print()));
+             */
+            }
+
+      // debug vod
+      // vod.dump();
+      // copy overlap data from vod to voicelist
+      copyOverlapData(vod, _parts[partId].voicelist);
+
+      // measure duration fixups
+      mDura.reduce();
+
+      // fix for PDFtoMusic Pro v1.3.0d Build BF4E (which sometimes generates empty measures)
+      // if no valid length found and length according to time signature is known,
+      // use length according to time signature
+      if (mDura.isZero() && _timeSigDura.isValid() && _timeSigDura > Fraction(0, 1))
+            mDura = _timeSigDura;
+
+      // if necessary, round up to an integral number of 1/64s,
+      // to comply with MuseScores actual measure length constraints
+      // TODO: calculate in fraction
+      int length = mDura.ticks();
+      int correctedLength = length;
+      if ((length % (MScore::division/16)) != 0) {
+            correctedLength = ((length / (MScore::division/16)) + 1) * (MScore::division/16);
+            mDura = Fraction::fromTicks(correctedLength);
+            }
+
+      // set measure duration to a suitable value given the time signature
+      if (_timeSigDura.isValid() && _timeSigDura > Fraction(0, 1)) {
+            int btp = _timeSigDura.denominator();
+            if (btp > 0)
+                  mDura = measureDurationAsFraction(mDura, btp);
+            }
+
+      // set return value(s)
+      mdur = mDura;
+
+      // set measure number and duration
+      /*
+      qDebug("part %s measure %s dura %s (%d)",
+             qPrintable(partId), qPrintable(number), qPrintable(mdur.print()), mdur.ticks());
+       */
+      _parts[partId].addMeasureNumberAndDuration(number, mdur);
+      }
+
+//---------------------------------------------------------
+//   attributes
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/attributes node.
+ */
+
+void MusicXMLParserPass1::attributes(const QString& partId)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "attributes");
+      logDebugTrace("MusicXMLParserPass1::attributes");
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "clef")
+                  clef(partId);
+            else if (_e.name() == "divisions")
+                  divisions();
+            else if (_e.name() == "staff-details")
+                  staffDetails(partId);
+            else if (_e.name() == "staves")
+                  staves(partId);
+            else if (_e.name() == "time")
+                  time();
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   clef
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/attributes/clef node.
+ Set the staff type based on clef type
+ TODO: check if staff type setting could be simplified
+ */
+
+void MusicXMLParserPass1::clef(const QString& partId)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "clef");
+      logDebugTrace("MusicXMLParserPass1::clef");
+
+      QString number = _e.attributes().value("number").toString();
+      int n = 0;
+      if (number != "") {
+            n = number.toInt();
+            if (n <= 0) {
+                  logError(QString("invalid number %1").arg(number));
+                  n = 0;
+                  }
+            else
+                  n--;              // make zero-based
+            }
+
+      StaffTypes staffType = StaffTypes::STANDARD;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "sign") {
+                  QString sign = _e.readElementText();
+                  if (sign == "TAB")
+                        staffType = StaffTypes::TAB_DEFAULT;
+                  else if (sign == "percussion")
+                        staffType = StaffTypes::PERC_DEFAULT;
+                  }
+            else
+                  skipLogCurrElem();
+            }
+
+      Part* part = getPart(partId);
+      Q_ASSERT(part);
+      int staves = part->nstaves();
+      int staffIdx = _score->staffIdx(part);
+
+      // TODO: changed for #55501, but now staff type init is shared between pass 1 and 2
+      // old code: if (0 <= n && n < staves && staffType != StaffTypes::STANDARD)
+      if (0 <= n && n < staves && staffType == StaffTypes::TAB_DEFAULT)
+            _score->staff(staffIdx + n)->setStaffType(StaffType::preset(staffType));
+      }
+
+//---------------------------------------------------------
+//   determineTimeSig
+//---------------------------------------------------------
+
+/**
+ Determine the time signature based on \a beats, \a beatType and \a timeSymbol.
+ Sets return parameters \a st, \a bts, \a btp.
+ Return true if OK, false on error.
+ */
+
+// TODO: share between pass 1 and pass 2
+
+static bool determineTimeSig(const QString beats, const QString beatType, const QString timeSymbol,
+                             TimeSigType& st, int& bts, int& btp)
+      {
+      // initialize
+      st  = TimeSigType::NORMAL;
+      bts = 0;             // the beats (max 4 separated by "+") as integer
+      btp = 0;             // beat-type as integer
+      // determine if timesig is valid
+      if (beats == "2" && beatType == "2" && timeSymbol == "cut") {
+            st = TimeSigType::ALLA_BREVE;
+            bts = 2;
+            btp = 2;
+            return true;
+            }
+      else if (beats == "4" && beatType == "4" && timeSymbol == "common") {
+            st = TimeSigType::FOUR_FOUR;
+            bts = 4;
+            btp = 4;
+            return true;
+            }
+      else {
+            if (!timeSymbol.isEmpty() && timeSymbol != "normal") {
+                  qDebug("ImportMusicXml: time symbol <%s> not recognized with beats=%s and beat-type=%s",
+                         qPrintable(timeSymbol), qPrintable(beats), qPrintable(beatType));       // TODO
+                  return false;
+                  }
+
+            btp = beatType.toInt();
+            QStringList list = beats.split("+");
+            for (int i = 0; i < list.size(); i++)
+                  bts += list.at(i).toInt();
+            }
+      return true;
+      }
+
+//---------------------------------------------------------
+//   time
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/attributes/time node.
+ */
+
+void MusicXMLParserPass1::time()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "time");
+
+      QString beats;
+      QString beatType;
+      QString timeSymbol = _e.attributes().value("symbol").toString();
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "beats")
+                  beats = _e.readElementText();
+            else if (_e.name() == "beat-type")
+                  beatType = _e.readElementText();
+            else
+                  skipLogCurrElem();
+            }
+
+      if (beats != "" && beatType != "") {
+            // determine if timesig is valid
+            TimeSigType st  = TimeSigType::NORMAL;
+            int bts = 0;       // total beats as integer (beats may contain multiple numbers, separated by "+")
+            int btp = 0;       // beat-type as integer
+            if (determineTimeSig(beats, beatType, timeSymbol, st, bts, btp)) {
+                  _timeSigDura = Fraction(bts, btp);
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   divisions
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/attributes/divisions node.
+ */
+
+void MusicXMLParserPass1::divisions()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "divisions");
+
+      _divs = _e.readElementText().toInt();
+      if (!(_divs > 0))
+            logError("illegal divisions");
+      }
+
+//---------------------------------------------------------
+//   setStaffLines
+//---------------------------------------------------------
+
+/**
+ Set stafflines and barline span for a single staff
+ */
+
+static void setStaffLines(Score* score, int staffIdx, int stafflines)
+      {
+      score->staff(staffIdx)->setLines(stafflines);
+      score->staff(staffIdx)->setBarLineTo((stafflines - 1) * 2);
+      }
+
+//---------------------------------------------------------
+//   staffDetails
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/attributes/staff-details node.
+ */
+
+void MusicXMLParserPass1::staffDetails(const QString& partId)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "staff-details");
+      logDebugTrace("MusicXMLParserPass1::staffDetails");
+
+      QString number = _e.attributes().value("number").toString();
+      int n = -1;       // invalid
+      if (number != "") {
+            n = number.toInt();
+            if (n <= 0) {
+                  logError(QString("invalid number %1").arg(number));
+                  n = -1;
+                  }
+            else
+                  n--;        // make zero-based
+            }
+
+      Part* part = getPart(partId);
+      Q_ASSERT(part);
+      int staves = part->nstaves();
+      int staffIdx = _score->staffIdx(part);
+
+      StringData* t = 0;
+      if (_score->staff(staffIdx)->isTabStaff()) {
+            t = new StringData;
+            t->setFrets(25);       // sensible default
+            }
+
+      int staffLines = 0;
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "staff-lines") {
+                  // save staff lines for later
+                  staffLines = _e.readElementText().toInt();
+                  // for a TAB staff also resize the string table and init with zeroes
+                  if (t) {
+                        if (0 < staffLines)
+                              t->stringList() = QVector<instrString>(staffLines).toList();
+                        else
+                              logError(QString("illegal staff-lines %1").arg(staffLines));
+                        }
+                  }
+            else if (_e.name() == "staff-tuning")
+                  staffTuning(t);
+            else
+                  skipLogCurrElem();
+            }
+
+      if (staffLines > 0) {
+            if (n == -1) {
+                  for (int i = 0; i < staves; ++i)
+                        setStaffLines(_score, staffIdx+i, staffLines);
+                  }
+            else
+                  setStaffLines(_score, staffIdx, staffLines);
+            }
+
+      if (t) {
+            Instrument* i = part->instrument();
+            i->setStringData(*t);
+            }
+      }
+
+//---------------------------------------------------------
+//   MusicXMLStepAltOct2Pitch
+//---------------------------------------------------------
+
+/**
+ Convert MusicXML \a step (0=C, 1=D, etc.) / \a alter / \a octave to midi pitch.
+ Note: same code is in pass 1 and in pass 2.
+ TODO: combine
+ */
+
+static int MusicXMLStepAltOct2Pitch(int step, int alter, int octave)
+      {
+      //                       c  d  e  f  g  a   b
+      static int table[7]  = { 0, 2, 4, 5, 7, 9, 11 };
+      if (step < 0 || step > 6) {
+            qDebug("MusicXMLStepAltOct2Pitch: illegal step %d", step);
+            return -1;
+            }
+      int pitch = table[step] + alter + (octave+1) * 12;
+
+      if (pitch < 0)
+            pitch = -1;
+      if (pitch > 127)
+            pitch = -1;
+
+      return pitch;
+      }
+
+//---------------------------------------------------------
+//   staffTuning
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/attributes/staff-details/staff-tuning node.
+ */
+
+void MusicXMLParserPass1::staffTuning(StringData* t)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "staff-tuning");
+      logDebugTrace("MusicXMLParserPass1::staffTuning");
+
+      // ignore <staff-tuning> if not a TAB staff
+      if (!t) {
+            logError("<staff-tuning> on non-TAB staff");
+            skipLogCurrElem();
+            return;
+            }
+
+      int line   = _e.attributes().value("line").toInt();
+      int step   = 0;
+      int alter  = 0;
+      int octave = 0;
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "tuning-alter")
+                  alter = _e.readElementText().toInt();
+            else if (_e.name() == "tuning-octave")
+                  octave = _e.readElementText().toInt();
+            else if (_e.name() == "tuning-step") {
+                  QString strStep = _e.readElementText();
+                  int pos = QString("CDEFGAB").indexOf(strStep);
+                  if (strStep.size() == 1 && pos >=0 && pos < 7)
+                        step = pos;
+                  else
+                        logError(QString("invalid step '%1'").arg(strStep));
+                  }
+            else
+                  skipLogCurrElem();
+            }
+
+      if (0 < line && line <= t->stringList().size()) {
+            int pitch = MusicXMLStepAltOct2Pitch(step, alter, octave);
+            if (pitch >= 0)
+                  t->stringList()[line - 1].pitch = pitch;
+            else
+                  logError(QString("invalid string %1 tuning step/alter/oct %2/%3/%4")
+                           .arg(line).arg(step).arg(alter).arg(octave));
+            }
+
+      }
+
+//---------------------------------------------------------
+//   staves
+//---------------------------------------------------------
+
+/**
+ Set number of staves for part \a partId to the max value of the current value
+ and the value in the <staves> element.
+ */
+
+void MusicXMLParserPass1::staves(const QString& partId)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "staves");
+      logDebugTrace("MusicXMLParserPass1::staves");
+
+      int staves = _e.readElementText().toInt();
+      if (!(staves > 0 && staves <= MAX_STAVES)) {
+            logError("illegal staves");
+            return;
+            }
+
+      Part* part = _partMap.value(partId);
+      Q_ASSERT(part);
+      if (staves > part->nstaves())
+            part->setStaves(staves);
+      }
+
+//---------------------------------------------------------
+//   direction
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/direction node
+ to be able to handle octave-shifts, as these must be interpreted
+ in musical order instead of in MusicXML file order.
+ */
+
+void MusicXMLParserPass1::direction(const QString& partId, const Fraction cTime)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "direction");
+
+      // note: file order is direction-type first, then staff
+      // this means staff is still unknown when direction-type is handled
+
+      QList<MxmlOctaveShiftDesc> starts;
+      QList<MxmlOctaveShiftDesc> stops;
+      int staff = 0;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "direction-type")
+                  directionType(cTime, starts, stops);
+            else if (_e.name() == "staff") {
+                  int nstaves = getPart(partId)->nstaves();
+                  QString strStaff = _e.readElementText();
+                  staff = strStaff.toInt() - 1;
+                  if (0 <= staff && staff < nstaves)
+                        ;  //qDebug("direction staff %d", staff + 1);
+                  else {
+                        logError(QString("invalid staff %1").arg(strStaff));
+                        staff = 0;
+                        }
+                  }
+            else
+                  _e.skipCurrentElement();
+            }
+
+      // handle the stops first
+      foreach (auto desc, stops) {
+            if (_octaveShifts.contains(desc.num)) {
+                  MxmlOctaveShiftDesc prevDesc = _octaveShifts.value(desc.num);
+                  if (prevDesc.tp == MxmlOctaveShiftDesc::Type::UP
+                      || prevDesc.tp == MxmlOctaveShiftDesc::Type::DOWN) {
+                        // a complete pair
+                        qDebug("octave-shift start %s delta %d",
+                               qPrintable(prevDesc.time.print()), prevDesc.size);
+                        _parts[partId].addOctaveShift(staff, prevDesc.size, prevDesc.time);
+                        qDebug("octave-shift stop %s delta %d",
+                               qPrintable(desc.time.print()), -prevDesc.size);
+                        _parts[partId].addOctaveShift(staff, -prevDesc.size, desc.time);
+                        }
+                  else
+                        logError("double octave-shift stop");
+                  _octaveShifts.remove(desc.num);
+                  }
+            else
+                  _octaveShifts.insert(desc.num, desc);
+            }
+
+      // then handle the starts
+      foreach (auto desc, starts) {
+            if (_octaveShifts.contains(desc.num)) {
+                  MxmlOctaveShiftDesc prevDesc = _octaveShifts.value(desc.num);
+                  if (prevDesc.tp == MxmlOctaveShiftDesc::Type::STOP) {
+                        // a complete pair
+                        qDebug("octave-shift start %s delta %d",
+                               qPrintable(desc.time.print()), desc.size);
+                        _parts[partId].addOctaveShift(staff, desc.size, desc.time);
+                        qDebug("octave-shift stop %s delta %d",
+                               qPrintable(prevDesc.time.print()), -desc.size);
+                        _parts[partId].addOctaveShift(staff, -desc.size, prevDesc.time);
+                        }
+                  else
+                        logError("double octave-shift start");
+                  _octaveShifts.remove(desc.num);
+                  }
+            else
+                  _octaveShifts.insert(desc.num, desc);
+            }
+      }
+
+//---------------------------------------------------------
+//   directionType
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/direction/direction-type node.
+ */
+
+void MusicXMLParserPass1::directionType(const Fraction cTime,
+                                        QList<MxmlOctaveShiftDesc>& starts,
+                                        QList<MxmlOctaveShiftDesc>& stops)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "direction-type");
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "octave-shift") {
+                  QString number = _e.attributes().value("number").toString();
+                  int n = 0;
+                  if (number != "") {
+                        n = number.toInt();
+                        if (n <= 0)
+                              logError(QString("invalid number %1").arg(number));
+                        else
+                              n--;  // make zero-based
+                        }
+
+                  if (0 <= n && n < MAX_NUMBER_LEVEL) {
+                        short size = _e.attributes().value("size").toShort();
+                        QString type = _e.attributes().value("type").toString();
+                        qDebug("octave-shift type '%s' size %d number %d", qPrintable(type), size, n);
+                        MxmlOctaveShiftDesc osDesc;
+                        handleOctaveShift(cTime, type, size, osDesc);
+                        osDesc.num = n;
+                        if (osDesc.tp == MxmlOctaveShiftDesc::Type::UP
+                            || osDesc.tp == MxmlOctaveShiftDesc::Type::DOWN)
+                              starts.append(osDesc);
+                        else if (osDesc.tp == MxmlOctaveShiftDesc::Type::STOP)
+                              stops.append(osDesc);
+                        }
+                  else {
+                        logError(QString("invalid octave-shift number %1").arg(number));
+                        }
+                  _e.skipCurrentElement();
+                  }
+            else
+                  _e.skipCurrentElement();
+            }
+
+      Q_ASSERT(_e.isEndElement() && _e.name() == "direction-type");
+      }
+
+//---------------------------------------------------------
+//   handleOctaveShift
+//---------------------------------------------------------
+
+void MusicXMLParserPass1::handleOctaveShift(const Fraction cTime,
+                                            const QString& type, short size,
+                                            MxmlOctaveShiftDesc& desc)
+      {
+      MxmlOctaveShiftDesc::Type tp = MxmlOctaveShiftDesc::Type::NONE;
+      short sz = 0;
+
+      switch (size) {
+            case   8: sz =  1; break;
+            case  15: sz =  2; break;
+            default:
+                  logError(QString("invalid octave-shift size %1").arg(size));
+                  return;
+            }
+
+      if (!cTime.isValid() || cTime < Fraction(0, 1))
+            logError("invalid current time");
+
+      if (type == "up")
+            tp = MxmlOctaveShiftDesc::Type::UP;
+      else if (type == "down") {
+            tp = MxmlOctaveShiftDesc::Type::DOWN;
+            sz *= -1;
+            }
+      else if (type == "stop")
+            tp = MxmlOctaveShiftDesc::Type::STOP;
+      else {
+            logError(QString("invalid octave-shift type '%1'").arg(type));
+            return;
+            }
+
+      desc = MxmlOctaveShiftDesc(tp, sz, cTime);
+      }
+
+//---------------------------------------------------------
+//   note
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note node.
+ */
+
+void MusicXMLParserPass1::note(const QString& partId,
+                               const Fraction sTime,
+                               Fraction& dura,
+                               VoiceOverlapDetector& vod)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "note");
+      //logDebugTrace("MusicXMLParserPass1::note");
+
+      if (_e.attributes().value("print-spacing") == "no") {
+            notePrintSpacingNo(dura);
+            return;
+            }
+
+      //float alter = 0;
+      bool chord = false;
+      int dots = 0;
+      bool grace = false;
+      //int octave = -1;
+      bool bRest = false;
+      int staff = 1;
+      //int step = 0;
+      Fraction timeMod(1, 1);
+      QString type;
+      QString voice = "1";
+      QString instrId;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "chord") {
+                  chord = true;
+                  _e.readNext();
+                  }
+            else if (_e.name() == "dot") {
+                  dots++;
+                  _e.readNext();
+                  }
+            else if (_e.name() == "duration")
+                  duration(dura);
+            else if (_e.name() == "grace") {
+                  grace = true;
+                  _e.readNext();
+                  }
+            else if (_e.name() == "instrument") {
+                  instrId = _e.attributes().value("id").toString();
+                  _e.readNext();
+                  }
+            else if (_e.name() == "pitch")
+                  _e.skipCurrentElement();  // skip but don't log
+            else if (_e.name() == "rest") {
+                  bRest = true;
+                  rest();
+                  }
+            else if (_e.name() == "staff") {
+                  QString strStaff = _e.readElementText();
+                  staff = strStaff.toInt();
+                  // Bug fix for Cubase 6.5.5 which generates <staff>2</staff> in a single staff part
+                  // Same fix is required in pass 1 and pass 2
+                  Part* part = _partMap.value(partId);
+                  Q_ASSERT(part);
+                  if (staff <= 0 || staff > part->nstaves()) {
+                        logError(QString("illegal staff '%1'").arg(strStaff));
+                        staff = 1;
+                        }
+                  }
+            else if (_e.name() == "time-modification")
+                  timeModification(timeMod);
+            else if (_e.name() == "type")
+                  type = _e.readElementText();
+            else if (_e.name() == "voice")
+                  voice = _e.readElementText();
+            else
+                  skipLogCurrElem();
+            }
+
+      // convert staff to zero-based
+      staff--;
+
+      // multi-instrument handling
+      QString prevInstrId = _parts[partId]._instrList.instrument(sTime);
+      bool mustInsert = instrId != prevInstrId;
+      /*
+      qDebug("tick %s (%d) staff %d voice '%s' previnst='%s' instrument '%s' insert %d",
+             qPrintable(sTime.print()),
+             sTime.ticks(),
+             staff + 1,
+             qPrintable(voice),
+             qPrintable(prevInstrId),
+             qPrintable(instrId),
+             mustInsert
+             );
+      */
+      if (mustInsert)
+            _parts[partId]._instrList.setInstrument(instrId, sTime);
+
+      // normalize duration
+      if (dura.isValid())
+            dura.reduce();
+
+      // timing error check(s)
+      QString errorStr;
+      Fraction calcDura = calculateFraction(type, dots, timeMod);
+      if (dura.isValid() && calcDura.isValid()) {
+            if (dura != calcDura) {
+                  errorStr = "calculated duration not equal to specified duration";
+
+                  if (bRest && type == "whole" && dura.isValid()) {
+                        // Sibelius whole measure rest (not an error)
+                        errorStr = "";
+                        }
+                  else {
+                        const int maxDiff = 3; // maximum difference considered a rounding error
+                        if (qAbs(calcDura.ticks() - dura.ticks()) <= maxDiff) {
+                              errorStr += " -> assuming rounding error";
+                              dura = calcDura;
+                              }
+                        }
+                  }
+            }
+      else if (dura.isValid()) {
+            // do not report an error for typeless (whole measure) rests
+            if (!(bRest && type == ""))
+                  errorStr = "calculated duration invalid, using specified duration";
+            }
+      else if (calcDura.isValid()) {
+            if (!grace) {
+                  errorStr = "specified duration invalid, using calculated duration";
+                  dura = calcDura; // overrule dura
+                  }
+            }
+      else
+            errorStr = "calculated and specified duration invalid";
+      if (errorStr != "")
+            logError(errorStr);
+
+      // don't count chord or grace note duration
+      // note that this does not check the MusicXML requirement that notes in a chord
+      // cannot have a duration longer than the first note in the chord
+      if (chord || grace)
+            dura.set(0, 1);
+
+      // store result
+      if (dura.isValid() && dura > Fraction(0, 1)) {
+            // count the chords
+            if (!_parts.value(partId).voicelist.contains(voice)) {
+                  VoiceDesc vs;
+                  _parts[partId].voicelist.insert(voice, vs);
+                  }
+            _parts[partId].voicelist[voice].incrChordRests(staff);
+            // determine note length for voice overlap detection
+            // TODO
+            vod.addNote(sTime.ticks(), (sTime + dura).ticks(), voice, staff);
+            }
+      }
+
+//---------------------------------------------------------
+//   notePrintSpacingNo
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note node for a note with print-spacing="no".
+ These are handled like a forward: only moving the time forward.
+ */
+
+void MusicXMLParserPass1::notePrintSpacingNo(Fraction& dura)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "note");
+      //logDebugTrace("MusicXMLParserPass1::notePrintSpacingNo");
+
+      bool chord = false;
+      bool grace = false;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "chord") {
+                  chord = true;
+                  _e.readNext();
+                  }
+            else if (_e.name() == "duration")
+                  duration(dura);
+            else if (_e.name() == "grace") {
+                  grace = true;
+                  _e.readNext();
+                  }
+            else
+                  _e.skipCurrentElement();        // skip but don't log
+            }
+
+      // don't count chord or grace note duration
+      // note that this does not check the MusicXML requirement that notes in a chord
+      // cannot have a duration longer than the first note in the chord
+      if (chord || grace)
+            dura.set(0, 1);
+
+      Q_ASSERT(_e.isEndElement() && _e.name() == "note");
+      }
+
+//---------------------------------------------------------
+//   duration
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/duration node.
+ */
+
+void MusicXMLParserPass1::duration(Fraction& dura)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "duration");
+      //logDebugTrace("MusicXMLParserPass1::duration");
+
+      dura.set(0, 0);  // invalid unless set correctly
+      int intDura = _e.readElementText().toInt();
+      if (intDura > 0) {
+            if (_divs > 0)
+                  dura.set(intDura, 4 * _divs);
+            else
+                  logError("illegal or uninitialized divisions");
+            }
+      else
+            logError("illegal duration");
+      //qDebug("duration %s valid %d", qPrintable(dura.print()), dura.isValid());
+      }
+
+//---------------------------------------------------------
+//   forward
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/forward node.
+ */
+
+void MusicXMLParserPass1::forward(Fraction& dura)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "forward");
+      //logDebugTrace("MusicXMLParserPass1::forward");
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "duration")
+                  duration(dura);
+            else if (_e.name() == "staff")
+                  _e.skipCurrentElement();  // skip but don't log
+            else if (_e.name() == "voice")
+                  _e.skipCurrentElement();  // skip but don't log
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   backup
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/backup node.
+ */
+
+void MusicXMLParserPass1::backup(Fraction& dura)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "backup");
+      //logDebugTrace("MusicXMLParserPass1::backup");
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "duration")
+                  duration(dura);
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   timeModification
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/time-modification node.
+ */
+
+void MusicXMLParserPass1::timeModification(Fraction& timeMod)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "time-modification");
+      //logDebugTrace("MusicXMLParserPass1::timeModification");
+
+      int intActual = 0;
+      int intNormal = 0;
+      QString strActual;
+      QString strNormal;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "actual-notes")
+                  strActual = _e.readElementText();
+            else if (_e.name() == "normal-notes")
+                  strNormal = _e.readElementText();
+            else
+                  skipLogCurrElem();
+            }
+
+      intActual = strActual.toInt();
+      intNormal = strNormal.toInt();
+      if (intActual > 0 && intNormal > 0)
+            timeMod.set(intNormal, intActual);
+      else {
+            timeMod.set(1, 1);
+            logError(QString("illegal time-modification: actual-notes %1 normal-notes %2")
+                     .arg(strActual).arg(strNormal));
+            }
+      }
+
+//---------------------------------------------------------
+//   rest
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/rest node.
+ */
+
+void MusicXMLParserPass1::rest()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "rest");
+      //logDebugTrace("MusicXMLParserPass1::rest");
+
+      while (_e.readNextStartElement()) {
+            skipLogCurrElem();
+            }
+      }
+
+} // namespace Ms
diff --git a/mscore/importmxmlpass1.h b/mscore/importmxmlpass1.h
new file mode 100644
index 0000000..9c315a5
--- /dev/null
+++ b/mscore/importmxmlpass1.h
@@ -0,0 +1,120 @@
+//=============================================================================
+//  MuseScore
+//  Linux Music Score Editor
+//
+//  Copyright (C) 2015 Werner Schweer and others
+//
+//  This program is free software; you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License version 2.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, write to the Free Software
+//  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+//=============================================================================
+
+#ifndef __IMPORTMXMLPASS1_H__
+#define __IMPORTMXMLPASS1_H__
+
+#include "libmscore/score.h"
+#include "importxmlfirstpass.h"
+#include "musicxml.h" // for the creditwords and MusicXmlPartGroupList definitions
+#include "musicxmlsupport.h"
+
+namespace Ms {
+
+typedef QMap<QString, Part*> PartMap;
+typedef std::map<int,MusicXmlPartGroup*> MusicXmlPartGroupMap;
+
+//---------------------------------------------------------
+//   MxmlOctaveShiftDesc
+//---------------------------------------------------------
+
+struct MxmlOctaveShiftDesc {
+      enum class Type : char { UP, DOWN, STOP, NONE };
+      Type tp;
+      short size;
+      Fraction time;
+      short num;
+      MxmlOctaveShiftDesc() : tp(Type::NONE), size(0), num(-1) {}
+      MxmlOctaveShiftDesc(Type _tp, short _size, Fraction _tm) : tp(_tp), size(_size), time(_tm), num(-1) {}
+      };
+
+class MusicXMLParserPass1 {
+public:
+      MusicXMLParserPass1(Score* score);
+      void initPartState(const QString& partId);
+      Score::FileError parse(QIODevice* device);
+      Score::FileError parse();
+      void scorePartwise();
+      void identification();
+      void credit(CreditWordsList& credits);
+      void defaults(int& pageWidth, int& pageHeight);
+      void pageLayout(PageFormat& pf, const qreal conversion, int& pageWidth, int& pageHeight);
+      void partList(MusicXmlPartGroupList& partGroupList);
+      void partGroup(const int scoreParts, MusicXmlPartGroupList& partGroupList, MusicXmlPartGroupMap& partGroups);
+      void scorePart();
+      void scoreInstrument(const QString& partId);
+      void midiInstrument(const QString& partId);
+      void part();
+      void measure(const QString& partId, const Fraction time, Fraction& mdur, VoiceOverlapDetector& vod);
+      void attributes(const QString& partId);
+      void clef(const QString& partId);
+      void time();
+      void divisions();
+      void staffDetails(const QString& partId);
+      void staffTuning(StringData* t);
+      void staves(const QString& partId);
+      void direction(const QString& partId, const Fraction cTime);
+      void directionType(const Fraction cTime, QList<MxmlOctaveShiftDesc>& starts, QList<MxmlOctaveShiftDesc>& stops);
+      void handleOctaveShift(const Fraction cTime, const QString& type, short size, MxmlOctaveShiftDesc& desc);
+      void note(const QString& partId, const Fraction cTime, Fraction& dura, VoiceOverlapDetector& vod);
+      void notePrintSpacingNo(Fraction& dura);
+      void duration(Fraction& dura);
+      void forward(Fraction& dura);
+      void backup(Fraction& dura);
+      void timeModification(Fraction& timeMod);
+      void pitch(int& step, float& alter, int& oct);
+      void rest();
+      QString getParseStatus() const { return _parseStatus; }
+      void logDebugTrace(const QString& info);
+      void logDebugInfo(const QString& info);
+      void logError(const QString& error);
+      void skipLogCurrElem();
+      bool determineMeasureLength(QVector<Fraction>& ml) const;
+      VoiceList getVoiceList(const QString id) const;
+      bool determineStaffMoveVoice(const QString& id, const int mxStaff, const QString& mxVoice,
+                                   int& msMove, int& msTrack, int& msVoice) const;
+      int trackForPart(const QString& id) const;
+      bool hasPart(const QString& id) const;
+      Part* getPart(const QString& id) const { return _partMap.value(id); }
+      MusicXMLDrumset getDrumset(const QString& id) const { return _drumsets.value(id); }
+      void setDrumsetDefault(const QString& id, const QString& instrId, const NoteHead::Group hg, const int line, const MScore::Direction sd);
+      MusicXmlInstrList getInstrList(const QString id) const;
+      Fraction getMeasureStart(const int i) const;
+      int octaveShift(const QString& id, const int staff, const Fraction f) const;
+
+private:
+      // generic pass 1 data
+
+      QXmlStreamReader _e;
+      int _divs;                                ///< Current MusicXML divisions value
+      QMap<QString, MusicXmlPart> _parts;       ///< Parts data, mapped on part id
+      QVector<Fraction> _measureLength;         ///< Length of each measure
+      QVector<Fraction> _measureStart;          ///< Start time of each measure
+      PartMap _partMap;                         ///< TODO merge into MusicXmlPart ??
+      QMap<QString, MusicXMLDrumset> _drumsets; ///< Drumset for each part, mapped on part id
+      QString _parseStatus;                     ///< Parse status (typicallay a short error message)
+      Score* _score;                            ///< MuseScore score
+
+      // part specific data (TODO: move to part-specific class)
+      Fraction _timeSigDura;                    ///< Measure duration according to last timesig read
+      QMap<int, MxmlOctaveShiftDesc> _octaveShifts; ///< Pending octave-shifts
+      };
+
+} // namespace Ms
+#endif
diff --git a/mscore/importmxmlpass2.cpp b/mscore/importmxmlpass2.cpp
new file mode 100644
index 0000000..9752739
--- /dev/null
+++ b/mscore/importmxmlpass2.cpp
@@ -0,0 +1,5761 @@
+//=============================================================================
+//  MuseScore
+//  Linux Music Score Editor
+//
+//  Copyright (C) 2015 Werner Schweer and others
+//
+//  This program is free software; you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License version 2.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, write to the Free Software
+//  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+//=============================================================================
+
+#include "libmscore/arpeggio.h"
+#include "libmscore/accidental.h"
+#include "libmscore/breath.h"
+#include "libmscore/chord.h"
+#include "libmscore/chordline.h"
+#include "libmscore/chordlist.h"
+#include "libmscore/chordrest.h"
+#include "libmscore/drumset.h"
+#include "libmscore/dynamic.h"
+#include "libmscore/figuredbass.h"
+#include "libmscore/fingering.h"
+#include "libmscore/fret.h"
+#include "libmscore/glissando.h"
+#include "libmscore/hairpin.h"
+#include "libmscore/harmony.h"
+#include "libmscore/instrchange.h"
+#include "libmscore/interval.h"
+#include "libmscore/jump.h"
+#include "libmscore/keysig.h"
+#include "libmscore/lyrics.h"
+#include "libmscore/marker.h"
+#include "libmscore/measure.h"
+#include "libmscore/mscore.h"
+#include "libmscore/note.h"
+#include "libmscore/part.h"
+#include "libmscore/pedal.h"
+#include "libmscore/rest.h"
+#include "libmscore/slur.h"
+#include "libmscore/staff.h"
+#include "libmscore/stafftext.h"
+#include "libmscore/sym.h"
+#include "libmscore/tempotext.h"
+#include "libmscore/tie.h"
+#include "libmscore/timesig.h"
+#include "libmscore/tremolo.h"
+#include "libmscore/trill.h"
+#include "libmscore/utils.h"
+#include "libmscore/volta.h"
+
+#include "importmxmlpass2.h"
+#include "musicxmlfonthandler.h"
+#include "musicxmlsupport.h"
+#include "preferences.h"
+
+namespace Ms {
+
+//---------------------------------------------------------
+//   local defines for debug output
+//---------------------------------------------------------
+
+//#define DEBUG_VOICE_MAPPER true
+
+//---------------------------------------------------------
+//   support enums / structs / classes
+//---------------------------------------------------------
+
+//---------------------------------------------------------
+//   MusicXmlTupletDesc
+//---------------------------------------------------------
+
+MusicXmlTupletDesc::MusicXmlTupletDesc()
+      : type(MxmlStartStop::NONE), placement(Element::Placement::BELOW),
+      bracket(Tuplet::BracketType::AUTO_BRACKET), shownumber(Tuplet::NumberType::SHOW_NUMBER)
+      {
+      // nothing
+      }
+
+//---------------------------------------------------------
+//   noteTypeToFraction
+//---------------------------------------------------------
+
+/**
+ Convert MusicXML note type to fraction.
+ */
+
+static Fraction noteTypeToFraction(const QString& type)
+      {
+      if (type == "1024th")
+            return Fraction(1, 1024);
+      else if (type == "512th")
+            return Fraction(1, 512);
+      else if (type == "256th")
+            return Fraction(1, 256);
+      else if (type == "128th")
+            return Fraction(1, 128);
+      else if (type == "64th")
+            return Fraction(1, 64);
+      else if (type == "32nd")
+            return Fraction(1, 32);
+      else if (type == "16th")
+            return Fraction(1, 16);
+      else if (type == "eighth")
+            return Fraction(1, 8);
+      else if (type == "quarter")
+            return Fraction(1, 4);
+      else if (type == "half")
+            return Fraction(1, 2);
+      else if (type == "whole")
+            return Fraction(1, 1);
+      else if (type == "breve")
+            return Fraction(2, 1);
+      else if (type == "long")
+            return Fraction(4, 1);
+      else if (type == "maxima")
+            return Fraction(8, 1);
+      else
+            return Fraction(0, 0);
+      }
+
+//---------------------------------------------------------
+//   calculateFraction
+//---------------------------------------------------------
+
+/**
+ Convert note type, number of dots and actual and normal notes into a duration
+ */
+
+static Fraction calculateFraction(const QString& type, const int dots, const Fraction timeMod)
+      {
+      // type
+      Fraction f = noteTypeToFraction(type);
+      if (f.isValid()) {
+            // dot(s)
+            Fraction f_no_dots = f;
+            for (int i = 0; i < dots; ++i)
+                  f += (f_no_dots / (2 << i));
+            // tuplet
+            if (timeMod.isValid())
+                  f *= timeMod;
+            // clean up (just in case)
+            f.reduce();
+            }
+      return f;
+      }
+
+//---------------------------------------------------------
+//   MusicXMLStepAltOct2Pitch
+//---------------------------------------------------------
+
+/**
+ Convert MusicXML \a step (0=C, 1=D, etc.) / \a alter / \a octave to midi pitch.
+ Note: same code is in pass 1 and in pass 2.
+ TODO: combine
+ */
+
+static int MusicXMLStepAltOct2Pitch(int step, int alter, int octave)
+      {
+      //                       c  d  e  f  g  a   b
+      static int table[7]  = { 0, 2, 4, 5, 7, 9, 11 };
+      if (step < 0 || step > 6) {
+            qDebug("MusicXMLStepAltOct2Pitch: illegal step %d", step);
+            return -1;
+            }
+      int pitch = table[step] + alter + (octave+1) * 12;
+
+      if (pitch < 0)
+            pitch = -1;
+      if (pitch > 127)
+            pitch = -1;
+
+      return pitch;
+      }
+
+//---------------------------------------------------------
+//   xmlSetPitch
+//---------------------------------------------------------
+
+/**
+ Convert MusicXML \a step / \a alter / \a octave to midi pitch,
+ set pitch and tpc.
+ Note that n's staff and track have not been set yet
+ */
+
+static void xmlSetPitch(Note* n, int step, int alter, int octave, const int octaveShift, const Instrument* instr)
+      {
+      //qDebug("xmlSetPitch(n=%p, step=%d, alter=%d, octave=%d, octaveShift=%d)",
+      //       n, step, alter, octave, octaveShift);
+
+      //const Staff* staff = n->score()->staff(track / VOICES);
+      //const Instrument* instr = staff->part()->instr();
+
+      const Interval intval = instr->transpose();
+
+      //qDebug("  staff=%p instr=%p dia=%d chro=%d",
+      //       staff, instr, (int) intval.diatonic, (int) intval.chromatic);
+
+      int pitch = MusicXMLStepAltOct2Pitch(step, alter, octave);
+      pitch += intval.chromatic; // assume not in concert pitch
+      pitch += 12 * octaveShift; // correct for octave shift
+      // ensure sane values
+      pitch = limit(pitch, 0, 127);
+
+      int tpc2 = step2tpc(step, AccidentalVal(alter));
+      int tpc1 = Ms::transposeTpc(tpc2, intval, true);
+      n->setPitch(pitch, tpc1, tpc2);
+      //qDebug("  pitch=%d tpc1=%d tpc2=%d", n->pitch(), n->tpc1(), n->tpc2());
+      }
+
+//---------------------------------------------------------
+//   fillGap
+//---------------------------------------------------------
+
+/**
+ Fill one gap (tstart - tend) in this track in this measure with rest(s).
+ */
+
+static void fillGap(Measure* measure, int track, int tstart, int tend)
+      {
+      int ctick = tstart;
+      int restLen = tend - tstart;
+      // qDebug("\nfillGIFV     fillGap(measure %p track %d tstart %d tend %d) restLen %d len",
+      //        measure, track, tstart, tend, restLen);
+      // note: as MScore::division (#ticks in a quarter note) equals 480
+      // MScore::division / 64 (#ticks in a 256th note) uequals 7.5 but is rounded down to 7
+      while (restLen > MScore::division / 64) {
+            int len = restLen;
+            TDuration d(TDuration::DurationType::V_INVALID);
+            if (measure->ticks() == restLen)
+                  d.setType(TDuration::DurationType::V_MEASURE);
+            else
+                  d.setVal(len);
+            Rest* rest = new Rest(measure->score(), d);
+            rest->setDuration(Fraction::fromTicks(len));
+            rest->setTrack(track);
+            rest->setVisible(false);
+            Segment* s = measure->getSegment(rest, tstart);
+            s->add(rest);
+            len = rest->globalDuration().ticks();
+            // qDebug(" %d", len);
+            ctick   += len;
+            restLen -= len;
+            }
+      }
+
+//---------------------------------------------------------
+//   fillGapsInFirstVoices
+//---------------------------------------------------------
+
+/**
+ Fill gaps in first voice of every staff in this measure for this part with rest(s).
+ */
+
+static void fillGapsInFirstVoices(Measure* measure, Part* part)
+      {
+      Q_ASSERT(measure);
+      Q_ASSERT(part);
+
+      int measTick     = measure->tick();
+      int measLen      = measure->ticks();
+      int nextMeasTick = measTick + measLen;
+      int staffIdx = part->score()->staffIdx(part);
+      /*
+       qDebug("fillGIFV measure %p part %p idx %d nstaves %d tick %d - %d (len %d)",
+       measure, part, staffIdx, part->nstaves(),
+       measTick, nextMeasTick, measLen);
+       */
+      for (int st = 0; st < part->nstaves(); ++st) {
+            int track = (staffIdx + st) * VOICES;
+            int endOfLastCR = measTick;
+            for (Segment* s = measure->first(); s; s = s->next()) {
+                  // qDebug("fillGIFV   segment %p tp %s", s, s->subTypeName());
+                  Element* el = s->element(track);
+                  if (el) {
+                        // qDebug(" el[%d] %p", track, el);
+                        if (s->isChordRest()) {
+                              ChordRest* cr  = static_cast<ChordRest*>(el);
+                              int crTick     = cr->tick();
+                              int crLen      = cr->globalDuration().ticks();
+                              int nextCrTick = crTick + crLen;
+                              /*
+                               qDebug(" chord/rest tick %d - %d (len %d)",
+                               crTick, nextCrTick, crLen);
+                               */
+                              if (crTick > endOfLastCR) {
+                                    /*
+                                     qDebug(" GAP: track %d tick %d - %d",
+                                     track, endOfLastCR, crTick);
+                                     */
+                                    fillGap(measure, track, endOfLastCR, crTick);
+                                    }
+                              endOfLastCR = nextCrTick;
+                              }
+                        }
+                  }
+            if (nextMeasTick > endOfLastCR) {
+                  /*
+                   qDebug("fillGIFV   measure end GAP: track %d tick %d - %d",
+                   track, endOfLastCR, nextMeasTick);
+                   */
+                  fillGap(measure, track, endOfLastCR, nextMeasTick);
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   hasDrumset
+//---------------------------------------------------------
+
+/**
+ Determine if \a mxmlDrumset contains a valid drumset.
+ This is the case if any instrument has a midi-unpitched element,
+ (which stored in the MusicXMLDrumInstrument pitch field).
+ */
+
+static bool hasDrumset(const MusicXMLDrumset& mxmlDrumset)
+      {
+      bool res = false;
+      MusicXMLDrumsetIterator ii(mxmlDrumset);
+      while (ii.hasNext()) {
+            ii.next();
+            // debug: dump the drumset
+            //qDebug("hasDrumset: instrument: %s %s", qPrintable(ii.key()), qPrintable(ii.value().toString()));
+            int pitch = ii.value().pitch;
+            if (0 <= pitch && pitch <= 127) {
+                  res = true;
+                  }
+            }
+
+      return res;
+      }
+
+//---------------------------------------------------------
+//   initDrumset
+//---------------------------------------------------------
+
+/**
+ Initialize drumset \a drumset.
+ */
+
+// determine if the part contains a drumset
+// this is the case if any instrument has a midi-unpitched element,
+// (which stored in the MusicXMLDrumInstrument pitch field)
+// if the part contains a drumset, Drumset drumset is intialized
+
+static void initDrumset(Drumset* drumset, const MusicXMLDrumset& mxmlDrumset)
+      {
+      drumset->clear();
+      MusicXMLDrumsetIterator ii(mxmlDrumset);
+      while (ii.hasNext()) {
+            ii.next();
+            // debug: also dump the drumset for this part
+            //qDebug("initDrumset: instrument: %s %s", qPrintable(ii.key()), qPrintable(ii.value().toString()));
+            int pitch = ii.value().pitch;
+            if (0 <= pitch && pitch <= 127) {
+                  drumset->drum(ii.value().pitch)
+                        = DrumInstrument(ii.value().name.toLatin1().constData(),
+                                         ii.value().notehead, ii.value().line, ii.value().stemDirection);
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   setFirstInstrument
+//---------------------------------------------------------
+
+/**
+ Set first instrument for Part \a part
+ */
+
+static void setFirstInstrument(Part* part, const QString& partId,
+                               const QString& instrId, const MusicXMLDrumset& mxmlDrumset)
+      {
+      if (mxmlDrumset.size() > 0) {
+            //qDebug("setFirstInstrument: initial instrument '%s'", qPrintable(instrId));
+            MusicXMLDrumInstrument instr;
+            if (instrId == "")
+                  instr = mxmlDrumset.first();
+            else if (mxmlDrumset.contains(instrId))
+                  instr = mxmlDrumset.value(instrId);
+            else {
+                  qDebug("setFirstInstrument: initial instrument '%s' not found in part '%s'", qPrintable(instrId), qPrintable(partId)); // TODO
+                  instr = mxmlDrumset.first();
+                  }
+            // part->setMidiChannel(instr.midiChannel); not required (is a NOP anyway)
+            part->setMidiProgram(instr.midiProgram);
+            part->setPan(instr.midiPan);
+            part->setVolume(instr.midiVolume);
+            part->instrument()->setTrackName(instr.name);
+            }
+      else
+            qDebug("setFirstInstrument: no instrument found for part '%s'", qPrintable(partId));  // TODO
+
+      }
+
+//---------------------------------------------------------
+//   setStaffTypePercussion
+//---------------------------------------------------------
+
+/**
+ Set staff type to percussion
+ */
+
+static void setStaffTypePercussion(Part* part, Drumset* drumset)
+      {
+      for (int j = 0; j < part->nstaves(); ++j)
+            if (part->staff(j)->lines() == 5 && !part->staff(j)->isDrumStaff())
+                  part->staff(j)->setStaffType(StaffType::preset(StaffTypes::PERC_DEFAULT));
+      // set drumset for instrument
+      part->instrument()->setDrumset(drumset);
+      part->instrument()->channel(0)->bank = 128;
+      part->instrument()->channel(0)->updateInitList();
+      }
+
+//---------------------------------------------------------
+//   findDeleteStaffText
+//---------------------------------------------------------
+
+/**
+ Find a non-empty staff text in \a s at \a track (which originates as MusicXML <words>).
+ If found, delete it and return its text.
+ */
+
+static QString findDeleteStaffText(Segment* s, int track)
+      {
+      //qDebug("findDeleteWords(s %p track %d)", s, track);
+      foreach (Element* e, s->annotations()) {
+            //qDebug("findDeleteWords e %p type %hhd track %d", e, e->type(), e->track());
+            if (e->type() != Element::Type::STAFF_TEXT || e->track() < track || e->track() >= track+VOICES)
+                  continue;
+            Text* t = static_cast<Text*>(e);
+            //qDebug("findDeleteWords t %p text '%s'", t, qPrintable(t->text()));
+            QString res = t->xmlText();
+            if (res != "") {
+                  s->remove(t);
+                  return res;
+                  }
+            }
+      return "";
+      }
+
+//---------------------------------------------------------
+//   setPartInstruments
+//---------------------------------------------------------
+
+static void setPartInstruments(Part* part, const QString& partId,
+                               Score* score, const MusicXmlInstrList& il, const MusicXMLDrumset& mxmlDrumset)
+      {
+      for (auto it = il.cbegin(); it != il.cend(); ++it) {
+            Fraction f = (*it).first;
+            if (f > Fraction(0, 1)) {
+                  auto instrId = (*it).second;
+                  int staff = score->staffIdx(part);
+                  int track = staff * VOICES;
+                  //qDebug("setPartInstruments: instrument change: tick %s (%d) track %d instr '%s'",
+                  //       qPrintable(f.print()), f.ticks(), track, qPrintable(instrId));
+                  Segment* segment = score->tick2segment(f.ticks(), true, Segment::Type::ChordRest, true);
+                  if (!segment)
+                        qDebug("setPartInstruments: segment for instrument change at tick %d not found", f.ticks());  // TODO
+                  else if (!mxmlDrumset.contains(instrId))
+                        qDebug("setPartInstruments: changed instrument '%s' at tick %d not found in part '%s'",
+                               qPrintable(instrId), f.ticks(), qPrintable(partId));  // TODO
+                  else {
+                        MusicXMLDrumInstrument mxmlInstr = mxmlDrumset.value(instrId);
+                        Instrument instr;
+                        // part->setMidiChannel(instr.midiChannel); not required (is a NOP anyway)
+                        instr.channel(0)->program = mxmlInstr.midiProgram;
+                        instr.channel(0)->pan = mxmlInstr.midiPan;
+                        instr.channel(0)->volume = mxmlInstr.midiVolume;
+                        instr.setTrackName(mxmlInstr.name);
+                        InstrumentChange* ic = new InstrumentChange(instr, score);
+                        ic->setTrack(track);
+                        // if there is already a staff text at this tick / track,
+                        // delete it and use its text here instead of "Instrument"
+                        QString text = findDeleteStaffText(segment, track);
+                        ic->setXmlText(text.isEmpty() ? "Instrument" : text);
+                        segment->add(ic);
+                        }
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   text2syms
+//---------------------------------------------------------
+
+/**
+ Convert SMuFL code points to MuseScore <sym>...</sym>
+ */
+
+static QString text2syms(const QString& t)
+      {
+      //QTime time;
+      //time.start();
+
+      // first create a map from symbol (Unicode) text to symId
+      // note that this takes about 1 msec on a Core i5,
+      // caching does not gain much
+
+      ScoreFont* sf = ScoreFont::fallbackFont();
+      QMap<QString, SymId> map;
+      int maxStringSize = 0;        // maximum string size found
+
+      for (int i = int(SymId::noSym); i < int(SymId::lastSym); ++i) {
+            SymId id((SymId(i)));
+            QString string(sf->toString(id));
+            // insert all syms except space to prevent matching all regular spaces
+            if (id != SymId::space)
+                  map.insert(string, id);
+            if (string.size() > maxStringSize)
+                  maxStringSize = string.size();
+            }
+      //qDebug("text2syms map count %d maxsz %d filling time elapsed: %d ms",
+      //       map.size(), maxStringSize, time.elapsed());
+
+      // then look for matches
+      QString in = t;
+      QString res;
+
+      while (in != "") {
+            // try to find the largest match possible
+            int maxMatch = qMin(in.size(), maxStringSize);
+            QString sym;
+            while (maxMatch > 0) {
+                  QString toBeMatched = in.left(maxMatch);
+                  if (map.contains(toBeMatched)) {
+                        sym = Sym::id2name(map.value(toBeMatched));
+                        break;
+                        }
+                  maxMatch--;
+                  }
+            if (maxMatch > 0) {
+                  // found a match, add sym to res and remove match from string in
+                  res += "<sym>";
+                  res += sym;
+                  res += "</sym>";
+                  in.remove(0, maxMatch);
+                  }
+            else {
+                  // not found, move one char from res to in
+                  res += in.left(1);
+                  in.remove(0, 1);
+                  }
+            }
+
+      //qDebug("text2syms total time elapsed: %d ms, res '%s'", time.elapsed(), qPrintable(res));
+      return res;
+      }
+
+//---------------------------------------------------------
+//   decodeEntities
+//---------------------------------------------------------
+
+/**
+ Decode &#...; in string \a src into UNICODE (utf8) character.
+ */
+
+static QString decodeEntities( const QString& src )
+      {
+      QString ret(src);
+      QRegExp re("&#([0-9]+);");
+      re.setMinimal(true);
+
+      int pos = 0;
+      while ( (pos = re.indexIn(src, pos)) != -1 ) {
+            ret = ret.replace(re.cap(0), QChar(re.cap(1).toInt(0,10)));
+            pos += re.matchedLength();
+            }
+      return ret;
+      }
+
+//---------------------------------------------------------
+//   nextPartOfFormattedString
+//---------------------------------------------------------
+
+// TODO: probably should be shared between pass 1 and 2
+
+/**
+ Read the next part of a MusicXML formatted string and convert to MuseScore internal encoding.
+ */
+
+static QString nextPartOfFormattedString(QXmlStreamReader& e)
+      {
+      //QString lang       = e.attribute(QString("xml:lang"), "it");
+      QString fontWeight = e.attributes().value("font-weight").toString();
+      QString fontSize   = e.attributes().value("font-size").toString();
+      QString fontStyle  = e.attributes().value("font-style").toString();
+      QString underline  = e.attributes().value("underline").toString();
+      QString fontFamily = e.attributes().value("font-family").toString();
+      // TODO: color, enclosure, yoffset in only part of the text, ...
+
+      QString txt        = e.readElementText();
+      // replace HTML entities
+      txt = decodeEntities(txt);
+      QString syms       = text2syms(txt);
+
+      QString importedtext;
+
+      if (!fontSize.isEmpty()) {
+            bool ok = true;
+            float size = fontSize.toFloat(&ok);
+            if (ok)
+                  importedtext += QString("<font size=\"%1\"/>").arg(size);
+            }
+      if (!fontFamily.isEmpty() && txt == syms) {
+            // add font family only if no <sym> replacement made
+            importedtext += QString("<font face=\"%1\"/>").arg(fontFamily);
+            }
+      if (fontWeight == "bold")
+            importedtext += "<b>";
+      if (fontStyle == "italic")
+            importedtext += "<i>";
+      if (!underline.isEmpty()) {
+            bool ok = true;
+            int lines = underline.toInt(&ok);
+            if (ok && (lines > 0))  // 1,2, or 3 underlines are imported as single underline
+                  importedtext += "<u>";
+            else
+                  underline = "";
+            }
+      if (txt == syms) {
+            txt.replace(QString("\r"), QString("")); // convert Windows line break \r\n -> \n
+            importedtext += txt.toHtmlEscaped();
+            }
+      else {
+            // <sym> replacement made, should be no need for line break or other conversions
+            importedtext += syms;
+            }
+      if (underline != "")
+            importedtext += "</u>";
+      if (fontStyle == "italic")
+            importedtext += "</i>";
+      if (fontWeight == "bold")
+            importedtext += "</b>";
+      //qDebug("importedtext '%s'", qPrintable(importedtext));
+      return importedtext;
+      }
+
+//---------------------------------------------------------
+//   addLyric
+//---------------------------------------------------------
+
+/**
+ Add a single lyric to the score or delete it (if number too high)
+ */
+
+static void addLyric(ChordRest* cr, Lyrics* l, int lyricNo)
+      {
+      if (lyricNo > MAX_LYRICS) {
+            qDebug("too much lyrics (>%d)", MAX_LYRICS); // TODO
+            delete l;
+            }
+      else {
+            l->setNo(lyricNo);
+            cr->add(l);
+            }
+      }
+
+//---------------------------------------------------------
+//   addLyrics
+//---------------------------------------------------------
+
+/**
+ Add a notes lyrics to the score
+ */
+
+static void addLyrics(ChordRest* cr,
+                      QMap<int, Lyrics*>& numbrdLyrics,
+                      QMap<int, Lyrics*>& defyLyrics,
+                      QList<Lyrics*>& unNumbrdLyrics)
+      {
+      // first the lyrics with valid number
+      int lyricNo = -1;
+      for (QMap<int, Lyrics*>::const_iterator i = numbrdLyrics.constBegin(); i != numbrdLyrics.constEnd(); ++i) {
+            lyricNo = i.key(); // use number obtained from MusicXML file
+            Lyrics* l = i.value();
+            addLyric(cr, l, lyricNo);
+            }
+
+      // then the lyrics without valid number but with valid default-y
+      for (QMap<int, Lyrics*>::const_iterator i = defyLyrics.constBegin(); i != defyLyrics.constEnd(); ++i) {
+            lyricNo++; // use sequence number
+            Lyrics* l = i.value();
+            addLyric(cr, l, lyricNo);
+            }
+
+      // finally the remaining lyrics, which are simply added in order they appear in the MusicXML file
+      for (QList<Lyrics*>::const_iterator i = unNumbrdLyrics.constBegin(); i != unNumbrdLyrics.constEnd(); ++i) {
+            lyricNo++; // use sequence number
+            Lyrics* l = *i;
+            addLyric(cr, l, lyricNo);
+            }
+      }
+
+//---------------------------------------------------------
+//   addElemOffset
+//---------------------------------------------------------
+
+static void addElemOffset(Element* el, int track, const QString& placement, Measure* measure, int tick)
+      {
+      /*
+       qDebug("addElem el %p track %d placement %s tick %d",
+       el, track, qPrintable(placement), tick);
+       */
+
+      // calc y offset assuming five line staff and default style
+      // note that required y offset is element type dependent
+      const qreal stafflines = 5; // assume five line staff, but works OK-ish for other sizes too
+      qreal offsAbove = 0;
+      qreal offsBelow = 0;
+      if (el->type() == Element::Type::TEMPO_TEXT || el->type() == Element::Type::REHEARSAL_MARK) {
+            offsAbove = 0;
+            offsBelow = 8 + (stafflines - 1);
+            }
+      else if (el->type() == Element::Type::TEXT || el->type() == Element::Type::STAFF_TEXT) {
+            offsAbove = 0;
+            offsBelow = 6 + (stafflines - 1);
+            }
+      else if (el->type() == Element::Type::SYMBOL) {
+            offsAbove = -2;
+            offsBelow =  4 + (stafflines - 1);
+            }
+      else if (el->type() == Element::Type::DYNAMIC) {
+            offsAbove = -5.75 - (stafflines - 1);
+            offsBelow = -0.75;
+            }
+      else
+            qDebug("addElem el %p unsupported type %hhd",
+                   el, el->type());  //TODO
+
+      // move to correct position
+      // TODO: handle rx, ry
+      qreal y = 0;
+      if (placement == "above") y += offsAbove;
+      if (placement == "below") y += offsBelow;
+      //qDebug("   y = %g", y);
+      y *= el->score()->spatium();
+      el->setUserOff(QPoint(0, y));
+      el->setTrack(track);
+      Segment* s = measure->getSegment(Segment::Type::ChordRest, tick);
+      s->add(el);
+      }
+
+//---------------------------------------------------------
+//   tupletAssert -- check assertions for tuplet handling
+//---------------------------------------------------------
+
+/**
+ Check assertions for tuplet handling. If this fails, MusicXML
+ import will almost certainly break in non-obvious ways.
+ Should never happen, thus it is OK to quit the application.
+ */
+
+#if 0
+static void tupletAssert()
+      {
+      if (!(int(TDuration::DurationType::V_BREVE)      == int(TDuration::DurationType::V_LONG)    + 1
+            && int(TDuration::DurationType::V_WHOLE)   == int(TDuration::DurationType::V_BREVE)   + 1
+            && int(TDuration::DurationType::V_HALF)    == int(TDuration::DurationType::V_WHOLE)   + 1
+            && int(TDuration::DurationType::V_QUARTER) == int(TDuration::DurationType::V_HALF)    + 1
+            && int(TDuration::DurationType::V_EIGHTH)  == int(TDuration::DurationType::V_QUARTER) + 1
+            && int(TDuration::DurationType::V_16TH)    == int(TDuration::DurationType::V_EIGHTH)  + 1
+            && int(TDuration::DurationType::V_32ND)    == int(TDuration::DurationType::V_16TH)    + 1
+            && int(TDuration::DurationType::V_64TH)    == int(TDuration::DurationType::V_32ND)    + 1
+            && int(TDuration::DurationType::V_128TH)   == int(TDuration::DurationType::V_64TH)    + 1
+            && int(TDuration::DurationType::V_256TH)   == int(TDuration::DurationType::V_128TH)   + 1
+            )) {
+            qFatal("tupletAssert() failed");
+            }
+      }
+#endif
+
+//---------------------------------------------------------
+//   smallestTypeAndCount
+//---------------------------------------------------------
+
+/**
+ Determine the smallest note type and the number of those
+ present in a ChordRest.
+ For a note without dots the type equals the note type
+ and count is one.
+ For a single dotted note the type equals half the note type
+ and count is three.
+ A double dotted note is similar.
+ Note: code assumes when duration().type() is incremented,
+ the note length is divided by two, checked by tupletAssert().
+ */
+
+#if 0
+static void smallestTypeAndCount(ChordRest const* const cr, int& type, int& count)
+      {
+      type = int(cr->durationType().type());
+      count = 1;
+      switch (cr->durationType().dots()) {
+            case 0:
+                  // nothing to do
+                  break;
+            case 1:
+                  type += 1; // next-smaller type
+                  count = 3;
+                  break;
+            case 2:
+                  type += 2; // next-next-smaller type
+                  count = 7;
+                  break;
+            default:
+                  qDebug("smallestTypeAndCount() does not support more than 2 dots");
+            }
+      }
+
+//---------------------------------------------------------
+//   matchTypeAndCount
+//---------------------------------------------------------
+
+/**
+ Given two note types and counts, if the types are not equal,
+ make them equal by successively doubling the count of the
+ largest type.
+ */
+
+static void matchTypeAndCount(int& type1, int& count1, int& type2, int& count2)
+      {
+      while (type1 < type2) {
+            type1++;
+            count1 *= 2;
+            }
+      while (type2 < type1) {
+            type2++;
+            count2 *= 2;
+            }
+      }
+
+//---------------------------------------------------------
+//   determineTupletTypeAndCount
+//---------------------------------------------------------
+
+/**
+ Determine type and number of smallest notes in the tuplet
+ */
+
+static void determineTupletTypeAndCount(Tuplet* t, int& tupletType, int& tupletCount)
+      {
+      int elemCount   = 0; // number of tuplet elements handled
+
+      foreach (DurationElement* de, t->elements()) {
+            if (de->type() == Element::Type::CHORD || de->type() == Element::Type::REST) {
+                  ChordRest* cr = static_cast<ChordRest*>(de);
+                  if (elemCount == 0) {
+                        // first note: init variables
+                        smallestTypeAndCount(cr, tupletType, tupletCount);
+                        }
+                  else {
+                        int noteType = 0;
+                        int noteCount = 0;
+                        smallestTypeAndCount(cr, noteType, noteCount);
+                        // match the types
+                        matchTypeAndCount(tupletType, tupletCount, noteType, noteCount);
+                        tupletCount += noteCount;
+                        }
+                  }
+            elemCount++;
+            }
+      }
+
+//---------------------------------------------------------
+//   determineTupletBaseLen
+//---------------------------------------------------------
+
+/**
+ Determine tuplet baseLen as determined by the tuplet ratio,
+ and type and number of smallest notes in the tuplet.
+
+ Example: baselen of a 3:2 tuplet with 1/16, 1/8, 1/8 and 1/16
+ is 1/8. For this tuplet smalles note is 1/16, count is 6.
+ */
+
+// TODO: this is defined twice, remove one
+
+static TDuration determineTupletBaseLen(Tuplet* t)
+      {
+      int tupletType  = 0; // smallest note type in the tuplet
+      int tupletCount = 0; // number of smallest notes in the tuplet
+
+      // first determine type and number of smallest notes in the tuplet
+      determineTupletTypeAndCount(t, tupletType, tupletCount);
+
+      // sanity check:
+      // for a 3:2 tuplet, count must be a multiple of 3
+      if (tupletCount % t->ratio().numerator()) {
+            qDebug("determineTupletBaseLen(%p) cannot divide count %d by %d", t, tupletCount, t->ratio().numerator());
+            return TDuration();
+            }
+
+      // calculate baselen in smallest notes
+      tupletCount /= t->ratio().numerator();
+
+      // normalize
+      while (tupletCount > 1 && (tupletCount % 2) == 0) {
+            tupletCount /= 2;
+            tupletType  -= 1;
+            }
+
+      return TDuration(TDuration::DurationType(tupletType));
+      }
+
+//---------------------------------------------------------
+//   isTupletFilled
+//---------------------------------------------------------
+
+/**
+ Determine if the tuplet contains the required number of notes,
+ either (1) of the specified normal type
+ or (2) the amount of the smallest notes in the tuplet equals
+ actual notes.
+
+ Example (1): a 3:2 tuplet with a 1/4 and a 1/8 note is filled
+ if normal type is 1/8, it is not filled if normal
+ type is 1/4.
+
+ Example (2): a 3:2 tuplet with a 1/4 and a 1/8 note is filled.
+
+ Use note types instead of duration to prevent errors due to rounding.
+ */
+
+// TODO: this is defined twice, remove one
+
+static bool isTupletFilled(Tuplet* t, TDuration normalType)
+      {
+      if (!t) return false;
+
+      int tupletType  = 0; // smallest note type in the tuplet
+      int tupletCount = 0; // number of smallest notes in the tuplet
+
+      // first determine type and number of smallest notes in the tuplet
+      determineTupletTypeAndCount(t, tupletType, tupletCount);
+
+      // then compare ...
+      if (normalType.isValid()) {
+            int matchedNormalType  = int(normalType.type());
+            int matchedNormalCount = t->ratio().numerator();
+            // match the types
+            matchTypeAndCount(tupletType, tupletCount, matchedNormalType, matchedNormalCount);
+            // ... result scenario (1)
+            return tupletCount >= matchedNormalCount;
+            }
+      else {
+            // ... result scenario (2)
+            return tupletCount >= t->ratio().numerator();
+            }
+      }
+#else
+extern bool isTupletFilled(Tuplet* t, TDuration normalType);
+extern TDuration determineTupletBaseLen(Tuplet* t);
+#endif
+
+//---------------------------------------------------------
+//   addTupletToChord
+//---------------------------------------------------------
+
+/**
+ Handle tuplet(s) using parse result tupletDesc
+ Tuplets with <actual-notes> and <normal-notes> but without <tuplet>
+ are handled correctly.
+ TODO Nested tuplets are not (yet) supported.
+
+ Note that cr must be initialized: fields measure, score, tick
+ and track are used.
+ */
+
+void addTupletToChord(ChordRest* cr, Tuplet*& tuplet,
+                      const Fraction& timeMod, const MusicXmlTupletDesc& tupletDesc,
+                      const TDuration normalType)
+      {
+      int actualNotes = timeMod.denominator();
+      int normalNotes = timeMod.numerator();
+
+      // check for obvious errors
+      if (tupletDesc.type == MxmlStartStop::START && tuplet) {
+            qDebug("tuplet already started"); // TODO
+            // TODO: how to recover ?
+            }
+      if (tupletDesc.type == MxmlStartStop::STOP && !tuplet) {
+            qDebug("tuplet stop but no tuplet started"); // TODO
+            // TODO: how to recover ?
+            }
+
+      // Tuplet are either started by the tuplet start
+      // or when the time modification is first found.
+      if (!tuplet) {
+            if (tupletDesc.type == MxmlStartStop::START
+                || (!tuplet && (actualNotes != 1 || normalNotes != 1))) {
+                  tuplet = new Tuplet(cr->score());
+                  tuplet->setTrack(cr->track());
+                  tuplet->setRatio(Fraction(actualNotes, normalNotes));
+                  tuplet->setTick(cr->tick());
+                  tuplet->setBracketType(tupletDesc.bracket);
+                  tuplet->setNumberType(tupletDesc.shownumber);
+                  // TODO type, placement, bracket
+                  tuplet->setParent(cr->measure());
+                  }
+            }
+
+      // Add chord to the current tuplet.
+      // Must also check for actual/normal notes to prevent
+      // adding one chord too much if tuplet stop is missing.
+      if (tuplet && !(actualNotes == 1 && normalNotes == 1)) {
+            cr->setTuplet(tuplet);
+            tuplet->add(cr);
+            }
+
+      // Tuplets are stopped by the tuplet stop
+      // or when the tuplet is filled completely
+      // (either with knowledge of the normal type
+      // or as a last resort calculated based on
+      // actual and normal notes plus total duration)
+      // or when the time-modification is not found.
+      if (tuplet) {
+            if (tupletDesc.type == MxmlStartStop::STOP
+                || isTupletFilled(tuplet, normalType)
+                || (actualNotes == 1 && normalNotes == 1)) {
+                  // set baselen
+                  TDuration td = determineTupletBaseLen(tuplet);
+                  // qDebug("stop tuplet %p basetype %d", tuplet, tupletType);
+                  tuplet->setBaseLen(td);
+                  // TODO determine usefulness of following check
+                  int totalDuration = 0;
+                  foreach (DurationElement* de, tuplet->elements()) {
+                        if (de->type() == Element::Type::CHORD || de->type() == Element::Type::REST) {
+                              totalDuration+=de->globalDuration().ticks();
+                              }
+                        }
+                  if (!(totalDuration && normalNotes)) {
+                        qDebug("MusicXML::import: tuplet stop but bad duration"); // TODO
+                        }
+                  tuplet = 0;
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   addArticulationToChord
+//---------------------------------------------------------
+
+/**
+ Add Articulation to Chord.
+ */
+
+static void addArticulationToChord(ChordRest* cr, ArticulationType articSym, QString dir)
+      {
+      Articulation* na = new Articulation(cr->score());
+      na->setArticulationType(articSym);
+      if (dir == "up") {
+            na->setUp(true);
+            na->setAnchor(ArticulationAnchor::TOP_STAFF);
+            }
+      else if (dir == "down") {
+            na->setUp(false);
+            na->setAnchor(ArticulationAnchor::BOTTOM_STAFF);
+            }
+      cr->add(na);
+      }
+
+//---------------------------------------------------------
+//   addMordentToChord
+//---------------------------------------------------------
+
+/**
+ Add Mordent to Chord.
+ */
+
+static void addMordentToChord(ChordRest* cr, QString name, QString attrLong, QString attrAppr, QString attrDep)
+      {
+      ArticulationType articSym = ArticulationType::ARTICULATIONS; // legal but impossible ArticulationType value here indicating "not found"
+      if (name == "inverted-mordent") {
+            if ((attrLong == "" || attrLong == "no") && attrAppr == "" && attrDep == "") articSym = ArticulationType::Prall;
+            else if (attrLong == "yes" && attrAppr == "" && attrDep == "") articSym = ArticulationType::PrallPrall;
+            else if (attrLong == "yes" && attrAppr == "below" && attrDep == "") articSym = ArticulationType::UpPrall;
+            else if (attrLong == "yes" && attrAppr == "above" && attrDep == "") articSym = ArticulationType::DownPrall;
+            else if (attrLong == "yes" && attrAppr == "" && attrDep == "below") articSym = ArticulationType::PrallDown;
+            else if (attrLong == "yes" && attrAppr == "" && attrDep == "above") articSym = ArticulationType::PrallUp;
+            }
+      else if (name == "mordent") {
+            if ((attrLong == "" || attrLong == "no") && attrAppr == "" && attrDep == "") articSym = ArticulationType::Mordent;
+            else if (attrLong == "yes" && attrAppr == "" && attrDep == "") articSym = ArticulationType::PrallMordent;
+            else if (attrLong == "yes" && attrAppr == "below" && attrDep == "") articSym = ArticulationType::UpMordent;
+            else if (attrLong == "yes" && attrAppr == "above" && attrDep == "") articSym = ArticulationType::DownMordent;
+            }
+      if (articSym != ArticulationType::ARTICULATIONS) {
+            Articulation* na = new Articulation(cr->score());
+            na->setArticulationType(articSym);
+            cr->add(na);
+            }
+      else
+            qDebug("unknown ornament: name '%s' long '%s' approach '%s' departure '%s'",
+                   qPrintable(name), qPrintable(attrLong), qPrintable(attrAppr), qPrintable(attrDep));  // TODO
+      }
+
+//---------------------------------------------------------
+//   addMxmlArticulationToChord
+//---------------------------------------------------------
+
+/**
+ Add a MusicXML articulation to a chord as a "simple" MuseScore articulation.
+ These are the articulations that can be
+ - represented by an enum ArticulationType
+ - added to a ChordRest
+ Return true (articulation recognized and handled)
+ or false (articulation not recognized).
+ Note simple implementation: MusicXML syntax is not strictly
+ checked, the articulations parent element does not matter.
+ */
+
+static bool addMxmlArticulationToChord(ChordRest* cr, QString mxmlName)
+      {
+      QMap<QString, ArticulationType> map; // map MusicXML articulation name to MuseScore symbol
+      map["accent"]           = ArticulationType::Sforzatoaccent;
+      map["staccatissimo"]    = ArticulationType::Staccatissimo;
+      map["staccato"]         = ArticulationType::Staccato;
+      map["tenuto"]           = ArticulationType::Tenuto;
+      map["turn"]             = ArticulationType::Turn;
+      map["inverted-turn"]    = ArticulationType::Reverseturn;
+      map["stopped"]          = ArticulationType::Plusstop;
+      map["up-bow"]           = ArticulationType::Upbow;
+      map["down-bow"]         = ArticulationType::Downbow;
+      map["detached-legato"]  = ArticulationType::Portato;
+      map["spiccato"]         = ArticulationType::Staccatissimo;
+      map["snap-pizzicato"]   = ArticulationType::Snappizzicato;
+      map["schleifer"]        = ArticulationType::Schleifer;
+      map["open-string"]      = ArticulationType::Ouvert;
+      map["thumb-position"]   = ArticulationType::ThumbPosition;
+
+      if (map.contains(mxmlName)) {
+            addArticulationToChord(cr, map.value(mxmlName), "");
+            return true;
+            }
+      else
+            return false;
+      }
+
+//---------------------------------------------------------
+//   convertNotehead
+//---------------------------------------------------------
+
+/**
+ Convert a MusicXML notehead name to a MuseScore headgroup.
+ */
+
+static NoteHead::Group convertNotehead(QString mxmlName)
+      {
+      QMap<QString, int> map; // map MusicXML notehead name to a MuseScore headgroup
+      map["slash"] = 5;
+      map["triangle"] = 3;
+      map["diamond"] = 2;
+      map["x"] = 1;
+      map["circle-x"] = 6;
+      map["do"] = 7;
+      map["re"] = 8;
+      map["mi"] = 4;
+      map["fa"] = 9;
+      map["so"] = 12;
+      map["la"] = 10;
+      map["ti"] = 11;
+      map["normal"] = 0;
+
+      if (map.contains(mxmlName))
+            return NoteHead::Group(map.value(mxmlName));
+      else
+            qDebug("unknown notehead %s", qPrintable(mxmlName));  // TODO
+      // default: return 0
+      return NoteHead::Group::HEAD_NORMAL;
+      }
+
+//---------------------------------------------------------
+//   addTextToNote
+//---------------------------------------------------------
+
+/**
+ Add Text to Note.
+ */
+
+static void addTextToNote(int l, int c, QString txt, TextStyleType style, Score* score, Note* note)
+      {
+      if (note) {
+            if (!txt.isEmpty()) {
+                  Text* t = new Fingering(score);
+                  t->setTextStyleType(style);
+                  t->setPlainText(txt);
+                  note->add(t);
+                  }
+            }
+      else
+            qDebug("%s", qPrintable(QString("Error at line %1 col %2: no note for text").arg(l).arg(c)));       // TODO
+      }
+
+//---------------------------------------------------------
+//   addFermata
+//---------------------------------------------------------
+
+/**
+ Add a MusicXML fermata.
+ Note: MusicXML common.mod: "The fermata type is upright if not specified."
+ */
+
+static void addFermata(ChordRest* cr, const QString type, const ArticulationType articSym)
+      {
+      if (type == "upright" || type == "")
+            addArticulationToChord(cr, articSym, "up");
+      else if (type == "inverted")
+            addArticulationToChord(cr, articSym, "down");
+      else
+            qDebug("unknown fermata type '%s'", qPrintable(type));
+      }
+
+//---------------------------------------------------------
+//   setSLinePlacement
+//---------------------------------------------------------
+
+/**
+ Helper for direction().
+ SLine placement is modified by changing the first segments user offset
+ As the SLine has just been created, it does not have any segment yet
+ */
+
+static void setSLinePlacement(SLine* sli, const QString placement)
+      {
+      /*
+       qDebug("setSLinePlacement sli %p type %d s=%g pl='%s'",
+       sli, sli->type(), sli->score()->spatium(), qPrintable(placement));
+       */
+
+      // calc y offset assuming five line staff and default style
+      // note that required y offset is element type dependent
+      const qreal stafflines = 5;       // assume five line staff, but works OK-ish for other sizes too
+      qreal offsAbove = 0;
+      qreal offsBelow = 0;
+      if (sli->type() == Element::Type::PEDAL || sli->type() == Element::Type::HAIRPIN) {
+            offsAbove = -6 - (stafflines - 1);
+            offsBelow = -1;
+            }
+      else if (sli->type() == Element::Type::TEXTLINE) {
+            offsAbove = 0;
+            offsBelow =  5 + 3 + (stafflines - 1);
+            }
+      else if (sli->type() == Element::Type::OTTAVA) {
+            // ignore
+            }
+      else
+            qDebug("setSLinePlacement sli %p unsupported type %hhd",
+                   sli, sli->type());
+
+      // move to correct position
+      qreal y = 0;
+      if (placement == "above") y += offsAbove;
+      if (placement == "below") y += offsBelow;
+      // add linesegment containing the user offset
+      LineSegment* tls= sli->createLineSegment();
+      //qDebug("   y = %g", y);
+      y *= sli->score()->spatium();
+      tls->setUserOff(QPointF(0, y));
+      sli->add(tls);
+      }
+
+//---------------------------------------------------------
+//   handleSpannerStart
+//---------------------------------------------------------
+
+// note that in case of overlapping spanners, handleSpannerStart is called for every spanner
+// as spanners QMap allows only one value per key, this does not hurt at all
+
+static void handleSpannerStart(SLine* new_sp, int track, QString& placement, int tick, MusicXmlSpannerMap& spanners)
+      {
+      //qDebug("handleSpannerStart(sp %p, track %d, tick %d)", new_sp, track, tick);
+      new_sp->setTrack(track);
+      setSLinePlacement(new_sp, placement);
+      spanners[new_sp] = QPair<int, int>(tick, -1);
+      }
+
+//---------------------------------------------------------
+//   handleSpannerStop
+//---------------------------------------------------------
+
+static void handleSpannerStop(SLine* cur_sp, int track2, int tick, MusicXmlSpannerMap& spanners)
+      {
+      //qDebug("handleSpannerStop(sp %p, track2 %d, tick %d)", cur_sp, track2, tick);
+      if (!cur_sp)
+            return;
+
+      cur_sp->setTrack2(track2);
+      spanners[cur_sp].second = tick;
+      }
+
+//---------------------------------------------------------
+//   The MusicXML parser, pass 2
+//---------------------------------------------------------
+
+//---------------------------------------------------------
+//   MusicXMLParserPass2
+//---------------------------------------------------------
+
+MusicXMLParserPass2::MusicXMLParserPass2(Score* score, MusicXMLParserPass1& pass1)
+      : _divs(0), _score(score), _pass1(pass1)
+      {
+      // nothing
+      }
+
+//---------------------------------------------------------
+//   initPartState
+//---------------------------------------------------------
+
+/**
+ Initialize members as required for reading the MusicXML part element.
+ TODO: factor out part reading into a separate class
+ TODO: preferably use automatically initialized variables
+ Note that Qt automatically initializes new elements in QVector (tuplets).
+ */
+
+void MusicXMLParserPass2::initPartState(const QString& partId)
+      {
+      _timeSigDura = Fraction(0, 0);             // invalid
+      int nstaves = _pass1.getPart(partId)->nstaves();
+      _tuplets.resize(nstaves * VOICES);
+      _tie    = 0;
+      _lastVolta = 0;
+      _hasDrumset = false;
+      for (int i = 0; i < MAX_NUMBER_LEVEL; ++i)
+            _slur[i] = SlurDesc();
+      for (int i = 0; i < MAX_BRACKETS; ++i)
+            _brackets[i] = 0;
+      for (int i = 0; i < MAX_DASHES; ++i)
+            _dashes[i] = 0;
+      for (int i = 0; i < MAX_NUMBER_LEVEL; ++i)
+            _ottavas[i] = 0;
+      for (int i = 0; i < MAX_NUMBER_LEVEL; ++i)
+            _hairpins[i] = 0;
+      for (int i = 0; i < MAX_NUMBER_LEVEL; ++i)
+            _trills[i] = 0;
+      for (int i = 0; i < MAX_NUMBER_LEVEL; ++i)
+            _glissandi[i][0] = _glissandi[i][1] = 0;
+      _pedal = 0;
+      _pedalContinue = 0;
+      _harmony = 0;
+      _tremStart = 0;
+      _figBass = 0;
+      //      glissandoText = "";
+      //      glissandoColor = "";
+      _multiMeasureRestCount = -1;
+      }
+
+//---------------------------------------------------------
+// multi-measure rest state handling
+//---------------------------------------------------------
+
+// If any multi-measure rest is found, the "create multi-measure rest" style setting is enabled.
+// First measure in a multi-measure rest gets setBreakMultiMeasureRest(true), then count down
+// the remaining number of measures.
+// The first measure after a multi-measure rest gets setBreakMultiMeasureRest(true).
+// For all other measures breakMultiMeasureRest is unchanged (stays default (false)).
+
+//---------------------------------------------------------
+//   setMultiMeasureRestCount
+//---------------------------------------------------------
+
+/**
+ Set the multi-measure rest counter.
+ */
+
+
+void MusicXMLParserPass2::setMultiMeasureRestCount(int count)
+      {
+      _multiMeasureRestCount = count;
+      }
+
+//---------------------------------------------------------
+//   getAndDecMultiMeasureRestCount
+//---------------------------------------------------------
+
+/**
+ Return current multi-measure rest counter.
+ Decrement counter if possible (not beyond -1).
+ */
+
+int MusicXMLParserPass2::getAndDecMultiMeasureRestCount()
+      {
+      int res = _multiMeasureRestCount;
+      if (_multiMeasureRestCount >= 0)
+            _multiMeasureRestCount--;
+      return res;
+      }
+
+//---------------------------------------------------------
+//   logDebugInfo
+//---------------------------------------------------------
+
+/**
+ Log debug \a info (non-fatal events relevant for debugging).
+ */
+
+void MusicXMLParserPass2::logDebugInfo(const QString& info)
+      {
+      qDebug("Info at line %lld col %lld: %s",
+             _e.lineNumber(), _e.columnNumber(), qPrintable(info));
+      }
+
+//---------------------------------------------------------
+//   logError
+//---------------------------------------------------------
+
+/**
+ Log \a error (possibly non-fatal but to be reported to the user anyway).
+ */
+
+void MusicXMLParserPass2::logError(const QString& error)
+      {
+      QString err;
+      err = QString("Error at line %1 col %2: %3").arg(_e.lineNumber()).arg(_e.columnNumber()).arg(error);
+      qDebug("%s", qPrintable(err));
+      _parseStatus += err;
+      }
+
+
+//---------------------------------------------------------
+//   skipLogCurrElem
+//---------------------------------------------------------
+
+/**
+ Skip the current element, log debug as info.
+ */
+
+void MusicXMLParserDirection::skipLogCurrElem()
+      {
+      //logDebugInfo(e, QString("skipping '%1'").arg(_e.name().toString()));
+      _e.skipCurrentElement();
+      }
+
+//---------------------------------------------------------
+//   logDebugInfo
+//---------------------------------------------------------
+
+/**
+ Log debug \a info (non-fatal events relevant for debugging).
+ */
+
+void MusicXMLParserDirection::logDebugInfo(const QString& info)
+      {
+      qDebug("Info at line %lld col %lld: %s",
+             _e.lineNumber(), _e.columnNumber(), qPrintable(info));
+      }
+
+//---------------------------------------------------------
+//   logError
+//---------------------------------------------------------
+
+/**
+ Log \a error (possibly non-fatal but to be reported to the user anyway).
+ */
+
+void MusicXMLParserDirection::logError(const QString& error)
+      {
+      QString err;
+      err = QString("Error at line %1 col %2: %3").arg(_e.lineNumber()).arg(_e.columnNumber()).arg(error);
+      qDebug("%s", qPrintable(err));
+      //_parseStatus += err;
+      }
+
+
+//---------------------------------------------------------
+//   skipLogCurrElem
+//---------------------------------------------------------
+
+/**
+ Skip the current element, log debug as info.
+ */
+
+void MusicXMLParserPass2::skipLogCurrElem()
+      {
+      //logDebugInfo(e, QString("skipping '%1'").arg(_e.name().toString()));
+      _e.skipCurrentElement();
+      }
+
+//---------------------------------------------------------
+//   parse
+//---------------------------------------------------------
+
+/**
+ Parse MusicXML in \a device and extract pass 2 data.
+ */
+
+Score::FileError MusicXMLParserPass2::parse(QIODevice* device)
+      {
+      qDebug("MusicXMLParserPass2::parse()");
+      _e.setDevice(device);
+      Score::FileError res = parse();
+      qDebug("MusicXMLParserPass2::parse() res %hhd", res);
+      return res;
+      }
+
+//---------------------------------------------------------
+//   parse
+//---------------------------------------------------------
+
+/**
+ Start the parsing process, after verifying the top-level node is score-partwise
+ */
+
+Score::FileError MusicXMLParserPass2::parse()
+      {
+      bool found = false;
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "score-partwise") {
+                  found = true;
+                  scorePartwise();
+                  }
+            else {
+                  logError("this is not a MusicXML score-partwise file");
+                  _e.skipCurrentElement();
+                  return Score::FileError::FILE_BAD_FORMAT;
+                  }
+            }
+
+      if (!found) {
+            logError("this is not a MusicXML score-partwise file");
+            return Score::FileError::FILE_BAD_FORMAT;
+            }
+
+      return Score::FileError::FILE_NO_ERROR;
+      }
+
+//---------------------------------------------------------
+//   scorePartwise
+//---------------------------------------------------------
+
+/**
+ Parse the MusicXML top-level (XPath /score-partwise) node.
+ */
+
+void MusicXMLParserPass2::scorePartwise()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "score-partwise");
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "part") {
+                  part();
+                  }
+            else if (_e.name() == "part-list")
+                  partList();
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   partList
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part-list node.
+ */
+
+void MusicXMLParserPass2::partList()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "part-list");
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "score-part")
+                  scorePart();
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   scorePart
+//---------------------------------------------------------
+
+// Parse the /score-partwise/part-list/score-part node.
+// TODO: nothing required for pass 2 ?
+
+void MusicXMLParserPass2::scorePart()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "score-part");
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "midi-instrument")
+                  _e.skipCurrentElement();  // skip but don't log
+            else if (_e.name() == "score-instrument")
+                  _e.skipCurrentElement();  // skip but don't log
+            else if (_e.name() == "part-name")
+                  _e.skipCurrentElement();  // skip but don't log
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   part
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part node.
+ */
+
+void MusicXMLParserPass2::part()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "part");
+      const QString id = _e.attributes().value("id").toString();
+
+      if (!_pass1.hasPart(id)) {
+            logError(QString("MusicXMLParserPass2::part cannot find part '%1'").arg(id));
+            skipLogCurrElem();
+            }
+
+      initPartState(id);
+
+      const MusicXMLDrumset& mxmlDrumset = _pass1.getDrumset(id);
+      _hasDrumset = hasDrumset(mxmlDrumset);
+
+#ifdef DEBUG_VOICE_MAPPER
+      VoiceList voicelist = _pass1.getVoiceList(id);
+      // debug: print voice mapper contents
+      qDebug("voiceMapperStats: part '%s'", qPrintable(id));
+      for (QMap<QString, Ms::VoiceDesc>::const_iterator i = voicelist.constBegin(); i != voicelist.constEnd(); ++i) {
+            qDebug("voiceMapperStats: voice %s staff data %s",
+                   qPrintable(i.key()), qPrintable(i.value().toString()));
+            }
+#endif
+
+      int nr = 0; // current measure sequence number
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "measure") {
+                  Fraction t = _pass1.getMeasureStart(nr);
+                  if (t.isValid())
+                        measure(id, t);
+                  else {
+                        logError(QString("no valid start time for measure %1").arg(nr + 1));
+                        _e.skipCurrentElement();
+                        }
+                  ++nr;
+                  }
+            else
+                  skipLogCurrElem();
+            }
+
+
+      //qDebug("spanner list:");
+      auto i = _spanners.constBegin();
+      while (i != _spanners.constEnd()) {
+            Spanner* sp = i.key();
+            int tick1 = i.value().first;
+            int tick2 = i.value().second;
+            //qDebug("spanner %p tp %hhd tick1 %d tick2 %d track %d track2 %d",
+            //       sp, sp->type(), tick1, tick2, sp->track(), sp->track2());
+            sp->setTick(tick1);
+            sp->setTick2(tick2);
+            sp->score()->addElement(sp);
+            ++i;
+            }
+      _spanners.clear();
+
+      // determine if the part contains a drumset
+      // this is the case if any instrument has a midi-unpitched element,
+      // (which stored in the MusicXMLDrumInstrument pitch field)
+      // if the part contains a drumset, Drumset drumset is intialized
+
+      Drumset* drumset = new Drumset;
+      const MusicXMLDrumset& mxmlDrumsetAfterPass2 = _pass1.getDrumset(id);
+      initDrumset(drumset, mxmlDrumsetAfterPass2);
+
+      // debug: dump the instrument map
+      /*
+            {
+            qDebug("instrlist");
+            auto il = _pass1.getInstrList(id);
+            for (auto it = il.cbegin(); it != il.cend(); ++it) {
+                  Fraction f = (*it).first;
+                  qDebug("pass2: instrument map: tick %s (%d) instr '%s'", qPrintable(f.print()), f.ticks(), qPrintable((*it).second));
+                  }
+            }
+      */
+
+      // set the parts first instrument
+      QString instrId = _pass1.getInstrList(id).instrument(Fraction(0, 1));
+      setFirstInstrument(_pass1.getPart(id), id, instrId, mxmlDrumset);
+
+      if (_hasDrumset) {
+            // set staff type to percussion if incorrectly imported as pitched staff
+            // Note: part has been read, staff type already set based on clef type and staff-details
+            // but may be incorrect for a percussion staff that does not use a percussion clef
+            setStaffTypePercussion(_pass1.getPart(id), drumset);
+            }
+      else {
+            // drumset is not needed
+            delete drumset;
+            // set the instruments for this part
+            setPartInstruments(_pass1.getPart(id), id, _score, _pass1.getInstrList(id), mxmlDrumset);
+            }
+      }
+
+//---------------------------------------------------------
+//   findMeasure
+//---------------------------------------------------------
+
+/**
+ In Score \a score find the measure starting at \a tick.
+ */
+
+static Measure* findMeasure(Score* score, const int tick)
+      {
+      for (Measure* m = score->firstMeasure();; m = m->nextMeasure()) {
+            if (m && m->tick() == tick)
+                  return m;
+            }
+      return 0;
+      }
+
+//---------------------------------------------------------
+//   removeBeam
+//---------------------------------------------------------
+
+/**
+ Set beam mode for all elements and remove the beam
+ */
+
+static void removeBeam(Beam*& beam)
+      {
+      for (int i = 0; i < beam->elements().size(); ++i)
+            beam->elements().at(i)->setBeamMode(Beam::Mode::NONE);
+      delete beam;
+      beam = 0;
+      }
+
+//---------------------------------------------------------
+//   handleBeamAndStemDir
+//---------------------------------------------------------
+
+static void handleBeamAndStemDir(ChordRest* cr, const Beam::Mode bm, const MScore::Direction sd, Beam*& beam)
+      {
+      if (!cr) return;
+      // create a new beam
+      if (bm == Beam::Mode::BEGIN) {
+            // if currently in a beam, delete it
+            if (beam) {
+                  qDebug("handleBeamAndStemDir() new beam, removing previous incomplete beam %p", beam);
+                  removeBeam(beam);
+                  }
+            // create a new beam
+            beam = new Beam(cr->score());
+            beam->setTrack(cr->track());
+            beam->setBeamDirection(sd);
+            }
+      // add ChordRest to beam
+      if (beam) {
+            // verify still in the same track (switching voices in the middle of a beam is not supported)
+            // and in a beam ...
+            // (note no check is done on correct order of beam begin/continue/end)
+            if (cr->track() == beam->track()
+                && (bm == Beam::Mode::BEGIN || bm == Beam::Mode::MID || bm == Beam::Mode::END)) {
+                  // ... and actually add cr to the beam
+                  beam->add(cr);
+                  }
+            else {
+                  qDebug("handleBeamAndStemDir() from track %d to track %d bm %hhd -> abort beam",
+                         beam->track(), cr->track(), bm);
+                  // ... or reset beam mode for all elements and remove the beam
+                  removeBeam(beam);
+                  }
+            }
+      // if no beam, set stem direction on chord itself
+      if (!beam) {
+            static_cast<Chord*>(cr)->setStemDirection(sd);
+            cr->setBeamMode(Beam::Mode::NONE);
+            }
+      // terminate the currect beam and add to the score
+      if (beam && bm == Beam::Mode::END)
+            beam = 0;
+      }
+
+
+//---------------------------------------------------------
+//   markUserAccidentals
+//---------------------------------------------------------
+
+/**
+ Check for "superfluous" accidentals to mark them as USER accidentals.
+ The candidate map alterMap is ordered on note address. Check it here segment after segment.
+ */
+
+static void markUserAccidentals(const int firstStaff,
+                                const int staves,
+                                const Key key,
+                                const Measure* measure,
+                                const QMap<Note*, int>& alterMap
+                                )
+      {
+      QMap<int, bool> accTmp;
+
+      AccidentalState currAcc;
+      currAcc.init(key);
+      Segment::Type st = Segment::Type::ChordRest;
+      for (Ms::Segment* segment = measure->first(st); segment; segment = segment->next(st)) {
+            for (int track = 0; track < staves * VOICES; ++track) {
+                  Element* e = segment->element(firstStaff * VOICES + track);
+                  if (!e || e->type() != Ms::Element::Type::CHORD)
+                        continue;
+                  Chord* chord = static_cast<Chord*>(e);
+                  foreach (Note* nt, chord->notes()) {
+                        if (alterMap.contains(nt)) {
+                              int alter = alterMap.value(nt);
+                              int ln  = absStep(nt->tpc(), nt->pitch());
+                              AccidentalVal currAccVal = currAcc.accidentalVal(ln);
+                              if ((alter == -1
+                                   && currAccVal == AccidentalVal::FLAT
+                                   && nt->accidental()->accidentalType() == AccidentalType::FLAT
+                                   && !accTmp.value(ln, false))
+                                  || (alter ==  0
+                                      && currAccVal == AccidentalVal::NATURAL
+                                      && nt->accidental()->accidentalType() == AccidentalType::NATURAL
+                                      && !accTmp.value(ln, false))
+                                  || (alter ==  1
+                                      && currAccVal == AccidentalVal::SHARP
+                                      && nt->accidental()->accidentalType() == AccidentalType::SHARP
+                                      && !accTmp.value(ln, false))) {
+                                    nt->accidental()->setRole(AccidentalRole::USER);
+                                    }
+                              else if (nt->accidental()->accidentalType() > AccidentalType::NATURAL
+                                       && nt->accidental()->accidentalType() < AccidentalType::END) {
+                                    // microtonal accidental
+                                    nt->accidental()->setRole(AccidentalRole::USER);
+                                    accTmp.insert(ln, false);
+                                    }
+                              else {
+                                    accTmp.insert(ln, true);
+                                    }
+                              }
+                        }
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   addGraceChordsAfter
+//---------------------------------------------------------
+
+/**
+ Move \a gac grace chords from grace chord list \a gcl
+ to the chord \a c grace note after list
+ */
+
+static void addGraceChordsAfter(Chord* c, GraceChordList& gcl, int& gac)
+      {
+      if (!c)
+            return;
+
+      while (gac > 0) {
+            if (gcl.size() > 0) {
+                  Chord* graceChord = gcl.first();
+                  gcl.removeFirst();
+                  graceChord->toGraceAfter();
+                  c->add(graceChord);        // TODO check if same voice ?
+                  qDebug("addGraceChordsAfter chord %p grace after chord %p", c, graceChord);
+                  }
+            gac--;
+            }
+      }
+
+//---------------------------------------------------------
+//   addGraceChordsBefore
+//---------------------------------------------------------
+
+/**
+ Move grace chords from grace chord list \a gcl
+ to the chord \a c grace note before list
+ */
+
+static void addGraceChordsBefore(Chord* c, GraceChordList& gcl)
+      {
+      for (int i = gcl.size() - 1; i >= 0; i--)
+            c->add(gcl.at(i));        // TODO check if same voice ?
+      gcl.clear();
+      }
+
+//---------------------------------------------------------
+//   measure
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure node.
+ */
+
+void MusicXMLParserPass2::measure(const QString& partId,
+                                  const Fraction time)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "measure");
+      QString number = _e.attributes().value("number").toString();
+      //qDebug("measure %s start", qPrintable(number));
+
+      Measure* measure = findMeasure(_score, time.ticks());
+      if (!measure) {
+            logError(QString("measure at tick %1 not found!").arg(time.ticks()));
+            skipLogCurrElem();
+            }
+
+      // handle implicit measure
+      if (_e.attributes().value("implicit") == "yes")
+            measure->setIrregular(true);
+
+      Fraction mTime; // current time stamp within measure
+      Fraction prevTime; // time stamp within measure previous chord
+      Chord* prevChord = 0;       // previous chord
+      Fraction mDura; // current total measure duration
+      GraceChordList gcl; // grace chords collected sofar
+      int gac = 0;       // grace after count in the grace chord list
+      Beam* beam = 0;       // current beam
+      QString cv = "1";       // current voice for chords, default is 1
+      FiguredBassList fbl;               // List of figured bass elements under a single note
+
+      // collect candidates for courtesy accidentals to work out at measure end
+      QMap<Note*, int> alterMap;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "attributes")
+                  attributes(partId, measure, (time + mTime).ticks());
+            else if (_e.name() == "direction") {
+                  MusicXMLParserDirection dir(_e, _score, _pass1, *this);
+                  dir.direction(partId, measure, (time + mTime).ticks(), _spanners);
+                  }
+            else if (_e.name() == "figured-bass") {
+                  FiguredBass* fb = figuredBass();
+                  if (fb)
+                        fbl.append(fb);
+                  }
+            else if (_e.name() == "harmony")
+                  harmony(partId, measure, time + mTime);
+            else if (_e.name() == "note") {
+                  Fraction dura;
+                  int alt = -10;                    // any number outside range of xml-tag "alter"
+                  // note: chord and grace note handling done in note()
+                  // dura > 0 iff valid rest or first note of chord found
+                  Note* n = note(partId, measure, time + mTime, time + prevTime, dura, cv, gcl, gac, beam, fbl, alt);
+                  if (n && !n->chord()->isGrace())
+                        prevChord = n->chord();  // remember last non-grace chord
+                  if (n && n->accidental() && n->accidental()->accidentalType() != AccidentalType::NONE)
+                        alterMap.insert(n, alt);
+                  if (dura.isValid() && dura > Fraction(0, 1)) {
+                        prevTime = mTime; // save time stamp last chord created
+                        mTime += dura;
+                        if (mTime > mDura)
+                              mDura = mTime;
+                        }
+                  //qDebug("added note %p gac %d", n, gac);
+                  }
+            else if (_e.name() == "forward") {
+                  Fraction dura;
+                  forward(dura);
+                  if (dura.isValid()) {
+                        mTime += dura;
+                        if (mTime > mDura)
+                              mDura = mTime;
+                        }
+                  }
+            else if (_e.name() == "backup") {
+                  Fraction dura;
+                  backup(dura);
+                  if (dura.isValid()) {
+                        if (dura <= mTime)
+                              mTime -= dura;
+                        else {
+                              logError("backup beyond measure start");
+                              mTime.set(0, 1);
+                              }
+                        }
+                  }
+            else if (_e.name() == "barline")
+                  barline(partId, measure);
+            else if (_e.name() == "print")
+                  print(measure);
+            else
+                  skipLogCurrElem();
+
+            /*
+             qDebug("mTime %s (%s) mDura %s (%s)",
+             qPrintable(mTime.print()),
+             qPrintable(mTime.reduced().print()),
+             qPrintable(mDura.print()),
+             qPrintable(mDura.reduced().print()));
+             */
+            }
+
+      // convert remaining grace chords to grace after
+      gac = gcl.size();
+      addGraceChordsAfter(prevChord, gcl, gac);
+
+      // fill possible gaps in voice 1
+      Part* part = _pass1.getPart(partId); // should not fail, we only get here if the part exists
+      fillGapsInFirstVoices(measure, part);
+
+      // can't have beams extending into the next measure
+      if (beam)
+            removeBeam(beam);
+
+      // TODO:
+      // - how to handle _timeSigDura.isZero (shouldn't happen ?)
+      // - how to handle unmetered music
+      if (_timeSigDura.isValid() && !_timeSigDura.isZero())
+            measure->setTimesig(_timeSigDura);
+
+      // mark superfluous accidentals as user accidentals
+      const int scoreRelStaff = _score->staffIdx(part);
+      const Key key = _score->staff(scoreRelStaff)->keySigEvent(time.ticks()).key();
+      markUserAccidentals(scoreRelStaff, part->nstaves(), key, measure, alterMap);
+
+      // multi-measure rest handling
+      if (getAndDecMultiMeasureRestCount() == 0) {
+            // measure is first measure after a multi-measure rest
+            measure->setBreakMultiMeasureRest(true);
+            }
+
+      Q_ASSERT(_e.isEndElement() && _e.name() == "measure");
+      }
+
+//---------------------------------------------------------
+//   attributes
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/attributes node.
+ */
+
+/* Notes:
+ * Number of staves has already been set in pass 1
+ * MusicXML order is key, time, clef
+ * -> check if it is necessary to insert them in order
+ */
+
+void MusicXMLParserPass2::attributes(const QString& partId, Measure* measure, const int tick)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "attributes");
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "clef")
+                  clef(partId, measure, tick);
+            else if (_e.name() == "divisions")
+                  divisions();
+            else if (_e.name() == "key")
+                  key(partId, measure, tick);
+            else if (_e.name() == "measure-style")
+                  measureStyle(measure);
+            else if (_e.name() == "time")
+                  time(partId, measure, tick);
+            else if (_e.name() == "transpose")
+                  transpose(partId);
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   measureStyle
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/measure-style node.
+ Initializes the "in multi-measure rest" state
+ */
+
+void MusicXMLParserPass2::measureStyle(Measure* measure)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "measure-style");
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "multiple-rest") {
+                  int multipleRest = _e.readElementText().toInt();
+                  if (multipleRest > 1) {
+                        _multiMeasureRestCount = multipleRest;
+                        _score->style()->set(StyleIdx::createMultiMeasureRests, true);
+                        measure->setBreakMultiMeasureRest(true);
+                        }
+                  else
+                        logError(QString("multiple-rest %1 not supported").arg(multipleRest));
+                  }
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+
+//---------------------------------------------------------
+//   print
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/print node.
+ */
+
+void MusicXMLParserPass2::print(Measure* measure)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "print");
+
+      bool newSystem = _e.attributes().value("new-system") == "yes";
+      bool newPage   = _e.attributes().value("new-page") == "yes";
+      int blankPage = _e.attributes().value("blank-page").toInt();
+      //
+      // in MScore the break happens _after_ the marked measure:
+      //
+      MeasureBase* pm = measure->prevMeasure();        // We insert VBox only for title, no HBox for the moment
+      if (pm == 0) {
+            logDebugInfo("break on first measure");
+            if (blankPage == 1) {       // blank title page, insert a VBOX if needed
+                  pm = measure->prev();
+                  if (pm == 0) {
+                        pm = _score->insertMeasure(Element::Type::VBOX, measure);
+                        }
+                  }
+            }
+      if (pm) {
+            if (preferences.musicxmlImportBreaks && (newSystem || newPage)) {
+                  LayoutBreak* lb = new LayoutBreak(_score);
+                  lb->setLayoutBreakType(newSystem ? LayoutBreak::Type::LINE : LayoutBreak::Type::PAGE);
+                  pm->add(lb);
+                  }
+            }
+
+      while (_e.readNextStartElement()) {
+            skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   direction
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/direction node.
+ */
+
+void MusicXMLParserDirection::direction(const QString& partId,
+                                        Measure* measure,
+                                        const int tick,
+                                        MusicXmlSpannerMap& spanners)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "direction");
+      //qDebug("direction tick %d", tick);
+
+      QString placement = _e.attributes().value("placement").toString();
+      int track = _pass1.trackForPart(partId);
+      //qDebug("direction track %d", track);
+      QList<MusicXmlSpannerDesc> starts;
+      QList<MusicXmlSpannerDesc> stops;
+
+      // note: file order is direction-type first, then staff
+      // this means staff is still unknown when direction-type is handled
+      // easiest solution is to put spanners on a stop and start list
+      // and handle these after the while loop
+
+      // note that placement is a <direction> attribute (which is currently supported by MS)
+      // but the <direction-type> children also have formatting attributes
+      // (currently NOT supported by MS, at least not for spanners when <direction> children)
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "direction-type")
+                  directionType(starts, stops);
+            else if (_e.name() == "staff") {
+                  int nstaves = _pass1.getPart(partId)->nstaves();
+                  QString strStaff = _e.readElementText();
+                  int staff = strStaff.toInt();
+                  if (0 < staff && staff <= nstaves)
+                        track += (staff - 1) * VOICES;
+                  else
+                        logError(QString("invalid staff %1").arg(strStaff));
+                  }
+            else if (_e.name() == "sound")
+                  sound();
+            else
+                  skipLogCurrElem();
+            }
+
+      handleRepeats(measure, track);
+
+      // fix for Sibelius 7.1.3 (direct export) which creates metronomes without <sound tempo="..."/>:
+      // if necessary, use the value calculated by metronome()
+      // note: no floating point comparisons with 0 ...
+      if (_tpoSound < 0.1 && _tpoMetro > 0.1)
+            _tpoSound = _tpoMetro;
+
+      //qDebug("words '%s' rehearsal '%s' metro '%s' tpo %g",
+      //       qPrintable(_wordsText), qPrintable(_rehearsalText), qPrintable(_metroText), _tpoSound);
+
+      // create text if any text was found
+      // TODO TBD what to do if _tpoSound > 0 but no text at all
+
+      if (_wordsText != "" || _rehearsalText != "" || _metroText != "") {
+            Text* t = 0;
+            if (_tpoSound > 0.1) {
+                  _tpoSound /= 60;
+                  t = new TempoText(_score);
+                  t->setXmlText(_wordsText + _metroText);
+                  ((TempoText*) t)->setTempo(_tpoSound);
+                  ((TempoText*) t)->setFollowText(true);
+                  _score->setTempo(tick, _tpoSound);
+                  }
+            else {
+                  if (_wordsText != "" || _metroText != "") {
+                        t = new StaffText(_score);
+                        t->setXmlText(_wordsText + _metroText);
+                        }
+                  else {
+                        t = new RehearsalMark(_score);
+                        if (!_rehearsalText.contains("<b>"))
+                              _rehearsalText = "<b></b>" + _rehearsalText;  // explicitly turn bold off
+                        t->setXmlText(_rehearsalText);
+                        if (!_hasDefaultY)
+                              t->setPlacement(Element::Placement::ABOVE);  // crude way to force placement TODO improve ?
+                        }
+                  }
+
+            if (_enclosure == "circle") {
+                  t->textStyle().setHasFrame(true);
+                  t->textStyle().setCircle(true);
+                  }
+            else if (_enclosure == "none") {
+                  t->textStyle().setHasFrame(false);
+                  }
+            else if (_enclosure == "rectangle") {
+                  t->textStyle().setHasFrame(true);
+                  t->textStyle().setFrameRound(0);
+                  }
+
+            if (_hasDefaultY) t->textStyle().setYoff(_defaultY);
+            addElemOffset(t, track, placement, measure, tick);
+            }
+
+      // do dynamics
+      // LVIFIX: check import/export of <other-dynamics>unknown_text</...>
+      for (QStringList::Iterator it = _dynamicsList.begin(); it != _dynamicsList.end(); ++it ) {
+            Dynamic* dyn = new Dynamic(_score);
+            dyn->setDynamicType(*it);
+            if (!_dynaVelocity.isEmpty()) {
+                  int dynaValue = round(_dynaVelocity.toDouble() * 0.9);
+                  if (dynaValue > 127)
+                        dynaValue = 127;
+                  else if (dynaValue < 0)
+                        dynaValue = 0;
+                  dyn->setVelocity( dynaValue );
+                  }
+            if (_hasDefaultY) dyn->textStyle().setYoff(_defaultY);
+            addElemOffset(dyn, track, placement, measure, tick);
+            }
+
+      // handle the elems
+      foreach( auto elem, _elems) {
+            // TODO (?) if (_hasDefaultY) elem->setYoff(_defaultY);
+            addElemOffset(elem, track, placement, measure, tick);
+            }
+
+      // handle the spanner stops first
+      foreach (auto desc, stops) {
+            SLine* sp = _pass2.getSpanner(desc);
+            if (sp) {
+                  handleSpannerStop(sp, track, tick, spanners);
+                  _pass2.clearSpanner(desc);
+                  }
+            else
+                  logError("spanner stop without spanner start");
+            }
+
+      // then handle the spanner starts
+      foreach (auto desc, starts) {
+            SLine* sp = _pass2.getSpanner(desc);
+            if (!sp) {
+                  _pass2.addSpanner(desc);
+                  handleSpannerStart(desc.sp, track, placement, tick, spanners);
+                  }
+            else
+                  logError("spanner already started");
+            }
+
+      Q_ASSERT(_e.isEndElement() && _e.name() == "direction");
+      }
+
+//---------------------------------------------------------
+//   directionType
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/direction/direction-type node.
+ */
+
+void MusicXMLParserDirection::directionType(QList<MusicXmlSpannerDesc>& starts,
+                                            QList<MusicXmlSpannerDesc>& stops)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "direction-type");
+
+      while (_e.readNextStartElement()) {
+            _defaultY = _e.attributes().value("default-y").toDouble(&_hasDefaultY) * -0.1;
+            QString number = _e.attributes().value("number").toString();
+            int n = 0;
+            if (number != "") {
+                  n = number.toInt();
+                  if (n <= 0)
+                        logError(QString("invalid number %1").arg(number));
+                  else
+                        n--;  // make zero-based
+                  }
+            QString type = _e.attributes().value("type").toString();
+            if  (_e.name() == "metronome")
+                  _metroText = metronome(_tpoMetro);
+            else if (_e.name() == "words") {
+                  _enclosure      = _e.attributes().value("enclosure").toString();
+                  _wordsText += nextPartOfFormattedString(_e);
+                  }
+            else if (_e.name() == "rehearsal") {
+                  _enclosure      = _e.attributes().value("enclosure").toString();
+                  if (_enclosure == "")
+                        _enclosure = "square";  // note different default
+                  _rehearsalText += nextPartOfFormattedString(_e);
+                  }
+            else if (_e.name() == "pedal")
+                  pedal(type, n, starts, stops);
+            else if (_e.name() == "octave-shift")
+                  octaveShift(type, n, starts, stops);
+            else if (_e.name() == "dynamics")
+                  dynamics();
+            else if (_e.name() == "bracket")
+                  bracket(type, n, starts, stops);
+            else if (_e.name() == "dashes")
+                  dashes(type, n, starts, stops);
+            else if (_e.name() == "wedge")
+                  wedge(type, n, starts, stops);
+            else if (_e.name() == "coda") {
+                  _coda = true;
+                  _e.skipCurrentElement();
+                  }
+            else if (_e.name() == "segno") {
+                  _segno = true;
+                  _e.skipCurrentElement();
+                  }
+            else
+                  skipLogCurrElem();
+            }
+
+      Q_ASSERT(_e.isEndElement() && _e.name() == "direction-type");
+      }
+
+//---------------------------------------------------------
+//   sound
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/direction/sound node.
+ */
+
+void MusicXMLParserDirection::sound()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "sound");
+
+      _sndCapo = _e.attributes().value("capo").toString();
+      _sndCoda = _e.attributes().value("coda").toString();
+      _sndDacapo = _e.attributes().value("dacapo").toString();
+      _sndDalsegno = _e.attributes().value("dalsegno").toString();
+      _sndFine = _e.attributes().value("fine").toString();
+      _sndSegno = _e.attributes().value("segno").toString();
+      _tpoSound = _e.attributes().value("tempo").toDouble();
+      _dynaVelocity = _e.attributes().value("dynamics").toString();
+
+      _e.skipCurrentElement();
+      }
+
+//---------------------------------------------------------
+//   dynamics
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/direction/direction-type/dynamics node.
+ */
+
+void MusicXMLParserDirection::dynamics()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "dynamics");
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "other-dynamics")
+                  _dynamicsList.push_back(_e.readElementText());
+            else {
+                  _dynamicsList.push_back(_e.name().toString());
+                  _e.skipCurrentElement();
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   matchRepeat
+//---------------------------------------------------------
+
+/**
+ Do a wild-card match with known repeat texts.
+ */
+
+static QString matchRepeat(const QString& lowerTxt)
+      {
+      QString repeat;
+      QRegExp daCapo("d\\.? *c\\.?|da *capo");
+      QRegExp daCapoAlFine("d\\.? *c\\.? *al *fine|da *capo *al *fine");
+      QRegExp daCapoAlCoda("d\\.? *c\\.? *al *coda|da *capo *al *coda");
+      QRegExp dalSegno("d\\.? *s\\.?|d[ae]l *segno");
+      QRegExp dalSegnoAlFine("d\\.? *s\\.? *al *fine|d[ae]l *segno *al *fine");
+      QRegExp dalSegnoAlCoda("d\\.? *s\\.? *al *coda|d[ae]l *segno *al *coda");
+      QRegExp fine("fine");
+      QRegExp toCoda("to *coda");
+      if (daCapo.exactMatch(lowerTxt)) repeat = "daCapo";
+      if (daCapoAlFine.exactMatch(lowerTxt)) repeat = "daCapoAlFine";
+      if (daCapoAlCoda.exactMatch(lowerTxt)) repeat = "daCapoAlCoda";
+      if (dalSegno.exactMatch(lowerTxt)) repeat = "dalSegno";
+      if (dalSegnoAlFine.exactMatch(lowerTxt)) repeat = "dalSegnoAlFine";
+      if (dalSegnoAlCoda.exactMatch(lowerTxt)) repeat = "dalSegnoAlCoda";
+      if (fine.exactMatch(lowerTxt)) repeat = "fine";
+      if (toCoda.exactMatch(lowerTxt)) repeat = "toCoda";
+      return repeat;
+      }
+
+//---------------------------------------------------------
+//   findJump
+//---------------------------------------------------------
+
+/**
+ Try to find a Jump in \a repeat.
+ */
+
+static Jump* findJump(const QString& repeat, Score* score)
+      {
+      Jump* jp = 0;
+      if (repeat == "daCapo") {
+            jp = new Jump(score);
+            jp->setTextStyleType(TextStyleType::REPEAT_RIGHT);
+            jp->setJumpType(Jump::Type::DC);
+            }
+      else if (repeat == "daCapoAlCoda") {
+            jp = new Jump(score);
+            jp->setTextStyleType(TextStyleType::REPEAT_RIGHT);
+            jp->setJumpType(Jump::Type::DC_AL_CODA);
+            }
+      else if (repeat == "daCapoAlFine") {
+            jp = new Jump(score);
+            jp->setTextStyleType(TextStyleType::REPEAT_RIGHT);
+            jp->setJumpType(Jump::Type::DC_AL_FINE);
+            }
+      else if (repeat == "dalSegno") {
+            jp = new Jump(score);
+            jp->setTextStyleType(TextStyleType::REPEAT_RIGHT);
+            jp->setJumpType(Jump::Type::DS);
+            }
+      else if (repeat == "dalSegnoAlCoda") {
+            jp = new Jump(score);
+            jp->setTextStyleType(TextStyleType::REPEAT_RIGHT);
+            jp->setJumpType(Jump::Type::DS_AL_CODA);
+            }
+      else if (repeat == "dalSegnoAlFine") {
+            jp = new Jump(score);
+            jp->setTextStyleType(TextStyleType::REPEAT_RIGHT);
+            jp->setJumpType(Jump::Type::DS_AL_FINE);
+            }
+      return jp;
+      }
+
+//---------------------------------------------------------
+//   findMarker
+//---------------------------------------------------------
+
+/**
+ Try to find a Marker in \a repeat.
+ */
+
+static Marker* findMarker(const QString& repeat, Score* score)
+      {
+      Marker* m = 0;
+      if (repeat == "segno") {
+            m = new Marker(score);
+            // note: Marker::read() also contains code to set text style based on type
+            // avoid duplicated code
+            m->setTextStyleType(TextStyleType::REPEAT_LEFT);
+            // apparently this MUST be after setTextStyle
+            m->setMarkerType(Marker::Type::SEGNO);
+            }
+      else if (repeat == "coda") {
+            m = new Marker(score);
+            m->setTextStyleType(TextStyleType::REPEAT_LEFT);
+            m->setMarkerType(Marker::Type::CODA);
+            }
+      else if (repeat == "fine") {
+            m = new Marker(score);
+            m->setTextStyleType(TextStyleType::REPEAT_RIGHT);
+            m->setMarkerType(Marker::Type::FINE);
+            }
+      else if (repeat == "toCoda") {
+            m = new Marker(score);
+            m->setTextStyleType(TextStyleType::REPEAT_RIGHT);
+            m->setMarkerType(Marker::Type::TOCODA);
+            }
+      return m;
+      }
+
+//---------------------------------------------------------
+//   handleRepeats
+//---------------------------------------------------------
+
+void MusicXMLParserDirection::handleRepeats(Measure* measure, const int track)
+      {
+      // Try to recognize the various repeats
+      QString repeat = "";
+      // Easy cases first
+      if (_coda) repeat = "coda";
+      if (_segno) repeat = "segno";
+      // As sound may be missing, next do a wild-card match with known repeat texts
+      QString txt = MScoreTextToMXML::toPlainText(_wordsText.toLower());
+      if (repeat == "") repeat = matchRepeat(txt.toLower());
+      // If that did not work, try to recognize a sound attribute
+      if (repeat == "" && _sndCoda != "") repeat = "coda";
+      if (repeat == "" && _sndDacapo != "") repeat = "daCapo";
+      if (repeat == "" && _sndDalsegno != "") repeat = "dalSegno";
+      if (repeat == "" && _sndFine != "") repeat = "fine";
+      if (repeat == "" && _sndSegno != "") repeat = "segno";
+      // If a repeat was found, assume words is no longer needed
+      if (repeat != "") _wordsText = "";
+
+      /*
+       qDebug(" txt=%s repeat=%s",
+       txt.toLatin1().data(),
+       repeat.toLatin1().data()
+       );
+       */
+
+      if (repeat != "") {
+            if (Jump* jp = findJump(repeat, _score)) {
+                  jp->setTrack(track);
+                  qDebug("jumpsMarkers adding jm %p meas %p",jp, measure);
+                  // TODO jumpsMarkers.append(JumpMarkerDesc(jp, measure));
+                  measure->add(jp);
+                  }
+            if (Marker* m = findMarker(repeat, _score)) {
+                  m->setTrack(track);
+                  qDebug("jumpsMarkers adding jm %p meas %p",m, measure);
+                  // TODO jumpsMarkers.append(JumpMarkerDesc(m, measure));
+                  measure->add(m);
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   bracket
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/direction/direction-type/bracket node.
+ */
+
+void MusicXMLParserDirection::bracket(const QString& type, const int number,
+                                      QList<MusicXmlSpannerDesc>& starts, QList<MusicXmlSpannerDesc>& stops)
+      {
+      QStringRef lineEnd = _e.attributes().value("line-end");
+      QStringRef lineType = _e.attributes().value("line-type");
+      if (type == "start") {
+            TextLine* b = new TextLine(_score);
+            // if (placement == "") placement = "above";  // TODO ? set default
+
+            b->setBeginHook(lineEnd != "none");
+            if (lineEnd == "up")
+                  b->setBeginHookHeight(-1 * b->beginHookHeight());
+
+            // hack: combine with a previous words element
+            if (!_wordsText.isEmpty()) {
+                  // TextLine supports only limited formatting, remove all (compatible with 1.3)
+                  b->setBeginText(MScoreTextToMXML::toPlainText(_wordsText), TextStyleType::TEXTLINE);
+                  _wordsText = "";
+                  }
+
+            if (lineType == "solid")
+                  b->setLineStyle(Qt::SolidLine);
+            else if (lineType == "dashed")
+                  b->setLineStyle(Qt::DashLine);
+            else if (lineType == "dotted")
+                  b->setLineStyle(Qt::DotLine);
+            else
+                  logError(QString("unsupported line-type: %1").arg(lineType.toString()));
+            starts.append(MusicXmlSpannerDesc(b, Element::Type::TEXTLINE, number));
+            }
+      else if (type == "stop") {
+            TextLine* b = static_cast<TextLine*>(_pass2.getSpanner(MusicXmlSpannerDesc(Element::Type::TEXTLINE, number)));
+            if (b) {
+                  b->setEndHook(lineEnd != "none");
+                  if (lineEnd == "up")
+                        b->setEndHookHeight(-1 * b->endHookHeight());
+                  }
+            stops.append(MusicXmlSpannerDesc(Element::Type::TEXTLINE, number));
+            }
+      _e.skipCurrentElement();
+      }
+
+//---------------------------------------------------------
+//   dashes
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/direction/direction-type/dashes node.
+ */
+
+void MusicXMLParserDirection::dashes(const QString& type, const int number,
+                                     QList<MusicXmlSpannerDesc>& starts, QList<MusicXmlSpannerDesc>& stops)
+      {
+      if (type == "start") {
+            TextLine* b = new TextLine(_score);
+            // if (placement == "") placement = "above";  // TODO ? set default
+
+            // hack: combine with a previous words element
+            if (!_wordsText.isEmpty()) {
+                  // TextLine supports only limited formatting, remove all (compatible with 1.3)
+                  b->setBeginText(MScoreTextToMXML::toPlainText(_wordsText), TextStyleType::TEXTLINE);
+                  _wordsText = "";
+                  }
+
+            b->setBeginHook(false);
+            b->setEndHook(false);
+            b->setLineStyle(Qt::DashLine);
+            // TODO brackets and dashes now share the same storage
+            // because they both use Element::Type::TEXTLINE
+            // use mxml specific type instead
+            starts.append(MusicXmlSpannerDesc(b, Element::Type::TEXTLINE, number));
+            }
+      else if (type == "stop")
+            stops.append(MusicXmlSpannerDesc(Element::Type::TEXTLINE, number));
+      _e.skipCurrentElement();
+      }
+
+//---------------------------------------------------------
+//   octaveShift
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/direction/direction-type/octave-shift node.
+ */
+
+void MusicXMLParserDirection::octaveShift(const QString& type, const int number,
+                                          QList<MusicXmlSpannerDesc>& starts, QList<MusicXmlSpannerDesc>& stops)
+      {
+      if (type == "up" || type == "down") {
+            int ottavasize = _e.attributes().value("size").toInt();
+            if (!(ottavasize == 8 || ottavasize == 15)) {
+                  logError(QString("unknown octave-shift size %1").arg(ottavasize));
+                  }
+            else {
+                  Ottava* o = new Ottava(_score);
+
+                  // if (placement == "") placement = "above";  // TODO ? set default
+
+                  if (type == "down" && ottavasize ==  8) o->setOttavaType(Ottava::Type::OTTAVA_8VA);
+                  if (type == "down" && ottavasize == 15) o->setOttavaType(Ottava::Type::OTTAVA_15MA);
+                  if (type ==   "up" && ottavasize ==  8) o->setOttavaType(Ottava::Type::OTTAVA_8VB);
+                  if (type ==   "up" && ottavasize == 15) o->setOttavaType(Ottava::Type::OTTAVA_15MB);
+
+                  starts.append(MusicXmlSpannerDesc(o, Element::Type::OTTAVA, number));
+                  }
+            }
+      else if (type == "stop")
+            stops.append(MusicXmlSpannerDesc(Element::Type::OTTAVA, number));
+      _e.skipCurrentElement();
+      }
+
+//---------------------------------------------------------
+//   pedal
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/direction/direction-type/pedal node.
+ */
+
+void MusicXMLParserDirection::pedal(const QString& type, const int /* number */,
+                                    QList<MusicXmlSpannerDesc>& starts,
+                                    QList<MusicXmlSpannerDesc>& stops)
+      {
+      QStringRef line = _e.attributes().value("line");
+      QString sign = _e.attributes().value("sign").toString();
+      if (line != "yes" && sign == "") sign = "yes";       // MusicXML 2.0 compatibility
+      if (line == "yes" && sign == "") sign = "no";        // MusicXML 2.0 compatibility
+      if (line == "yes") {
+            if (type == "start") {
+                  Pedal* p = new Pedal(_score);
+                  if (sign == "yes")
+                        p->setBeginText("<sym>keyboardPedalPed</sym>");
+                  else
+                        p->setBeginHook(true);
+                  p->setEndHook(true);
+                  // if (placement == "") placement = "below";  // TODO ? set default
+                  starts.append(MusicXmlSpannerDesc(p, Element::Type::PEDAL, 0));
+                  }
+            else if (type == "stop")
+                  stops.append(MusicXmlSpannerDesc(Element::Type::PEDAL, 0));
+            else if (type == "change") {
+#if 0
+                  TODO
+                  // pedal change is implemented as two separate pedals
+                  // first stop the first one
+                  if (pedal) {
+                        pedal->setEndHookType(HookType::HOOK_45);
+                        handleSpannerStop(pedal, "pedal", track, tick, spanners);
+                        pedalContinue = pedal; // mark for later fixup
+                        pedal = 0;
+                        }
+                  // then start a new one
+                  pedal = static_cast<Pedal*>(checkSpannerOverlap(pedal, new Pedal(score), "pedal"));
+                  pedal->setBeginHook(true);
+                  pedal->setBeginHookType(HookType::HOOK_45);
+                  pedal->setEndHook(true);
+                  if (placement == "") placement = "below";
+                  handleSpannerStart(pedal, "pedal", track, placement, tick, spanners);
+#endif
+                  }
+            else if (type == "continue") {
+                  // ignore
+                  }
+            else
+                  qDebug("unknown pedal type %s", qPrintable(type));
+            }
+      else {
+            // TBD: what happens when an unknown pedal type is found ?
+            Symbol* s = new Symbol(_score);
+            s->setAlign(AlignmentFlags::LEFT | AlignmentFlags::BASELINE);
+            s->setOffsetType(OffsetType::SPATIUM);
+            if (type == "start")
+                  s->setSym(SymId::keyboardPedalPed);
+            else if (type == "stop")
+                  s->setSym(SymId::keyboardPedalUp);
+            else
+                  logError(QString("unknown pedal type %1").arg(type));
+            _elems.append(s);
+            }
+
+      _e.skipCurrentElement();
+      }
+
+//---------------------------------------------------------
+//   wedge
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/direction/direction-type/wedge node.
+ */
+
+void MusicXMLParserDirection::wedge(const QString& type, const int number,
+                                    QList<MusicXmlSpannerDesc>& starts, QList<MusicXmlSpannerDesc>& stops)
+      {
+      QStringRef niente = _e.attributes().value("niente");
+      if (type == "crescendo" || type == "diminuendo") {
+            Hairpin* h = new Hairpin(_score);
+            h->setHairpinType(type == "crescendo"
+                              ? Hairpin::Type::CRESCENDO : Hairpin::Type::DECRESCENDO);
+            if (niente == "yes")
+                  h->setHairpinCircledTip(true);
+            starts.append(MusicXmlSpannerDesc(h, Element::Type::HAIRPIN, number));
+            }
+      else if (type == "stop") {
+            Hairpin* h = static_cast<Hairpin*>(_pass2.getSpanner(MusicXmlSpannerDesc(Element::Type::HAIRPIN, number)));
+            if (niente == "yes")
+                  h->setHairpinCircledTip(true);
+            stops.append(MusicXmlSpannerDesc(Element::Type::HAIRPIN, number));
+            }
+      _e.skipCurrentElement();
+      }
+
+//---------------------------------------------------------
+//   addSpanner
+//---------------------------------------------------------
+
+void MusicXMLParserPass2::addSpanner(const MusicXmlSpannerDesc& d)
+      {
+      if (d.tp == Element::Type::HAIRPIN && 0 <= d.nr && d.nr < MAX_NUMBER_LEVEL)
+            _hairpins[d.nr] = d.sp;
+      else if (d.tp == Element::Type::OTTAVA && 0 <= d.nr && d.nr < MAX_NUMBER_LEVEL)
+            _ottavas[d.nr] = d.sp;
+      else if (d.tp == Element::Type::PEDAL && 0 == d.nr)
+            _pedal = d.sp;
+      // TODO: check MAX_BRACKETS vs MAX_NUMBER_LEVEL
+      else if (d.tp == Element::Type::TEXTLINE && 0 <= d.nr && d.nr < MAX_BRACKETS)
+            _brackets[d.nr] = d.sp;
+      }
+
+//---------------------------------------------------------
+//   getSpanner
+//---------------------------------------------------------
+
+SLine* MusicXMLParserPass2::getSpanner(const MusicXmlSpannerDesc& d)
+      {
+      if (d.tp == Element::Type::HAIRPIN && 0 <= d.nr && d.nr < MAX_NUMBER_LEVEL)
+            return _hairpins[d.nr];
+      else if (d.tp == Element::Type::OTTAVA && 0 <= d.nr && d.nr < MAX_NUMBER_LEVEL)
+            return _ottavas[d.nr];
+      else if (d.tp == Element::Type::PEDAL && 0 == d.nr)
+            return _pedal;
+      // TODO: check MAX_BRACKETS vs MAX_NUMBER_LEVEL
+      else if (d.tp == Element::Type::TEXTLINE && 0 <= d.nr && d.nr < MAX_BRACKETS)
+            return _brackets[d.nr];
+      return 0;
+      }
+
+//---------------------------------------------------------
+//   clearSpanner
+//---------------------------------------------------------
+
+void MusicXMLParserPass2::clearSpanner(const MusicXmlSpannerDesc& d)
+      {
+      if (d.tp == Element::Type::HAIRPIN && 0 <= d.nr && d.nr < MAX_NUMBER_LEVEL)
+            _hairpins[d.nr] = 0;
+      else if (d.tp == Element::Type::OTTAVA && 0 <= d.nr && d.nr < MAX_NUMBER_LEVEL)
+            _ottavas[d.nr] = 0;
+      else if (d.tp == Element::Type::PEDAL && 0 == d.nr)
+            _pedal = 0;
+      // TODO: check MAX_BRACKETS vs MAX_NUMBER_LEVEL
+      else if (d.tp == Element::Type::TEXTLINE && 0 <= d.nr && d.nr < MAX_BRACKETS)
+            _brackets[d.nr] = 0;
+      }
+
+//---------------------------------------------------------
+//   metronome
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/direction/direction-type/metronome node.
+ Convert to text and set r to calculated tempo.
+ */
+
+QString MusicXMLParserDirection::metronome(double& r)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "metronome");
+
+      r = 0;
+      QString tempoText;
+      QString perMinute;
+      bool parenth = _e.attributes().value("parentheses") == "yes";
+
+      if (parenth)
+            tempoText += "(";
+
+      TDuration dur1;
+      TDuration dur2;
+
+      while (_e.readNextStartElement()) {
+            QString txt = _e.readElementText();
+            if (_e.name() == "beat-unit") {
+                  // set first dur that is still invalid
+                  if (!dur1.isValid()) dur1.setType(txt);
+                  else if (!dur2.isValid()) dur2.setType(txt);
+                  }
+            else if (_e.name() == "beat-unit-dot") {
+                  if (dur2.isValid()) dur2.setDots(1);
+                  else if (dur1.isValid()) dur1.setDots(1);
+                  }
+            else if (_e.name() == "per-minute")
+                  perMinute = txt;
+            else
+                  skipLogCurrElem();
+            }
+
+      if (dur1.isValid())
+            tempoText += TempoText::duration2tempoTextString(dur1);
+      if (dur2.isValid()) {
+            tempoText += " = ";
+            tempoText += TempoText::duration2tempoTextString(dur2);
+            }
+      else if (perMinute != "") {
+            tempoText += " = ";
+            tempoText += perMinute;
+            }
+      if (dur1.isValid() && !dur2.isValid() && perMinute != "") {
+            bool ok;
+            double d = perMinute.toDouble(&ok);
+            if (ok) {
+                  // convert fraction to beats per minute
+                  r = 4 * dur1.fraction().numerator() * d / dur1.fraction().denominator();
+                  }
+            }
+
+      if (parenth)
+            tempoText += ")";
+
+      return tempoText;
+      }
+
+//---------------------------------------------------------
+//   determineBarLineType
+//---------------------------------------------------------
+
+static bool determineBarLineType(const QString& barStyle, const QString& repeat,
+                                 BarLineType& type, bool& visible)
+      {
+      // set defaults
+      type = BarLineType::NORMAL;
+      visible = true;
+
+      if (barStyle == "light-heavy" && repeat == "backward")
+            type = BarLineType::END_REPEAT;
+      else if (barStyle == "heavy-light" && repeat == "forward")
+            type = BarLineType::START_REPEAT;
+      else if (barStyle == "light-heavy" && repeat.isEmpty())
+            type = BarLineType::END;
+      else if (barStyle == "regular")
+            type = BarLineType::NORMAL;
+      else if (barStyle == "dashed")
+            type = BarLineType::BROKEN;
+      else if (barStyle == "dotted")
+            type = BarLineType::DOTTED;
+      else if (barStyle == "light-light")
+            type = BarLineType::DOUBLE;
+      /*
+       else if (barStyle == "heavy-light")
+       ;
+       else if (barStyle == "heavy-heavy")
+       ;
+       */
+      else if (barStyle == "none") {
+            type = BarLineType::NORMAL;
+            visible = false;
+            }
+      else if (barStyle == "") {
+            if (repeat == "backward")
+                  type = BarLineType::END_REPEAT;
+            else if (repeat == "forward")
+                  type = BarLineType::START_REPEAT;
+            else {
+                  qDebug("ImportXml: warning: empty bar type");       // TODO
+                  return false;
+                  }
+            }
+      else {
+            qDebug("unsupported bar type <%s>", barStyle.toLatin1().data());       // TODO
+            return false;
+            }
+
+      return true;
+      }
+
+//---------------------------------------------------------
+//   barline
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/barline node.
+ */
+
+void MusicXMLParserPass2::barline(const QString& partId, Measure* measure)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "barline");
+
+      QString loc = _e.attributes().value("location").toString();
+      if (loc == "")
+            loc = "right";
+      QString barStyle;
+      QString endingNumber;
+      QString endingType;
+      QString endingText;
+      QString repeat;
+      QString count;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "bar-style")
+                  barStyle = _e.readElementText();
+            else if (_e.name() == "ending") {
+                  endingNumber = _e.attributes().value("number").toString();
+                  endingType   = _e.attributes().value("type").toString();
+                  endingText = _e.readElementText();
+                  }
+            else if (_e.name() == "repeat") {
+                  repeat = _e.attributes().value("direction").toString();
+                  count = _e.attributes().value("times").toString();
+                  if (count.isEmpty()) {
+                        count = "2";
+                        }
+                  measure->setRepeatCount(count.toInt());
+                  _e.skipCurrentElement();
+                  }
+            else
+                  skipLogCurrElem();
+            }
+
+      BarLineType type = BarLineType::NORMAL;
+      bool visible = true;
+      if (determineBarLineType(barStyle, repeat, type, visible)) {
+            if (type == BarLineType::START_REPEAT) {
+                  measure->setRepeatFlags(Repeat::START);
+                  }
+            else if (type == BarLineType::END_REPEAT) {
+                  measure->setRepeatFlags(Repeat::END);
+                  }
+            else {
+                  if (loc == "right")
+                        measure->setEndBarLineType(type, false, visible);
+                  else if (measure->prevMeasure())
+                        measure->prevMeasure()->setEndBarLineType(type, false, visible);
+                  }
+            }
+
+      doEnding(partId, measure, endingNumber, endingType, endingText);
+      }
+
+//---------------------------------------------------------
+//   doEnding
+//---------------------------------------------------------
+
+void MusicXMLParserPass2::doEnding(const QString& partId, Measure* measure,
+                                   const QString& number, const QString& type, const QString& text)
+      {
+      if (!(number.isEmpty() && type.isEmpty())) {
+            if (number.isEmpty())
+                  logError("empty ending number");
+            else if (type.isEmpty())
+                  logError("empty ending type");
+            else {
+                  QStringList sl = number.split(",", QString::SkipEmptyParts);
+                  QList<int> iEndingNumbers;
+                  bool unsupported = false;
+                  foreach(const QString &s, sl) {
+                        int iEndingNumber = s.toInt();
+                        if (iEndingNumber <= 0) {
+                              unsupported = true;
+                              break;
+                              }
+                        iEndingNumbers.append(iEndingNumber);
+                        }
+
+                  if (unsupported)
+                        logError(QString("unsupported ending number '%1'").arg(number));
+                  else {
+                        if (type == "start") {
+                              Volta* volta = new Volta(_score);
+                              volta->setTrack(_pass1.trackForPart(partId));
+                              volta->setText(text.isEmpty() ? number : text);
+                              // LVIFIX TODO also support endings "1 - 3"
+                              volta->endings().clear();
+                              volta->endings().append(iEndingNumbers);
+                              volta->setTick(measure->tick());
+                              _score->addElement(volta);
+                              _lastVolta = volta;
+                              }
+                        else if (type == "stop") {
+                              if (_lastVolta) {
+                                    _lastVolta->setVoltaType(Volta::Type::CLOSED);
+                                    _lastVolta->setTick2(measure->tick() + measure->ticks());
+                                    _lastVolta = 0;
+                                    }
+                              else
+                                    logError("ending stop without start");
+                              }
+                        else if (type == "discontinue") {
+                              if (_lastVolta) {
+                                    _lastVolta->setVoltaType(Volta::Type::OPEN);
+                                    _lastVolta->setTick2(measure->tick() + measure->ticks());
+                                    _lastVolta = 0;
+                                    }
+                              else
+                                    logError("ending discontinue without start");
+                              }
+                        else
+                              logError(QString("unsupported ending type '%1'").arg(type));
+                        }
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   isAppr
+//---------------------------------------------------------
+
+/**
+ Check if v approximately equals ref.
+ Used to prevent floating point comparison for equality from failing
+ */
+
+static bool isAppr(const double v, const double ref, const double epsilon)
+      {
+      return v > ref - epsilon && v < ref + epsilon;
+      }
+
+//---------------------------------------------------------
+//   microtonalGuess
+//---------------------------------------------------------
+
+/**
+ Convert a MusicXML alter tag into a microtonal accidental in MuseScore enum AccidentalType.
+ Works only for quarter tone, half tone, three-quarters tone and whole tone accidentals.
+ */
+
+static AccidentalType microtonalGuess(double val)
+      {
+      const double eps = 0.001;
+      if (isAppr(val, -2, eps))
+            return AccidentalType::FLAT2;
+      else if (isAppr(val, -1.5, eps))
+            return AccidentalType::MIRRORED_FLAT2;
+      else if (isAppr(val, -1, eps))
+            return AccidentalType::FLAT;
+      else if (isAppr(val, -0.5, eps))
+            return AccidentalType::MIRRORED_FLAT;
+      else if (isAppr(val, 0, eps))
+            return AccidentalType::NATURAL;
+      else if (isAppr(val, 0.5, eps))
+            return AccidentalType::SHARP_SLASH;
+      else if (isAppr(val, 1, eps))
+            return AccidentalType::SHARP;
+      else if (isAppr(val, 1.5, eps))
+            return AccidentalType::SHARP_SLASH4;
+      else if (isAppr(val, 2, eps))
+            return AccidentalType::SHARP2;
+      else
+            qDebug("Guess for microtonal accidental corresponding to value %f failed.", val);  // TODO
+
+      // default
+      return AccidentalType::NONE;
+      }
+
+//---------------------------------------------------------
+//   addSymToSig
+//---------------------------------------------------------
+
+/**
+ Add a symbol defined as key-step \a step , -alter \a alter and -accidental \a accid to \a sig.
+ */
+
+static void addSymToSig(KeySigEvent& sig, const QString& step, const QString& alter, const QString& accid)
+      {
+      //qDebug("addSymToSig(step '%s' alt '%s' acc '%s')",
+      //       qPrintable(step), qPrintable(alter), qPrintable(accid));
+
+      SymId id = mxmlString2accSymId(accid);
+      if (id == SymId::noSym) {
+            bool ok;
+            double d;
+            d = alter.toDouble(&ok);
+            AccidentalType accTpAlter = ok ? microtonalGuess(d) : AccidentalType::NONE;
+            id = mxmlString2accSymId(accidentalType2MxmlString(accTpAlter));
+            }
+
+      if (step.size() == 1 && id != SymId::noSym) {
+            const QString table = "FEDCBAG";
+            const int line = table.indexOf(step);
+            // no auto layout for custom keysig, calculate xpos
+            // TODO: use symbol width ?
+            const qreal spread = 1.4; // assumed glyph width in space
+            const qreal x = sig.keySymbols().size() * spread;
+            if (line >= 0) {
+                  KeySym ks;
+                  ks.sym  = id;
+                  ks.spos = QPointF(x, qreal(line) * 0.5);
+                  sig.keySymbols().append(ks);
+                  sig.setCustom(true);
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   addKey
+//---------------------------------------------------------
+
+/**
+ Add a KeySigEvent to the score.
+ */
+
+static void addKey(const KeySigEvent key, const bool printObj, Score* score, Measure* measure, const int staffIdx, const int tick)
+      {
+      Key oldkey = score->staff(staffIdx)->key(tick);
+      // TODO only if different custom key ?
+      if (oldkey != key.key() || key.custom() || key.isAtonal()) {
+            // new key differs from key in effect at this tick
+            KeySig* keysig = new KeySig(score);
+            keysig->setTrack((staffIdx) * VOICES);
+            keysig->setKeySigEvent(key);
+            keysig->setVisible(printObj);
+            Segment* s = measure->getSegment(keysig, tick);
+            s->add(keysig);
+            //currKeySig->setKeySigEvent(key);
+            }
+      }
+
+//---------------------------------------------------------
+//   flushAlteredTone
+//---------------------------------------------------------
+
+/**
+ If a valid key-step, -alter, -accidental combination has been read,
+ convert it to a key symbol and add to the key.
+ Clear key-step, -alter, -accidental.
+ */
+
+static void flushAlteredTone(KeySigEvent& kse, QString& step, QString& alt, QString& acc)
+      {
+      //qDebug("flushAlteredTone(step '%s' alt '%s' acc '%s')",
+      //       qPrintable(step), qPrintable(alt), qPrintable(acc));
+
+      if (step == "" && alt == "" && acc == "")
+            return;  // nothing to do
+
+      // step and alt are required, but also accept step and acc
+      if (step != "" && (alt != "" || acc != "")) {
+            addSymToSig(kse, step, alt, acc);
+            }
+      else {
+            qDebug("flushAlteredTone invalid combination of step '%s' alt '%s' acc '%s')",
+                   qPrintable(step), qPrintable(alt), qPrintable(acc)); // TODO
+            }
+
+      // clean up
+      step = "";
+      alt  = "";
+      acc  = "";
+      }
+
+//---------------------------------------------------------
+//   key
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/attributes/key node.
+ */
+
+// TODO: check currKeySig handling
+
+void MusicXMLParserPass2::key(const QString& partId, Measure* measure, const int tick)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "key");
+
+      QString strKeyno = _e.attributes().value("number").toString();
+      int keyno = -1; // assume no number (see below)
+      if (strKeyno != "") {
+            keyno = strKeyno.toInt();
+            if (keyno == 0) {
+                  // conversion error (0), assume staff 1
+                  logError(QString("invalid key number '%1'").arg(strKeyno));
+                  keyno = 1;
+                  }
+            // convert to 0-based
+            keyno--;
+            }
+      bool printObject = _e.attributes().value("print-object") != "no";
+
+      // for custom keys, a single altered tone is described by
+      // key-step (required),  key-alter (required) and key-accidental (optional)
+      // none, one or more altered tone may be present
+      // a simple state machine is required to detect them
+      KeySigEvent key;
+      QString keyStep;
+      QString keyAlter;
+      QString keyAccidental;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "fifths")
+                  key.setKey(Key(_e.readElementText().toInt()));
+            else if (_e.name() == "mode") {
+                  QString m = _e.readElementText();
+                  if (m == "none") {
+                        key.setCustom(true);
+                        key.setMode(KeyMode::NONE);
+                        }
+                  else if (m == "major") {
+                        key.setMode(KeyMode::MAJOR);
+                        }
+                  else if (m == "minor") {
+                        key.setMode(KeyMode::MINOR);
+                        }
+                  else {
+                        skipLogCurrElem();
+                        }
+                  }
+            else if (_e.name() == "cancel")
+                  skipLogCurrElem();  // TODO ??
+            else if (_e.name() == "key-step") {
+                  flushAlteredTone(key, keyStep, keyAlter, keyAccidental);
+                  keyStep = _e.readElementText();
+                  }
+            else if (_e.name() == "key-alter")
+                  keyAlter = _e.readElementText();
+            else if (_e.name() == "key-accidental")
+                  keyAccidental = _e.readElementText();
+            else
+                  skipLogCurrElem();
+            }
+      flushAlteredTone(key, keyStep, keyAlter, keyAccidental);
+
+      int nstaves = _pass1.getPart(partId)->nstaves();
+      int staffIdx = _pass1.trackForPart(partId) / VOICES;
+      if (keyno == -1) {
+            // apply key to all staves in the part
+            for (int i = 0; i < nstaves; ++i) {
+                  addKey(key, printObject, _score, measure, staffIdx + i, tick);
+                  }
+            }
+      else if (keyno < nstaves)
+            addKey(key, printObject, _score, measure, staffIdx + keyno, tick);
+      }
+
+//---------------------------------------------------------
+//   clef
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/attributes/clef node.
+ */
+
+void MusicXMLParserPass2::clef(const QString& partId, Measure* measure, const int tick)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "clef");
+
+      // TODO: check error handling for
+      // - single staff
+      // - multi-staff with same clef
+      QString strClefno = _e.attributes().value("number").toString();
+      int clefno = 1; // reasonable default
+      if (strClefno != "")
+            clefno = strClefno.toInt();
+      if (clefno <= 0) {
+            // conversion error (0) or other issue (<0), assume staff 1
+            logError(QString("invalid clef number '%1'").arg(strClefno));
+            clefno = 1;
+            }
+      // convert to 0-based
+      clefno--;
+
+      ClefType clef   = ClefType::G;
+      StaffTypes st = StaffTypes::STANDARD;
+
+      QString c;
+      int i = 0;
+      int line = -1;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "sign")
+                  c = _e.readElementText();
+            else if (_e.name() == "line")
+                  line = _e.readElementText().toInt();
+            else if (_e.name() == "clef-octave-change") {
+                  i = _e.readElementText().toInt();
+                  if (i && !(c == "F" || c == "G"))
+                        qDebug("clef-octave-change only implemented for F and G key");  // TODO
+                  }
+            else
+                  skipLogCurrElem();
+            }
+
+      //some software (Primus) don't include line and assume some default
+      // it's permitted by MusicXML 2.0 XSD
+      if (line == -1) {
+            if (c == "G")
+                  line = 2;
+            else if (c == "F")
+                  line = 4;
+            else if (c == "C")
+                  line = 3;
+            }
+
+      if (c == "G" && i == 0 && line == 2)
+            clef = ClefType::G;
+      else if (c == "G" && i == 1 && line == 2)
+            clef = ClefType::G1;
+      else if (c == "G" && i == 2 && line == 2)
+            clef = ClefType::G2;
+      else if (c == "G" && i == -1 && line == 2)
+            clef = ClefType::G3;
+      else if (c == "G" && i == 0 && line == 1)
+            clef = ClefType::G4;
+      else if (c == "F" && i == 0 && line == 3)
+            clef = ClefType::F_B;
+      else if (c == "F" && i == 0 && line == 4)
+            clef = ClefType::F;
+      else if (c == "F" && i == 1 && line == 4)
+            clef = ClefType::F_8VA;
+      else if (c == "F" && i == 2 && line == 4)
+            clef = ClefType::F_15MA;
+      else if (c == "F" && i == -1 && line == 4)
+            clef = ClefType::F8;
+      else if (c == "F" && i == -2 && line == 4)
+            clef = ClefType::F15;
+      else if (c == "F" && i == 0 && line == 5)
+            clef = ClefType::F_C;
+      else if (c == "C") {
+            if (line == 5)
+                  clef = ClefType::C5;
+            else if (line == 4)
+                  clef = ClefType::C4;
+            else if (line == 3)
+                  clef = ClefType::C3;
+            else if (line == 2)
+                  clef = ClefType::C2;
+            else if (line == 1)
+                  clef = ClefType::C1;
+            }
+      else if (c == "percussion") {
+            clef = ClefType::PERC;
+            st = StaffTypes::PERC_DEFAULT;
+            }
+      else if (c == "TAB") {
+            clef = ClefType::TAB;
+            st= StaffTypes::TAB_DEFAULT;
+            }
+      else
+            qDebug("clef: unknown clef <sign=%s line=%d oct ch=%d>", qPrintable(c), line, i);  // TODO
+
+      Part* part = _pass1.getPart(partId);
+      Q_ASSERT(part);
+      int staves = part->nstaves();
+
+      if (clefno < staves) {
+            Clef* clefs = new Clef(_score);
+            clefs->setClefType(clef);
+            int track = _pass1.trackForPart(partId) + clefno * VOICES;
+            clefs->setTrack(track);
+            Segment* s = measure->getSegment(clefs, tick);
+            s->add(clefs);
+            }
+
+      // set the correct staff type
+      // note that this overwrites the staff lines value set in pass 1
+      // also note that clef handling should probably done in pass1
+      int staffIdx = _score->staffIdx(part);
+      int lines = _score->staff(staffIdx)->lines();
+      if (st == StaffTypes::TAB_DEFAULT || (_hasDrumset && st == StaffTypes::PERC_DEFAULT)) {
+            _score->staff(staffIdx)->setStaffType(StaffType::preset(st));
+            _score->staff(staffIdx)->setLines(lines);
+            _score->staff(staffIdx)->setBarLineTo((lines - 1) * 2);
+            }
+      }
+
+//---------------------------------------------------------
+//   determineTimeSig
+//---------------------------------------------------------
+
+/**
+ Determine the time signature based on \a beats, \a beatType and \a timeSymbol.
+ Sets return parameters \a st, \a bts, \a btp.
+ Return true if OK, false on error.
+ */
+
+// TODO: share between pass 1 and pass 2
+
+static bool determineTimeSig(const QString beats, const QString beatType, const QString timeSymbol,
+                             TimeSigType& st, int& bts, int& btp)
+      {
+      // initialize
+      st  = TimeSigType::NORMAL;
+      bts = 0;       // the beats (max 4 separated by "+") as integer
+      btp = 0;       // beat-type as integer
+      // determine if timesig is valid
+      if (beats == "2" && beatType == "2" && timeSymbol == "cut") {
+            st = TimeSigType::ALLA_BREVE;
+            bts = 2;
+            btp = 2;
+            return true;
+            }
+      else if (beats == "4" && beatType == "4" && timeSymbol == "common") {
+            st = TimeSigType::FOUR_FOUR;
+            bts = 4;
+            btp = 4;
+            return true;
+            }
+      else {
+            if (!timeSymbol.isEmpty() && timeSymbol != "normal") {
+                  qDebug("ImportMusicXml: time symbol <%s> not recognized with beats=%s and beat-type=%s",
+                         qPrintable(timeSymbol), qPrintable(beats), qPrintable(beatType)); // TODO
+                  return false;
+                  }
+
+            btp = beatType.toInt();
+            QStringList list = beats.split("+");
+            for (int i = 0; i < list.size(); i++)
+                  bts += list.at(i).toInt();
+            }
+      return true;
+      }
+
+//---------------------------------------------------------
+//   time
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/attributes/time node.
+ */
+
+void MusicXMLParserPass2::time(const QString& partId, Measure* measure, const int tick)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "time");
+
+      QString beats;
+      QString beatType;
+      QString timeSymbol = _e.attributes().value("symbol").toString();
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "beats")
+                  beats = _e.readElementText();
+            else if (_e.name() == "beat-type")
+                  beatType = _e.readElementText();
+            else
+                  skipLogCurrElem();
+            }
+
+      if (beats != "" && beatType != "") {
+            // determine if timesig is valid
+            TimeSigType st  = TimeSigType::NORMAL;
+            int bts = 0; // total beats as integer (beats may contain multiple numbers, separated by "+")
+            int btp = 0; // beat-type as integer
+            if (determineTimeSig(beats, beatType, timeSymbol, st, bts, btp)) {
+                  _timeSigDura = Fraction(bts, btp);
+                  // TODO: verify if fractionTSig handling must be copied from DOM parser
+                  Fraction fractionTSig = Fraction(bts, btp);
+                  _score->sigmap()->add(tick, fractionTSig);
+                  //Part* part = score->staff(staff)->part();
+                  //int staves = part->nstaves();
+                  for (int i = 0; i < _pass1.getPart(partId)->nstaves(); ++i) {
+                        TimeSig* timesig = new TimeSig(_score);
+                        int track = _pass1.trackForPart(partId) + i * VOICES;
+                        timesig->setTrack(track);
+                        timesig->setSig(fractionTSig, st);
+                        // handle simple compound time signature
+                        if (beats.contains(QChar('+'))) {
+                              timesig->setNumeratorString(beats);
+                              timesig->setDenominatorString(beatType);
+                              }
+                        Segment* s = measure->getSegment(timesig, tick);
+                        s->add(timesig);
+                        }
+                  }
+            }
+      }
+
+//---------------------------------------------------------
+//   transpose
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/attributes/transpose node.
+ */
+
+void MusicXMLParserPass2::transpose(const QString& partId)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "transpose");
+
+      Interval interval;
+
+      while (_e.readNextStartElement()) {
+            int i = _e.readElementText().toInt();
+            if (_e.name() == "diatonic")
+                  interval.diatonic = i;
+            else if (_e.name() == "chromatic")
+                  interval.chromatic = i;
+            else if (_e.name() == "octave-change") {
+                  interval.diatonic += i * 7;
+                  interval.chromatic += i * 12;
+                  }
+            else
+                  skipLogCurrElem();
+            }
+
+      _pass1.getPart(partId)->instrument()->setTranspose(interval);
+      }
+
+//---------------------------------------------------------
+//   divisions
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/attributes/divisions node.
+ */
+
+void MusicXMLParserPass2::divisions()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "divisions");
+
+      _divs = _e.readElementText().toInt();
+      if (!(_divs > 0))
+            logError("illegal divisions");
+      }
+
+//---------------------------------------------------------
+//   isWholeMeasureRest
+//---------------------------------------------------------
+
+/**
+ * Determine whole measure rest.
+ */
+
+// By convention, whole measure rests do not have a "type" element
+// As of MusicXML 3.0, this can be indicated by an attribute "measure",
+// but for backwards compatibility the "old" convention still has to be supported.
+// Also verify the rest fits exactly in the measure, as some programs
+// (e.g. Cakewalk SONAR X2 Studio [Version: 19.0.0.306]) leave out
+// the type for all rests.
+// Sibelius calls all whole-measure rests "whole", even if the duration != 4/4
+
+static bool isWholeMeasureRest(const bool rest, const QString& type, const Fraction dura, const Fraction mDura)
+      {
+      if (!rest)
+            return false;
+
+      if (!dura.isValid())
+            return false;
+
+      if (!mDura.isValid())
+            return false;
+
+      return ((type == "" && dura == mDura)
+              || (type == "whole" && dura == mDura && dura != Fraction(1, 1)));
+      }
+
+//---------------------------------------------------------
+//   determineDuration
+//---------------------------------------------------------
+
+/**
+ * Determine duration for a note or rest.
+ * This includes whole measure rest detection.
+ */
+
+static TDuration determineDuration(const bool rest, const QString& type, const int dots, const Fraction dura, const Fraction mDura)
+      {
+      //qDebug("determineDuration rest %d type '%s' dots %d dura %s mDura %s",
+      //       rest, qPrintable(type), dots, qPrintable(dura.print()), qPrintable(mDura.print()));
+
+      TDuration res;
+      if (rest) {
+            if (isWholeMeasureRest(rest, type, dura, mDura))
+                  res.setType(TDuration::DurationType::V_MEASURE);
+            else if (type == "") {
+                  // If no type, set duration type based on duration.
+                  // Note that sometimes unusual duration (e.g. 261/256) are found.
+                  res.setVal(dura.ticks());
+                  }
+            else {
+                  res.setType(type);
+                  res.setDots(dots);
+                  }
+            }
+      else {
+            res.setType(type);
+            res.setDots(dots);
+            if (res.type() == TDuration::DurationType::V_INVALID)
+                  res.setType(TDuration::DurationType::V_QUARTER);  // default, TODO: use dura ?
+            }
+
+      //qDebug("-> dur %hhd (%s) dots %d ticks %s",
+      //       res.type(), qPrintable(res.name()), res.dots(), qPrintable(dura.print()));
+
+      return res;
+      }
+
+//---------------------------------------------------------
+//   setChordRestDuration
+//---------------------------------------------------------
+
+/**
+ * Set \a cr duration
+ */
+
+static void setChordRestDuration(ChordRest* cr, TDuration duration, const Fraction dura)
+      {
+      if (duration.type() == TDuration::DurationType::V_MEASURE) {
+            cr->setDurationType(duration);
+            cr->setDuration(dura);
+            }
+      else {
+            cr->setDurationType(duration);
+            cr->setDuration(cr->durationType().fraction());
+            }
+      }
+
+//---------------------------------------------------------
+//   addRest
+//---------------------------------------------------------
+
+/**
+ * Add a rest to the score
+ * TODO: beam handling
+ * TODO: display step handling
+ * TODO: visible handling
+ * TODO: whole measure rest handling
+ */
+
+static Rest* addRest(Score* score, Measure* m,
+                     const int tick, const int track, const int move,
+                     const TDuration duration, const Fraction dura)
+      {
+      Segment* s = m->getSegment(Segment::Type::ChordRest, tick);
+      // Sibelius might export two rests at the same place, ignore the 2nd one
+      // <?DoletSibelius Two NoteRests in same voice at same position may be an error?>
+      if (s->element(track)) {
+            qDebug("cannot add rest at tick %d track %d: element already present", tick, track);       // TODO
+            return 0;
+            }
+
+      Rest* cr = new Rest(score);
+      setChordRestDuration(cr, duration, dura);
+      cr->setTrack(track);
+      cr->setStaffMove(move);
+      s->add(cr);
+      return cr;
+      }
+
+//---------------------------------------------------------
+//   findOrCreateChord
+//---------------------------------------------------------
+
+/**
+ * Find (or create if not found) the chord at \a tick and \a track.
+ * Note: staff move is a note property in MusicXML, but chord property in MuseScore
+ * This is simply ignored here, effectively using the last chords value.
+ */
+
+static Chord* findOrCreateChord(Score* score, Measure* m,
+                                const int tick, const int track, const int move,
+                                const TDuration duration, const Fraction dura,
+                                Beam::Mode bm)
+      {
+      //qDebug("findOrCreateChord tick %d track %d dur ticks %d ticks %s",
+      //       tick, track, duration.ticks(), qPrintable(dura.print()));
+      Chord* c = m->findChord(tick, track);
+      if (c == 0) {
+            c = new Chord(score);
+            c->setBeamMode(bm);
+            c->setTrack(track);
+
+            setChordRestDuration(c, duration, dura);
+            Segment* s = m->getSegment(c, tick);
+            s->add(c);
+            }
+      c->setStaffMove(move);
+      return c;
+      }
+
+//---------------------------------------------------------
+//   graceNoteType
+//---------------------------------------------------------
+
+/**
+ * convert duration and slash to grace note type
+ */
+
+NoteType graceNoteType(const TDuration duration, const bool slash)
+      {
+      NoteType nt = NoteType::APPOGGIATURA;
+      if (slash)
+            nt = NoteType::ACCIACCATURA;
+      if (duration.type() == TDuration::DurationType::V_QUARTER) {
+            nt = NoteType::GRACE4;
+            }
+      else if (duration.type() == TDuration::DurationType::V_16TH) {
+            nt = NoteType::GRACE16;
+            }
+      else if (duration.type() == TDuration::DurationType::V_32ND) {
+            nt = NoteType::GRACE32;
+            }
+      return nt;
+      }
+
+//---------------------------------------------------------
+//   createGraceChord
+//---------------------------------------------------------
+
+/**
+ * Create a grace chord.
+ */
+
+static Chord* createGraceChord(Score* score, const int track,
+                               const TDuration duration, const bool slash)
+      {
+      Chord* c = new Chord(score);
+      c->setNoteType(graceNoteType(duration, slash));
+      c->setTrack(track);
+      // note grace notes have no durations, use default fraction 0/1
+      setChordRestDuration(c, duration, Fraction());
+      return c;
+      }
+
+//---------------------------------------------------------
+//   elementMustBePostponed
+//---------------------------------------------------------
+
+/**
+ Check if handling the current element must be postponed
+ until after allocating the note.
+ */
+
+static bool elementMustBePostponed(const QXmlStreamReader& e)
+      {
+      return e.name() == "notations"
+             || e.name() == "lyric"
+             || e.name() == "play";
+      }
+
+//---------------------------------------------------------
+//   handleDisplayStep
+//---------------------------------------------------------
+
+/**
+ * convert display-step and display-octave to staff line
+ */
+
+static void handleDisplayStep(ChordRest* cr, int step, int octave, int tick, qreal spatium)
+      {
+      if (0 <= step && step <= 6 && 0 <= octave && octave <= 9) {
+            //qDebug("rest step=%d oct=%d", step, octave);
+            ClefType clef = cr->staff()->clef(tick);
+            int po = ClefInfo::pitchOffset(clef);
+            //qDebug(" clef=%hhd po=%d step=%d", clef, po, step);
+            int dp = 7 * (octave + 2) + step;
+            //qDebug(" dp=%d po-dp=%d", dp, po-dp);
+            cr->setUserYoffset((po - dp + 3) * spatium / 2);
+            }
+      }
+
+//---------------------------------------------------------
+//   displayStepOctave
+//---------------------------------------------------------
+
+/**
+ Handle <display-step> and <display-octave> for <rest> and <unpitched>
+ */
+
+static void displayStepOctave(QXmlStreamReader& e,
+                              int& step,
+                              int& oct)
+      {
+      Q_ASSERT(e.isStartElement()
+               && (e.name() == "rest" || e.name() == "unpitched"));
+
+      while (e.readNextStartElement()) {
+            if (e.name() == "display-step") {
+                  QString strStep = e.readElementText();
+                  int pos = QString("CDEFGAB").indexOf(strStep);
+                  if (strStep.size() == 1 && pos >=0 && pos < 7)
+                        step = pos;
+                  else
+                        //logError(QString("invalid step '%1'").arg(strStep));
+                        qDebug("invalid step '%s'", qPrintable(strStep));  // TODO
+                  }
+            else if (e.name() == "display-octave") {
+                  QString strOct = e.readElementText();
+                  bool ok;
+                  oct = strOct.toInt(&ok);
+                  if (!ok || oct < 0 || oct > 9) {
+                        //logError(QString("invalid octave '%1'").arg(strOct));
+                        qDebug("invalid octave '%s'", qPrintable(strOct)); // TODO
+                        oct = -1;
+                        }
+                  }
+            else
+                  e.skipCurrentElement();             // TODO log
+            }
+      }
+
+//---------------------------------------------------------
+//   note
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note node.
+ */
+
+Note* MusicXMLParserPass2::note(const QString& partId,
+                                Measure* measure,
+                                const Fraction sTime,
+                                const Fraction prevSTime,
+                                Fraction& dura,
+                                QString& currentVoice,
+                                GraceChordList& gcl,
+                                int& gac,
+                                Beam*& currBeam,
+                                FiguredBassList& fbl,
+                                int& alt
+                                )
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "note");
+
+      if (_e.attributes().value("print-spacing") == "no") {
+            notePrintSpacingNo(dura);
+            return 0;
+            }
+
+      int alter = 0;
+      bool chord = false;
+      bool cue = false;
+      bool small = false;
+      int dots = 0;
+      bool grace = false;
+      int octave = -1;
+      bool bRest = false;
+      int staff = 1;
+      int step = 0;
+      Fraction timeMod(0, 0); // invalid (will handle "present but incorrect" as "not present")
+      QString type;
+      QString voice;
+      AccidentalType accType = AccidentalType::NONE; // set based on alter value (can be microtonal)
+      Accidental* acc = 0;                               // created based on accidental element
+      MScore::Direction stemDir = MScore::Direction::AUTO;
+      bool noStem = false;
+      NoteHead::Group headGroup = NoteHead::Group::HEAD_NORMAL;
+      QColor noteheadColor = QColor::Invalid;
+      bool noteheadParentheses = false;
+      int velocity = round(_e.attributes().value("dynamics").toDouble() * 0.9);
+      bool graceSlash = false;
+      bool printObject = _e.attributes().value("print-object") != "no";
+      TDuration normalType;
+      Beam::Mode bm  = Beam::Mode::NONE;
+      int displayStep = -1;       // invalid
+      int displayOctave = -1; // invalid
+      bool unpitched = false;
+      QString instrId;
+
+
+      while (_e.readNextStartElement() && !elementMustBePostponed(_e)) {
+            if (_e.name() == "accidental")
+                  acc = accidental();
+            else if (_e.name() == "beam")
+                  beam(bm);
+            else if (_e.name() == "chord") {
+                  chord = true;
+                  _e.readNext();
+                  }
+            else if (_e.name() == "cue") {
+                  cue = true;
+                  _e.readNext();
+                  }
+            else if (_e.name() == "dot") {
+                  dots++;
+                  _e.readNext();
+                  }
+            else if (_e.name() == "duration")
+                  duration(dura);
+            else if (_e.name() == "grace") {
+                  grace = true;
+                  graceSlash = _e.attributes().value("slash") == "yes";
+                  _e.readNext();
+                  }
+            else if (_e.name() == "instrument") {
+                  instrId = _e.attributes().value("id").toString();
+                  _e.readNext();
+                  }
+            else if (_e.name() == "notehead") {
+                  noteheadColor.setNamedColor(_e.attributes().value("color").toString());
+                  noteheadParentheses = _e.attributes().value("parentheses") == "yes";
+                  headGroup = convertNotehead(_e.readElementText());
+                  }
+            else if (_e.name() == "pitch")
+                  pitch(step, alter, octave, accType);
+            else if (_e.name() == "rest") {
+                  bRest = true;
+                  rest(displayStep, displayOctave);
+                  }
+            else if (_e.name() == "staff") {
+                  QString strStaff = _e.readElementText();
+                  staff = strStaff.toInt();
+                  // Bug fix for Cubase 6.5.5 which generates <staff>2</staff> in a single staff part
+                  // Same fix is required in pass 1 and pass 2
+                  Part* part = _pass1.getPart(partId);
+                  Q_ASSERT(part);
+                  if (staff <= 0 || staff > part->nstaves()) {
+                        logError(QString("illegal staff '%1'").arg(strStaff));
+                        staff = 1;
+                        }
+                  }
+            else if (_e.name() == "stem")
+                  stem(stemDir, noStem);
+            else if (_e.name() == "time-modification")
+                  timeModification(timeMod, normalType);
+            else if (_e.name() == "type") {
+                  small = _e.attributes().value("size") == "cue";
+                  type = _e.readElementText();
+                  }
+            else if (_e.name() == "unpitched") {
+                  unpitched = true;
+                  displayStepOctave(_e, displayStep, displayOctave);
+                  }
+            else if (_e.name() == "voice")
+                  voice = _e.readElementText();
+            else
+                  skipLogCurrElem();
+            }
+
+      // convert staff to zero-based (in case of error, staff will be -1)
+      staff--;
+
+      // Bug fix for Sibelius 7.1.3 which does not write <voice> for notes with <chord>
+      if (!chord)
+            // remember voice
+            currentVoice = voice;
+      else if (voice == "")
+            // use voice from last note w/o <chord>
+            voice = currentVoice;
+
+      // Assume voice 1 if voice is empty (legal in a single voice part)
+      if (voice == "")
+            voice = "1";
+
+      // accidental handling
+      //qDebug("note acc %p type %hhd acctype %hhd",
+      //       acc, acc ? acc->accidentalType() : static_cast<Ms::AccidentalType>(0), accType);
+      if (!acc && accType != AccidentalType::NONE) {
+            acc = new Accidental(_score);
+            acc->setAccidentalType(accType);
+            }
+
+      //logDebugInfo(e, QString("dura %1 valid %2").arg(dura.print()).arg(dura.isValid()));
+      // normalize duration
+      if (dura.isValid())
+            dura.reduce();
+
+      // timing error check(s)
+      // note that all passes must calculate the same timing and other (TODO) checks
+      QString errorStr;
+      Fraction calcDura = calculateFraction(type, dots, timeMod);
+      /*
+      logDebugInfo(e, QString("dura %1 valid %2 fraction %3 valid %4")
+                   .arg(dura.print()).arg(dura.isValid())
+                   .arg(fraction.print()).arg(fraction.isValid())
+                   );
+       */
+      bool wholeMeasureRest = isWholeMeasureRest(bRest, type, dura, Fraction::fromTicks(measure->ticks()));
+      if (dura.isValid() && calcDura.isValid()) {
+            // do not report an error for whole measure rests
+            if (dura != calcDura && !wholeMeasureRest) {
+                  errorStr = QString("calculated duration (%1) not equal to specified duration (%2)")
+                        .arg(calcDura.print()).arg(dura.print());
+
+                  const int maxDiff = 3; // maximum difference considered a rounding error
+                  if (qAbs(calcDura.ticks() - dura.ticks()) <= maxDiff) {
+                        errorStr += " -> assuming rounding error";
+                        dura = calcDura;
+                        }
+
+                  // Special case:
+                  // Encore generates rests in tuplets w/o <tuplet> or <time-modification>.
+                  // Detect this by comparing the actual duration with the expected duration
+                  // based on note type. If actual is 2/3 of expected, the rest is part
+                  // of a tuplet.
+                  if (bRest && !timeMod.isValid()) {
+                        if (2 * calcDura.ticks() == 3 * dura.ticks()) {
+                              timeMod = Fraction(2, 3);
+                              errorStr += " -> assuming triplet";
+                              }
+                        }
+                  }
+            }
+      else if (dura.isValid()) {
+            // do not report an error for typeless (whole measure) rests
+            if (!wholeMeasureRest)
+                  errorStr = QString("calculated duration invalid, using specified duration (%1)").arg(dura.print());
+            }
+      else if (calcDura.isValid()) {
+            if (!grace) {
+                  errorStr = QString("specified duration invalid, using calculated duration (%1)").arg(calcDura.print());
+                  dura = calcDura; // overrule dura
+                  }
+            }
+      else
+            errorStr = "calculated and specified duration invalid";
+      if (errorStr != "")
+            logError(errorStr);
+
+      // At this point all checks have been done, the note should be added
+      // note: in case of error exit from here, the postponed <note> children
+      // must still be skipped
+
+      int msMove = 0;
+      int msTrack = 0;
+      int msVoice = 0;
+
+      if (!_pass1.determineStaffMoveVoice(partId, staff, voice, msMove, msTrack, msVoice)) {
+            logDebugInfo(QString("could not map staff %1 voice '%2'").arg(staff + 1).arg(voice));
+            // begin experimental fix for postponed <note> children
+            // TODO test /repair
+#if 0
+            while (_e.tokenType() == QXmlStreamReader::StartElement) {
+
+                  //qDebug("in second loop element '%s'", qPrintable(_e.name().toString()));
+                  skipLogCurrElem();
+
+                  // skip to either start of next <note> child or end of <note>
+                  // currently at end of last <note> child handled
+                  //qDebug("::note before skip tokenString '%s' name '%s'", qPrintable(_e.tokenString()), qPrintable(_e.name().toString()));
+                  do
+                        _e.readNext();
+                  while (!(_e.tokenType() == QXmlStreamReader::StartElement)
+                         && !(_e.tokenType() == QXmlStreamReader::EndElement && _e.name() == "note"));
+                  //qDebug("::note after skip tokenString '%s' name '%s'", qPrintable(_e.tokenString()), qPrintable(_e.name().toString()));
+
+
+                  }
+#endif
+            // end experimental fix for testVoiceMapper*
+            return 0;
+            }
+      else {
+            }
+
+      TDuration duration = determineDuration(bRest, type, dots, dura, Fraction::fromTicks(measure->ticks()));
+
+      ChordRest* cr = 0;
+      Note* note = 0;
+
+      // start time for note:
+      // - sTime for non-chord / first chord note
+      // - prevTime for others
+      const Fraction noteStartTime = chord ? prevSTime : sTime;
+
+      if (bRest) {
+            int track = msTrack + msVoice;
+            cr = addRest(_score, measure, noteStartTime.ticks(), track, msMove,
+                         duration, dura);
+            if (cr) {
+                  if (currBeam) {
+                        if (currBeam->track() == track) {
+                              cr->setBeamMode(Beam::Mode::MID);
+                              currBeam->add(cr);
+                              }
+                        else
+                              removeBeam(currBeam);
+                        }
+                  else
+                        cr->setBeamMode(Beam::Mode::NONE);
+                  cr->setSmall(small);
+                  cr->setVisible(printObject);
+                  handleDisplayStep(cr, displayStep, displayOctave, noteStartTime.ticks(), _score->spatium());
+                  }
+            }
+      else {
+            Chord* c;
+            if (!grace) {
+                  // regular note
+                  // if there is already a chord just add to it
+                  // else create a new one
+                  // this basically ignores <chord/> errors
+                  c = findOrCreateChord(_score, measure,
+                                        noteStartTime.ticks(),
+                                        msTrack + msVoice, msMove,
+                                        duration, dura, bm);
+                  // handle beam
+                  if (!chord)
+                        handleBeamAndStemDir(c, bm, stemDir, currBeam);
+
+                  // append any grace chord after chord to the previous chord
+                  Chord* prevChord = measure->findChord(prevSTime.ticks(), msTrack + msVoice);
+                  addGraceChordsAfter(prevChord, gcl, gac);
+
+                  // append any grace chord
+                  addGraceChordsBefore(c, gcl);
+                  }
+            else {
+                  // grace note
+                  // TODO: check if explicit stem direction should also be set for grace notes
+                  // (the DOM parser does that, but seems to have no effect on the autotester)
+                  if (!chord || gcl.isEmpty()) {
+                        c = createGraceChord(_score, msTrack + msVoice, duration, graceSlash);
+                        // TODO FIX
+                        // the setStaffMove() below results in identical behaviour as 2.0:
+                        // grace note will be at the wrong staff with the wrong pitch,
+                        // seems to use the line value calculated for the right staff
+                        // leaving it places the note at the wrong staff with the right pitch
+                        // this affects only grace notes where staff move differs from
+                        // the main note, e.g. DebuMandSample.xml first grace in part 2
+                        // c->setStaffMove(msMove);
+                        // END TODO
+                        gcl.append(c);
+                        }
+                  else
+                        c = gcl.last();
+
+                  }
+            note = new Note(_score);
+            note->setSmall(small);
+            note->setHeadGroup(headGroup);
+            if (noteheadColor != QColor::Invalid)
+                  note->setColor(noteheadColor);
+            note->setVisible(printObject); // TODO also set the stem to invisible
+
+            if (noteheadParentheses) {
+                  Symbol* s = new Symbol(_score);
+                  s->setSym(SymId::noteheadParenthesisLeft);
+                  s->setParent(note);
+                  _score->addElement(s);
+                  s = new Symbol(_score);
+                  s->setSym(SymId::noteheadParenthesisRight);
+                  s->setParent(note);
+                  _score->addElement(s);
+                  }
+
+            if (velocity > 0) {
+                  note->setVeloType(Note::ValueType::USER_VAL);
+                  note->setVeloOffset(velocity);
+                  }
+
+            const MusicXMLDrumset& mxmlDrumset = _pass1.getDrumset(partId);
+            if (unpitched) {
+                  //&& drumsets.contains(partId)
+                  if (_hasDrumset
+                      && mxmlDrumset.contains(instrId)) {
+                        // step and oct are display-step and ...-oct
+                        // get pitch from instrument definition in drumset instead
+                        int pitch = mxmlDrumset[instrId].pitch;
+                        note->setPitch(pitch);
+                        // TODO - does this need to be key-aware?
+                        note->setTpc(pitch2tpc(pitch, Key::C, Prefer::NEAREST)); // TODO: necessary ?
+                        }
+                  else {
+                        //qDebug("disp step %d oct %d", displayStep, displayOctave);
+                        xmlSetPitch(note, displayStep, 0, displayOctave, 0, _pass1.getPart(partId)->instrument());
+                        }
+                  }
+            else {
+                  int ottavaStaff = (msTrack - _pass1.trackForPart(partId)) / VOICES;
+                  int octaveShift = _pass1.octaveShift(partId, ottavaStaff, noteStartTime);
+                  xmlSetPitch(note, step, alter, octave, octaveShift, _pass1.getPart(partId)->instrument());
+                  }
+
+            // set drumset information
+            // note that in MuseScore, the drumset contains defaults for notehead,
+            // line and stem direction, while a MusicXML file contains actuals.
+            // the MusicXML values for each note are simply copied to the defaults
+
+            if (unpitched) {
+                  // determine staff line based on display-step / -octave and clef type
+                  ClefType clef = c->staff()->clef(noteStartTime.ticks());
+                  int po = ClefInfo::pitchOffset(clef);
+                  int pitch = MusicXMLStepAltOct2Pitch(displayStep, 0, displayOctave);
+                  int line = po - absStep(pitch);
+
+                  // correct for number of staff lines
+                  // see ExportMusicXml::unpitch2xml for explanation
+                  // TODO handle other # staff lines ?
+                  int staffLines = c->staff()->lines();
+                  if (staffLines == 1) line -= 8;
+                  if (staffLines == 3) line -= 2;
+
+                  // the drum palette cannot handle stem direction AUTO,
+                  // overrule if necessary
+                  if (stemDir == MScore::Direction::AUTO) {
+                        if (line > 4)
+                              stemDir = MScore::Direction::DOWN;
+                        else
+                              stemDir = MScore::Direction::UP;
+                        }
+
+                  /*
+                  if (drumsets.contains(partId)
+                       && mxmlDrumset.contains(instrId)) {
+                        mxmlDrumset[instrId].notehead = headGroup;
+                        mxmlDrumset[instrId].line = line;
+                        mxmlDrumset[instrId].stemDirection = sd;
+                  }
+                   */
+                  // this should be done in pass 1, would make _pass1 const here
+                  _pass1.setDrumsetDefault(partId, instrId, headGroup, line, stemDir);
+                  }
+
+            if (acc) {
+                  note->add(acc);
+                  // save alter value for user accidental
+                  if (acc->accidentalType() != AccidentalType::NONE)
+                        alt = alter;
+                  }
+            c->add(note);
+            //c->setStemDirection(stemDir); // already done in handleBeamAndStemDir()
+            c->setNoStem(noStem);
+            cr = c;
+            }
+
+      // cr can be 0 here(if a rest cannot be added)
+      // TODO: complete and cleanup handling this case
+      if (cr) {
+            cr->setVisible(printObject);
+            if (cue) cr->setSmall(cue);  // only once per chord
+            }
+
+      // handle the postponed children of <note>
+      // if one of these was found, the first while loop was terminated
+      // at a StartElement instead of the usual EndElement
+
+      QMap<int, Lyrics*> numberedLyrics; // lyrics with valid number
+      QMap<int, Lyrics*> defaultyLyrics; // lyrics with valid default-y
+      QList<Lyrics*> unNumberedLyrics;   // lyrics with neither
+      MusicXmlTupletDesc tupletDesc;
+      bool lastGraceAFter = false;       // set by notations() if end of grace after sequence found
+
+      while (_e.tokenType() == QXmlStreamReader::StartElement) {
+
+            //qDebug("in second loop element '%s'", qPrintable(_e.name().toString()));
+            if (_e.name() == "lyric")
+                  lyric(numberedLyrics, defaultyLyrics, unNumberedLyrics);  // TODO: move track handling to addlyric
+            else if (_e.name() == "notations")
+                  notations(note, cr, noteStartTime.ticks(), tupletDesc, lastGraceAFter);
+            else
+                  skipLogCurrElem();
+
+            // skip to either start of next <note> child or end of <note>
+            // currently at end of last <note> child handled
+            //qDebug("::note before skip tokenString '%s' name '%s'", qPrintable(_e.tokenString()), qPrintable(_e.name().toString()));
+            do
+                  _e.readNext();
+            while (!(_e.tokenType() == QXmlStreamReader::StartElement)
+                   && !(_e.tokenType() == QXmlStreamReader::EndElement && _e.name() == "note"));
+            //qDebug("::note after skip tokenString '%s' name '%s'", qPrintable(_e.tokenString()), qPrintable(_e.name().toString()));
+
+            }
+
+      //qDebug("::note after second loop tokenString '%s' name '%s'", qPrintable(_e.tokenString()), qPrintable(_e.name().toString()));
+
+      // handle grace after state: remember current grace list size
+      if (grace && lastGraceAFter)
+            gac = gcl.size();
+
+      if (!chord && !grace) {
+            // do tuplet if valid time-modification is not 1/1 and is not 1/2 (tremolo)
+            if (timeMod.isValid() && timeMod != Fraction(1, 1) && timeMod != Fraction(1, 2)) {
+                  // find part-relative track
+                  Part* part = _pass1.getPart(partId);
+                  Q_ASSERT(part);
+                  int scoreRelStaff = _score->staffIdx(part); // zero-based number of parts first staff in the score
+                  int partRelTrack = msTrack + msVoice - scoreRelStaff * VOICES;
+                  addTupletToChord(cr, _tuplets[partRelTrack], timeMod, tupletDesc, normalType);
+                  }
+            }
+
+      // add lyrics found by xmlLyric
+      if (cr)
+            addLyrics(cr, numberedLyrics, defaultyLyrics, unNumberedLyrics);
+
+      // add figured bass element
+      if (!fbl.isEmpty()) {
+            int sTick = noteStartTime.ticks();        // starting tick
+            foreach (FiguredBass* fb, fbl) {
+                  fb->setTrack(msTrack);
+                  // No duration tag defaults ticks() to 0; set to note value
+                  if (fb->ticks() == 0)
+                        fb->setTicks(dura.ticks());
+                  // TODO: set correct onNote value
+                  Segment* s = measure->getSegment(Segment::Type::ChordRest, sTick);
+                  s->add(fb);
+                  sTick += fb->ticks();
+                  }
+            fbl.clear();
+            }
+
+      // don't count chord or grace note duration
+      // note that this does not check the MusicXML requirement that notes in a chord
+      // cannot have a duration longer than the first note in the chord
+      if (chord || grace)
+            dura.set(0, 1);
+
+      Q_ASSERT(_e.isEndElement() && _e.name() == "note");
+
+      return note;
+      }
+
+//---------------------------------------------------------
+//   notePrintSpacingNo
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note node for a note with print-spacing="no".
+ These are handled like a forward: only moving the time forward.
+ */
+
+void MusicXMLParserPass2::notePrintSpacingNo(Fraction& dura)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "note");
+      //logDebugTrace("MusicXMLParserPass1::notePrintSpacingNo");
+
+      bool chord = false;
+      bool grace = false;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "chord") {
+                  chord = true;
+                  _e.readNext();
+                  }
+            else if (_e.name() == "duration")
+                  duration(dura);
+            else if (_e.name() == "grace") {
+                  grace = true;
+                  _e.readNext();
+                  }
+            else
+                  _e.skipCurrentElement();        // skip but don't log
+            }
+
+      // don't count chord or grace note duration
+      // note that this does not check the MusicXML requirement that notes in a chord
+      // cannot have a duration longer than the first note in the chord
+      if (chord || grace)
+            dura.set(0, 1);
+
+      Q_ASSERT(_e.isEndElement() && _e.name() == "note");
+      }
+
+//---------------------------------------------------------
+//   calcTicks
+//---------------------------------------------------------
+
+static Fraction calcTicks(const QString& text, int divs)
+      {
+      Fraction dura(0, 0);        // invalid unless set correctly
+
+      int intDura = text.toInt();
+      if (divs > 0)
+            dura.set(intDura, 4 * divs);
+      else
+            qDebug("illegal or uninitialized divisions (%d)", divs);       // TODO
+
+      return dura;
+      }
+
+//---------------------------------------------------------
+//   duration
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/duration node.
+ */
+
+void MusicXMLParserPass2::duration(Fraction& dura)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "duration");
+
+      dura.set(0, 0);        // invalid unless set correctly
+      int intDura = _e.readElementText().toInt();
+      if (intDura > 0) {
+            if (_divs > 0)
+                  dura.set(intDura, 4 * _divs);
+            else
+                  logError(QString("illegal or uninitialized divisions (%1)").arg(_divs));
+            }
+      else
+            logError(QString("illegal duration %1").arg(dura.print()));
+      //qDebug("duration %s valid %d", qPrintable(dura.print()), dura.isValid());
+      }
+
+//---------------------------------------------------------
+//   figure
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/harmony/figured-bass/figure node.
+ Return the result as a FiguredBassItem.
+ */
+
+FiguredBassItem* MusicXMLParserPass2::figure(const int idx, const bool paren)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "figure");
+
+      FiguredBassItem* fgi = new FiguredBassItem(_score, idx);
+
+      // read the figure
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "extend") {
+                  QStringRef type = _e.attributes().value("type");
+                  if (type == "start")
+                        fgi->setContLine(FiguredBassItem::ContLine::EXTENDED);
+                  else if (type == "continue")
+                        fgi->setContLine(FiguredBassItem::ContLine::EXTENDED);
+                  else if (type == "stop")
+                        fgi->setContLine(FiguredBassItem::ContLine::SIMPLE);
+                  _e.skipCurrentElement();
+                  }
+            else if (_e.name() == "figure-number") {
+                  QString val = _e.readElementText();
+                  int iVal = val.toInt();
+                  // MusicXML spec states figure-number is a number
+                  // MuseScore can only handle single digit
+                  if (1 <= iVal && iVal <= 9)
+                        fgi->setDigit(iVal);
+                  else
+                        logError(QString("incorrect figure-number '%1'").arg(val));
+                  }
+            else if (_e.name() == "prefix")
+                  fgi->setPrefix(fgi->MusicXML2Modifier(_e.readElementText()));
+            else if (_e.name() == "suffix")
+                  fgi->setSuffix(fgi->MusicXML2Modifier(_e.readElementText()));
+            else
+                  skipLogCurrElem();
+            }
+
+      // set parentheses
+      if (paren) {
+            // parenthesis open
+            if (fgi->prefix() != FiguredBassItem::Modifier::NONE)
+                  fgi->setParenth1(FiguredBassItem::Parenthesis::ROUNDOPEN);        // before prefix
+            else if (fgi->digit() != FBIDigitNone)
+                  fgi->setParenth2(FiguredBassItem::Parenthesis::ROUNDOPEN);        // before digit
+            else if (fgi->suffix() != FiguredBassItem::Modifier::NONE)
+                  fgi->setParenth3(FiguredBassItem::Parenthesis::ROUNDOPEN);        // before suffix
+            // parenthesis close
+            if (fgi->suffix() != FiguredBassItem::Modifier::NONE)
+                  fgi->setParenth4(FiguredBassItem::Parenthesis::ROUNDCLOSED);        // after suffix
+            else if (fgi->digit() != FBIDigitNone)
+                  fgi->setParenth3(FiguredBassItem::Parenthesis::ROUNDCLOSED);        // after digit
+            else if (fgi->prefix() != FiguredBassItem::Modifier::NONE)
+                  fgi->setParenth2(FiguredBassItem::Parenthesis::ROUNDCLOSED);        // after prefix
+            }
+
+      return fgi;
+      }
+
+//---------------------------------------------------------
+//   figuredBass
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/harmony/figured-bass node.
+ TODO check description:
+ // Set the FiguredBass state based on the MusicXML <figured-bass> node de.
+ // Note that onNote and ticks must be set by the MusicXML importer,
+ // as the required context is not present in the items DOM tree.
+ // Exception: if a <duration> element is present, tick can be set.
+ Return the result as a FiguredBass if valid, non-empty figure(s) are found.
+ Return 0 in case of error.
+ */
+
+FiguredBass* MusicXMLParserPass2::figuredBass()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "figured-bass");
+
+      FiguredBass* fb = new FiguredBass(_score);
+
+      bool parentheses = _e.attributes().value("parentheses") == "yes";
+      QString normalizedText;
+      int idx = 0;
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "duration") {
+                  Fraction dura;
+                  duration(dura);
+                  if (dura.isValid() && dura > Fraction(0, 1))
+                        fb->setTicks(dura.ticks());
+                  }
+            else if (_e.name() == "figure") {
+                  FiguredBassItem* pItem = figure(idx++, parentheses);
+                  pItem->setTrack(0 /* TODO fb->track() */);
+                  pItem->setParent(fb);
+                  fb->appendItem(pItem);
+                  // add item normalized text
+                  if (!normalizedText.isEmpty())
+                        normalizedText.append('\n');
+                  normalizedText.append(pItem->normalizedText());
+                  }
+            else {
+                  skipLogCurrElem();
+                  delete fb;
+                  return 0;
+                  }
+            }
+
+      fb->setXmlText(normalizedText);                        // this is the text to show while editing
+
+      if (normalizedText.isEmpty()) {
+            delete fb;
+            return 0;
+            }
+
+      return fb;
+      }
+
+//---------------------------------------------------------
+//   frame
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/harmony/frame node.
+ Return the result as a FretDiagram.
+ */
+
+FretDiagram* MusicXMLParserPass2::frame()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "frame");
+
+      FretDiagram* fd = new FretDiagram(_score);
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "frame-frets") {
+                  int val = _e.readElementText().toInt();
+                  if (val > 0)
+                        fd->setFrets(val);
+                  else
+                        logError(QString("FretDiagram::readMusicXML: illegal frame-fret %1").arg(val));
+                  }
+            else if (_e.name() == "frame-note") {
+                  int fret   = -1;
+                  int string = -1;
+                  while (_e.readNextStartElement()) {
+                        if (_e.name() == "fret")
+                              fret = _e.readElementText().toInt();
+                        else if (_e.name() == "string")
+                              string = _e.readElementText().toInt();
+                        else
+                              skipLogCurrElem();
+                        }
+                  logDebugInfo(QString("FretDiagram::readMusicXML string %1 fret %2").arg(string).arg(fret));
+                  if (string > 0) {
+                        if (fret == 0)
+                              fd->setMarker(fd->strings() - string, 79 /* ??? */);
+                        else if (fret > 0)
+                              fd->setDot(fd->strings() - string, fret);
+                        }
+                  }
+            else if (_e.name() == "frame-strings") {
+                  int val = _e.readElementText().toInt();
+                  if (val > 0) {
+                        fd->setStrings(val);
+                        for (int i = 0; i < val; ++i)
+                              fd->setMarker(i, 88 /* ??? */);
+                        }
+                  else
+                        logError(QString("FretDiagram::readMusicXML: illegal frame-strings %1").arg(val));
+                  }
+            else
+                  skipLogCurrElem();
+            }
+
+      return fd;
+      }
+
+//---------------------------------------------------------
+//   harmony
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/harmony node.
+ */
+
+void MusicXMLParserPass2::harmony(const QString& partId, Measure* measure, const Fraction sTime)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "harmony");
+
+      int track = _pass1.trackForPart(partId);
+
+      // placement:
+      // in order to work correctly, this should probably be adjusted to account for spatium
+      // but in any case, we don't support import relative-x/y for other elements
+      // no reason to do so for chord symbols
+      double rx = 0.0;        // 0.1 * e.attribute("relative-x", "0").toDouble();
+      double ry = 0.0;        // -0.1 * e.attribute("relative-y", "0").toDouble();
+
+      double styleYOff = _score->textStyle(TextStyleType::HARMONY).offset().y();
+      OffsetType offsetType = _score->textStyle(TextStyleType::HARMONY).offsetType();
+      if (offsetType == OffsetType::ABS) {
+            styleYOff = styleYOff * MScore::DPMM / _score->spatium();
+            }
+
+      // TODO: check correct dy handling
+      // previous code: double dy = -0.1 * e.attribute("default-y", QString::number(styleYOff* -10)).toDouble();
+      double dy = -0.1 * _e.attributes().value("default-y").toDouble();
+
+      bool printObject = _e.attributes().value("print-object") != "no";
+      QString printFrame = _e.attributes().value("print-frame").toString();
+      QString printStyle = _e.attributes().value("print-style").toString();
+
+      QString kind, kindText, symbols, parens;
+      QList<HDegree> degreeList;
+
+      /* TODO ?
+      if (harmony) {
+            qDebug("MusicXML::import: more than one harmony");
+            return;
+      }
+       */
+
+      FretDiagram* fd = 0;
+      Harmony* ha = new Harmony(_score);
+      ha->setUserOff(QPointF(rx, ry + dy - styleYOff));
+      Fraction offset;
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "root") {
+                  QString step;
+                  int alter = 0;
+                  bool invalidRoot = false;
+                  while (_e.readNextStartElement()) {
+                        if (_e.name() == "root-step") {
+                              // attributes: print-style
+                              step = _e.readElementText();
+                              /* TODO: check if this is required
+                              if (ee.hasAttribute("text")) {
+                                    QString rtext = ee.attribute("text");
+                                    if (rtext == "") {
+                                          invalidRoot = true;
+                                    }
+                              }
+                               */
+                              }
+                        else if (_e.name() == "root-alter") {
+                              // attributes: print-object, print-style
+                              //             location (left-right)
+                              alter = _e.readElementText().toInt();
+                              }
+                        else
+                              skipLogCurrElem();
+                        }
+                  if (invalidRoot)
+                        ha->setRootTpc(Tpc::TPC_INVALID);
+                  else
+                        ha->setRootTpc(step2tpc(step, AccidentalVal(alter)));
+                  }
+            else if (_e.name() == "function") {
+                  // attributes: print-style
+                  skipLogCurrElem();
+                  }
+            else if (_e.name() == "kind") {
+                  // attributes: use-symbols  yes-no
+                  //             text, stack-degrees, parentheses-degree, bracket-degrees,
+                  //             print-style, halign, valign
+
+                  kindText = _e.attributes().value("text").toString();
+                  symbols = _e.attributes().value("use-symbols").toString();
+                  parens = _e.attributes().value("parentheses-degrees").toString();
+                  kind = _e.readElementText();
+                  }
+            else if (_e.name() == "inversion") {
+                  // attributes: print-style
+                  skipLogCurrElem();
+                  }
+            else if (_e.name() == "bass") {
+                  QString step;
+                  int alter = 0;
+                  while (_e.readNextStartElement()) {
+                        if (_e.name() == "bass-step") {
+                              // attributes: print-style
+                              step = _e.readElementText();
+                              }
+                        else if (_e.name() == "bass-alter") {
+                              // attributes: print-object, print-style
+                              //             location (left-right)
+                              alter = _e.readElementText().toInt();
+                              }
+                        else
+                              skipLogCurrElem();
+                        }
+                  ha->setBaseTpc(step2tpc(step, AccidentalVal(alter)));
+                  }
+            else if (_e.name() == "degree") {
+                  int degreeValue = 0;
+                  int degreeAlter = 0;
+                  QString degreeType = "";
+                  while (_e.readNextStartElement()) {
+                        if (_e.name() == "degree-value") {
+                              degreeValue = _e.readElementText().toInt();
+                              }
+                        else if (_e.name() == "degree-alter") {
+                              degreeAlter = _e.readElementText().toInt();
+                              }
+                        else if (_e.name() == "degree-type") {
+                              degreeType = _e.readElementText();
+                              }
+                        else
+                              skipLogCurrElem();
+                        }
+                  if (degreeValue <= 0 || degreeValue > 13
+                      || degreeAlter < -2 || degreeAlter > 2
+                      || (degreeType != "add" && degreeType != "alter" && degreeType != "subtract")) {
+                        logError(QString("incorrect degree: degreeValue=%1 degreeAlter=%2 degreeType=%3")
+                                 .arg(degreeValue).arg(degreeAlter).arg(degreeType));
+                        }
+                  else {
+                        if (degreeType == "add")
+                              degreeList << HDegree(degreeValue, degreeAlter, HDegreeType::ADD);
+                        else if (degreeType == "alter")
+                              degreeList << HDegree(degreeValue, degreeAlter, HDegreeType::ALTER);
+                        else if (degreeType == "subtract")
+                              degreeList << HDegree(degreeValue, degreeAlter, HDegreeType::SUBTRACT);
+                        }
+                  }
+            else if (_e.name() == "frame")
+                  fd = frame();
+            else if (_e.name() == "level")
+                  skipLogCurrElem();
+            else if (_e.name() == "offset")
+                  offset = calcTicks(_e.readElementText(), _divs);
+            else if (_e.name() == "staff") {
+                  int nstaves = _pass1.getPart(partId)->nstaves();
+                  QString strStaff = _e.readElementText();
+                  int staff = strStaff.toInt();
+                  if (0 < staff && staff <= nstaves)
+                        track += (staff - 1) * VOICES;
+                  else
+                        logError(QString("invalid staff %1").arg(strStaff));
+                  }
+            else
+                  skipLogCurrElem();
+            }
+
+      if (fd) {
+            fd->setTrack(track);
+            Segment* s = measure->getSegment(Segment::Type::ChordRest, (sTime + offset).ticks());
+            s->add(fd);
+            }
+
+      const ChordDescription* d = 0;
+      if (ha->rootTpc() != Tpc::TPC_INVALID)
+            d = ha->fromXml(kind, kindText, symbols, parens, degreeList);
+      if (d) {
+            ha->setId(d->id);
+            ha->setTextName(d->names.front());
+            }
+      else {
+            ha->setId(-1);
+            ha->setTextName(kindText);
+            }
+      ha->render();
+
+      ha->setVisible(printObject);
+
+      // TODO-LV: do this only if ha points to a valid harmony
+      // harmony = ha;
+      ha->setTrack(track);
+      Segment* s = measure->getSegment(Segment::Type::ChordRest, (sTime + offset).ticks());
+      s->add(ha);
+      }
+
+//---------------------------------------------------------
+//   accidental
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/accidental node.
+ Return the result as an Accidental.
+ */
+
+Accidental* MusicXMLParserPass2::accidental()
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "accidental");
+
+      bool cautionary = _e.attributes().value("cautionary") == "yes";
+      bool editorial = _e.attributes().value("editorial") == "yes";
+      bool parentheses = _e.attributes().value("parentheses") == "yes";
+
+      QString s = _e.readElementText();
+      AccidentalType type = mxmlString2accidentalType(s);
+
+      if (type != AccidentalType::NONE) {
+            Accidental* a = new Accidental(_score);
+            a->setAccidentalType(type);
+            if (editorial || cautionary || parentheses) {
+                  a->setHasBracket(cautionary || parentheses);
+                  a->setRole(AccidentalRole::USER);
+                  }
+            return a;
+            }
+
+      return 0;
+      }
+
+//---------------------------------------------------------
+//   beam
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/beam node.
+ Sets beamMode in case of begin, continue or end beam number 1.
+ */
+
+void MusicXMLParserPass2::beam(Beam::Mode& beamMode)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "beam");
+
+      int beamNo = _e.attributes().value("number").toInt();
+
+      if (beamNo == 1) {
+            QString s = _e.readElementText();
+            if (s == "begin")
+                  beamMode = Beam::Mode::BEGIN;
+            else if (s == "end")
+                  beamMode = Beam::Mode::END;
+            else if (s == "continue")
+                  beamMode = Beam::Mode::MID;
+            else if (s == "backward hook")
+                  ;
+            else if (s == "forward hook")
+                  ;
+            else
+                  logError(QString("unknown beam keyword '%1'").arg(s));
+            }
+      else
+            _e.skipCurrentElement();
+      }
+
+//---------------------------------------------------------
+//   forward
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/forward node.
+ */
+
+void MusicXMLParserPass2::forward(Fraction& dura)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "forward");
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "duration")
+                  duration(dura);
+            else if (_e.name() == "staff")
+                  _e.skipCurrentElement();  // skip but don't log
+            else if (_e.name() == "voice")
+                  _e.skipCurrentElement();  // skip but don't log
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   backup
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/backup node.
+ */
+
+void MusicXMLParserPass2::backup(Fraction& dura)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "backup");
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "duration")
+                  duration(dura);
+            else
+                  skipLogCurrElem();
+            }
+      }
+
+//---------------------------------------------------------
+//   timeModification
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/time-modification node.
+ */
+
+void MusicXMLParserPass2::timeModification(Fraction& timeMod, TDuration& normalType)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "time-modification");
+
+      int intActual = 0;
+      int intNormal = 0;
+      QString strActual;
+      QString strNormal;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "actual-notes")
+                  strActual = _e.readElementText();
+            else if (_e.name() == "normal-notes")
+                  strNormal = _e.readElementText();
+            else if (_e.name() == "normal-type") {
+                  // "measure" is not a valid normal-type,
+                  // but would be accepted by setType()
+                  QString strNormalType = _e.readElementText();
+                  if (strNormalType != "measure")
+                        normalType.setType(strNormalType);
+                  }
+            else
+                  skipLogCurrElem();
+            }
+
+      intActual = strActual.toInt();
+      intNormal = strNormal.toInt();
+      if (intActual > 0 && intNormal > 0)
+            timeMod.set(intNormal, intActual);
+      else {
+            timeMod.set(0, 0); // invalid
+            logError(QString("illegal time-modification: actual-notes %1 normal-notes %2")
+                     .arg(strActual).arg(strNormal));
+            }
+      }
+
+//---------------------------------------------------------
+//   pitch
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/pitch node.
+ */
+
+void MusicXMLParserPass2::pitch(int& step, int& alter, int& oct, AccidentalType& accid)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "pitch");
+
+      // defaults
+      step = -1;
+      alter = 0;
+      oct = -1;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "alter") {
+                  QString strAlter = _e.readElementText();
+                  bool ok;
+                  alter = MxmlSupport::stringToInt(strAlter, &ok); // fractions not supported by mscore
+                  if (!ok || alter < -2.5 || alter > 2.5) {
+                        logError(QString("invalid alter '%1'").arg(strAlter));
+                        bool ok2;
+                        double altervalue = strAlter.toDouble(&ok2);
+                        if (ok2 && (qAbs(altervalue) < 2.0) && (accid == AccidentalType::NONE)) {
+                              // try to see if a microtonal accidental is needed
+                              accid = microtonalGuess(altervalue);
+                              }
+                        alter = 0;
+                        }
+                  }
+            else if (_e.name() == "octave") {
+                  QString strOct = _e.readElementText();
+                  bool ok;
+                  oct = strOct.toInt(&ok);
+                  if (!ok || oct < 0 || oct > 9) {
+                        logError(QString("invalid octave '%1'").arg(strOct));
+                        oct = -1;
+                        }
+                  }
+            else if (_e.name() == "step") {
+                  QString strStep = _e.readElementText();
+                  int pos = QString("CDEFGAB").indexOf(strStep);
+                  if (strStep.size() == 1 && pos >=0 && pos < 7)
+                        step = pos;
+                  else
+                        logError(QString("invalid step '%1'").arg(strStep));
+                  }
+            else
+                  skipLogCurrElem();
+            }
+      //qDebug("pitch step %d alter %d oct %d accid %hhd", step, alter, oct, accid);
+      }
+
+//---------------------------------------------------------
+//   rest
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/rest node.
+ */
+
+void MusicXMLParserPass2::rest(int& step, int& octave)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "rest");
+
+      displayStepOctave(_e, step, octave);
+      }
+
+//---------------------------------------------------------
+//   lyric -- parse a MusicXML lyric element
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/lyric node.
+ */
+
+void MusicXMLParserPass2::lyric(QMap<int, Lyrics*>& numbrdLyrics,
+                                QMap<int, Lyrics*>& defyLyrics,
+                                QList<Lyrics*>& unNumbrdLyrics)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "lyric");
+
+      Lyrics* l = new Lyrics(_score);
+      // TODO in addlyrics: l->setTrack(trk);
+
+      bool ok = true;
+      int lyricNo = _e.attributes().value("number").toString().toInt(&ok) - 1;
+
+      if (ok) {
+            if (lyricNo < 0) {
+                  qDebug("invalid lyrics number (<0)"); // TODO
+                  delete l;
+                  return;
+                  }
+            else if (lyricNo > MAX_LYRICS) {
+                  qDebug("too much lyrics (>%d)", MAX_LYRICS); // TODO
+                  delete l;
+                  return;
+                  }
+            else {
+                  numbrdLyrics[lyricNo] = l;
+                  }
+            }
+      else {
+            int defaultY = _e.attributes().value("default-y").toString().toInt(&ok);
+            if (ok)
+                  // invert default-y as it decreases with increasing lyric number
+                  defyLyrics[-defaultY] = l;
+            else
+                  unNumbrdLyrics.append(l);
+            }
+
+      QString formattedText;
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "syllabic") {
+                  QString syll = _e.readElementText();
+                  if (syll == "single")
+                        l->setSyllabic(Lyrics::Syllabic::SINGLE);
+                  else if (syll == "begin")
+                        l->setSyllabic(Lyrics::Syllabic::BEGIN);
+                  else if (syll == "end")
+                        l->setSyllabic(Lyrics::Syllabic::END);
+                  else if (syll == "middle")
+                        l->setSyllabic(Lyrics::Syllabic::MIDDLE);
+                  else
+                        qDebug("unknown syllabic %s", qPrintable(syll));  // TODO
+                  }
+            else if (_e.name() == "text")
+                  formattedText += nextPartOfFormattedString(_e);
+            else if (_e.name() == "elision") {
+                  // TODO verify elision handling
+                  /*
+                  QString text = _e.readElementText();
+                  if (text.isEmpty())
+                        formattedText += " ";
+                  else
+                   */
+                  formattedText += nextPartOfFormattedString(_e);
+                  }
+            else
+                  skipLogCurrElem();
+            }
+      //qDebug("formatted lyric '%s'", qPrintable(formattedText));
+      l->setXmlText(formattedText);
+      }
+
+
+//---------------------------------------------------------
+//   notations
+//---------------------------------------------------------
+
+
+/**
+ Parse the /score-partwise/part/measure/note/notations node.
+ Note that some notations attach to notes only in MuseScore,
+ which means trying to attach them to a rest will crash,
+ as in that case note is 0.
+ */
+
+void MusicXMLParserPass2::notations(Note* note, ChordRest* cr, const int tick,
+                                    MusicXmlTupletDesc& tupletDesc, bool& lastGraceAFter)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "notations");
+
+      lastGraceAFter = false;       // ensure default
+
+      Measure* measure = cr->measure();
+      int ticks = cr->duration().ticks();
+      int track = cr->track();
+      int trk = (track / VOICES) * VOICES; // first track of staff
+
+      QString wavyLineType;
+      int wavyLineNo = 0;
+      QString arpeggioType;
+      //      QString glissandoType;
+      int breath = -1;
+      int tremolo = 0;
+      QString tremoloType;
+      QString placement;
+      QStringList dynamics;
+      // qreal rx = 0.0;
+      // qreal ry = 0.0;
+      qreal yoffset = 0.0; // actually this is default-y
+      // qreal xoffset = 0.0; // not used
+      bool hasYoffset = false;
+      QString chordLineType;
+
+      while (_e.readNextStartElement()) {
+            if (_e.name() == "slur") {
+                  int slurNo   = _e.attributes().value("number").toString().toInt();
+                  if (slurNo > 0) slurNo--;
+                  QString slurType = _e.attributes().value("type").toString();
+                  QString lineType  = _e.attributes().value("line-type").toString();
+                  if (lineType == "") lineType = "solid";
+
+                  // PriMus Music-Notation by Columbussoft (build 10093) generates overlapping
+                  // slurs that do not have a number attribute to distinguish them.
+                  // The duplicates must be ignored, to prevent memory allocation issues,
+                  // which caused a MuseScore crash
+                  // Similar issues happen with Sibelius 7.1.3 (direct export)
+
+                  if (slurType == "start") {
+                        if (_slur[slurNo].isStart())
+                              // slur start when slur already started: report error
+                              logError(QString("ignoring duplicate slur start"));
+                        else if (_slur[slurNo].isStop()) {
+                              // slur start when slur already stopped: wrap up
+                              Slur* newSlur = _slur[slurNo].slur();
+                              newSlur->setTick(tick);
+                              newSlur->setStartElement(cr);
+                              _slur[slurNo] = SlurDesc();
+                              }
+                        else {
+                              // slur start for new slur: init
+                              Slur* newSlur = new Slur(_score);
+                              if (cr->isGrace())
+                                    newSlur->setAnchor(Spanner::Anchor::CHORD);
+                              if (lineType == "dotted")
+                                    newSlur->setLineType(1);
+                              else if (lineType == "dashed")
+                                    newSlur->setLineType(2);
+                              newSlur->setTick(tick);
+                              newSlur->setStartElement(cr);
+                              QString pl = _e.attributes().value("placement").toString();
+                              if (pl == "above")
+                                    newSlur->setSlurDirection(MScore::Direction::UP);
+                              else if (pl == "below")
+                                    newSlur->setSlurDirection(MScore::Direction::DOWN);
+                              newSlur->setTrack(track);
+                              newSlur->setTrack2(track);
+                              _slur[slurNo].start(newSlur);
+                              _score->addElement(newSlur);
+                              }
+                        }
+                  else if (slurType == "stop") {
+                        if (_slur[slurNo].isStart()) {
+                              // slur stop when slur already started: wrap up
+                              Slur* newSlur = _slur[slurNo].slur();
+                              if (!(cr->isGrace())) {
+                                    newSlur->setTick2(tick);
+                                    newSlur->setTrack2(track);
+                                    }
+                              newSlur->setEndElement(cr);
+                              _slur[slurNo] = SlurDesc();
+                              }
+                        else if (_slur[slurNo].isStop())
+                              // slur stop when slur already stopped: report error
+                              logError(QString("ignoring duplicate slur stop"));
+                        else {
+                              // slur stop for new slur: init
+                              Slur* newSlur = new Slur(_score);
+                              if (!(cr->isGrace())) {
+                                    newSlur->setTick2(tick);
+                                    newSlur->setTrack2(track);
+                                    }
+                              newSlur->setEndElement(cr);
+                              _slur[slurNo].stop(newSlur);
+                              }
+                        // any grace note containing a slur stop means
+                        // last note of a grace after set has been found
+                        if (cr->isGrace())
+                              lastGraceAFter = true;
+                        }
+                  else if (slurType == "continue")
+                        ;  // ignore
+                  else
+                        logError(QString("unknown slur type %1").arg(slurType));
+                  _e.readNext();
+                  }
+            else if (_e.name() == "tied") {
+                  QString tiedType = _e.attributes().value("type").toString();
+                  if (tiedType == "start") {
+                        if (_tie) {
+                              logError(QString("Tie already active"));
+                              }
+                        else if (note) {
+                              _tie = new Tie(_score);
+                              note->setTieFor(_tie);
+                              _tie->setStartNote(note);
+                              _tie->setTrack(track);
+                              QString tiedOrientation = _e.attributes().value("orientation").toString();
+                              if (tiedOrientation == "over")
+                                    _tie->setSlurDirection(MScore::Direction::UP);
+                              else if (tiedOrientation == "under")
+                                    _tie->setSlurDirection(MScore::Direction::DOWN);
+                              else if (tiedOrientation == "auto")
+                                    ;  // ignore
+                              else if (tiedOrientation == "")
+                                    ;  // ignore
+                              else
+                                    logError(QString("unknown tied orientation: %1").arg(tiedOrientation));
+
+                              QString lineType  = _e.attributes().value("line-type").toString();
+                              if (lineType == "dotted")
+                                    _tie->setLineType(1);
+                              else if (lineType == "dashed")
+                                    _tie->setLineType(2);
+                              _tie = 0;
+                              }
+                        }
+                  else if (tiedType == "stop")
+                        ;  // ignore
+                  else
+                        logError(QString("unknown tied type %").arg(tiedType));
+                  _e.readNext();
+                  }
+            else if (_e.name() == "tuplet") {
+                  tuplet(tupletDesc);
+                  }
+            else if (_e.name() == "dynamics") {
+                  placement = _e.attributes().value("placement").toString();
+                  if (preferences.musicxmlImportLayout) {
+                        // ry        = ee.attribute(QString("relative-y"), "0").toDouble() * -.1;
+                        // rx        = ee.attribute(QString("relative-x"), "0").toDouble() * .1;
+                        yoffset   = _e.attributes().value("default-y").toDouble(&hasYoffset) * -0.1;
+                        // xoffset   = ee.attribute("default-x", "0.0").toDouble() * 0.1;
+                        }
+                  while (_e.readNextStartElement()) {
+                        if (_e.name() == "other-dynamics")
+                              dynamics.push_back(_e.readElementText());
+                        else {
+                              dynamics.push_back(_e.name().toString());
+                              _e.readNext();
+                              }
+                        }
+                  }
+            else if (_e.name() == "articulations") {
+                  while (_e.readNextStartElement()) {
+                        if (addMxmlArticulationToChord(cr, _e.name().toString())) {
+                              _e.readNext();
+                              continue;
+                              }
+                        else if (_e.name() == "breath-mark") {
+                              breath = 0;
+                              _e.readElementText();
+                              // TODO: handle value read (note: encoding unknown, only "comma" found)
+                              }
+                        else if (_e.name() == "caesura") {
+                              breath = 3;
+                              _e.readNext();
+                              }
+                        else if (_e.name() == "doit"
+                                 || _e.name() == "falloff"
+                                 || _e.name() == "plop"
+                                 || _e.name() == "scoop") {
+                              chordLineType = _e.name().toString();
+                              _e.readNext();
+                              }
+                        else if (_e.name() == "strong-accent") {
+                              QString strongAccentType = _e.attributes().value("type").toString();
+                              if (strongAccentType == "up" || strongAccentType == "")
+                                    addArticulationToChord(cr, ArticulationType::Marcato, "up");
+                              else if (strongAccentType == "down")
+                                    addArticulationToChord(cr, ArticulationType::Marcato, "down");
+                              else
+                                    logError(QString("unknown mercato type %1").arg(strongAccentType));
+                              _e.readNext();
+                              }
+                        else
+                              skipLogCurrElem();
+                        }
+                  //qDebug("::notations tokenString '%s' name '%s'", qPrintable(_e.tokenString()), qPrintable(_e.name().toString()));
+                  }
+            else if (_e.name() == "fermata")
+                  fermata(cr);
+            else if (_e.name() == "ornaments") {
+                  bool trillMark = false;
+                  // <trill-mark placement="above"/>
+                  while (_e.readNextStartElement()) {
+                        if (addMxmlArticulationToChord(cr, _e.name().toString())) {
+                              _e.readNext();
+                              continue;
+                              }
+                        else if (_e.name() == "trill-mark") {
+                              trillMark = true;
+                              _e.readNext();
+                              }
+                        else if (_e.name() == "wavy-line") {
+                              wavyLineType = _e.attributes().value("type").toString();
+                              wavyLineNo   = _e.attributes().value("number").toString().toInt();
+                              if (wavyLineNo > 0) wavyLineNo--;
+                              // any grace note containing a wavy-line stop means
+                              // last note of a grace after set has been found
+                              if (wavyLineType == "stop" && cr->isGrace())
+                                    lastGraceAFter = true;
+                              _e.readNext();
+                              }
+                        else if (_e.name() == "tremolo") {
+                              tremoloType = _e.attributes().value("type").toString();
+                              tremolo = _e.readElementText().toInt();
+                              _e.readNext();
+                              }
+                        else if (_e.name() == "accidental-mark")
+                              skipLogCurrElem();
+                        else if (_e.name() == "delayed-turn") {
+                              // TODO: actually this should be offset a bit to the right
+                              addArticulationToChord(cr, ArticulationType::Turn, "");
+                              _e.readNext();
+                              }
+                        else if (_e.name() == "inverted-mordent"
+                                 || _e.name() == "mordent") {
+                              addMordentToChord(cr, _e.name().toString(),
+                                                _e.attributes().value("long").toString(),
+                                                _e.attributes().value("approach").toString(),
+                                                _e.attributes().value("departure").toString());
+                              _e.readNext();
+                              }
+                        else
+                              skipLogCurrElem();
+                        }
+                  //qDebug("::notations tokenString '%s' name '%s'", qPrintable(_e.tokenString()), qPrintable(_e.name().toString()));
+                  // note that mscore wavy line already implicitly includes a trillsym
+                  // so don't add an additional one
+                  if (trillMark && wavyLineType != "start")
+                        addArticulationToChord(cr, ArticulationType::Trill, "");
+                  }
+            else if (_e.name() == "technical") {
+                  while (_e.readNextStartElement()) {
+                        if (addMxmlArticulationToChord(cr, _e.name().toString())) {
+                              _e.readNext();
+                              continue;
+                              }
+                        else if (_e.name() == "fingering")
+                              // TODO: distinguish between keyboards (style TextStyleType::FINGERING)
+                              // and (plucked) strings (style TextStyleType::LH_GUITAR_FINGERING)
+                              addTextToNote(_e.lineNumber(), _e.columnNumber(), _e.readElementText(),
+                                            TextStyleType::FINGERING, _score, note);
+                        else if (_e.name() == "fret") {
+                              int fret = _e.readElementText().toInt();
+                              if (note) {
+                                    if (note->staff()->isTabStaff())
+                                          note->setFret(fret);
+                                    }
+                              else
+                                    logError("no note for fret");
+                              }
+                        else if (_e.name() == "pluck")
+                              addTextToNote(_e.lineNumber(), _e.columnNumber(), _e.readElementText(),
+                                            TextStyleType::RH_GUITAR_FINGERING, _score, note);
+                        else if (_e.name() == "string") {
+                              QString txt = _e.readElementText();
+                              if (note) {
+                                    if (note->staff()->isTabStaff())
+                                          note->setString(txt.toInt() - 1);
+                                    else
+                                          addTextToNote(_e.lineNumber(), _e.columnNumber(), txt,
+                                                        TextStyleType::STRING_NUMBER, _score, note);
+                                    }
+                              else
+                                    logError("no note for string");
+                              }
+                        else if (_e.name() == "pull-off")
+                              skipLogCurrElem();
+                        else
+                              skipLogCurrElem();
+                        }
+                  //qDebug("::notations tokenString '%s' name '%s'", qPrintable(_e.tokenString()), qPrintable(_e.name().toString()));
+                  }
+            else if (_e.name() == "arpeggiate") {
+                  arpeggioType = _e.attributes().value("direction").toString();
+                  if (arpeggioType == "") arpeggioType = "none";
+                  _e.readNext();
+                  }
+            else if (_e.name() == "non-arpeggiate") {
+                  arpeggioType = "non-arpeggiate";
+                  _e.readNext();
+                  }
+            else if (_e.name() == "glissando" || _e.name() == "slide") {
+                  int n                   = _e.attributes().value("number").toString().toInt();
+                  if (n > 0) n--;
+                  QString spannerType     = _e.attributes().value("type").toString();
+                  int tag                 = _e.name() == "slide" ? 0 : 1;
+                  //                  QString lineType  = ee.attribute(QString("line-type"), "solid");
+                  Glissando*& gliss = _glissandi[n][tag];
+                  if (spannerType == "start") {
+                        QColor color(_e.attributes().value("color").toString());
+                        QString glissText = _e.readElementText();
+                        if (gliss) {
+                              logError(QString("overlapping glissando/slide %1").arg(n+1));
+                              delete gliss;
+                              gliss = 0;
+                              }
+                        else if (!note) {
+                              logError(QString("no note for glissando/slide %1 start").arg(n+1));
+                              delete gliss;
+                              gliss = 0;
+                              }
+                        else {
+                              gliss = new Glissando(_score);
+                              gliss->setAnchor(Spanner::Anchor::NOTE);
+                              gliss->setStartElement(note);
+                              gliss->setTick(tick);
+                              gliss->setTrack(track);
+                              gliss->setParent(note);
+                              if (color.isValid())
+                                    gliss->setColor(color);
+                              gliss->setText(glissText);
+                              gliss->setGlissandoType(tag == 0 ? Glissando::Type::STRAIGHT : Glissando::Type::WAVY);
+                              _spanners[gliss] = QPair<int, int>(tick, -1);
+                              // qDebug("glissando/slide=%p inserted at first tick %d", gliss, tick);
+                              }
+                        }
+                  else if (spannerType == "stop") {
+                        if (!gliss) {
+                              logError(QString("glissando/slide %1 stop without start").arg(n+1));
+                              }
+                        else if (!note) {
+                              logError(QString("no note for glissando/slide %1 stop").arg(n+1));
+                              }
+                        else {
+                              _spanners[gliss].second = tick + ticks;
+                              gliss->setEndElement(note);
+                              gliss->setTick2(tick);
+                              gliss->setTrack2(track);
+                              // qDebug("glissando/slide=%p second tick %d", gliss, tick);
+                              gliss = 0;
+                              }
+                        }
+                  else
+                        logError(QString("unknown glissando/slide type %1").arg(spannerType));
+                  _e.readNext();
+                  }
+            else
+                  skipLogCurrElem();
+            }
+
+      // no support for arpeggio on rest
+      if (!arpeggioType.isEmpty() && cr->type() == Element::Type::CHORD) {
+            Arpeggio* a = new Arpeggio(_score);
+            if (arpeggioType == "none")
+                  a->setArpeggioType(ArpeggioType::NORMAL);
+            else if (arpeggioType == "up")
+                  a->setArpeggioType(ArpeggioType::UP);
+            else if (arpeggioType == "down")
+                  a->setArpeggioType(ArpeggioType::DOWN);
+            else if (arpeggioType == "non-arpeggiate")
+                  a->setArpeggioType(ArpeggioType::BRACKET);
+            else {
+                  logError(QString("unknown arpeggio type %1").arg(arpeggioType));
+                  delete a;
+                  a = 0;
+                  }
+            if ((static_cast<Chord*>(cr))->arpeggio()) {
+                  // there can be only one
+                  delete a;
+                  a = 0;
+                  }
+            else
+                  cr->add(a);
+            }
+
+      if (!wavyLineType.isEmpty()) {
+            Trill*& t = _trills[wavyLineNo];
+            if (wavyLineType == "start") {
+                  if (t) {
+                        logError(QString("overlapping wavy-line %1 not supported").arg(wavyLineNo));
+                        delete t;
+                        t = 0;
+                        }
+                  else {
+                        t = new Trill(_score);
+                        t->setTrack(trk);
+                        _spanners[t] = QPair<int, int>(tick, -1);
+                        // qDebug("wedge trill=%p inserted at first tick %d", trill, tick);
+                        }
+                  }
+            else if (wavyLineType == "stop") {
+                  if (!t) {
+                        logError(QString("wavy-line %1 stop without start").arg(wavyLineNo));
+                        }
+                  else {
+                        _spanners[t].second = tick + ticks;
+                        // qDebug("wedge trill=%p second tick %d", trill, tick);
+                        t = 0;
+                        }
+                  }
+            else
+                  logError(QString("unknown wavy-line type %1").arg(wavyLineType));
+            }
+
+      if (breath >= 0) {
+            Breath* b = new Breath(_score);
+            // b->setTrack(trk + voice); TODO check next line
+            b->setTrack(track);
+            b->setBreathType(breath);
+            Segment* seg = measure->getSegment(Segment::Type::Breath, tick + ticks);
+            seg->add(b);
+            }
+
+      if (tremolo) {
+            qDebug("tremolo %d type '%s' ticks %d tremStart %p", tremolo, qPrintable(tremoloType), ticks, _tremStart);
+            if (tremolo == 1 || tremolo == 2 || tremolo == 3 || tremolo == 4) {
+                  if (tremoloType == "" || tremoloType == "single") {
+                        Tremolo* t = new Tremolo(_score);
+                        switch (tremolo) {
+                              case 1: t->setTremoloType(TremoloType::R8); break;
+                              case 2: t->setTremoloType(TremoloType::R16); break;
+                              case 3: t->setTremoloType(TremoloType::R32); break;
+                              case 4: t->setTremoloType(TremoloType::R64); break;
+                              }
+                        cr->add(t);
+                        }
+                  else if (tremoloType == "start") {
+                        if (_tremStart) logError("MusicXML::import: double tremolo start");
+                        _tremStart = static_cast<Chord*>(cr);
+                        }
+                  else if (tremoloType == "stop") {
+                        if (_tremStart) {
+                              Tremolo* t = new Tremolo(_score);
+                              switch (tremolo) {
+                                    case 1: t->setTremoloType(TremoloType::C8); break;
+                                    case 2: t->setTremoloType(TremoloType::C16); break;
+                                    case 3: t->setTremoloType(TremoloType::C32); break;
+                                    case 4: t->setTremoloType(TremoloType::C64); break;
+                                    }
+                              t->setChords(_tremStart, static_cast<Chord*>(cr));
+                              // fixup chord duration and type
+                              const int tremDur = ticks / 2;
+                              t->chord1()->setDurationType(tremDur);
+                              t->chord1()->setDuration(Fraction::fromTicks(tremDur));
+                              t->chord2()->setDurationType(tremDur);
+                              t->chord2()->setDuration(Fraction::fromTicks(tremDur));
+                              // add tremolo to first chord (only)
+                              _tremStart->add(t);
+                              }
+                        else logError("MusicXML::import: double tremolo stop w/o start");
+                        _tremStart = 0;
+                        }
+                  }
+            else
+                  logError(QString("unknown tremolo type %1").arg(tremolo));
+            }
+
+      if (chordLineType != "") {
+            if (note) {
+                  ChordLine* cl = new ChordLine(_score);
+                  if (chordLineType == "falloff")
+                        cl->setChordLineType(ChordLineType::FALL);
+                  if (chordLineType == "doit")
+                        cl->setChordLineType(ChordLineType::DOIT);
+                  if (chordLineType == "plop")
+                        cl->setChordLineType(ChordLineType::PLOP);
+                  if (chordLineType == "scoop")
+                        cl->setChordLineType(ChordLineType::SCOOP);
+                  note->chord()->add(cl);
+                  }
+            else
+                  logError(QString("no note for %1").arg(chordLineType));
+            }
+
+      // more than one dynamic ???
+      // LVIFIX: check import/export of <other-dynamics>unknown_text</...>
+      // TODO remove duplicate code (see MusicXml::direction)
+      for (QStringList::Iterator it = dynamics.begin(); it != dynamics.end(); ++it ) {
+            Dynamic* dyn = new Dynamic(_score);
+            dyn->setDynamicType(*it);
+            if (hasYoffset) dyn->textStyle().setYoff(yoffset);
+            addElemOffset(dyn, track, placement, measure, tick);
+            }
+
+      Q_ASSERT(_e.isEndElement() && _e.name() == "notations");
+      }
+
+//---------------------------------------------------------
+//   stem
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/stem node.
+ */
+
+void MusicXMLParserPass2::stem(MScore::Direction& sd, bool& nost)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "stem");
+
+      // defaults
+      sd = MScore::Direction::AUTO;
+      nost = false;
+
+      QString s = _e.readElementText();
+
+      if (s == "up")
+            sd = MScore::Direction::UP;
+      else if (s == "down")
+            sd = MScore::Direction::DOWN;
+      else if (s == "none")
+            nost = true;
+      else if (s == "double")
+            ;
+      else
+            logError(QString("unknown stem direction %1").arg(s));
+      }
+
+//---------------------------------------------------------
+//   fermata
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/notations/fermata node.
+ Note: MusicXML common.mod: "An empty fermata element represents a normal fermata."
+ */
+
+void MusicXMLParserPass2::fermata(ChordRest* cr)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "fermata");
+
+      QString fermataType = _e.attributes().value("type").toString();
+      QString fermata     = _e.readElementText();
+
+      if (fermata == "normal" || fermata == "")
+            addFermata(cr, fermataType, ArticulationType::Fermata);
+      else if (fermata == "angled")
+            addFermata(cr, fermataType, ArticulationType::Shortfermata);
+      else if (fermata == "square")
+            addFermata(cr, fermataType, ArticulationType::Longfermata);
+      else
+            logError(QString("unknown fermata '%1'").arg(fermata));
+      }
+
+//---------------------------------------------------------
+//   tuplet
+//---------------------------------------------------------
+
+/**
+ Parse the /score-partwise/part/measure/note/notations/tuplet node.
+ */
+
+void MusicXMLParserPass2::tuplet(MusicXmlTupletDesc& tupletDesc)
+      {
+      Q_ASSERT(_e.isStartElement() && _e.name() == "tuplet");
+
+      QString tupletType       = _e.attributes().value("type").toString();
+      // QString tupletPlacement  = _e.attributes().value("placement").toString(); not used (TODO)
+      QString tupletBracket    = _e.attributes().value("bracket").toString();
+      QString tupletShowNumber = _e.attributes().value("show-number").toString();
+
+      // ignore possible children (currently not supported)
+      _e.skipCurrentElement();
+
+      if (tupletType == "start")
+            tupletDesc.type = MxmlStartStop::START;
+      else if (tupletType == "stop")
+            tupletDesc.type = MxmlStartStop::STOP;
+      else if (tupletType != "" && tupletType != "start" && tupletType != "stop") {
+            logError(QString("unknown tuplet type '%1'").arg(tupletType));
+            }
+
+      // set bracket, leave at default if unspecified
+      if (tupletBracket == "yes")
+            tupletDesc.bracket = Tuplet::BracketType::SHOW_BRACKET;
+      else if (tupletBracket == "no")
+            tupletDesc.bracket = Tuplet::BracketType::SHOW_NO_BRACKET;
+
+      // set number, default is "actual" (=NumberType::SHOW_NUMBER)
+      if (tupletShowNumber == "both")
+            tupletDesc.shownumber = Tuplet::NumberType::SHOW_RELATION;
+      else if (tupletShowNumber == "none")
+            tupletDesc.shownumber = Tuplet::NumberType::NO_TEXT;
+      else
+            tupletDesc.shownumber = Tuplet::NumberType::SHOW_NUMBER;
+      }
+
+//---------------------------------------------------------
+//   MusicXMLParserDirection
+//---------------------------------------------------------
+
+/**
+ MusicXMLParserDirection constructor.
+ */
+
+MusicXMLParserDirection::MusicXMLParserDirection(QXmlStreamReader& e,
+                                                 Score* score,
+                                                 const MusicXMLParserPass1& pass1,
+                                                 MusicXMLParserPass2& pass2)
+      : _e(e), _score(score), _pass1(pass1), _pass2(pass2),
+      _hasDefaultY(false), _defaultY(0.0), _coda(false), _segno(false),
+      _tpoMetro(0), _tpoSound(0)
+      {
+      // nothing
+      }
+
+}
diff --git a/mscore/importmxmlpass2.h b/mscore/importmxmlpass2.h
new file mode 100644
index 0000000..f4db37b
--- /dev/null
+++ b/mscore/importmxmlpass2.h
@@ -0,0 +1,237 @@
+//=============================================================================
+//  MuseScore
+//  Linux Music Score Editor
+//
+//  Copyright (C) 2015 Werner Schweer and others
+//
+//  This program is free software; you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License version 2.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, write to the Free Software
+//  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+//=============================================================================
+
+#ifndef __IMPORTMXMLPASS2_H__
+#define __IMPORTMXMLPASS2_H__
+
+#include "libmscore/score.h"
+#include "libmscore/tuplet.h"
+#include "importxmlfirstpass.h"
+#include "importmxmlpass1.h"
+#include "musicxml.h" // a.o. for Slur
+#include "musicxmlsupport.h"
+
+namespace Ms {
+
+//---------------------------------------------------------
+//   support enums / structs / classes
+//---------------------------------------------------------
+
+typedef QList<Chord*> GraceChordList;
+typedef QVector<FiguredBass*> FiguredBassList;
+
+//---------------------------------------------------------
+//   MxmlStartStop
+//---------------------------------------------------------
+
+enum class MxmlStartStop : char {
+      START, STOP, NONE
+      };
+
+//---------------------------------------------------------
+//   MusicXmlTupletDesc
+//---------------------------------------------------------
+
+/**
+ Describe the information extracted from
+ a single note/notations/tuplet element.
+ */
+
+struct MusicXmlTupletDesc {
+      MusicXmlTupletDesc();
+      MxmlStartStop type;
+      Element::Placement placement;
+      Tuplet::BracketType bracket;
+      Tuplet::NumberType shownumber;
+      };
+
+//---------------------------------------------------------
+//   MusicXmlSpannerDesc
+//---------------------------------------------------------
+
+struct MusicXmlSpannerDesc {
+      SLine* sp;
+      Element::Type tp;
+      int nr;
+      MusicXmlSpannerDesc(SLine* _sp, Element::Type _tp, int _nr) : sp(_sp), tp(_tp), nr(_nr) {}
+      MusicXmlSpannerDesc(Element::Type _tp, int _nr) : sp(0), tp(_tp), nr(_nr) {}
+      };
+
+//---------------------------------------------------------
+//   MusicXMLParserPass2
+//---------------------------------------------------------
+
+class FretDiagram;
+class FiguredBassItem;
+
+class MusicXMLParserPass2 {
+public:
+      MusicXMLParserPass2(Score* score, MusicXMLParserPass1& pass1);
+      void initPartState(const QString& partId);
+      Score::FileError parse(QIODevice* device);
+      Score::FileError parse();
+      void scorePartwise();
+      void partList();
+      void scorePart();
+      void part();
+      void measChordNote( /*, const MxmlPhase2Note note, ChordRest& currChord */);
+      void measChordFlush( /*, ChordRest& currChord */);
+      void measure(const QString& partId, const Fraction time);
+      void attributes(const QString& partId, Measure* measure, const int tick);
+      void measureStyle(Measure* measure);
+      void print(Measure* measure);
+      void barline(const QString& partId, Measure* measure);
+      void key(const QString& partId, Measure* measure, const int tick);
+      void clef(const QString& partId, Measure* measure, const int tick);
+      void time(const QString& partId, Measure* measure, const int tick);
+      void divisions();
+      void transpose(const QString& partId);
+      Note* note(const QString& partId, Measure* measure, const Fraction sTime, const Fraction prevTime,
+                 Fraction& dura, QString& currentVoice, GraceChordList& gcl, int& gac,
+                 Beam*& beam, FiguredBassList& fbl, int& alt);
+      void notePrintSpacingNo(Fraction& dura);
+      FiguredBassItem* figure(const int idx, const bool paren);
+      FiguredBass* figuredBass();
+      FretDiagram* frame();
+      void harmony(const QString& partId, Measure* measure, const Fraction sTime);
+      Accidental* accidental();
+      void beam(Beam::Mode& beamMode);
+      void duration(Fraction& dura);
+      void forward(Fraction& dura);
+      void backup(Fraction& dura);
+      void timeModification(Fraction& timeMod, TDuration& normalType);
+      void pitch(int& step, int& alter, int& oct, AccidentalType& accid);
+      void rest(int& step, int& octave);
+      void lyric(QMap<int, Lyrics*>& numbrdLyrics, QMap<int, Lyrics*>& defyLyrics,
+                 QList<Lyrics*>& unNumbrdLyrics);
+      void notations(Note* note, ChordRest* cr, const int tick, MusicXmlTupletDesc& tupletDesc, bool& lastGraceAFter);
+      void stem(MScore::Direction& sd, bool& nost);
+      void fermata(ChordRest* cr);
+      void tuplet(MusicXmlTupletDesc& tupletDesc);
+      void doEnding(const QString& partId, Measure* measure, const QString& number, const QString& type, const QString& text);
+      QString getParseStatus() const { return _parseStatus; }
+      //QString getParseResult() const   { return parseResult; }
+      void logDebugTrace(const QString& info);
+      void logDebugInfo(const QString& info);
+      void logError(const QString& error);
+      void skipLogCurrElem();
+
+      // part specific data interface functions
+      void addSpanner(const MusicXmlSpannerDesc& desc);
+      SLine* getSpanner(const MusicXmlSpannerDesc& desc);
+      void clearSpanner(const MusicXmlSpannerDesc& desc);
+
+      // multi-measure rest state handling
+      void setMultiMeasureRestCount(int count);
+      int getAndDecMultiMeasureRestCount();
+
+private:
+      // generic pass 2 data
+
+      QXmlStreamReader _e;
+      int _divs;                          // the current divisions value
+      QString _parseStatus;               // the parse status (typicallay a short error message)
+      Score* const _score;                // the score
+      MusicXMLParserPass1& _pass1;  // the pass1 results
+
+      // part specific data (TODO: move to part-specific class)
+
+      // Measure duration according to last timesig read
+      // TODO: store timesigs read in pass 1, use those instead
+      // or use score->sigmap() ?
+      Fraction _timeSigDura;
+
+      QVector<Tuplet*> _tuplets;                 ///< Current tuplet for each track in the current part
+      SlurDesc _slur[MAX_NUMBER_LEVEL];
+      Trill* _trills[MAX_NUMBER_LEVEL];          ///< Current trills
+      SLine* _brackets[MAX_BRACKETS];
+      SLine* _dashes[MAX_DASHES];
+      SLine* _ottavas[MAX_NUMBER_LEVEL];        ///< Current ottavas
+      SLine* _hairpins[MAX_NUMBER_LEVEL];      ///< Current hairpins
+      // TODO SLine* trills[MAX_NUMBER_LEVEL];          ///< Current trills
+
+      Glissando* _glissandi[MAX_NUMBER_LEVEL][2];   ///< Current slides ([0]) / glissandi ([1])
+
+      Tie* _tie;
+      Volta* _lastVolta;
+      bool _hasDrumset;                           ///< drumset defined TODO: move to pass 1
+
+      MusicXmlSpannerMap _spanners;
+
+      SLine* _pedal;                              ///< Current pedal
+      Pedal* _pedalContinue;                      ///< Current pedal type="change" requiring fixup
+      Harmony* _harmony;                          ///< Current harmony
+      Chord* _tremStart;                          ///< Starting chord for current tremolo
+      FiguredBass* _figBass;                      ///< Current figured bass element (to attach to next note)
+      int _multiMeasureRestCount;
+      };
+
+//---------------------------------------------------------
+//   MusicXMLParserDirection
+//---------------------------------------------------------
+
+class MusicXMLParserDirection {
+public:
+      MusicXMLParserDirection(QXmlStreamReader& e, Score* score, const MusicXMLParserPass1& pass1, MusicXMLParserPass2& pass2);
+      void direction(const QString& partId, Measure* measure, const int tick, MusicXmlSpannerMap& spanners);
+      void logError(const QString& error);
+      void logDebugInfo(const QString& info);
+      void skipLogCurrElem();
+
+private:
+      QXmlStreamReader& _e;
+      Score* const _score;                      // the score
+      const MusicXMLParserPass1& _pass1;        // the pass1 results
+      MusicXMLParserPass2& _pass2;              // the pass2 results
+
+      QStringList _dynamicsList;
+      QString _enclosure;
+      QString _wordsText;
+      QString _metroText;
+      QString _rehearsalText;
+      QString _dynaVelocity;
+      QString _tempo;
+      QString _sndCapo;
+      QString _sndCoda;
+      QString _sndDacapo;
+      QString _sndDalsegno;
+      QString _sndSegno;
+      QString _sndFine;
+      bool _hasDefaultY;
+      qreal _defaultY;
+      bool _coda;
+      bool _segno;
+      double _tpoMetro;                 // tempo according to metronome
+      double _tpoSound;                 // tempo according to sound
+      QList<Element*> _elems;
+
+      void directionType(QList<MusicXmlSpannerDesc>& starts, QList<MusicXmlSpannerDesc>& stops);
+      void bracket(const QString& type, const int number, QList<MusicXmlSpannerDesc>& starts, QList<MusicXmlSpannerDesc>& stops);
+      void octaveShift(const QString& type, const int number, QList<MusicXmlSpannerDesc>& starts, QList<MusicXmlSpannerDesc>& stops);
+      void pedal(const QString& type, const int number, QList<MusicXmlSpannerDesc>& starts, QList<MusicXmlSpannerDesc>& stops);
+      void dashes(const QString& type, const int number, QList<MusicXmlSpannerDesc>& starts, QList<MusicXmlSpannerDesc>& stops);
+      void wedge(const QString& type, const int number, QList<MusicXmlSpannerDesc>& starts, QList<MusicXmlSpannerDesc>& stops);
+      QString metronome(double& r);
+      void sound();
+      void dynamics();
+      void handleRepeats(Measure* measure, const int track);
+      };
+
+} // namespace Ms
+#endif
diff --git a/mscore/importove.cpp b/mscore/importove.cpp
index 2a7718a..277a65d 100644
--- a/mscore/importove.cpp
+++ b/mscore/importove.cpp
@@ -42,6 +42,7 @@
 #include "libmscore/lyrics.h"
 #include "libmscore/measure.h"
 #include "libmscore/note.h"
+#include "libmscore/accidental.h"
 #include "libmscore/ottava.h"
 #include "libmscore/part.h"
 #include "libmscore/pedal.h"
@@ -1309,13 +1310,13 @@ void OveToMScore::convertMeasureMisc(Measure* measure, int part, int staff, int
                         textTempo += "(";
                   textTempo += durationTempoL;
                   if (tempoPtr->getLeftNoteDot())
-                        textTempo += "<sym>space</sym><sym>unicodeAugmentationDot</sym>";
+                        textTempo += "<sym>space</sym><sym>metAugmentationDot</sym>";
                   textTempo += " = ";
                   switch (tempoPtr->getRightSideType()) {
                         case 1:
                               textTempo += durationTempoR;
                               if (tempoPtr->getRightNoteDot())
-                                    textTempo += "<sym>space</sym><sym>unicodeAugmentationDot</sym>";
+                                    textTempo += "<sym>space</sym><sym>metAugmentationDot</sym>";
                               break;
                         case 2:
                               textTempo += (tempoPtr->getRightText()).toHtmlEscaped();
@@ -1334,7 +1335,7 @@ void OveToMScore::convertMeasureMisc(Measure* measure, int part, int staff, int
             if (textTempo.isEmpty()) {
                   textTempo = durationTempoL;
                   if (tempoPtr->getLeftNoteDot())
-                        textTempo += "<sym>space</sym><sym>unicodeAugmentationDot</sym>";
+                        textTempo += "<sym>space</sym><sym>metAugmentationDot</sym>";
                   textTempo += " = " + QString::number(tempoPtr->getTypeTempo());
                   t->setVisible(false);
                   }
@@ -1456,10 +1457,11 @@ void OveToMScore::convertNotes(Measure* measure, int part, int staff, int track)
                   for (j = 0; j < notes.size(); ++j) {
                         OVE::Note* notePtr = notes[j];
                         if(!isRestDefaultLine(notePtr, container->getNoteType()) && notePtr->getLine() != 0) {
-                              double yOffset = -((double)notePtr->getLine()/2.0 * score_->spatium());
+                              double yOffset = -(double)(notePtr->getLine());
                               int stepOffset = cr->staff()->staffType()->stepOffset();
                               int lineOffset = static_cast<Ms::Rest*>(cr)->computeLineOffset();
-                              yOffset -= (qreal(lineOffset + stepOffset) * .5) * score_->spatium();
+                              yOffset -= qreal(lineOffset + stepOffset);
+                              yOffset *= score_->spatium()/2.0;
                               cr->setUserYoffset(yOffset);
                               }
                         }
@@ -1522,6 +1524,7 @@ void OveToMScore::convertNotes(Measure* measure, int part, int staff, int track)
                         }
 
                   cr->setVisible(container->getShow());
+                  cr->setSmall(container->getIsCue());
                   for (j = 0; j < notes.size(); ++j) {
                         OVE::Note* oveNote = notes[j];
                         Note* note = new Note(score_);
@@ -1530,7 +1533,6 @@ void OveToMScore::convertNotes(Measure* measure, int part, int staff, int track)
                         //note->setTrack(noteTrack);
                         note->setVeloType(Note::ValueType::USER_VAL);
                         note->setVeloOffset(oveNote->getOnVelocity());
-                        //note->setUserAccidental(OveAccidental_to_Accidental(notePtr->getAccidental()));
                         note->setPitch(pitch);
 
                         // tpc
@@ -1558,6 +1560,8 @@ void OveToMScore::convertNotes(Measure* measure, int part, int staff, int track)
                               int clefMiddleOctave;
                               getMiddleToneOctave(clefType, clefMiddleTone, clefMiddleOctave);
                               int absLine = (int) clefMiddleTone + clefMiddleOctave * OCTAVE + oveNote->getLine();
+                              if ((partStaffCount == 2) && oveNote->getOffsetStaff())
+                                    absLine += 2 * (oveNote->getOffsetStaff());
                               int tone = absLine % OCTAVE;
                               int alter = accidentalToAlter(oveNote->getAccidental());
                               NoteVal nv(pitch);
@@ -1565,12 +1569,26 @@ void OveToMScore::convertNotes(Measure* measure, int part, int staff, int track)
                               note->setNval(nv, tick);
                               // note->setTpcFromPitch();
                               note->setTpc(step2tpc(tone, AccidentalVal(alter)));
-
+                              if (oveNote->getShowAccidental()) {
+                                    Ms::Accidental* a = new Accidental(score_);
+                                    bool bracket = (int)(oveNote->getAccidental()) & 0x8;
+                                    AccidentalType at = Ms::AccidentalType::NONE;
+                                    switch(alter) {
+                                          case 0: at = Ms::AccidentalType::NATURAL; break;
+                                          case 1: at = Ms::AccidentalType::SHARP; break;
+                                          case -1: at = Ms::AccidentalType::FLAT; break;
+                                          case 2: at = Ms::AccidentalType::SHARP2; break;
+                                          case -2: at = Ms::AccidentalType::FLAT2; break;
+                                          }
+                                    a->setAccidentalType(at);
+                                    a->setHasBracket(bracket);
+                                    a->setRole(Ms::AccidentalRole::USER);
+                                    note->add(a);
+                                    }
                               note->setHeadGroup(getHeadGroup(oveNote->getHeadType()));
-                              if ((oveNote->getHeadType() == OVE::NoteHeadType::Invisible) || !(oveNote->getShow()))
-                                    note->setVisible(false);
                               }
-
+                        if ((oveNote->getHeadType() == OVE::NoteHeadType::Invisible) || !(oveNote->getShow()))
+                              note->setVisible(false);
                         // tie
                         if ((int(oveNote->getTiePos()) & int(OVE::TiePos::LeftEnd)) == int(OVE::TiePos::LeftEnd)) {
                               Tie* tie = new Tie(score_);
@@ -1640,7 +1658,8 @@ void OveToMScore::convertNotes(Measure* measure, int part, int staff, int track)
                               tuplet->setTrack(noteTrack);
                               tuplet->setRatio(Fraction(container->getTuplet(), container->getSpace()));
                               tuplet->setTick(tick);
-                              measure->add(tuplet);
+                              tuplet->setParent(measure);
+                              //measure->add(tuplet);
                               }
                         }
 
@@ -1827,7 +1846,7 @@ void OveToMScore::convertArticulation(
             case OVE::ArticulationType::Pause :{
                   Breath* b = new Breath(score_);
                   b->setTrack(track);
-                  Segment* seg = measure->getSegment(Segment::Type::Breath, absTick + cr ? cr->actualTicks() : 0);
+                  Segment* seg = measure->getSegment(Segment::Type::Breath, absTick + (cr ? cr->actualTicks() : 0));
                   seg->add(b);
                   break;
                   }
@@ -1904,7 +1923,7 @@ void OveToMScore::convertArticulation(
                   }
             case OVE::ArticulationType::Fermata_Inverted :{
                   Articulation* a = new Articulation(score_);
-                  a->setUp(false);
+                  a->setDirection(MScore::Direction::DOWN);
                   a->setArticulationType(ArticulationType::Fermata);
                   cr->add(a);
                   break;
diff --git a/mscore/importxml.cpp b/mscore/importxml.cpp
index 06add05..701a835 100644
--- a/mscore/importxml.cpp
+++ b/mscore/importxml.cpp
@@ -107,6 +107,7 @@
 #include "libmscore/marker.h"
 #include "importxmlfirstpass.h"
 #include "libmscore/instrchange.h"
+#include "importmxml.h"
 
 namespace Ms {
 
@@ -118,6 +119,12 @@ namespace Ms {
 //#define DEBUG_TICK true
 
 //---------------------------------------------------------
+//   local define to switch between pull (defined true) and DOM (undefined) parser
+//---------------------------------------------------------
+
+#define PULL_PARSER true
+
+//---------------------------------------------------------
 //   MusicXMLStepAltOct2Pitch
 //---------------------------------------------------------
 
@@ -604,6 +611,7 @@ static Score::FileError doValidate(const QString& name, QIODevice* dev)
  Import MusicXML data from file \a name contained in QIODevice \a dev into score \a score.
  */
 
+#ifndef PULL_PARSER
 static Score::FileError doImport(Score* score, const QString& name, QIODevice* dev, MxmlReaderFirstPass const& pass1)
       {
       QTime t;
@@ -623,6 +631,7 @@ static Score::FileError doImport(Score* score, const QString& name, QIODevice* d
       qDebug("Parsing time elapsed: %d ms", t.elapsed());
       return Score::FileError::FILE_NO_ERROR;
       }
+#endif
 
 
 //---------------------------------------------------------
@@ -641,6 +650,9 @@ static Score::FileError doValidateAndImport(Score* score, const QString& name, Q
       if (res != Score::FileError::FILE_NO_ERROR)
             return res;
 
+#ifdef PULL_PARSER
+      importMusicXMLfromBuffer(score, name, dev);
+#else
       // pass 1
       dev->seek(0);
       MxmlReaderFirstPass pass1;
@@ -652,6 +664,7 @@ static Score::FileError doValidateAndImport(Score* score, const QString& name, Q
       // import the file
       dev->seek(0);
       res = doImport(score, name, dev, pass1);
+#endif
       qDebug("importMusicXml() return %hhd", res);
       return res;
       }
@@ -2506,7 +2519,7 @@ Measure* MusicXml::xmlMeasure(Part* part, QDomElement e, int number, Fraction me
                   Note* note = xmlNote(measure, staff, part->id(), beam, cv, e, graceNotes, alt);
                   if(note) {
                         if(note->accidental()){
-                              if(note->accidental()->accidentalType() != Accidental::Type::NONE){
+                              if(note->accidental()->accidentalType() != AccidentalType::NONE){
                                     courtAccNotes.append(note);
                                     alterList.append(alt);
                                     }
@@ -2774,14 +2787,14 @@ Measure* MusicXml::xmlMeasure(Part* part, QDomElement e, int number, Fraction me
                                int alter = alterList.value(i);
                                int ln  = absStep(nt->tpc(), nt->pitch());
                                AccidentalVal currAccVal = currAcc.accidentalVal(ln);
-                               if ((alter == -1 && currAccVal == AccidentalVal::FLAT && nt->accidental()->accidentalType() == Accidental::Type::FLAT    && !accTmp.value(ln))
-                                     || (alter ==  0 && currAccVal == AccidentalVal::NATURAL && nt->accidental()->accidentalType() == Accidental::Type::NATURAL && !accTmp.value(ln))
-                                     || (alter ==  1 && currAccVal == AccidentalVal::SHARP   && nt->accidental()->accidentalType() == Accidental::Type::SHARP   && !accTmp.value(ln))) {
-                                     nt->accidental()->setRole(Accidental::Role::USER);
+                               if ((alter == -1 && currAccVal == AccidentalVal::FLAT && nt->accidental()->accidentalType() == AccidentalType::FLAT    && !accTmp.value(ln))
+                                     || (alter ==  0 && currAccVal == AccidentalVal::NATURAL && nt->accidental()->accidentalType() == AccidentalType::NATURAL && !accTmp.value(ln))
+                                     || (alter ==  1 && currAccVal == AccidentalVal::SHARP   && nt->accidental()->accidentalType() == AccidentalType::SHARP   && !accTmp.value(ln))) {
+                                     nt->accidental()->setRole(AccidentalRole::USER);
                                      }
-                               else if  ((nt->accidental()->accidentalType() > Accidental::Type::NATURAL) && (nt->accidental()->accidentalType() < Accidental::Type::END)) { // microtonal accidental
+                               else if  ((nt->accidental()->accidentalType() > AccidentalType::NATURAL) && (nt->accidental()->accidentalType() < AccidentalType::END)) { // microtonal accidental
                                      alter = 0;
-                                     nt->accidental()->setRole(Accidental::Role::USER);
+                                     nt->accidental()->setRole(AccidentalRole::USER);
                                      accTmp.replace(ln, false);
                                      }
                                else {
@@ -3741,36 +3754,36 @@ static bool isAppr(const double v, const double ref, const double epsilon)
 //---------------------------------------------------------
 
 /**
- Convert a MusicXML alter tag into a microtonal accidental in MuseScore enum Accidental::Type.
+ Convert a MusicXML alter tag into a microtonal accidental in MuseScore enum AccidentalType.
  Works only for quarter tone, half tone, three-quarters tone and whole tone accidentals.
  */
 
-static Accidental::Type microtonalGuess(double val)
+static AccidentalType microtonalGuess(double val)
       {
       const double eps = 0.001;
       if (isAppr(val, -2, eps))
-            return Accidental::Type::FLAT2;
+            return AccidentalType::FLAT2;
       else if (isAppr(val, -1.5, eps))
-            return Accidental::Type::MIRRORED_FLAT2;
+            return AccidentalType::MIRRORED_FLAT2;
       else if (isAppr(val, -1, eps))
-            return Accidental::Type::FLAT;
+            return AccidentalType::FLAT;
       else if (isAppr(val, -0.5, eps))
-            return Accidental::Type::MIRRORED_FLAT;
+            return AccidentalType::MIRRORED_FLAT;
       else if (isAppr(val, 0, eps))
-            return Accidental::Type::NATURAL;
+            return AccidentalType::NATURAL;
       else if (isAppr(val, 0.5, eps))
-            return Accidental::Type::SHARP_SLASH;
+            return AccidentalType::SHARP_SLASH;
       else if (isAppr(val, 1, eps))
-            return Accidental::Type::SHARP;
+            return AccidentalType::SHARP;
       else if (isAppr(val, 1.5, eps))
-            return Accidental::Type::SHARP_SLASH4;
+            return AccidentalType::SHARP_SLASH4;
       else if (isAppr(val, 2, eps))
-            return Accidental::Type::SHARP2;
+            return AccidentalType::SHARP2;
       else
             qDebug("Guess for microtonal accidental corresponding to value %f failed.", val);
 
       // default
-      return Accidental::Type::NONE;
+      return AccidentalType::NONE;
       }
 
 //---------------------------------------------------------
@@ -3791,7 +3804,7 @@ static void addSymToSig(KeySigEvent& sig, const QString& step, const QString& al
             bool ok;
             double d;
             d = alter.toDouble(&ok);
-            Accidental::Type accTpAlter = ok ? microtonalGuess(d) : Accidental::Type::NONE;
+            AccidentalType accTpAlter = ok ? microtonalGuess(d) : AccidentalType::NONE;
             id = mxmlString2accSymId(accidentalType2MxmlString(accTpAlter));
             }
 
@@ -3904,10 +3917,19 @@ void MusicXml::xmlAttributes(Measure* measure, int staff, QDomElement e, KeySig*
                         if (ee.tagName() == "fifths")
                               key.setKey(Key(ee.text().toInt()));
                         else if (ee.tagName() == "mode") {
-                              if (ee.text() == "none")
+                              if (ee.text() == "none") {
                                     key.setCustom(true);
-                              else
+                                    key.setMode(KeyMode::NONE);
+                                    }
+                              else if (ee.text() == "major") {
+                                    key.setMode(KeyMode::MAJOR);
+                                    }
+                              else if (ee.text() == "minor") {
+                                    key.setMode(KeyMode::MINOR);
+                                    }
+                              else {
                                     domNotImplemented(ee);
+                                    }
                               }
                         else if (ee.tagName() == "cancel")
                               domNotImplemented(ee); // TODO
@@ -3933,7 +3955,7 @@ void MusicXml::xmlAttributes(Measure* measure, int staff, QDomElement e, KeySig*
                         for (int i = 0; i < staves; ++i) {
                               Key oldkey = score->staff(staffIdx+i)->key(tick);
                               // TODO only if different custom key ?
-                              if (oldkey != key.key() || key.custom()) {
+                              if (oldkey != key.key() || key.custom() || key.isAtonal()) {
                                     // new key differs from key in effect at this tick
                                     KeySig* keysig = new KeySig(score);
                                     keysig->setTrack((staffIdx + i) * VOICES);
@@ -3951,7 +3973,7 @@ void MusicXml::xmlAttributes(Measure* measure, int staff, QDomElement e, KeySig*
                         //
                         Key oldkey = score->staff(staffIdx)->key(tick);
                         // TODO only if different custom key ?
-                        if (oldkey != key.key() || key.custom()) {
+                        if (oldkey != key.key() || key.custom() || key.isAtonal()) {
                               // new key differs from key in effect at this tick
                               KeySig* keysig = new KeySig(score);
                               keysig->setTrack(staffIdx * VOICES);
@@ -4698,12 +4720,16 @@ static NoteHead::Group convertNotehead(QString mxmlName)
 
 static void addTextToNote(QString txt, TextStyleType style, Score* score, Note* note)
       {
-      if (!txt.isEmpty()) {
-            Text* t = new Fingering(score);
-            t->setTextStyleType(style);
-            t->setXmlText(txt);
-            note->add(t);
+      if (note) {
+            if (!txt.isEmpty()) {
+                  Text* t = new Fingering(score);
+                  t->setTextStyleType(style);
+                  t->setXmlText(txt);
+                  note->add(t);
+                  }
             }
+      else
+            qDebug("no note for text");
       }
 
 //---------------------------------------------------------
@@ -4755,6 +4781,9 @@ static void xmlFermata(ChordRest* cr, QDomElement e)
 
 /**
  Read MusicXML notations.
+ Note that some notations attach to notes only in MuseScore,
+ which means trying to attach them to a rest will crash,
+ as in that case note is 0.
  */
 
 void MusicXml::xmlNotations(Note* note, ChordRest* cr, int trk, int tick, int ticks, QDomElement e)
@@ -4978,16 +5007,26 @@ void MusicXml::xmlNotations(Note* note, ChordRest* cr, int trk, int tick, int ti
                               // and (plucked) strings (style TextStyleType::LH_GUITAR_FINGERING)
                               addTextToNote(eee.text(), TextStyleType::FINGERING, score, note);
                         else if (eee.tagName() == "fret") {
-                              if (note->staff()->isTabStaff())
-                                    note->setFret(eee.text().toInt());
+                              int fret = eee.text().toInt();
+                              if (note) {
+                                    if (note->staff()->isTabStaff())
+                                          note->setFret(fret);
+                                    }
+                              else
+                                    qDebug("no note for fret");
                               }
                         else if (eee.tagName() == "pluck")
                               addTextToNote(eee.text(), TextStyleType::RH_GUITAR_FINGERING, score, note);
                         else if (eee.tagName() == "string") {
-                              if (note->staff()->isTabStaff())
-                                    note->setString(eee.text().toInt() - 1);
+                              QString txt = eee.text();
+                              if (note) {
+                                    if (note->staff()->isTabStaff())
+                                          note->setString(txt.toInt() - 1);
+                                    else
+                                          addTextToNote(txt, TextStyleType::STRING_NUMBER, score, note);
+                                    }
                               else
-                                    addTextToNote(eee.text(), TextStyleType::STRING_NUMBER, score, note);
+                                    qDebug("no note for string");
                               }
                         else if (eee.tagName() == "pull-off")
                               domNotImplemented(eee);
@@ -5014,6 +5053,11 @@ void MusicXml::xmlNotations(Note* note, ChordRest* cr, int trk, int tick, int ti
                               delete gliss;
                               gliss = 0;
                               }
+                        else if (!note) {
+                              qDebug("no note for glissando/slide %d start", n+1);
+                              delete gliss;
+                              gliss = 0;
+                        }
                         else {
                               gliss = new Glissando(score);
                               gliss->setAnchor(Spanner::Anchor::NOTE);
@@ -5034,6 +5078,9 @@ void MusicXml::xmlNotations(Note* note, ChordRest* cr, int trk, int tick, int ti
                         if (!gliss) {
                               qDebug("glissando/slide %d stop without start", n+1);
                               }
+                        else if (!note) {
+                              qDebug("no note for glissando/slide %d stop", n+1);
+                        }
                         else {
                               spanners[gliss].second = tick + ticks;
                               gliss->setEndElement(note);
@@ -5208,16 +5255,20 @@ void MusicXml::xmlNotations(Note* note, ChordRest* cr, int trk, int tick, int ti
             }
 
       if (chordLineType != "") {
-            ChordLine* cl = new ChordLine(score);
-            if (chordLineType == "falloff")
-                  cl->setChordLineType(ChordLineType::FALL);
-            if (chordLineType == "doit")
-                  cl->setChordLineType(ChordLineType::DOIT);
-            if (chordLineType == "plop")
-                  cl->setChordLineType(ChordLineType::PLOP);
-            if (chordLineType == "scoop")
-                  cl->setChordLineType(ChordLineType::SCOOP);
-            note->chord()->add(cl);
+            if (note) {
+                  ChordLine* cl = new ChordLine(score);
+                  if (chordLineType == "falloff")
+                        cl->setChordLineType(ChordLineType::FALL);
+                  if (chordLineType == "doit")
+                        cl->setChordLineType(ChordLineType::DOIT);
+                  if (chordLineType == "plop")
+                        cl->setChordLineType(ChordLineType::PLOP);
+                  if (chordLineType == "scoop")
+                        cl->setChordLineType(ChordLineType::SCOOP);
+                  note->chord()->add(cl);
+                  }
+            else
+                  qDebug("no note for %s", qPrintable(chordLineType));
             }
 
       // more than one dynamic ???
@@ -5384,7 +5435,7 @@ Note* MusicXml::xmlNote(Measure* measure, int staff, const QString& partId, Beam
       QString step;
       int alter  = 0;
       int octave = 4;
-      Accidental::Type accidental = Accidental::Type::NONE;
+      AccidentalType accidental = AccidentalType::NONE;
       bool parentheses = false;
       bool editorial = false;
       bool cautionary = false;
@@ -5524,7 +5575,7 @@ Note* MusicXml::xmlNote(Measure* measure, int staff, const QString& partId, Beam
                                            qPrintable(altertext), ee.lineNumber(), ee.columnNumber());
                                     bool ok2;
                                     double altervalue = altertext.toDouble(&ok2);
-                                    if (ok2 && (qAbs(altervalue) < 2.0) && (accidental == Accidental::Type::NONE)) {
+                                    if (ok2 && (qAbs(altervalue) < 2.0) && (accidental == AccidentalType::NONE)) {
                                           // try to see if a microtonal accidental is needed
                                           accidental = microtonalGuess(altervalue);
                                           }
@@ -5843,12 +5894,12 @@ Note* MusicXml::xmlNote(Measure* measure, int staff, const QString& partId, Beam
             // qDebug("staff for new note: %p (staff=%d, relStaff=%d)",
             //        score->staff(staff + relStaff), staff, relStaff);
 
-            if(accidental != Accidental::Type::NONE){
+            if(accidental != AccidentalType::NONE){
                   Accidental* a = new Accidental(score);
                   a->setAccidentalType(accidental);
                    if (editorial || cautionary || parentheses) {
                           a->setHasBracket(cautionary || parentheses);
-                          a->setRole(Accidental::Role::USER);
+                          a->setRole(AccidentalRole::USER);
                           }
                     else {
                           alt = alter;
diff --git a/mscore/importxmlfirstpass.cpp b/mscore/importxmlfirstpass.cpp
index 8e92910..dfb813a 100644
--- a/mscore/importxmlfirstpass.cpp
+++ b/mscore/importxmlfirstpass.cpp
@@ -276,7 +276,7 @@ static void aaamoveTick(Fraction& tick, Fraction& maxtick,
 MusicXmlPart::MusicXmlPart(QString id, QString name)
       : id(id), name(name)
       {
-      // nothing yet
+      octaveShifts.resize(MAX_STAVES);
       }
 
 
@@ -316,6 +316,31 @@ QString MusicXmlPart::toString() const
       return res;
       }
 
+int MusicXmlPart::octaveShift(const int staff, const Fraction f) const
+      {
+      if (staff < 0 || MAX_STAVES <= staff)
+            return 0;
+      if (f < Fraction(0, 1))
+            return 0;
+      return octaveShifts[staff].octaveShift(f);            
+      }
+      
+void MusicXmlPart::addOctaveShift(const int staff, const int shift, const Fraction f)
+      {
+      if (staff < 0 || MAX_STAVES <= staff)
+            return;
+      if (f < Fraction(0, 1))
+            return;
+      octaveShifts[staff].addOctaveShift(shift, f);
+      }
+
+void MusicXmlPart::calcOctaveShifts()
+      {
+      for (int i = 0; i < MAX_STAVES; ++i) {
+            octaveShifts[i].calcOctaveShiftShifts();
+            }
+      }
+
 
 MxmlReaderFirstPass::MxmlReaderFirstPass()
       {
@@ -925,4 +950,51 @@ void MusicXmlInstrList::setInstrument(const QString instr, const Fraction f)
             //(*this)[f] = instr;
       }
 
-}
+// TODO: move to importmxml*.cpp
+      
+int MusicXmlOctaveShiftList::octaveShift(const Fraction f) const
+      {
+      if (empty())
+            return 0;
+      auto i = upper_bound(f);
+      if (i == begin())
+            return 0;
+      --i;
+      return i->second;
+      }
+
+void MusicXmlOctaveShiftList::addOctaveShift(const int shift, const Fraction f)
+      {
+      Q_ASSERT(Fraction(0, 1) <= f);
+               
+      qDebug("addOctaveShift(shift %d f %s)", shift, qPrintable(f.print()));
+      auto i = find(f);
+      if (i == end()) {
+            qDebug("addOctaveShift: not found, inserting");
+            insert({f, shift});
+            }
+      else {
+            qDebug("addOctaveShift: found %d, adding", (*this)[f]);
+            (*this)[f] += shift;
+            qDebug("addOctaveShift: res %d", (*this)[f]);
+            }
+      }
+
+      void MusicXmlOctaveShiftList::calcOctaveShiftShifts()
+      {
+      for (auto i = cbegin(); i != cend(); ++i)
+            qDebug(" [%s : %d]", qPrintable((*i).first.print()), (*i).second);
+
+      // to each MusicXmlOctaveShiftList entry, add the sum of all previous ones
+      int currentShift = 0;
+      for (auto i = begin(); i != end(); ++i) {
+            currentShift += i->second;
+            i->second = currentShift;
+      }
+
+      for (auto i = cbegin(); i != cend(); ++i)
+            qDebug(" [%s : %d]", qPrintable((*i).first.print()), (*i).second);
+
+      }
+
+}
\ No newline at end of file
diff --git a/mscore/importxmlfirstpass.h b/mscore/importxmlfirstpass.h
index eb5392f..a76cb2b 100644
--- a/mscore/importxmlfirstpass.h
+++ b/mscore/importxmlfirstpass.h
@@ -27,6 +27,14 @@ public:
       const QString instrument(const Fraction f) const;
       void setInstrument(const QString instr, const Fraction f);
 };
+      
+class MusicXmlOctaveShiftList : public std::map<Fraction, int> {
+public:
+      MusicXmlOctaveShiftList() {}
+      int octaveShift(const Fraction f) const;
+      void addOctaveShift(const int shift, const Fraction f);
+      void calcOctaveShiftShifts();
+};
 
 class MusicXmlPart {
 public:
@@ -38,11 +46,15 @@ public:
       Fraction measureDuration(int i) const;
       int nMeasures() const { return measureDurations.size(); }
       MusicXmlInstrList _instrList; // TODO: make private
+      int octaveShift(const int staff, const Fraction f) const;
+      void addOctaveShift(const int staff, const int shift, const Fraction f);
+      void calcOctaveShifts();
 private:
       QString id;
       QString name;
       QStringList measureNumbers;             // MusicXML measure number attribute
       QList<Fraction> measureDurations;       // duration in fraction for every measure
+      QVector<MusicXmlOctaveShiftList> octaveShifts; // octave shift list for every staff
       };
 
 class MxmlReaderFirstPass {
diff --git a/mscore/inspector/inspector.cpp b/mscore/inspector/inspector.cpp
index c54bfbe..252b4a7 100644
--- a/mscore/inspector/inspector.cpp
+++ b/mscore/inspector/inspector.cpp
@@ -24,6 +24,7 @@
 #include "inspectorMarker.h"
 #include "inspectorJump.h"
 #include "inspectorGlissando.h"
+#include "inspectorArpeggio.h"
 #include "inspectorNote.h"
 #include "inspectorAmbitus.h"
 #include "inspectorFret.h"
@@ -149,10 +150,12 @@ void Inspector::setElements(const QList<Element*>& l)
             else if (_element) {
                   switch(_element->type()) {
                         case Element::Type::FBOX:
-                        case Element::Type::TBOX:
                         case Element::Type::VBOX:
                               ie = new InspectorVBox(this);
                               break;
+                        case Element::Type::TBOX:
+                              ie = new InspectorTBox(this);
+                              break;
                         case Element::Type::HBOX:
                               ie = new InspectorHBox(this);
                               break;
@@ -242,6 +245,12 @@ void Inspector::setElements(const QList<Element*>& l)
                         case Element::Type::LAYOUT_BREAK:
                               ie = new InspectorBreak(this);
                               break;
+                        case Element::Type::BEND:
+                              ie = new InspectorBend(this);
+                              break;
+                        case Element::Type::ARPEGGIO:
+                              ie = new InspectorArpeggio(this);
+                              break;
                         default:
                               if (_element->isText())
                                     ie = new InspectorText(this);
@@ -360,6 +369,26 @@ InspectorVBox::InspectorVBox(QWidget* parent)
       }
 
 //---------------------------------------------------------
+//   InspectorTBox
+//---------------------------------------------------------
+
+InspectorTBox::InspectorTBox(QWidget* parent)
+   : InspectorBase(parent)
+      {
+      tb.setupUi(addWidget());
+
+      iList = {
+            { P_ID::TOP_GAP,       0, 0, tb.topGap,       tb.resetTopGap       },
+            { P_ID::BOTTOM_GAP,    0, 0, tb.bottomGap,    tb.resetBottomGap    },
+            { P_ID::LEFT_MARGIN,   0, 0, tb.leftMargin,   tb.resetLeftMargin   },
+            { P_ID::RIGHT_MARGIN,  0, 0, tb.rightMargin,  tb.resetRightMargin  },
+            { P_ID::TOP_MARGIN,    0, 0, tb.topMargin,    tb.resetTopMargin    },
+            { P_ID::BOTTOM_MARGIN, 0, 0, tb.bottomMargin, tb.resetBottomMargin },
+            };
+      mapSignals();
+      }
+
+//---------------------------------------------------------
 //   InspectorHBox
 //---------------------------------------------------------
 
@@ -394,7 +423,9 @@ InspectorArticulation::InspectorArticulation(QWidget* parent)
             { P_ID::USER_OFF,            1, 0, e.offsetY,      e.resetY          },
             { P_ID::ARTICULATION_ANCHOR, 0, 0, ar.anchor,      ar.resetAnchor    },
             { P_ID::DIRECTION,           0, 0, ar.direction,   ar.resetDirection },
-            { P_ID::TIME_STRETCH,        0, 0, ar.timeStretch, ar.resetTimeStretch }
+            { P_ID::TIME_STRETCH,        0, 0, ar.timeStretch, ar.resetTimeStretch },
+            { P_ID::ORNAMENT_STYLE,      0, 0, ar.ornamentStyle, ar.resetOrnamentStyle },
+            { P_ID::PLAY,                0, 0, ar.playArticulation, ar.resetPlayArticulation}
             };
       mapSignals();
       }
@@ -605,6 +636,27 @@ InspectorAccidental::InspectorAccidental(QWidget* parent)
       }
 
 //---------------------------------------------------------
+//   InspectorBend
+//---------------------------------------------------------
+
+InspectorBend::InspectorBend(QWidget* parent)
+   : InspectorBase(parent)
+      {
+      e.setupUi(addWidget());
+      g.setupUi(addWidget());
+
+      iList = {
+            { P_ID::COLOR,        0, 0, e.color,       e.resetColor       },
+            { P_ID::VISIBLE,      0, 0, e.visible,     e.resetVisible     },
+            { P_ID::USER_OFF,     0, 0, e.offsetX,     e.resetX           },
+            { P_ID::USER_OFF,     1, 0, e.offsetY,     e.resetY           },
+            { P_ID::PLAY,         0, 0, g.playBend,    g.resetPlayBend    }
+            };
+
+      mapSignals();
+      }
+
+//---------------------------------------------------------
 //   InspectorClef
 //---------------------------------------------------------
 
@@ -708,7 +760,7 @@ void InspectorTempoText::setElement()
       int n = ts.size();
       for (int i = 0; i < n; ++i) {
             if (!(ts.at(i).hidden() & TextStyleHidden::IN_LISTS) )
-                  t.style->addItem(qApp->translate("TextStyle",ts.at(i).name().toLatin1().data()), i);
+                  t.style->addItem(qApp->translate("TextStyle",ts.at(i).name().toUtf8().data()), i);
             }
       t.style->blockSignals(false);
       InspectorBase::setElement();
@@ -720,7 +772,10 @@ void InspectorTempoText::setElement()
 
 void InspectorTempoText::postInit()
       {
-      tt.tempo->setDisabled(tt.followText->isChecked());
+      bool followText = tt.followText->isChecked();
+      //tt.resetFollowText->setDisabled(followText);
+      tt.tempo->setDisabled(followText);
+      tt.resetTempo->setDisabled(followText);
       }
 
 //---------------------------------------------------------
@@ -761,7 +816,7 @@ void InspectorDynamic::setElement()
       int n = ts.size();
       for (int i = 0; i < n; ++i) {
             if (!(ts.at(i).hidden() & TextStyleHidden::IN_LISTS) )
-                  t.style->addItem(qApp->translate("TextStyle",ts.at(i).name().toLatin1().data()), i);
+                  t.style->addItem(qApp->translate("TextStyle",ts.at(i).name().toUtf8().data()), i);
             }
       t.style->blockSignals(false);
       InspectorBase::setElement();
diff --git a/mscore/inspector/inspector.h b/mscore/inspector/inspector.h
index 5b05b66..1c51600 100644
--- a/mscore/inspector/inspector.h
+++ b/mscore/inspector/inspector.h
@@ -16,8 +16,10 @@
 
 #include "inspectorBase.h"
 #include "ui_inspector_element.h"
+#include "ui_inspector_bend.h"
 #include "ui_inspector_break.h"
 #include "ui_inspector_vbox.h"
+#include "ui_inspector_tbox.h"
 #include "ui_inspector_hbox.h"
 #include "ui_inspector_articulation.h"
 #include "ui_inspector_spacer.h"
@@ -89,6 +91,18 @@ class InspectorVBox : public InspectorBase {
       };
 
 //---------------------------------------------------------
+//   InspectorTBox
+//---------------------------------------------------------
+
+class InspectorTBox : public InspectorBase {
+      Q_OBJECT
+      Ui::InspectorTBox tb;
+
+   public:
+      InspectorTBox(QWidget* parent);
+      };
+
+//---------------------------------------------------------
 //   InspectorHBox
 //---------------------------------------------------------
 
@@ -229,6 +243,20 @@ class InspectorAccidental : public InspectorBase {
       };
 
 //---------------------------------------------------------
+//   InspectorBend
+//---------------------------------------------------------
+
+class InspectorBend : public InspectorBase {
+      Q_OBJECT
+
+      UiInspectorElement e;
+      Ui::InspectorBend g;
+
+   public:
+      InspectorBend(QWidget* parent);
+      };
+
+//---------------------------------------------------------
 //   InspectorTempoText
 //---------------------------------------------------------
 
diff --git a/mscore/inspector/inspectorGlissando.cpp b/mscore/inspector/inspectorArpeggio.cpp
similarity index 75%
copy from mscore/inspector/inspectorGlissando.cpp
copy to mscore/inspector/inspectorArpeggio.cpp
index 476d5f4..d81f8b1 100644
--- a/mscore/inspector/inspectorGlissando.cpp
+++ b/mscore/inspector/inspectorArpeggio.cpp
@@ -11,18 +11,18 @@
 //  the file LICENSE.GPL
 //=============================================================================
 
-#include "inspectorGlissando.h"
+#include "inspectorArpeggio.h"
 #include "musescore.h"
-#include "libmscore/glissando.h"
+#include "libmscore/arpeggio.h"
 #include "libmscore/score.h"
 
 namespace Ms {
 
 //---------------------------------------------------------
-//   InspectorGlissando
+//   InspectorArpeggio
 //---------------------------------------------------------
 
-InspectorGlissando::InspectorGlissando(QWidget* parent)
+InspectorArpeggio::InspectorArpeggio(QWidget* parent)
    : InspectorBase(parent)
       {
       e.setupUi(addWidget());
@@ -33,9 +33,8 @@ InspectorGlissando::InspectorGlissando(QWidget* parent)
             { P_ID::VISIBLE,         0, false, e.visible,  e.resetVisible  },
             { P_ID::USER_OFF,        0, false, e.offsetX,  e.resetX        },
             { P_ID::USER_OFF,        1, false, e.offsetY,  e.resetY        },
-            { P_ID::GLISS_TYPE,      0, false, g.type,     g.resetType     },
-            { P_ID::GLISS_TEXT,      0, false, g.text,     g.resetText     },
-            { P_ID::GLISS_SHOW_TEXT, 0, false, g.showText, g.resetShowText }
+
+            { P_ID::PLAY,            0, 0,     g.playArpeggio, g.resetPlayArpeggio}
             };
 
       mapSignals();
diff --git a/mscore/inspector/inspectorArpeggio.h b/mscore/inspector/inspectorArpeggio.h
new file mode 100644
index 0000000..1560ba6
--- /dev/null
+++ b/mscore/inspector/inspectorArpeggio.h
@@ -0,0 +1,39 @@
+//=============================================================================
+//  MuseScore
+//  Music Composition & Notation
+//  $Id:$
+//
+//  Copyright (C) 2013 Werner Schweer and others
+//
+//  This program is free software; you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License version 2
+//  as published by the Free Software Foundation and appearing in
+//  the file LICENSE.GPL
+//=============================================================================
+
+#ifndef __INSPECTOR_ARPEGGIO_H__
+#define __INSPECTOR_ARPEGGIO_H__
+
+#include "inspector.h"
+#include "ui_inspector_arpeggio.h"
+#include "libmscore/property.h"
+
+namespace Ms {
+
+//---------------------------------------------------------
+//   InspectorArpeggio
+//---------------------------------------------------------
+
+class InspectorArpeggio : public InspectorBase {
+      Q_OBJECT
+
+      UiInspectorElement   e;
+      Ui::InspectorArpeggio g;
+
+   public:
+      InspectorArpeggio(QWidget* parent);
+      };
+
+
+} // namespace Ms
+#endif
diff --git a/mscore/inspector/inspectorBase.cpp b/mscore/inspector/inspectorBase.cpp
index bbe5aa0..f26d6d3 100644
--- a/mscore/inspector/inspectorBase.cpp
+++ b/mscore/inspector/inspectorBase.cpp
@@ -408,32 +408,7 @@ void InspectorBase::resetClicked(int i)
             return;
       QWidget* w   = ii.w;
       w->blockSignals(true);
-
-      if (qobject_cast<QDoubleSpinBox*>(w))
-            static_cast<QDoubleSpinBox*>(w)->setValue(def.toDouble());
-      else if (qobject_cast<QSpinBox*>(w))
-            static_cast<QSpinBox*>(w)->setValue(def.toInt());
-      else if (qobject_cast<QComboBox*>(w)) {
-            int ival = def.toInt();
-            QComboBox* cb = qobject_cast<QComboBox*>(w);
-            if (cb->itemData(0).isValid()) {
-                  for (int i = 0; i < cb->count(); ++i) {
-                        if (cb->itemData(i).toInt() == ival) {
-                              ival = i;
-                              break;
-                              }
-                        }
-                  }
-            cb->setCurrentIndex(ival);
-            }
-      else if (qobject_cast<QCheckBox*>(w))
-            static_cast<QCheckBox*>(w)->setChecked(def.toBool());
-      else if (qobject_cast<QLineEdit*>(w))
-            static_cast<QLineEdit*>(w)->setText(def.toString());
-      else if (qobject_cast<Awl::ColorLabel*>(w))
-            static_cast<Awl::ColorLabel*>(w)->setColor(def.value<QColor>());
-      else
-            qFatal("not supported widget %s", w->metaObject()->className());
+      setValue(ii, def);
       w->blockSignals(false);
 
       valueChanged(i, true);
diff --git a/mscore/inspector/inspectorGlissando.cpp b/mscore/inspector/inspectorGlissando.cpp
index 476d5f4..37bbd59 100644
--- a/mscore/inspector/inspectorGlissando.cpp
+++ b/mscore/inspector/inspectorGlissando.cpp
@@ -35,7 +35,9 @@ InspectorGlissando::InspectorGlissando(QWidget* parent)
             { P_ID::USER_OFF,        1, false, e.offsetY,  e.resetY        },
             { P_ID::GLISS_TYPE,      0, false, g.type,     g.resetType     },
             { P_ID::GLISS_TEXT,      0, false, g.text,     g.resetText     },
-            { P_ID::GLISS_SHOW_TEXT, 0, false, g.showText, g.resetShowText }
+            { P_ID::GLISS_SHOW_TEXT, 0, false, g.showText, g.resetShowText },
+            { P_ID::GLISSANDO_STYLE, 0, false, g.glissandoStyle, g.resetGlissandoStyle},
+            { P_ID::PLAY,            0, 0,     g.playGlissando, g.resetPlayGlissando}
             };
 
       mapSignals();
diff --git a/mscore/inspector/inspectorJump.cpp b/mscore/inspector/inspectorJump.cpp
index 4948567..96d1f83 100644
--- a/mscore/inspector/inspectorJump.cpp
+++ b/mscore/inspector/inspectorJump.cpp
@@ -57,7 +57,7 @@ void InspectorJump::setElement()
       int n = ts.size();
       for (int i = 0; i < n; ++i) {
             if (!(ts.at(i).hidden() & TextStyleHidden::IN_LISTS) )
-                  t.style->addItem(qApp->translate("TextStyle",ts.at(i).name().toLatin1().data()), i);
+                  t.style->addItem(qApp->translate("TextStyle",ts.at(i).name().toUtf8().data()), i);
             }
       t.style->blockSignals(false);
       InspectorBase::setElement();
diff --git a/mscore/inspector/inspectorMarker.cpp b/mscore/inspector/inspectorMarker.cpp
index 66e11ad..f34e867 100644
--- a/mscore/inspector/inspectorMarker.cpp
+++ b/mscore/inspector/inspectorMarker.cpp
@@ -56,7 +56,7 @@ void InspectorMarker::setElement()
       int n = ts.size();
       for (int i = 0; i < n; ++i) {
             if (!(ts.at(i).hidden() & TextStyleHidden::IN_LISTS) )
-                  t.style->addItem(qApp->translate("TextStyle",ts.at(i).name().toLatin1().data()), i);
+                  t.style->addItem(qApp->translate("TextStyle",ts.at(i).name().toUtf8().data()), i);
             }
       t.style->blockSignals(false);
       InspectorBase::setElement();
diff --git a/mscore/inspector/inspectorNote.cpp b/mscore/inspector/inspectorNote.cpp
index 1884562..870fcc9 100644
--- a/mscore/inspector/inspectorNote.cpp
+++ b/mscore/inspector/inspectorNote.cpp
@@ -173,8 +173,8 @@ void InspectorNote::setElement()
       bool nograce = !note->chord()->isGrace();
       s.leadingSpace->setEnabled(nograce);
       s.trailingSpace->setEnabled(nograce);
-      s.resetTrailingSpace->setEnabled(nograce);
-      s.resetLeadingSpace->setEnabled(nograce);
+      s.resetTrailingSpace->setEnabled(nograce && s.trailingSpace->value());
+      s.resetLeadingSpace->setEnabled(nograce && s.leadingSpace->value());
       }
 
 //---------------------------------------------------------
diff --git a/mscore/inspector/inspectorText.cpp b/mscore/inspector/inspectorText.cpp
index db78051..771364e 100644
--- a/mscore/inspector/inspectorText.cpp
+++ b/mscore/inspector/inspectorText.cpp
@@ -51,7 +51,7 @@ void InspectorText::setElement()
       int n = ts.size();
       for (int i = 0; i < n; ++i) {
             if (!(ts.at(i).hidden() & TextStyleHidden::IN_LISTS) )
-                  t.style->addItem(qApp->translate("TextStyle",ts.at(i).name().toLatin1().data()), i);
+                  t.style->addItem(qApp->translate("TextStyle",ts.at(i).name().toUtf8().data()), i);
             }
       t.style->blockSignals(false);
       InspectorBase::setElement();
diff --git a/mscore/inspector/inspectorTrill.cpp b/mscore/inspector/inspectorTrill.cpp
index 60c25d0..086e1cf 100644
--- a/mscore/inspector/inspectorTrill.cpp
+++ b/mscore/inspector/inspectorTrill.cpp
@@ -39,7 +39,9 @@ InspectorTrill::InspectorTrill(QWidget* parent)
             { P_ID::LINE_COLOR,  0, 0, l.lineColor,  l.resetLineColor  },
             { P_ID::LINE_WIDTH,  0, 0, l.lineWidth,  l.resetLineWidth  },
             { P_ID::LINE_STYLE,  0, 0, l.lineStyle,  l.resetLineStyle  },
-            { P_ID::TRILL_TYPE,  0, 0, t.trillType,  t.resetTrillType  }
+            { P_ID::TRILL_TYPE,  0, 0, t.trillType,  t.resetTrillType  },
+            { P_ID::ORNAMENT_STYLE,      0, 0, t.ornamentStyle, t.resetOrnamentStyle },
+            { P_ID::PLAY,   0, 0, t.playArticulation, t.resetPlayArticulation}
             };
 
       mapSignals();
diff --git a/mscore/inspector/inspector_trill.ui b/mscore/inspector/inspector_arpeggio.ui
similarity index 53%
copy from mscore/inspector/inspector_trill.ui
copy to mscore/inspector/inspector_arpeggio.ui
index b2144c3..7c03974 100644
--- a/mscore/inspector/inspector_trill.ui
+++ b/mscore/inspector/inspector_arpeggio.ui
@@ -1,20 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <ui version="4.0">
- <class>InspectorTrill</class>
- <widget class="QWidget" name="InspectorTrill">
+ <class>InspectorArpeggio</class>
+ <widget class="QWidget" name="InspectorArpeggio">
   <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>287</width>
-    <height>68</height>
+    <width>270</width>
+    <height>151</height>
    </rect>
   </property>
   <property name="windowTitle">
    <string/>
   </property>
   <property name="accessibleName">
-   <string>Trill Inspector</string>
+   <string>Glissando Inspector</string>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
    <property name="spacing">
@@ -40,8 +40,11 @@
        <bold>true</bold>
       </font>
      </property>
+     <property name="accessibleName">
+      <string/>
+     </property>
      <property name="text">
-      <string>Trill</string>
+      <string>Arpeggio</string>
      </property>
      <property name="alignment">
       <set>Qt::AlignCenter</set>
@@ -50,6 +53,12 @@
    </item>
    <item>
     <widget class="QFrame" name="frame">
+     <property name="minimumSize">
+      <size>
+       <width>0</width>
+       <height>6</height>
+      </size>
+     </property>
      <property name="frameShape">
       <enum>QFrame::HLine</enum>
      </property>
@@ -63,73 +72,32 @@
    </item>
    <item>
     <layout class="QGridLayout" name="gridLayout">
-     <property name="spacing">
-      <number>0</number>
-     </property>
      <property name="leftMargin">
-      <number>0</number>
-     </property>
-     <property name="topMargin">
-      <number>0</number>
+      <number>3</number>
      </property>
      <property name="rightMargin">
-      <number>0</number>
+      <number>3</number>
+     </property>
+     <property name="horizontalSpacing">
+      <number>3</number>
      </property>
-     <property name="bottomMargin">
+     <property name="verticalSpacing">
       <number>0</number>
      </property>
      <item row="0" column="0">
-      <widget class="QLabel" name="label">
-       <property name="sizePolicy">
-        <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
-         <horstretch>0</horstretch>
-         <verstretch>0</verstretch>
-        </sizepolicy>
-       </property>
+      <widget class="QCheckBox" name="playArpeggio">
        <property name="text">
-        <string>Type</string>
+        <string>Play</string>
        </property>
-      </widget>
-     </item>
-     <item row="0" column="1" colspan="2">
-      <widget class="QComboBox" name="trillType">
-       <property name="accessibleName">
-        <string>Type</string>
+       <property name="checked">
+        <bool>false</bool>
        </property>
-       <item>
-        <property name="text">
-         <string>Trill Line</string>
-        </property>
-       </item>
-       <item>
-        <property name="text">
-         <string>Up Prall</string>
-        </property>
-       </item>
-       <item>
-        <property name="text">
-         <string>Down Prall</string>
-        </property>
-       </item>
-       <item>
-        <property name="text">
-         <string>Prall Prall</string>
-        </property>
-       </item>
-       <item>
-        <property name="text">
-         <string>Wavy Line</string>
-        </property>
-       </item>
       </widget>
      </item>
-     <item row="0" column="3">
-      <widget class="QToolButton" name="resetTrillType">
-       <property name="toolTip">
-        <string>Reset value</string>
-       </property>
+     <item row="0" column="1">
+      <widget class="QToolButton" name="resetPlayArpeggio">
        <property name="accessibleName">
-        <string>Reset Trill type</string>
+        <string>Reset Play value</string>
        </property>
        <property name="text">
         <string notr="true">...</string>
diff --git a/mscore/inspector/inspector_articulation.ui b/mscore/inspector/inspector_articulation.ui
index c17c621..34d45cb 100644
--- a/mscore/inspector/inspector_articulation.ui
+++ b/mscore/inspector/inspector_articulation.ui
@@ -6,7 +6,7 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>289</width>
+    <width>290</width>
     <height>168</height>
    </rect>
   </property>
@@ -226,6 +226,72 @@
        </property>
       </widget>
      </item>
+     <item row="3" column="0">
+      <widget class="QLabel" name="label_3">
+       <property name="sizePolicy">
+        <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+         <horstretch>0</horstretch>
+         <verstretch>0</verstretch>
+        </sizepolicy>
+       </property>
+       <property name="text">
+        <string>Ornament Style</string>
+       </property>
+      </widget>
+     </item>
+     <item row="3" column="1">
+      <widget class="QComboBox" name="ornamentStyle">
+       <property name="sizePolicy">
+        <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
+         <horstretch>0</horstretch>
+         <verstretch>0</verstretch>
+        </sizepolicy>
+       </property>
+       <property name="accessibleName">
+        <string>Direction</string>
+       </property>
+       <item>
+        <property name="text">
+         <string>Default</string>
+        </property>
+       </item>
+       <item>
+        <property name="text">
+         <string>Baroque</string>
+        </property>
+       </item>
+      </widget>
+     </item>
+     <item row="3" column="2">
+      <widget class="QToolButton" name="resetOrnamentStyle">
+       <property name="accessibleName">
+        <string>Reset Ornament Type value</string>
+       </property>
+       <property name="text">
+        <string notr="true">...</string>
+       </property>
+      </widget>
+     </item>
+     <item row="4" column="0">
+      <widget class="QCheckBox" name="playArticulation">
+       <property name="text">
+        <string>Play</string>
+       </property>
+       <property name="checked">
+        <bool>false</bool>
+       </property>
+      </widget>
+     </item>
+     <item row="4" column="2">
+      <widget class="QToolButton" name="resetPlayArticulation">
+       <property name="accessibleName">
+        <string>Reset Play value</string>
+       </property>
+       <property name="text">
+        <string notr="true">...</string>
+       </property>
+      </widget>
+     </item>
     </layout>
    </item>
   </layout>
@@ -237,9 +303,11 @@
   <tabstop>resetAnchor</tabstop>
   <tabstop>timeStretch</tabstop>
   <tabstop>resetTimeStretch</tabstop>
+  <tabstop>ornamentStyle</tabstop>
+  <tabstop>resetOrnamentStyle</tabstop>
+  <tabstop>playArticulation</tabstop>
+  <tabstop>resetPlayArticulation</tabstop>
  </tabstops>
- <resources>
-  <include location="../musescore.qrc"/>
- </resources>
+ <resources/>
  <connections/>
 </ui>
diff --git a/mscore/inspector/inspector_trill.ui b/mscore/inspector/inspector_bend.ui
similarity index 53%
copy from mscore/inspector/inspector_trill.ui
copy to mscore/inspector/inspector_bend.ui
index b2144c3..972be59 100644
--- a/mscore/inspector/inspector_trill.ui
+++ b/mscore/inspector/inspector_bend.ui
@@ -1,20 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <ui version="4.0">
- <class>InspectorTrill</class>
- <widget class="QWidget" name="InspectorTrill">
+ <class>InspectorBend</class>
+ <widget class="QWidget" name="InspectorBend">
   <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>287</width>
-    <height>68</height>
+    <width>270</width>
+    <height>58</height>
    </rect>
   </property>
   <property name="windowTitle">
    <string/>
   </property>
   <property name="accessibleName">
-   <string>Trill Inspector</string>
+   <string>Glissando Inspector</string>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
    <property name="spacing">
@@ -40,8 +40,11 @@
        <bold>true</bold>
       </font>
      </property>
+     <property name="accessibleName">
+      <string/>
+     </property>
      <property name="text">
-      <string>Trill</string>
+      <string>Bend</string>
      </property>
      <property name="alignment">
       <set>Qt::AlignCenter</set>
@@ -50,6 +53,12 @@
    </item>
    <item>
     <widget class="QFrame" name="frame">
+     <property name="minimumSize">
+      <size>
+       <width>0</width>
+       <height>6</height>
+      </size>
+     </property>
      <property name="frameShape">
       <enum>QFrame::HLine</enum>
      </property>
@@ -63,73 +72,32 @@
    </item>
    <item>
     <layout class="QGridLayout" name="gridLayout">
-     <property name="spacing">
-      <number>0</number>
-     </property>
      <property name="leftMargin">
-      <number>0</number>
-     </property>
-     <property name="topMargin">
-      <number>0</number>
+      <number>3</number>
      </property>
      <property name="rightMargin">
-      <number>0</number>
+      <number>3</number>
+     </property>
+     <property name="horizontalSpacing">
+      <number>3</number>
      </property>
-     <property name="bottomMargin">
+     <property name="verticalSpacing">
       <number>0</number>
      </property>
      <item row="0" column="0">
-      <widget class="QLabel" name="label">
-       <property name="sizePolicy">
-        <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
-         <horstretch>0</horstretch>
-         <verstretch>0</verstretch>
-        </sizepolicy>
-       </property>
+      <widget class="QCheckBox" name="playBend">
        <property name="text">
-        <string>Type</string>
+        <string>Play</string>
        </property>
-      </widget>
-     </item>
-     <item row="0" column="1" colspan="2">
-      <widget class="QComboBox" name="trillType">
-       <property name="accessibleName">
-        <string>Type</string>
+       <property name="checked">
+        <bool>false</bool>
        </property>
-       <item>
-        <property name="text">
-         <string>Trill Line</string>
-        </property>
-       </item>
-       <item>
-        <property name="text">
-         <string>Up Prall</string>
-        </property>
-       </item>
-       <item>
-        <property name="text">
-         <string>Down Prall</string>
-        </property>
-       </item>
-       <item>
-        <property name="text">
-         <string>Prall Prall</string>
-        </property>
-       </item>
-       <item>
-        <property name="text">
-         <string>Wavy Line</string>
-        </property>
-       </item>
       </widget>
      </item>
-     <item row="0" column="3">
-      <widget class="QToolButton" name="resetTrillType">
-       <property name="toolTip">
-        <string>Reset value</string>
-       </property>
+     <item row="0" column="1">
+      <widget class="QToolButton" name="resetPlayBend">
        <property name="accessibleName">
-        <string>Reset Trill type</string>
+        <string>Reset Play value</string>
        </property>
        <property name="text">
         <string notr="true">...</string>
diff --git a/mscore/inspector/inspector_glissando.ui b/mscore/inspector/inspector_glissando.ui
index e58cbee..097f090 100644
--- a/mscore/inspector/inspector_glissando.ui
+++ b/mscore/inspector/inspector_glissando.ui
@@ -92,7 +92,7 @@
       </widget>
      </item>
      <item row="0" column="0">
-      <widget class="QLabel" name="label_2">
+      <widget class="QLabel" name="label_1">
        <property name="text">
         <string>Type</string>
        </property>
@@ -118,6 +118,50 @@
        </property>
       </widget>
      </item>
+     <item row="3" column="0">
+      <widget class="QLabel" name="label_2">
+       <property name="text">
+        <string>Style</string>
+       </property>
+      </widget>
+     </item>
+     <item row="3" column="2">
+      <widget class="QToolButton" name="resetGlissandoStyle">
+       <property name="accessibleName">
+        <string>Reset Style value</string>
+       </property>
+       <property name="text">
+        <string notr="true">...</string>
+       </property>
+      </widget>
+     </item>
+     <item row="3" column="1">
+      <widget class="QComboBox" name="glissandoStyle">
+       <property name="accessibleName">
+        <string>Play Style</string>
+       </property>
+       <item>
+        <property name="text">
+         <string>Chromatic</string>
+        </property>
+       </item>
+       <item>
+        <property name="text">
+         <string>White keys</string>
+        </property>
+       </item>
+       <item>
+        <property name="text">
+         <string>Black keys</string>
+        </property>
+       </item>
+       <item>
+        <property name="text">
+         <string>Diatonic</string>
+        </property>
+       </item>
+      </widget>
+     </item>
      <item row="0" column="1">
       <widget class="QComboBox" name="type">
        <property name="accessibleName">
@@ -165,6 +209,26 @@
        </property>
       </widget>
      </item>
+     <item row="4" column="0">
+      <widget class="QCheckBox" name="playGlissando">
+       <property name="text">
+        <string>Play</string>
+       </property>
+       <property name="checked">
+        <bool>false</bool>
+       </property>
+      </widget>
+     </item>
+     <item row="4" column="2">
+      <widget class="QToolButton" name="resetPlayGlissando">
+       <property name="accessibleName">
+        <string>Reset Play value</string>
+       </property>
+       <property name="text">
+        <string notr="true">...</string>
+       </property>
+      </widget>
+     </item>
     </layout>
    </item>
   </layout>
diff --git a/mscore/inspector/inspector_tbox.ui b/mscore/inspector/inspector_tbox.ui
new file mode 100644
index 0000000..d65ae9e
--- /dev/null
+++ b/mscore/inspector/inspector_tbox.ui
@@ -0,0 +1,372 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>InspectorTBox</class>
+ <widget class="QWidget" name="InspectorTBox">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>258</width>
+    <height>247</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string/>
+  </property>
+  <property name="whatsThis">
+   <string>Text Frame Inspector</string>
+  </property>
+  <layout class="QVBoxLayout" name="verticalLayout">
+   <property name="spacing">
+    <number>0</number>
+   </property>
+   <property name="leftMargin">
+    <number>0</number>
+   </property>
+   <property name="topMargin">
+    <number>0</number>
+   </property>
+   <property name="rightMargin">
+    <number>0</number>
+   </property>
+   <property name="bottomMargin">
+    <number>0</number>
+   </property>
+   <item>
+    <widget class="QLabel" name="elementName">
+     <property name="font">
+      <font>
+       <weight>75</weight>
+       <bold>true</bold>
+      </font>
+     </property>
+     <property name="text">
+      <string>Text Frame</string>
+     </property>
+     <property name="alignment">
+      <set>Qt::AlignCenter</set>
+     </property>
+    </widget>
+   </item>
+   <item>
+    <widget class="QFrame" name="frame">
+     <property name="frameShape">
+      <enum>QFrame::HLine</enum>
+     </property>
+     <property name="frameShadow">
+      <enum>QFrame::Raised</enum>
+     </property>
+     <property name="lineWidth">
+      <number>2</number>
+     </property>
+    </widget>
+   </item>
+   <item>
+    <layout class="QGridLayout" name="gridLayout">
+     <property name="leftMargin">
+      <number>0</number>
+     </property>
+     <property name="topMargin">
+      <number>0</number>
+     </property>
+     <property name="rightMargin">
+      <number>0</number>
+     </property>
+     <property name="bottomMargin">
+      <number>0</number>
+     </property>
+     <property name="spacing">
+      <number>0</number>
+     </property>
+     <item row="1" column="0">
+      <widget class="QLabel" name="label_3">
+       <property name="text">
+        <string>Bottom gap</string>
+       </property>
+      </widget>
+     </item>
+     <item row="5" column="0">
+      <widget class="QLabel" name="label_6">
+       <property name="text">
+        <string>Top margin</string>
+       </property>
+      </widget>
+     </item>
+     <item row="0" column="2">
+      <widget class="QToolButton" name="resetTopGap">
+       <property name="toolTip">
+        <string>Reset value</string>
+       </property>
+       <property name="whatsThis">
+        <string/>
+       </property>
+       <property name="accessibleName">
+        <string>Reset Top gap value</string>
+       </property>
+       <property name="text">
+        <string notr="true">...</string>
+       </property>
+      </widget>
+     </item>
+     <item row="1" column="2">
+      <widget class="QToolButton" name="resetBottomGap">
+       <property name="toolTip">
+        <string>Reset value</string>
+       </property>
+       <property name="accessibleName">
+        <string>Reset Bottom gap value</string>
+       </property>
+       <property name="text">
+        <string notr="true">...</string>
+       </property>
+      </widget>
+     </item>
+     <item row="3" column="1">
+      <widget class="QDoubleSpinBox" name="leftMargin">
+       <property name="sizePolicy">
+        <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+         <horstretch>0</horstretch>
+         <verstretch>0</verstretch>
+        </sizepolicy>
+       </property>
+       <property name="accessibleName">
+        <string>Left margin</string>
+       </property>
+       <property name="suffix">
+        <string>mm</string>
+       </property>
+       <property name="minimum">
+        <double>-10000.000000000000000</double>
+       </property>
+       <property name="maximum">
+        <double>10000.000000000000000</double>
+       </property>
+      </widget>
+     </item>
+     <item row="6" column="0">
+      <widget class="QLabel" name="label_7">
+       <property name="text">
+        <string>Bottom margin</string>
+       </property>
+      </widget>
+     </item>
+     <item row="4" column="2">
+      <widget class="QToolButton" name="resetRightMargin">
+       <property name="toolTip">
+        <string>Reset value</string>
+       </property>
+       <property name="accessibleName">
+        <string>Reset Right margin value</string>
+       </property>
+       <property name="text">
+        <string notr="true">...</string>
+       </property>
+      </widget>
+     </item>
+     <item row="4" column="0">
+      <widget class="QLabel" name="label_5">
+       <property name="text">
+        <string>Right margin</string>
+       </property>
+      </widget>
+     </item>
+     <item row="4" column="1">
+      <widget class="QDoubleSpinBox" name="rightMargin">
+       <property name="sizePolicy">
+        <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+         <horstretch>0</horstretch>
+         <verstretch>0</verstretch>
+        </sizepolicy>
+       </property>
+       <property name="accessibleName">
+        <string>Right margin</string>
+       </property>
+       <property name="suffix">
+        <string>mm</string>
+       </property>
+       <property name="minimum">
+        <double>-10000.000000000000000</double>
+       </property>
+       <property name="maximum">
+        <double>10000.000000000000000</double>
+       </property>
+      </widget>
+     </item>
+     <item row="6" column="2">
+      <widget class="QToolButton" name="resetBottomMargin">
+       <property name="toolTip">
+        <string>Reset value</string>
+       </property>
+       <property name="accessibleName">
+        <string>Reset Bottom margin value</string>
+       </property>
+       <property name="text">
+        <string notr="true">...</string>
+       </property>
+      </widget>
+     </item>
+     <item row="6" column="1">
+      <widget class="QDoubleSpinBox" name="bottomMargin">
+       <property name="sizePolicy">
+        <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+         <horstretch>0</horstretch>
+         <verstretch>0</verstretch>
+        </sizepolicy>
+       </property>
+       <property name="accessibleName">
+        <string>Bottom margin</string>
+       </property>
+       <property name="suffix">
+        <string>mm</string>
+       </property>
+       <property name="minimum">
+        <double>-10000.000000000000000</double>
+       </property>
+       <property name="maximum">
+        <double>10000.000000000000000</double>
+       </property>
+      </widget>
+     </item>
+     <item row="2" column="0" colspan="3">
+      <widget class="Line" name="line">
+       <property name="orientation">
+        <enum>Qt::Horizontal</enum>
+       </property>
+      </widget>
+     </item>
+     <item row="5" column="2">
+      <widget class="QToolButton" name="resetTopMargin">
+       <property name="toolTip">
+        <string>Reset value</string>
+       </property>
+       <property name="accessibleName">
+        <string>Reset Top margin value</string>
+       </property>
+       <property name="text">
+        <string notr="true">...</string>
+       </property>
+      </widget>
+     </item>
+     <item row="3" column="2">
+      <widget class="QToolButton" name="resetLeftMargin">
+       <property name="toolTip">
+        <string>Reset value</string>
+       </property>
+       <property name="accessibleName">
+        <string>Reset Left margin value</string>
+       </property>
+       <property name="text">
+        <string notr="true">...</string>
+       </property>
+      </widget>
+     </item>
+     <item row="0" column="1">
+      <widget class="QDoubleSpinBox" name="topGap">
+       <property name="sizePolicy">
+        <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+         <horstretch>0</horstretch>
+         <verstretch>0</verstretch>
+        </sizepolicy>
+       </property>
+       <property name="whatsThis">
+        <string/>
+       </property>
+       <property name="accessibleName">
+        <string>Top gap</string>
+       </property>
+       <property name="suffix">
+        <string extracomment="spatium unit">sp</string>
+       </property>
+       <property name="minimum">
+        <double>-10000.000000000000000</double>
+       </property>
+       <property name="maximum">
+        <double>10000.000000000000000</double>
+       </property>
+       <property name="singleStep">
+        <double>0.500000000000000</double>
+       </property>
+      </widget>
+     </item>
+     <item row="0" column="0">
+      <widget class="QLabel" name="label_2">
+       <property name="text">
+        <string>Top gap</string>
+       </property>
+      </widget>
+     </item>
+     <item row="1" column="1">
+      <widget class="QDoubleSpinBox" name="bottomGap">
+       <property name="sizePolicy">
+        <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+         <horstretch>0</horstretch>
+         <verstretch>0</verstretch>
+        </sizepolicy>
+       </property>
+       <property name="accessibleName">
+        <string>Bottom gap</string>
+       </property>
+       <property name="suffix">
+        <string extracomment="spatium unit">sp</string>
+       </property>
+       <property name="minimum">
+        <double>-10000.000000000000000</double>
+       </property>
+       <property name="maximum">
+        <double>10000.000000000000000</double>
+       </property>
+       <property name="singleStep">
+        <double>0.500000000000000</double>
+       </property>
+      </widget>
+     </item>
+     <item row="3" column="0">
+      <widget class="QLabel" name="label_4">
+       <property name="text">
+        <string>Left margin</string>
+       </property>
+      </widget>
+     </item>
+     <item row="5" column="1">
+      <widget class="QDoubleSpinBox" name="topMargin">
+       <property name="sizePolicy">
+        <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+         <horstretch>0</horstretch>
+         <verstretch>0</verstretch>
+        </sizepolicy>
+       </property>
+       <property name="accessibleName">
+        <string>Top margin</string>
+       </property>
+       <property name="suffix">
+        <string>mm</string>
+       </property>
+       <property name="minimum">
+        <double>-10000.000000000000000</double>
+       </property>
+       <property name="maximum">
+        <double>10000.000000000000000</double>
+       </property>
+      </widget>
+     </item>
+    </layout>
+   </item>
+  </layout>
+ </widget>
+ <tabstops>
+  <tabstop>topGap</tabstop>
+  <tabstop>resetTopGap</tabstop>
+  <tabstop>bottomGap</tabstop>
+  <tabstop>resetBottomGap</tabstop>
+  <tabstop>leftMargin</tabstop>
+  <tabstop>resetLeftMargin</tabstop>
+  <tabstop>rightMargin</tabstop>
+  <tabstop>resetRightMargin</tabstop>
+  <tabstop>topMargin</tabstop>
+  <tabstop>resetTopMargin</tabstop>
+  <tabstop>bottomMargin</tabstop>
+  <tabstop>resetBottomMargin</tabstop>
+ </tabstops>
+ <resources/>
+ <connections/>
+</ui>
diff --git a/mscore/inspector/inspector_trill.ui b/mscore/inspector/inspector_trill.ui
index b2144c3..ef8b687 100644
--- a/mscore/inspector/inspector_trill.ui
+++ b/mscore/inspector/inspector_trill.ui
@@ -116,11 +116,6 @@
          <string>Prall Prall</string>
         </property>
        </item>
-       <item>
-        <property name="text">
-         <string>Wavy Line</string>
-        </property>
-       </item>
       </widget>
      </item>
      <item row="0" column="3">
@@ -136,6 +131,72 @@
        </property>
       </widget>
      </item>
+     <item row="1" column="0">
+      <widget class="QLabel" name="label_3">
+       <property name="sizePolicy">
+        <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+         <horstretch>0</horstretch>
+         <verstretch>0</verstretch>
+        </sizepolicy>
+       </property>
+       <property name="text">
+        <string>Ornament Style</string>
+       </property>
+      </widget>
+     </item>
+     <item row="1" column="1">
+      <widget class="QComboBox" name="ornamentStyle">
+       <property name="sizePolicy">
+        <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
+         <horstretch>0</horstretch>
+         <verstretch>0</verstretch>
+        </sizepolicy>
+       </property>
+       <property name="accessibleName">
+        <string>Direction</string>
+       </property>
+       <item>
+        <property name="text">
+         <string>Default</string>
+        </property>
+       </item>
+       <item>
+        <property name="text">
+         <string>Baroque</string>
+        </property>
+       </item>
+      </widget>
+     </item>
+     <item row="1" column="2">
+      <widget class="QToolButton" name="resetOrnamentStyle">
+       <property name="accessibleName">
+        <string>Reset Ornament Type value</string>
+       </property>
+       <property name="text">
+        <string notr="true">...</string>
+       </property>
+      </widget>
+     </item>
+     <item row="2" column="0">
+      <widget class="QCheckBox" name="playArticulation">
+       <property name="text">
+        <string>Play</string>
+       </property>
+       <property name="checked">
+        <bool>false</bool>
+       </property>
+      </widget>
+     </item>
+     <item row="2" column="2">
+      <widget class="QToolButton" name="resetPlayArticulation">
+       <property name="accessibleName">
+        <string>Reset Play value</string>
+       </property>
+       <property name="text">
+        <string notr="true">...</string>
+       </property>
+      </widget>
+     </item>
     </layout>
    </item>
   </layout>
diff --git a/mscore/instrdialog.cpp b/mscore/instrdialog.cpp
index 955b9b8..868a083 100644
--- a/mscore/instrdialog.cpp
+++ b/mscore/instrdialog.cpp
@@ -22,6 +22,7 @@
 #include "musescore.h"
 #include "scoreview.h"
 #include "seq.h"
+#include "libmscore/barline.h"
 #include "libmscore/clef.h"
 #include "libmscore/excerpt.h"
 #include "libmscore/instrtemplate.h"
@@ -389,7 +390,7 @@ void MuseScore::editInstrList()
       QList<int> dl;
       int idx2 = 0;
       bool sort = false;
-      for(Staff* staff : dst) {
+      for (Staff* staff : dst) {
             int idx = rootScore->staves().indexOf(staff);
             if (idx == -1)
                   qDebug("staff in dialog(%p) not found in score", staff);
@@ -409,10 +410,62 @@ void MuseScore::editInstrList()
       //
 
       int n = rootScore->nstaves();
+      int curSpan = 0;
       for (int i = 0; i < n; ++i) {
             Staff* staff = rootScore->staff(i);
-            if (staff->barLineSpan() > (n - i))
-                  rootScore->undoChangeBarLineSpan(staff, n - i, 0, (rootScore->staff(n-1)->lines()-1) * 2);
+            int span = staff->barLineSpan();
+            int setSpan = -1;
+
+            // determine if we need to update barline span
+            if (curSpan == 0) {
+                  // no current span; this staff must start a new one
+                  if (span == 0) {
+                        // no span; this staff must have been within a span
+                        // update it to a span of 1
+                        setSpan = 1;
+                        }
+                  else if (span > (n - i)) {
+                        // span too big; staves must have been removed
+                        // reduce span to last staff
+                        setSpan = n - i;
+                        }
+                  else if (span > 1 && staff->barLineTo() > 0) {
+                        // TODO: check if span is still valid
+                        // (true if the last staff is the same as it was before this edit)
+                        // the code here fixes https://musescore.org/en/node/41786
+                        // but by forcing an update,
+                        // we lose custom modifications to staff barLineTo
+                        // at least this happens only for span > 1, and not for Mensurstrich (barLineTo<=0)
+                        setSpan = span;   // force update to pick up new barLineTo value
+                        }
+                  else {
+                        // this staff starts a span
+                        curSpan = span;
+                        }
+                  }
+            else if (span && staff->barLineTo() > 0) {
+                  // within a current span; staff must have span of 0
+                  // except for Mensurstrich (barLineTo<=0)
+                  // for consistency with Barline::endEdit,
+                  // don't special case 1-line staves
+                  rootScore->undoChangeBarLineSpan(staff, 0, 0, (staff->lines() - 1) * 2);
+                  }
+
+            // update barline span if necessary
+            if (setSpan > 0) {
+                  // this staff starts a span
+                  curSpan = setSpan;
+                  // calculate spanFrom and spanTo values
+                  int spanFrom = staff->lines() == 1 ? BARLINE_SPAN_1LINESTAFF_FROM : 0;
+                  int linesTo = rootScore->staff(i + setSpan - 1)->lines();
+                  int spanTo = linesTo == 1 ? BARLINE_SPAN_1LINESTAFF_TO : (linesTo - 1) * 2;
+                  rootScore->undoChangeBarLineSpan(staff, setSpan, spanFrom, spanTo);
+                  }
+
+            // count off one from barline span
+            --curSpan;
+
+            // update brackets
             QList<BracketItem> brackets = staff->brackets();
             int nn = brackets.size();
             for (int ii = 0; ii < nn; ++ii) {
@@ -420,6 +473,7 @@ void MuseScore::editInstrList()
                         rootScore->undoChangeBracketSpan(staff, ii, n - i);
                   }
             }
+
       //
       // there should be at least one measure
       //
diff --git a/mscore/jackaudio.cpp b/mscore/jackaudio.cpp
index d48519d..8f16899 100644
--- a/mscore/jackaudio.cpp
+++ b/mscore/jackaudio.cpp
@@ -301,6 +301,10 @@ static int graph_callback(void*)
       return 0;
       }
 
+//---------------------------------------------------------
+//   timebase
+//---------------------------------------------------------
+
 void JackAudio::timebase(jack_transport_state_t state, jack_nframes_t /*nframes*/, jack_position_t *pos, int /*new_pos*/, void *arg)
       {
       JackAudio* audio = (JackAudio*)arg;
@@ -639,6 +643,7 @@ void JackAudio::midiRead()
       }
 
 //---------------------------------------------------------
+//   handleTimeSigTempoChanged
 //   Called after tempo or time signature
 //   changed while playback
 //---------------------------------------------------------
diff --git a/mscore/loginmanager.cpp b/mscore/loginmanager.cpp
index 7829152..7974d72 100644
--- a/mscore/loginmanager.cpp
+++ b/mscore/loginmanager.cpp
@@ -103,10 +103,11 @@ void LoginManager::onAuthorizedRequestDone()
             QMessageBox::critical(0, tr("Network error"), tr("Please check your Internet connection"));
       else if (_oauthManager->lastError() == KQOAuthManager::ContentOperationNotPermittedError)
             QMessageBox::critical(0, tr("Please upgrade"), tr("Your MuseScore version is too old to use this feature.<br/> <a href=\"%1\">Please upgrade first</a>.").arg("http://musescore.org"));
-      else if (_oauthManager->lastError() == KQOAuthManager::RequestUnauthorized){
-            logout();
-            mscore->showLoginDialog();
-            }
+      // don't do that, it will logout user if score is private and already known
+      //else if (_oauthManager->lastError() == KQOAuthManager::RequestUnauthorized){
+      //      logout();
+      //      mscore->showLoginDialog();
+      //      }
       }
 
 /*------- TRY LOGIN ROUTINES ----------------------------*/
diff --git a/mscore/menus.cpp b/mscore/menus.cpp
index 1c88818..74b263b 100644
--- a/mscore/menus.cpp
+++ b/mscore/menus.cpp
@@ -253,7 +253,9 @@ Palette* MuseScore::newKeySigPalette(bool basic)
       if (!basic) {
             // atonal key signature
             KeySigEvent nke;
+            nke.setKey(Key::C);
             nke.setCustom(true);
+            nke.setMode(KeyMode::NONE);
             KeySig* nk = new KeySig(gscore);
             nk->setKeySigEvent(nke);
             sp->append(nk, qApp->translate("MuseScore", keyNames[15]));
@@ -273,24 +275,24 @@ Palette* MuseScore::newAccidentalsPalette(bool basic)
       sp->setDrawGrid(true);
 
       if (basic) {
-            static Accidental::Type types[] = {
-                  Accidental::Type::NONE,
-                  Accidental::Type::SHARP,
-                  Accidental::Type::FLAT,
-                  Accidental::Type::SHARP2,
-                  Accidental::Type::FLAT2,
-                  Accidental::Type::NATURAL
+            static AccidentalType types[] = {
+                  AccidentalType::NONE,
+                  AccidentalType::SHARP,
+                  AccidentalType::FLAT,
+                  AccidentalType::SHARP2,
+                  AccidentalType::FLAT2,
+                  AccidentalType::NATURAL
                   };
             for (auto i : types) {
                   Accidental* s = new Accidental(gscore);
-                  s->setAccidentalType(Accidental::Type(i));
+                  s->setAccidentalType(AccidentalType(i));
                   sp->append(s, qApp->translate("accidental", s->subtypeUserName()));
                   }
             }
       else {
-            for (int i = int(Accidental::Type::SHARP); i < int(Accidental::Type::END); ++i) {
+            for (int i = int(AccidentalType::SHARP); i < int(AccidentalType::END); ++i) {
                   Accidental* s = new Accidental(gscore);
-                  s->setAccidentalType(Accidental::Type(i));
+                  s->setAccidentalType(AccidentalType(i));
                   if (s->symbol() != SymId::noSym)
                         sp->append(s, qApp->translate("accidental", s->subtypeUserName()));
                   else
@@ -699,7 +701,7 @@ Palette* MuseScore::newClefsPalette(bool basic)
             ClefType::G,   ClefType::F, ClefType::C3, ClefType::C4
             };
       static std::vector<ClefType> clefs2  {
-            ClefType::G,   ClefType::G1,    ClefType::G2,     ClefType::G3,  ClefType::G4,
+            ClefType::G,   ClefType::G1,    ClefType::G2,     ClefType::G3,  ClefType::G5,  ClefType::G4,
             ClefType::C1,  ClefType::C2,    ClefType::C3,     ClefType::C4,  ClefType::C5,
             ClefType::F,   ClefType::F_8VA, ClefType::F_15MA, ClefType::F8,  ClefType::F15,
             ClefType::F_B, ClefType::F_C,   ClefType::PERC,   ClefType::TAB, ClefType::TAB2
@@ -868,8 +870,20 @@ Palette* MuseScore::newLinesPalette(bool basic)
             pedal = new Pedal(gscore);
             pedal->setLen(w);
             pedal->setBeginText("<sym>keyboardPedalPed</sym>");
+            pedal->setContinueText("(<sym>keyboardPedalPed</sym>)");
             pedal->setEndHook(true);
             sp->append(pedal, QT_TRANSLATE_NOOP("Palette", "Pedal"));
+
+            pedal = new Pedal(gscore);
+            pedal->setLen(w);
+            pedal->setBeginText("<sym>keyboardPedalPed</sym>");
+            pedal->setContinueText("(<sym>keyboardPedalPed</sym>)");
+            pedal->setEndText("<sym>keyboardPedalUp</sym>");
+            Align align = pedal->endTextElement()->textStyle().align();
+            align = (align & AlignmentFlags::VMASK) | AlignmentFlags::HCENTER;
+            pedal->endTextElement()->textStyle().setAlign(align);
+            pedal->setLineVisible(false);
+            sp->append(pedal, QT_TRANSLATE_NOOP("Palette", "Pedal"));
             }
 
       pedal = new Pedal(gscore);
@@ -964,12 +978,12 @@ Palette* MuseScore::newTempoPalette()
       sp->setDrawGrid(true);
 
       static const TempoPattern tp[] = {
-            TempoPattern("<sym>unicodeNoteHalfUp</sym> = 80", 80.0/30.0),                        // 1/2
-            TempoPattern("<sym>unicodeNoteQuarterUp</sym> = 80", 80.0/60.0),                     // 1/4
-            TempoPattern("<sym>unicodeNote8thUp</sym> = 80", 80.0/120.0),                    // 1/8
-            TempoPattern("<sym>unicodeNoteHalfUp</sym><sym>space</sym><sym>unicodeAugmentationDot</sym> = 80", 120/30.0),       // dotted 1/2
-            TempoPattern("<sym>unicodeNoteQuarterUp</sym><sym>space</sym><sym>unicodeAugmentationDot</sym> = 80", 120/60.0),    // dotted 1/4
-            TempoPattern("<sym>unicodeNote8thUp</sym><sym>space</sym><sym>unicodeAugmentationDot</sym> = 80", 120/120.0),   // dotted 1/8
+            TempoPattern("<sym>metNoteHalfUp</sym> = 80", 80.0/30.0),                    // 1/2
+            TempoPattern("<sym>metNoteQuarterUp</sym> = 80", 80.0/60.0),                 // 1/4
+            TempoPattern("<sym>metNote8thUp</sym> = 80", 80.0/120.0),                    // 1/8
+            TempoPattern("<sym>metNoteHalfUp</sym><sym>space</sym><sym>metAugmentationDot</sym> = 80", 120/30.0),       // dotted 1/2
+            TempoPattern("<sym>metNoteQuarterUp</sym><sym>space</sym><sym>metAugmentationDot</sym> = 80", 120/60.0),    // dotted 1/4
+            TempoPattern("<sym>metNote8thUp</sym><sym>space</sym><sym>metAugmentationDot</sym> = 80", 120/120.0),       // dotted 1/8
             };
       for (unsigned i = 0; i < sizeof(tp)/sizeof(*tp); ++i) {
             TempoText* tt = new TempoText(gscore);
@@ -1210,7 +1224,7 @@ QMenu* MuseScore::genCreateMenu(QWidget* parent)
       frames->addAction(getAction("insert-hbox"));
       frames->addAction(getAction("insert-vbox"));
       frames->addAction(getAction("insert-textframe"));
-      if(enableExperimental)
+      if (enableExperimental)
             frames->addAction(getAction("insert-fretframe"));
       frames->addSeparator();
       frames->addAction(getAction("append-hbox"));
@@ -1257,40 +1271,40 @@ void MuseScore::addTempo()
 
       SigEvent event = cs->sigmap()->timesig(cr->tick());
       Fraction f = event.nominal();
-      QString text("<sym>unicodeNoteQuarterUp</sym> = 80");
+      QString text("<sym>metNoteQuarterUp</sym> = 80");
       switch (f.denominator()) {
             case 1:
-                  text = "<sym>unicodeNoteWhole</sym> = 80";
+                  text = "<sym>metNoteWhole</sym> = 80";
                   break;
             case 2:
-                  text = "<sym>unicodeNoteHalfUp</sym> = 80";
+                  text = "<sym>metNoteHalfUp</sym> = 80";
                   break;
             case 4:
-                  text = "<sym>unicodeNoteQuarterUp</sym> = 80";
+                  text = "<sym>metNoteQuarterUp</sym> = 80";
                   break;
             case 8:
                   if(f.numerator() % 3 == 0)
-                        text = "<sym>unicodeNoteQuarterUp</sym><sym>space</sym><sym>unicodeAugmentationDot</sym> = 80";
+                        text = "<sym>metNoteQuarterUp</sym><sym>space</sym><sym>metAugmentationDot</sym> = 80";
                   else
-                        text = "<sym>unicodeNote8thUp</sym> = 80";
+                        text = "<sym>metNote8thUp</sym> = 80";
                   break;
             case 16:
                   if(f.numerator() % 3 == 0)
-                        text = text = "<sym>unicodeNote8thUp</sym><sym>unicodeAugmentationDot</sym> = 80";
+                        text = "<sym>metNote8thUp</sym><sym>space</sym><sym>metAugmentationDot</sym> = 80";
                   else
-                        text = "<sym>unicodeNote16thUp</sym> = 80";
+                        text = "<sym>metNote16thUp</sym> = 80";
                   break;
             case 32:
                   if(f.numerator() % 3 == 0)
-                        text = "<sym>unicodeNote16thUp</sym><sym>unicodeAugmentationDot</sym> = 80";
+                        text = "<sym>metNote16thUp</sym><sym>space</sym><sym>metAugmentationDot</sym> = 80";
                   else
-                        text = "<sym>unicodeNote32thUp</sym> = 80";
+                        text = "<sym>metNote32ndUp</sym> = 80";
                   break;
             case 64:
                   if(f.numerator() % 3 == 0)
-                        text = "<sym>unicodeNote32thUp</sym><sym>unicodeAugmentationDot</sym> = 80";
+                        text = "<sym>metNote32ndUp</sym><sym>space</sym><sym>metAugmentationDot</sym> = 80";
                   else
-                        text = "<sym>unicodeNote64thUp</sym> = 80";
+                        text = "<sym>metNote64thUp</sym> = 80";
                   break;
             default:
                   break;
diff --git a/mscore/mixer.cpp b/mscore/mixer.cpp
index 6129f87..6c86245 100644
--- a/mscore/mixer.cpp
+++ b/mscore/mixer.cpp
@@ -59,8 +59,12 @@ void PartEdit::setPart(Part* p, Channel* a)
       channel = a;
       part    = p;
       QString s = part->partName();
-      if (!a->name.isEmpty() && a->name != "normal")
-            s += "-" + a->name;
+      if (!a->name.isEmpty()) {
+            if (a->name != "normal") {
+                  s += "-";
+                  s += qApp->translate("InstrumentsXML", a->name.toUtf8().data());
+                  }
+            }
       partName->setText(s);
       mute->setChecked(a->mute);
       solo->setChecked(a->solo);
diff --git a/mscore/musescore.cpp b/mscore/musescore.cpp
index 195056d..52261db 100644
--- a/mscore/musescore.cpp
+++ b/mscore/musescore.cpp
@@ -89,6 +89,7 @@
 #include "libmscore/chordlist.h"
 #include "libmscore/volta.h"
 #include "libmscore/lasso.h"
+#include "libmscore/excerpt.h"
 
 #include "driver.h"
 
@@ -115,7 +116,6 @@ extern Ms::Synthesizer* createZerberus();
 namespace Ms {
 
 MuseScore* mscore;
-MuseScoreCore* mscoreCore;
 MasterSynthesizer* synti;
 
 bool enableExperimental = false;
@@ -132,6 +132,7 @@ double converterDpi = 0;
 double guiScaling = 1.0;
 int trimMargin = -1;
 bool noWebView = false;
+bool exportScoreParts = false;
 
 QString mscoreGlobalShare;
 
@@ -219,12 +220,11 @@ QString getSharePath()
 
 static void printVersion(const char* prog)
       {
-#ifdef MSCORE_UNSTABLE
-      fprintf(stderr, "%s: Music Score Editor\nUnstable Prerelease for Version %s; Build %s\n",
+      if (MuseScore::unstable())
+            fprintf(stderr, "%s: Music Score Editor\nUnstable Prerelease for Version %s; Build %s\n",
          prog, VERSION, qPrintable(revision));
-#else
-      fprintf(stderr, "%s: Music Score Editor; Version %s; Build %s\n", prog, VERSION, qPrintable(revision));
-#endif
+      else
+            fprintf(stderr, "%s: Music Score Editor; Version %s; Build %s\n", prog, VERSION, qPrintable(revision));
       }
 
 static const int RECENT_LIST_SIZE = 20;
@@ -558,7 +558,9 @@ MuseScore::MuseScore()
       transportTools->addWidget(_playButton);
       transportTools->addWidget(new AccessibleToolButton(transportTools, getAction("loop")));
       transportTools->addSeparator();
-      transportTools->addWidget(new AccessibleToolButton(transportTools, getAction("repeat")));
+      QAction* repeatAction = getAction("repeat");
+      repeatAction->setChecked(MScore::playRepeats);
+      transportTools->addWidget(new AccessibleToolButton(transportTools, repeatAction));
       transportTools->addWidget(new AccessibleToolButton(transportTools, getAction("pan")));
       transportTools->addWidget(new AccessibleToolButton(transportTools, metronomeAction));
 
@@ -954,6 +956,7 @@ MuseScore::MuseScore()
 #endif
 
       menuHelp->addSeparator();
+      menuHelp->addAction(tr("Ask for Help"), this, SLOT(askForHelp()));
       menuHelp->addAction(tr("Report a Bug"), this, SLOT(reportBug()));
 
       menuHelp->addSeparator();
@@ -1242,48 +1245,6 @@ void MuseScore::updateTabNames()
       }
 
 //---------------------------------------------------------
-//   usage
-//---------------------------------------------------------
-
-static void usage()
-      {
-      printVersion("MuseScore");
-#if defined(Q_OS_WIN)
-      fprintf(stderr, "Usage: MuseScore.exe flags scorefile\n"
-#else
-      fprintf(stderr, "Usage: mscore flags scorefile\n"
-#endif
-        "   Flags:\n"
-        "   -v        print version\n"
-        "   -d        debug mode\n"
-        "   -L        layout debug\n"
-        "   -s        no internal synthesizer\n"
-        "   -m        no midi\n"
-        "   -a driver use audio driver: jack alsa pulse portaudio\n"
-        "   -n        start with new score\n"
-        "   -I        dump midi input\n"
-        "   -O        dump midi output\n"
-        "   -o file   export to 'file'; format depends on file extension\n"
-        "   -r dpi    set output resolution for image export\n"
-        "   -T margin trim exported image with specified margin (in pixels)\n"
-        "   -x factor set scaling factor for GUI elements\n"
-        "   -S style  load style file\n"
-        "   -p name   execute named plugin\n"
-        "   -P        save template mode, no page size\n"
-        "   -F        use factory settings\n"
-        "   -R        revert to default preferences\n"
-        "   -i        load icons from INSTALLPATH/icons\n"
-        "   -e        enable experimental features\n"
-        "   -c dir    override config/settings folder\n"
-        "   -t        set testMode flag for all files\n"
-        "   -M file   specify MIDI import operations file\n"
-        "   -w        no web view in start center\n"
-        );
-
-      exit(-1);
-      }
-
-//---------------------------------------------------------
 //   loadScoreList
 //    read list of "Recent Scores"
 //---------------------------------------------------------
@@ -2034,11 +1995,16 @@ static void loadScores(const QStringList& argv)
                               Score* score = mscore->readScore(preferences.startScore);
                               if (preferences.startScore.startsWith(":/") && score) {
                                     score->setPageFormat(*MScore::defaultStyle()->pageFormat());
+                                    score->doLayout();
                                     score->setCreated(true);
                                     }
                               if (score == 0) {
                                     score = mscore->readScore(":/data/My_First_Score.mscz");
-                                    score->setCreated(true);
+                                    if (score) {
+                                          score->setPageFormat(*MScore::defaultStyle()->pageFormat());
+                                          score->doLayout();
+                                          score->setCreated(true);
+                                          }
                                     }
                               if (score)
                                     currentScoreView = mscore->appendScore(score);
@@ -2080,6 +2046,7 @@ static bool processNonGui()
             bool res = false;
             if (mscore->loadPlugin(pn)){
                   Score* cs = mscore->currentScore();
+                  LayoutMode layoutMode = cs->layoutMode();
                   if (!styleFile.isEmpty()) {
                         QFile f(styleFile);
                         if (f.open(QIODevice::ReadOnly))
@@ -2088,18 +2055,26 @@ static bool processNonGui()
                   cs->startCmd();
                   cs->setLayoutAll(true);
                   cs->endCmd();
+                  if (layoutMode != LayoutMode::PAGE) {
+                        cs->startCmd();
+                        cs->undo(new ChangeLayoutMode(cs, LayoutMode::PAGE));
+                        cs->doLayout();
+                        }
                   mscore->pluginTriggered(0);
+                  if (layoutMode != cs->layoutMode())
+                        cs->endCmd(true);       // rollback
                   res = true;
                   }
             if (!converterMode)
                   return res;
             }
-
+      bool rv = true;
       if (converterMode) {
             QString fn(outFileName);
             Score* cs = mscore->currentScore();
             if (!cs)
                   return false;
+            LayoutMode layoutMode = cs->layoutMode();
             if (!styleFile.isEmpty()) {
                   QFile f(styleFile);
                   if (f.open(QIODevice::ReadOnly)) {
@@ -2116,7 +2091,7 @@ static bool processNonGui()
                         }
                   return true;
                   }
-            if (fn.endsWith(".mscz")) {
+            else if (fn.endsWith(".mscz")) {
                   QFileInfo fi(fn);
                   try {
                         cs->saveCompressedFile(fi, false);
@@ -2126,36 +2101,105 @@ static bool processNonGui()
                         }
                   return true;
                   }
-            if (fn.endsWith(".xml"))
-                  return saveXml(cs, fn);
-            if (fn.endsWith(".mxl"))
-                  return saveMxl(cs, fn);
-            if (fn.endsWith(".mid"))
+            else if (fn.endsWith(".xml")) {
+                  if (layoutMode != LayoutMode::PAGE) {
+                        cs->startCmd();
+                        cs->undo(new ChangeLayoutMode(cs, LayoutMode::PAGE));
+                        cs->doLayout();
+                        }
+                  rv = saveXml(cs, fn);
+                  }
+            else if (fn.endsWith(".mxl")) {
+                  if (layoutMode != LayoutMode::PAGE) {
+                        cs->startCmd();
+                        cs->undo(new ChangeLayoutMode(cs, LayoutMode::PAGE));
+                        cs->doLayout();
+                        }
+                  rv = saveMxl(cs, fn);
+                  }
+            else if (fn.endsWith(".mid"))
                   return mscore->saveMidi(cs, fn);
-            if (fn.endsWith(".pdf"))
-                  return mscore->savePdf(fn);
-            if (fn.endsWith(".png"))
-                  return mscore->savePng(cs, fn);
-            if (fn.endsWith(".svg"))
-                  return mscore->saveSvg(cs, fn);
+            else if (fn.endsWith(".pdf")) {
+                  if (!exportScoreParts) {
+                        if (layoutMode != LayoutMode::PAGE) {
+                              cs->startCmd();
+                              cs->undo(new ChangeLayoutMode(cs, LayoutMode::PAGE));
+                              cs->doLayout();
+                        }
+                        rv = mscore->savePdf(fn);
+                        }
+                  else {
+                        if (cs->excerpts().size() == 0) {
+                              QList<Excerpt*> exceprts = Excerpt::createAllExcerpt(cs);
+
+                              foreach(Excerpt* e, exceprts) {
+                                    Score* nscore = new Score(e->oscore());
+                                    e->setPartScore(nscore);
+                                    nscore->setName(e->title()); // needed before AddExcerpt
+                                    nscore->style()->set(StyleIdx::createMultiMeasureRests, true);
+                                    cs->startCmd();
+                                    cs->undo(new AddExcerpt(nscore));
+                                    createExcerpt(e);
+                                    cs->endCmd();
+                                    }
+                              }
+                        QList<Score*> scores;
+                        scores.append(cs);
+                        foreach(Excerpt* e, cs->excerpts())
+                              scores.append(e->partScore());
+                        return mscore->savePdf(scores, fn);
+                        }
+                  }
+            else if (fn.endsWith(".png")) {
+                  if (layoutMode != LayoutMode::PAGE) {
+                        cs->startCmd();
+                        cs->undo(new ChangeLayoutMode(cs, LayoutMode::PAGE));
+                        cs->doLayout();
+                        }
+                  rv = mscore->savePng(cs, fn);
+                  }
+            else if (fn.endsWith(".svg")) {
+                  if (layoutMode != LayoutMode::PAGE) {
+                        cs->startCmd();
+                        cs->undo(new ChangeLayoutMode(cs, LayoutMode::PAGE));
+                        cs->doLayout();
+                        }
+                  rv = mscore->saveSvg(cs, fn);
+                  }
 #ifdef HAS_AUDIOFILE
-            if (fn.endsWith(".wav") || fn.endsWith(".ogg") || fn.endsWith(".flac"))
+            else if (fn.endsWith(".wav") || fn.endsWith(".ogg") || fn.endsWith(".flac"))
                   return mscore->saveAudio(cs, fn);
 #endif
-            if (fn.endsWith(".mp3"))
+#ifdef USE_LAME
+            else if (fn.endsWith(".mp3"))
                   return mscore->saveMp3(cs, fn);
-            if (fn.endsWith(".spos"))
-                  return savePositions(cs, fn, true);
-            if (fn.endsWith(".mpos"))
-                  return savePositions(cs, fn, false);
-            if (fn.endsWith(".mlog"))
+#endif
+            else if (fn.endsWith(".spos")) {
+                  if (layoutMode != LayoutMode::PAGE) {
+                        cs->startCmd();
+                        cs->undo(new ChangeLayoutMode(cs, LayoutMode::PAGE));
+                        cs->doLayout();
+                        }
+                  rv = savePositions(cs, fn, true);
+                  }
+            else if (fn.endsWith(".mpos")) {
+                  if (layoutMode != LayoutMode::PAGE) {
+                        cs->startCmd();
+                        cs->undo(new ChangeLayoutMode(cs, LayoutMode::PAGE));
+                        cs->doLayout();
+                        }
+                  rv = savePositions(cs, fn, false);
+                  }
+            else if (fn.endsWith(".mlog"))
                   return cs->sanityCheck(fn);
             else {
                   qDebug("dont know how to convert to %s", qPrintable(outFileName));
                   return false;
                   }
+            if (layoutMode != cs->layoutMode())
+                  cs->endCmd(true);       // rollback
             }
-      return true;
+      return rv;
       }
 
 //---------------------------------------------------------
@@ -2506,7 +2550,7 @@ void MuseScore::changeState(ScoreState val)
             getAction("join-measure")->setEnabled(cs && cs->rootScore()->excerpts().size() == 0);
       if (getAction("split-measure")->isEnabled())
             getAction("split-measure")->setEnabled(cs && cs->rootScore()->excerpts().size() == 0);
-      
+
       //getAction("split-measure")->setEnabled(cs->rootScore()->excerpts().size() == 0);
 
       // disabling top level menu entries does not
@@ -2665,6 +2709,7 @@ void MuseScore::writeSettings()
             settings.setValue(QString("score-%1").arg(idx), scoreList[idx]->fileInfo()->absoluteFilePath());
 
       settings.setValue("lastSaveCopyDirectory", lastSaveCopyDirectory);
+      settings.setValue("lastSaveCopyFormat", lastSaveCopyFormat);
       settings.setValue("lastSaveDirectory", lastSaveDirectory);
 
       settings.beginGroup("MainWindow");
@@ -2825,8 +2870,17 @@ void MuseScore::play(Element* e, int pitch) const
 
 void MuseScore::reportBug()
       {
-      QString url("http://musescore.org/en/node/add/project-issue/musescore?sha=");
-      url += revision();
+      QString url = QString("https://musescore.org/redirect/post/bug-report?sha=%1&locale=%2").arg(revision()).arg(getLocaleISOCode());
+      QDesktopServices::openUrl(QUrl(url.trimmed()));
+      }
+
+//---------------------------------------------------------
+//   askForHelp
+//---------------------------------------------------------
+
+void MuseScore::askForHelp()
+      {
+      QString url = QString("https://musescore.org/redirect/post/question?locale=%1").arg(getLocaleISOCode());
       QDesktopServices::openUrl(QUrl(url.trimmed()));
       }
 
@@ -2851,11 +2905,10 @@ AboutBoxDialog::AboutBoxDialog()
       museLogo->setPixmap(QPixmap(preferences.globalStyle == MuseScoreStyleType::DARK ?
             ":/data/musescore-logo-transbg-m.png" : ":/data/musescore_logo_full.png"));
 
-#ifdef MSCORE_UNSTABLE
-      versionLabel->setText(tr("Unstable Prerelease for Version: ") + VERSION);
-#else
-      versionLabel->setText(tr("Version: ") + VERSION);
-#endif
+      if (MuseScore::unstable())
+            versionLabel->setText(tr("Unstable Prerelease for Version: ") + VERSION);
+      else
+            versionLabel->setText(tr("Version: ") + VERSION);
       revisionLabel->setText(tr("Revision: %1").arg(revision));
       setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
 
@@ -3505,7 +3558,8 @@ void MuseScore::showPianoKeyboard(bool on)
             QAction* a = getAction("toggle-piano");
             _pianoTools = new PianoTools(this);
             addDockWidget(Qt::BottomDockWidgetArea, _pianoTools);
-            connect(_pianoTools, SIGNAL(keyPressed(int, bool)), SLOT(midiNoteReceived(int, bool)));
+            connect(_pianoTools, SIGNAL(keyPressed(int, bool, int)), SLOT(midiNoteReceived(int, bool, int)));
+            connect(_pianoTools, SIGNAL(keyReleased(int, bool, int)), SLOT(midiNoteReceived(int, bool, int)));
             connect(_pianoTools, SIGNAL(visibilityChanged(bool)), a, SLOT(setChecked(bool)));
             }
       if (on) {
@@ -3584,10 +3638,10 @@ PaletteBox* MuseScore::getPaletteBox()
 //   midiNoteReceived
 //---------------------------------------------------------
 
-void MuseScore::midiNoteReceived(int pitch, bool ctrl)
+void MuseScore::midiNoteReceived(int pitch, bool ctrl, int vel)
       {
       if (cv)
-            cv->midiNoteReceived(pitch, ctrl, 80);
+            cv->midiNoteReceived(pitch, ctrl, vel);
       }
 
 //---------------------------------------------------------
@@ -3816,21 +3870,33 @@ void MuseScore::transpose()
       td.enableTransposeChordNames(rangeSelection);
 
       int startStaffIdx = 0;
+      int endStaffIdx   = 0;
       int startTick     = 0;
       if (rangeSelection) {
             startStaffIdx = cs->selection().staffStart();
+            endStaffIdx   = cs->selection().staffEnd();
             startTick     = cs->selection().tickStart();
             }
-      Staff* staff = cs->staff(startStaffIdx);
-      Key key = staff->key(startTick);
-      if (!cs->styleB(StyleIdx::concertPitch)) {
-            int diff = staff->part()->instrument(startTick)->transpose().chromatic;
-            if (diff)
-                  key = transposeKey(key, diff);
+
+      // find the key of the first pitched staff
+      Key key = Key::C;
+      for (int i = startStaffIdx; i < endStaffIdx; ++i) {
+            Staff* staff = cs->staff(i);
+            if (staff->isPitchedStaff()) {
+                  key = staff->key(startTick);
+                  if (!cs->styleB(StyleIdx::concertPitch)) {
+                        int diff = staff->part()->instrument(startTick)->transpose().chromatic;
+                        if (diff)
+                              key = transposeKey(key, diff);
+                        }
+                  break;
+                  }
             }
+
       td.setKey(key);
       if (!td.exec())
             return;
+
       cs->transpose(td.mode(), td.direction(), td.transposeKey(), td.transposeInterval(),
          td.getTransposeKeys(), td.getTransposeChordNames(), td.useDoubleSharpsFlats());
 
@@ -4051,6 +4117,11 @@ void MuseScore::cmd(QAction* a, const QString& cmd)
             incMag();
       else if (cmd == "zoomout")
             decMag();
+      else if (cmd == "zoom100") {
+            if (cv)
+                  cv->setMag(MagIdx::MAG_100, 1.0);
+            setMag(1.0);
+            }
       else if (cmd == "midi-on")
             midiinToggled(a->isChecked());
       else if (cmd == "undo")
@@ -4169,9 +4240,11 @@ void MuseScore::cmd(QAction* a, const QString& cmd)
       else if (cmd == "print")
             printFile();
       else if (cmd == "repeat") {
-            MScore::playRepeats = !MScore::playRepeats;
-            cs->updateRepeatList(MScore::playRepeats);
-            emit cs->playlistChanged();
+            MScore::playRepeats = a->isChecked();
+            if (cs) {
+                  cs->updateRepeatList(MScore::playRepeats);
+                  emit cs->playlistChanged();
+                  }
             }
       else if (cmd == "pan")
             MScore::panPlayback = !MScore::panPlayback;
@@ -4529,11 +4602,17 @@ int main(int argc, char* av[])
       revision = QString(f.readAll()).trimmed();
       f.close();
 
-      MuseScoreApplication* app = new MuseScoreApplication("mscore2", argc, av);
-
+      MuseScoreApplication* app;
+      if (MuseScore::unstable()) {
+            app = new MuseScoreApplication("mscore-dev", argc, av);
+            QCoreApplication::setApplicationName("MuseScoreDevelopment");
+            }
+      else {
+            app = new MuseScoreApplication("mscore2", argc, av);
+            QCoreApplication::setApplicationName("MuseScore2");
+            }
       QCoreApplication::setOrganizationName("MuseScore");
       QCoreApplication::setOrganizationDomain("musescore.org");
-      QCoreApplication::setApplicationName("MuseScore2");
       QCoreApplication::setApplicationVersion(VERSION);
       QAccessible::installFactory(AccessibleScoreView::ScoreViewFactory);
       QAccessible::installFactory(AccessibleSearchBox::SearchBoxFactory);
@@ -4545,124 +4624,124 @@ int main(int argc, char* av[])
       QSettings::setDefaultFormat(QSettings::IniFormat);
 #endif
 
-      QStringList argv =  QCoreApplication::arguments();
-      argv.removeFirst();
-
-      for (int i = 0; i < argv.size();) {
-            QString s = argv[i];
-            if (s[0] != '-') {
-                  ++i;
-                  continue;
+      QCommandLineParser parser;
+
+      parser.addHelpOption(); // -?, -h, --help
+      parser.addVersionOption(); // -v, --version
+
+    //parser.addOption(QCommandLineOption({"v", "version"}, "Print version")); // see above
+      parser.addOption(QCommandLineOption(      "long-version", "Print detailed version information"));
+      parser.addOption(QCommandLineOption({"d", "debug"}, "Debug mode"));
+      parser.addOption(QCommandLineOption({"L", "layout-debug"}, "Layout debug"));
+      parser.addOption(QCommandLineOption({"s", "no-synthesizer"}, "No internal synthesizer"));
+      parser.addOption(QCommandLineOption({"m", "no-midi"}, "No midi"));
+      parser.addOption(QCommandLineOption({"a", "use-audio"}, "Use audio driver: jack, alsa, pulse, or portaudio", "driver"));
+      parser.addOption(QCommandLineOption({"n", "new-score"}, "Start with new score"));
+      parser.addOption(QCommandLineOption({"I", "dump-midi-in"}, "Dump midi input"));
+      parser.addOption(QCommandLineOption({"O", "dump-midi-out"}, "Dump midi output"));
+      parser.addOption(QCommandLineOption({"o", "export-to"}, "Export to 'file'; format depends on file extension", "file"));
+      parser.addOption(QCommandLineOption({"r", "image-resolution"}, "Set output resolution for image export", "dpi"));
+      parser.addOption(QCommandLineOption({"T", "trim-image"}, "Trim exported image with specified margin (in pixels)", "margin"));
+      parser.addOption(QCommandLineOption({"x", "gui-scaling"}, "Set scaling factor for GUI elements", "factor"));
+      parser.addOption(QCommandLineOption({"S", "style"}, "Load style file", "style"));
+      parser.addOption(QCommandLineOption({"p", "plugin"}, "Execure named plugin", "name"));
+      parser.addOption(QCommandLineOption(      "template-mode", "Save template mode, no page size"));
+      parser.addOption(QCommandLineOption({"F", "factory-settings"}, "Use factory settings"));
+      parser.addOption(QCommandLineOption({"R", "revert-settings"}, "Revert to default preferences"));
+      parser.addOption(QCommandLineOption({"i", "load-icons"}, "Load icons from INSTALLPATH/icons"));
+      parser.addOption(QCommandLineOption({"e", "experimental"}, "Enable experimental features"));
+      parser.addOption(QCommandLineOption({"c", "config-folder"}, "Override config/settings folder", "dir"));
+      parser.addOption(QCommandLineOption({"t", "test-mode"}, "Set testMode flag for all files"));
+      parser.addOption(QCommandLineOption({"M", "midi-operations"}, "Specify MIDI import operations file", "file"));
+      parser.addOption(QCommandLineOption({"w", "no-webview"}, "No web view in start center"));
+      parser.addOption(QCommandLineOption({"P", "export-score-parts"}, "used with -o <file>.pdf, export score + parts"));
+
+      parser.addPositionalArgument("scorefiles", "The files to open", "[scorefile...]");
+
+      parser.process(QCoreApplication::arguments());
+
+    //if (parser.isSet("v")) parser.showVersion(); // a) needs Qt >= 5.4 , b) instead we use addVersionOption()
+      if (parser.isSet("long-version")) {
+            printVersion("MuseScore");
+            return EXIT_SUCCESS;
+            }
+      MScore::debugMode = parser.isSet("d");
+      MScore::layoutDebug = parser.isSet("L");
+      noSeq = parser.isSet("s");
+      noMidi = parser.isSet("m");
+      if (parser.isSet("a")) {
+            audioDriver = parser.value("a");
+            if (audioDriver.isEmpty())
+                  parser.showHelp(EXIT_FAILURE);
+            }
+      startWithNewScore = parser.isSet("n");
+      externalIcons = parser.isSet("i");
+      midiInputTrace = parser.isSet("I");
+      midiOutputTrace = parser.isSet("O");
+      if ((converterMode = parser.isSet("o"))) {
+            MScore::noGui = true;
+            outFileName = parser.value("o");
+            if (outFileName.isEmpty())
+                  parser.showHelp(EXIT_FAILURE);
+            }
+      if ((pluginMode = parser.isSet("p"))) {
+            MScore::noGui = true;
+            pluginName = parser.value("p");
+            if (pluginName.isEmpty())
+                  parser.showHelp(EXIT_FAILURE);
+            }
+      MScore::saveTemplateMode = parser.isSet("template-mode");
+      if (parser.isSet("r")) {
+            QString temp = parser.value("r");
+            if (temp.isEmpty())
+                   parser.showHelp(EXIT_FAILURE);
+            converterDpi = temp.toDouble();
+            }
+      if (parser.isSet("T")) {
+            QString temp = parser.value("T");
+            if (temp.isEmpty())
+                   parser.showHelp(EXIT_FAILURE);
+            trimMargin = temp.toInt(); // ToDo: check whether conversion went OK, set to -1 if not
+           }
+      if (parser.isSet("x")) {
+            QString temp = parser.value("x");
+            if (temp.isEmpty())
+                   parser.showHelp(EXIT_FAILURE);
+            guiScaling = temp.toDouble(); // ToDo: check whether conversion went OK, set to 1.0 if not
+            }
+      if (parser.isSet("S")) {
+            styleFile = parser.value("S");
+            if (styleFile.isEmpty())
+                  parser.showHelp(EXIT_FAILURE);
+            }
+      useFactorySettings = parser.isSet("F");
+      deletePreferences = (useFactorySettings || parser.isSet("R"));
+      enableExperimental = parser.isSet("e");
+      if (parser.isSet("c")) {
+            QString path = parser.value("c");
+            if (path.isEmpty())
+                  parser.showHelp(EXIT_FAILURE);
+            QDir dir;
+            if (dir.exists(path)) {
+                  QSettings::setPath(QSettings::IniFormat, QSettings::UserScope, path);
+                  QSettings::setPath(QSettings::IniFormat, QSettings::SystemScope, path);
+                  dataPath = path;
                   }
-            switch (s[1].toLatin1()) {
-                  case 'v':
-                        printVersion("MuseScore");
-                        return 0;
-                  case 'd':
-                        MScore::debugMode = true;
-                        break;
-                  case 'L':
-                        MScore::layoutDebug = true;
-                        break;
-                  case 's':
-                        noSeq = true;
-                        break;
-                  case 'm':
-                        noMidi = true;
-                        break;
-                  case 'a':
-                        if (argv.size() - i < 2)
-                              usage();
-                        audioDriver = argv.takeAt(i + 1);
-                        break;
-                  case 'n':
-                        startWithNewScore = true;
-                        break;
-                  case 'i':
-                        externalIcons = true;
-                        break;
-                  case 'I':
-                        midiInputTrace = true;
-                        break;
-                  case 'O':
-                        midiOutputTrace = true;
-                        break;
-                  case 'o':
-                        converterMode = true;
-                        MScore::noGui = true;
-                        if (argv.size() - i < 2)
-                              usage();
-                        outFileName = argv.takeAt(i + 1);
-                        break;
-                  case 'p':
-                        pluginMode = true;
-                        MScore::noGui = true;
-                        if (argv.size() - i < 2)
-                              usage();
-                        pluginName = argv.takeAt(i + 1);
-                        break;
-                  case 'P':
-                        MScore::saveTemplateMode = true;
-                        break;
-                  case 'r':
-                        if (argv.size() - i < 2)
-                              usage();
-                        converterDpi = argv.takeAt(i + 1).toDouble();
-                        break;
-                  case 'T':
-                        if (argv.size() - i < 2)
-                              usage();
-                        trimMargin = argv.takeAt(i + 1).toInt();
-                        break;
-                  case 'x':
-                        if (argv.size() - i < 2)
-                              usage();
-                        guiScaling = argv.takeAt(i + 1).toDouble();
-                        break;
-                  case 'S':
-                        if (argv.size() - i < 2)
-                              usage();
-                        styleFile = argv.takeAt(i + 1);
-                        break;
-                  case 'F':
-                        useFactorySettings = true;
-                        deletePreferences = true;
-                        break;
-                  case 'R':
-                        useFactorySettings = true;
-                        break;
-                  case 'e':
-                        enableExperimental = true;
-                        break;
-                  case 'c':
-                        {
-                        if (argv.size() - i < 2)
-                              usage();
-                        QString path = argv.takeAt(i + 1);
-                        QDir dir;
-                        if (dir.exists(path)) {
-                              QSettings::setPath(QSettings::IniFormat, QSettings::UserScope, path);
-                              QSettings::setPath(QSettings::IniFormat, QSettings::SystemScope, path);
-                              dataPath = path;
-                              }
-                        }
-                        break;
-                  case 't':
-                        enableTestMode = true;
-                        break;
-                  case 'M':
-                        if (argv.size() - i < 2)
-                              usage();
-                        preferences.midiImportOperations.setOperationsFile(argv.takeAt(i + 1));
-                        break;
-                  case 'w':
-                        noWebView = true;
-                        break;
-                  default:
-                        usage();
-                  }
-            argv.removeAt(i);
             }
+      enableTestMode = parser.isSet("t");
+      if (parser.isSet("M")) {
+            QString temp = parser.value("M");
+            if (temp.isEmpty())
+                  parser.showHelp(EXIT_FAILURE);
+            preferences.midiImportOperations.setOperationsFile(temp);
+            }
+      noWebView = parser.isSet("w");
+      exportScoreParts = parser.isSet("export-score-parts");
+      if (exportScoreParts && !converterMode)
+            parser.showHelp(EXIT_FAILURE);
+
+      QStringList argv = parser.positionalArguments();
+
       mscoreGlobalShare = getSharePath();
       iconPath = externalIcons ? mscoreGlobalShare + QString("icons/") :  QString(":/data/icons/");
 
@@ -4927,7 +5006,6 @@ int main(int argc, char* av[])
             }
 
       mscore = new MuseScore();
-      mscoreCore = mscore;
 
       // create a score for internal use
       gscore = new Score(MScore::baseStyle());
@@ -4956,7 +5034,7 @@ int main(int argc, char* av[])
             qApp->processEvents();
 #endif
             loadScores(argv);
-            exit(processNonGui() ? 0 : -1);
+            exit(processNonGui() ? 0 : EXIT_FAILURE);
             }
       else {
             mscore->readSettings();
@@ -5003,7 +5081,7 @@ int main(int argc, char* av[])
       if (mscore->hasToCheckForUpdate())
             mscore->checkForUpdate();
 
-      if (!scoresOnCommandline && preferences.showStartcenter && !restoredSession) {
+      if (!scoresOnCommandline && preferences.showStartcenter && (!restoredSession || mscore->scores().size() == 0)) {
 #ifdef Q_OS_MAC
 // ugly, but on mac we get an event when a file is open.
 // We can't get the event when the startcenter is shown.
diff --git a/mscore/musescore.h b/mscore/musescore.h
index e972c82..bf8c067 100644
--- a/mscore/musescore.h
+++ b/mscore/musescore.h
@@ -426,6 +426,7 @@ class MuseScore : public QMainWindow, public MuseScoreCore {
       void aboutQt();
       void aboutMusicXML();
       void reportBug();
+      void askForHelp();
       void openRecentMenu();
       void selectScore(QAction*);
       void startPreferenceDialog();
@@ -480,7 +481,7 @@ class MuseScore : public QMainWindow, public MuseScoreCore {
       void checkForUpdate();
       QMenu* fileMenu() const  { return _fileMenu; }
       void midiNoteReceived(int channel, int pitch, int velo);
-      void midiNoteReceived(int pitch, bool ctrl);
+      void midiNoteReceived(int pitch, bool ctrl, int velo);
       void instrumentChanged();
       void showMasterPalette(const QString& = 0);
       void selectionChanged(SelState);
@@ -527,6 +528,7 @@ class MuseScore : public QMainWindow, public MuseScoreCore {
       QFileDialog* saveCopyDialog();
 
       QString lastSaveCopyDirectory;
+      QString lastSaveCopyFormat;
       QString lastSaveDirectory;
       SynthControl* getSynthControl() const       { return synthControl; }
       void editInPianoroll(Staff* staff);
@@ -575,7 +577,7 @@ class MuseScore : public QMainWindow, public MuseScoreCore {
       QString getAudioFile(const QString&);
       QString getDrumsetFilename(bool open);
       QString getPluginFilename(bool open);
-      QString getPaletteFilename(bool open);
+      QString getPaletteFilename(bool open, const QString& name = "");
       QString getWallpaper(const QString& caption);
 
       bool hRaster() const { return hRasterAction->isChecked(); }
@@ -693,7 +695,6 @@ class MuseScore : public QMainWindow, public MuseScoreCore {
       };
 
 extern MuseScore* mscore;
-extern MuseScoreCore* mscoreCore;
 extern QStringList recentScores;
 extern QString dataPath;
 extern MasterSynthesizer* synti;
@@ -704,8 +705,6 @@ extern QAction* getAction(const char*);
 extern Shortcut* midiActionMap[128];
 extern void loadTranslation(QString fileName, QString localeName);
 extern void setMscoreLocale(QString localeName);
-extern QPixmap sym2pixmap(const Sym* s, qreal mag);
-
 extern bool saveMxl(Score*, const QString& name);
 extern bool saveXml(Score*, const QString& name);
 
diff --git a/mscore/musescorefonts-Mac.qrc b/mscore/musescorefonts-Mac.qrc
new file mode 100644
index 0000000..ab13da3
--- /dev/null
+++ b/mscore/musescorefonts-Mac.qrc
@@ -0,0 +1,7 @@
+<RCC>
+    <qresource prefix="/">
+        <file alias="fonts/mscore/mscore.ttf">../fonts/mscore/mscore.ttf</file>
+        <file alias="fonts/gootville/Gootville.otf">../fonts/gootville/Gootville.otf</file>
+        <file alias="fonts/bravura/Bravura.otf">../fonts/bravura/Bravura.otf</file>
+        </qresource>
+</RCC>
\ No newline at end of file
diff --git a/mscore/musicxmlsupport.cpp b/mscore/musicxmlsupport.cpp
index 67701cc..41b9091 100644
--- a/mscore/musicxmlsupport.cpp
+++ b/mscore/musicxmlsupport.cpp
@@ -25,6 +25,7 @@
 #include "globals.h"
 #include "musicxmlsupport.h"
 #include "libmscore/sym.h"
+#include "libmscore/accidental.h"
 
 namespace Ms {
 
@@ -386,24 +387,24 @@ QString accSymId2MxmlString(const SymId id)
             case SymId::accidentalBakiyeFlat:            s = "slash-flat";           break;
             case SymId::accidentalBuyukMucennebFlat:     s = "double-slash-flat";    break;
                   /* TODO
-            case Accidental::Type::FLAT_ARROW_UP:      s = "flat-up";              break;
-            case Accidental::Type::NATURAL_ARROW_DOWN: s = "natural-down";         break;
-            case Accidental::Type::SHARP_ARROW_DOWN:   s = "sharp-down";           break;
-            case Accidental::Type::NATURAL_ARROW_UP:   s = "natural-up";           break;
-            case Accidental::Type::MIRRORED_FLAT2:     s = "three-quarters-flat";  break;
-            case Accidental::Type::FLAT_FLAT_SLASH:    s = "three-quarters-flat";  break;
-            case Accidental::Type::FLAT_ARROW_DOWN:    s = "flat-down";            break;
-            case Accidental::Type::SHARP_SLASH4:       s = "three-quarters-sharp"; break;
-            case Accidental::Type::SHARP_ARROW_UP:     s = "sharp-up";             break;
-            case Accidental::Type::SORI:               s = "sori";                 break;
-            case Accidental::Type::KORON:              s = "koron";                break;
+            case AccidentalType::FLAT_ARROW_UP:      s = "flat-up";              break;
+            case AccidentalType::NATURAL_ARROW_DOWN: s = "natural-down";         break;
+            case AccidentalType::SHARP_ARROW_DOWN:   s = "sharp-down";           break;
+            case AccidentalType::NATURAL_ARROW_UP:   s = "natural-up";           break;
+            case AccidentalType::MIRRORED_FLAT2:     s = "three-quarters-flat";  break;
+            case AccidentalType::FLAT_FLAT_SLASH:    s = "three-quarters-flat";  break;
+            case AccidentalType::FLAT_ARROW_DOWN:    s = "flat-down";            break;
+            case AccidentalType::SHARP_SLASH4:       s = "three-quarters-sharp"; break;
+            case AccidentalType::SHARP_ARROW_UP:     s = "sharp-up";             break;
+            case AccidentalType::SORI:               s = "sori";                 break;
+            case AccidentalType::KORON:              s = "koron";                break;
                    */
             default:
                   qDebug("accSymId2MxmlString: unknown accidental %d", static_cast<int>(id));
             }
       return s;
       }
-      
+
 //---------------------------------------------------------
 //   mxmlString2accSymId
 //---------------------------------------------------------
@@ -419,30 +420,30 @@ SymId mxmlString2accSymId(const QString mxmlName)
       map["flat-flat"] = SymId::accidentalDoubleFlat;
 
       //map["double-flat"] = SymId::accidentalDoubleFlat;
-      //map["natural-flat"] = Accidental::Type::FLAT;
-      
+      //map["natural-flat"] = AccidentalType::FLAT;
+
       map["quarter-flat"] = SymId::accidentalQuarterToneFlatStein;
       map["quarter-sharp"] = SymId::accidentalQuarterToneSharpStein;
-      //map["three-quarters-flat"] = Accidental::Type::MIRRORED_FLAT2;
-      //map["three-quarters-sharp"] = Accidental::Type::SHARP_SLASH4;
-      
-      //map["sharp-down"] = Accidental::Type::SHARP_ARROW_DOWN;
-      //map["sharp-up"] = Accidental::Type::SHARP_ARROW_UP;
-      //map["natural-down"] = Accidental::Type::NATURAL_ARROW_DOWN;
-      //map["natural-up"] = Accidental::Type::NATURAL_ARROW_UP;
-      //map["flat-down"] = Accidental::Type::FLAT_ARROW_DOWN;
-      //map["flat-up"] = Accidental::Type::FLAT_ARROW_UP;
-      
+      //map["three-quarters-flat"] = AccidentalType::MIRRORED_FLAT2;
+      //map["three-quarters-sharp"] = AccidentalType::SHARP_SLASH4;
+
+      //map["sharp-down"] = AccidentalType::SHARP_ARROW_DOWN;
+      //map["sharp-up"] = AccidentalType::SHARP_ARROW_UP;
+      //map["natural-down"] = AccidentalType::NATURAL_ARROW_DOWN;
+      //map["natural-up"] = AccidentalType::NATURAL_ARROW_UP;
+      //map["flat-down"] = AccidentalType::FLAT_ARROW_DOWN;
+      //map["flat-up"] = AccidentalType::FLAT_ARROW_UP;
+
       map["slash-quarter-sharp"] = SymId::accidentalKucukMucennebSharp;
       map["slash-sharp"] = SymId::accidentalBuyukMucennebSharp;
       map["slash-flat"] = SymId::accidentalBakiyeFlat;
       map["double-slash-flat"] = SymId::accidentalBuyukMucennebFlat;
-      
-      //map["sori"] = Accidental::Type::SORI;
-      //map["koron"] = Accidental::Type::KORON;
-      
-      //map["natural-sharp"] = Accidental::Type::SHARP;
-      
+
+      //map["sori"] = AccidentalType::SORI;
+      //map["koron"] = AccidentalType::KORON;
+
+      //map["natural-sharp"] = AccidentalType::SHARP;
+
       if (map.contains(mxmlName))
             return map.value(mxmlName);
       else
@@ -455,87 +456,87 @@ SymId mxmlString2accSymId(const QString mxmlName)
 //---------------------------------------------------------
 //   accidentalType2MxmlString
 //---------------------------------------------------------
-      
-QString accidentalType2MxmlString(const Accidental::Type type)
+
+QString accidentalType2MxmlString(const AccidentalType type)
       {
       QString s;
       switch (type) {
-            case Accidental::Type::SHARP:              s = "sharp";                break;
-            case Accidental::Type::FLAT:               s = "flat";                 break;
-            case Accidental::Type::SHARP2:             s = "double-sharp";         break;
-            case Accidental::Type::FLAT2:              s = "flat-flat";            break;
-            case Accidental::Type::NATURAL:            s = "natural";              break;
-            case Accidental::Type::FLAT_SLASH:         s = "slash-flat";           break;
-            case Accidental::Type::MIRRORED_FLAT:      s = "quarter-flat";         break;
-            case Accidental::Type::FLAT_ARROW_UP:      s = "flat-up";              break;
-            case Accidental::Type::NATURAL_ARROW_DOWN: s = "natural-down";         break;
-            case Accidental::Type::SHARP_SLASH:        s = "quarter-sharp";        break;
-            case Accidental::Type::SHARP_ARROW_DOWN:   s = "sharp-down";           break;
-            case Accidental::Type::NATURAL_ARROW_UP:   s = "natural-up";           break;
-            case Accidental::Type::MIRRORED_FLAT2:     s = "three-quarters-flat";  break;
-            case Accidental::Type::FLAT_FLAT_SLASH:    s = "three-quarters-flat";  break;
-            case Accidental::Type::FLAT_ARROW_DOWN:    s = "flat-down";            break;
-            case Accidental::Type::SHARP_SLASH4:       s = "three-quarters-sharp"; break;
-            case Accidental::Type::SHARP_ARROW_UP:     s = "sharp-up";             break;
-            case Accidental::Type::SHARP_SLASH3:       s = "slash-quarter-sharp";  break;
-            case Accidental::Type::FLAT_SLASH2:        s = "double-slash-flat";    break;
-            case Accidental::Type::SHARP_SLASH2:       s = "slash-sharp";          break;
-            case Accidental::Type::SORI:               s = "sori";                 break;
-            case Accidental::Type::KORON:              s = "koron";                break;
+            case AccidentalType::SHARP:              s = "sharp";                break;
+            case AccidentalType::FLAT:               s = "flat";                 break;
+            case AccidentalType::SHARP2:             s = "double-sharp";         break;
+            case AccidentalType::FLAT2:              s = "flat-flat";            break;
+            case AccidentalType::NATURAL:            s = "natural";              break;
+            case AccidentalType::FLAT_SLASH:         s = "slash-flat";           break;
+            case AccidentalType::MIRRORED_FLAT:      s = "quarter-flat";         break;
+            case AccidentalType::FLAT_ARROW_UP:      s = "flat-up";              break;
+            case AccidentalType::NATURAL_ARROW_DOWN: s = "natural-down";         break;
+            case AccidentalType::SHARP_SLASH:        s = "quarter-sharp";        break;
+            case AccidentalType::SHARP_ARROW_DOWN:   s = "sharp-down";           break;
+            case AccidentalType::NATURAL_ARROW_UP:   s = "natural-up";           break;
+            case AccidentalType::MIRRORED_FLAT2:     s = "three-quarters-flat";  break;
+            case AccidentalType::FLAT_FLAT_SLASH:    s = "three-quarters-flat";  break;
+            case AccidentalType::FLAT_ARROW_DOWN:    s = "flat-down";            break;
+            case AccidentalType::SHARP_SLASH4:       s = "three-quarters-sharp"; break;
+            case AccidentalType::SHARP_ARROW_UP:     s = "sharp-up";             break;
+            case AccidentalType::SHARP_SLASH3:       s = "slash-quarter-sharp";  break;
+            case AccidentalType::FLAT_SLASH2:        s = "double-slash-flat";    break;
+            case AccidentalType::SHARP_SLASH2:       s = "slash-sharp";          break;
+            case AccidentalType::SORI:               s = "sori";                 break;
+            case AccidentalType::KORON:              s = "koron";                break;
             default:
                   qDebug("accidentalType2MxmlString: unknown accidental %d", static_cast<int>(type));
             }
       return s;
       }
-      
+
 //---------------------------------------------------------
 //   mxmlString2accidentalType
 //---------------------------------------------------------
 
 /**
- Convert a MusicXML accidental name to a MuseScore enum Accidental::Type.
+ Convert a MusicXML accidental name to a MuseScore enum AccidentalType.
  */
 
-Accidental::Type mxmlString2accidentalType(const QString mxmlName)
+AccidentalType mxmlString2accidentalType(const QString mxmlName)
       {
-      QMap<QString, Accidental::Type> map; // map MusicXML accidental name to MuseScore enum Accidental::Type
-      map["natural"] = Accidental::Type::NATURAL;
-      map["flat"] = Accidental::Type::FLAT;
-      map["sharp"] = Accidental::Type::SHARP;
-      map["double-sharp"] = Accidental::Type::SHARP2;
-      map["sharp-sharp"] = Accidental::Type::SHARP2;
-      map["flat-flat"] = Accidental::Type::FLAT2;
-      map["double-flat"] = Accidental::Type::FLAT2;
-      map["natural-flat"] = Accidental::Type::FLAT;
-      
-      map["quarter-flat"] = Accidental::Type::MIRRORED_FLAT;
-      map["quarter-sharp"] = Accidental::Type::SHARP_SLASH;
-      map["three-quarters-flat"] = Accidental::Type::MIRRORED_FLAT2;
-      map["three-quarters-sharp"] = Accidental::Type::SHARP_SLASH4;
-      
-      map["sharp-down"] = Accidental::Type::SHARP_ARROW_DOWN;
-      map["sharp-up"] = Accidental::Type::SHARP_ARROW_UP;
-      map["natural-down"] = Accidental::Type::NATURAL_ARROW_DOWN;
-      map["natural-up"] = Accidental::Type::NATURAL_ARROW_UP;
-      map["flat-down"] = Accidental::Type::FLAT_ARROW_DOWN;
-      map["flat-up"] = Accidental::Type::FLAT_ARROW_UP;
-      
-      map["slash-quarter-sharp"] = Accidental::Type::SHARP_SLASH3; // MIRRORED_FLAT_SLASH; ?
-      map["slash-sharp"] = Accidental::Type::SHARP_SLASH2; // SHARP_SLASH; ?
-      map["slash-flat"] = Accidental::Type::FLAT_SLASH;
-      map["double-slash-flat"] = Accidental::Type::FLAT_SLASH2;
-      
-      map["sori"] = Accidental::Type::SORI;
-      map["koron"] = Accidental::Type::KORON;
-      
-      map["natural-sharp"] = Accidental::Type::SHARP;
-      
+      QMap<QString, AccidentalType> map; // map MusicXML accidental name to MuseScore enum AccidentalType
+      map["natural"] = AccidentalType::NATURAL;
+      map["flat"] = AccidentalType::FLAT;
+      map["sharp"] = AccidentalType::SHARP;
+      map["double-sharp"] = AccidentalType::SHARP2;
+      map["sharp-sharp"] = AccidentalType::SHARP2;
+      map["flat-flat"] = AccidentalType::FLAT2;
+      map["double-flat"] = AccidentalType::FLAT2;
+      map["natural-flat"] = AccidentalType::FLAT;
+
+      map["quarter-flat"] = AccidentalType::MIRRORED_FLAT;
+      map["quarter-sharp"] = AccidentalType::SHARP_SLASH;
+      map["three-quarters-flat"] = AccidentalType::MIRRORED_FLAT2;
+      map["three-quarters-sharp"] = AccidentalType::SHARP_SLASH4;
+
+      map["sharp-down"] = AccidentalType::SHARP_ARROW_DOWN;
+      map["sharp-up"] = AccidentalType::SHARP_ARROW_UP;
+      map["natural-down"] = AccidentalType::NATURAL_ARROW_DOWN;
+      map["natural-up"] = AccidentalType::NATURAL_ARROW_UP;
+      map["flat-down"] = AccidentalType::FLAT_ARROW_DOWN;
+      map["flat-up"] = AccidentalType::FLAT_ARROW_UP;
+
+      map["slash-quarter-sharp"] = AccidentalType::SHARP_SLASH3; // MIRRORED_FLAT_SLASH; ?
+      map["slash-sharp"] = AccidentalType::SHARP_SLASH2; // SHARP_SLASH; ?
+      map["slash-flat"] = AccidentalType::FLAT_SLASH;
+      map["double-slash-flat"] = AccidentalType::FLAT_SLASH2;
+
+      map["sori"] = AccidentalType::SORI;
+      map["koron"] = AccidentalType::KORON;
+
+      map["natural-sharp"] = AccidentalType::SHARP;
+
       if (map.contains(mxmlName))
             return map.value(mxmlName);
       else
             qDebug("mxmlString2accidentalType: unknown accidental '%s'", qPrintable(mxmlName));
-      // default: return Accidental::Type::NONE
-      return Accidental::Type::NONE;
+      // default: return AccidentalType::NONE
+      return AccidentalType::NONE;
       }
 
 }
diff --git a/mscore/musicxmlsupport.h b/mscore/musicxmlsupport.h
index da59896..c706b4c 100644
--- a/mscore/musicxmlsupport.h
+++ b/mscore/musicxmlsupport.h
@@ -193,10 +193,10 @@ private:
 extern void domError(const QDomElement&);
 extern void domNotImplemented(const QDomElement&);
 
-      
+
 extern QString accSymId2MxmlString(const SymId id);
-extern QString accidentalType2MxmlString(const Accidental::Type type);
-extern Accidental::Type mxmlString2accidentalType(const QString mxmlName);
+extern QString accidentalType2MxmlString(const AccidentalType type);
+extern AccidentalType mxmlString2accidentalType(const QString mxmlName);
 extern SymId mxmlString2accSymId(const QString mxmlName);
 
 } // namespace Ms
diff --git a/mscore/osc.cpp b/mscore/osc.cpp
index 0c12f17..305a32c 100644
--- a/mscore/osc.cpp
+++ b/mscore/osc.cpp
@@ -38,7 +38,6 @@
 
 #ifdef OSC
 #include "ofqf/qoscserver.h"
-static int oscPort = 5282;
 #endif
 
 namespace Ms {
@@ -64,11 +63,7 @@ void MuseScore::initOsc()
       {
       if (!preferences.useOsc)
             return;
-      int port;
-      if (oscPort)
-            port = oscPort;
-      else
-            port = preferences.oscPort;
+      int port = preferences.oscPort;
       QOscServer* osc = new QOscServer(port, qApp);
 
       PathObject* oo = new PathObject( "/addpitch", QVariant::Int, osc);
diff --git a/mscore/ove.cpp b/mscore/ove.cpp
index 823a04a..3bc3afd 100644
--- a/mscore/ove.cpp
+++ b/mscore/ove.cpp
@@ -2516,6 +2516,14 @@ int OctaveShift::getEndTick() const {
       return endTick_;
       }
 
+void OctaveShift::setOctaveShiftPosition(OctaveShiftPosition position) {
+      octaveShiftPosition_ = position;
+      }
+
+OctaveShiftPosition OctaveShift::getOctaveShiftPosition() const {
+      return octaveShiftPosition_;
+      }
+
 ///////////////////////////////////////////////////////////////////////////////
 OctaveShiftEndPoint::OctaveShiftEndPoint() {
       musicDataType_ = MusicDataType::OctaveShift_EndPoint;
@@ -5293,7 +5301,8 @@ bool BarsParse::parseNoteRest(MeasureData* measureData, int length, BdatType typ
                   thisByte = placeHolder.toUnsignedInt();
                   notePtr->setAccidental(getLowNibble(thisByte));
                   // accidental 0: influenced by key, 4: influenced by previous accidental in measure
-                  bool notShow = ( getHighNibble(thisByte) == 0 ) || ( getHighNibble(thisByte) == 4 );
+                  //bool notShow = ( getHighNibble(thisByte) == 0 ) || ( getHighNibble(thisByte) == 4 );
+                  bool notShow = !(getHighNibble(thisByte)&0x1);
                   notePtr->setShowAccidental(!notShow);
 
                   if( !jump(1) ) { return false; }
diff --git a/mscore/ove.h b/mscore/ove.h
index eea1ac1..e278c31 100644
--- a/mscore/ove.h
+++ b/mscore/ove.h
@@ -1756,6 +1756,9 @@ public:
       void setOctaveShiftType(OctaveShiftType type);
       OctaveShiftType getOctaveShiftType() const;
 
+      void setOctaveShiftPosition(OctaveShiftPosition position);
+      OctaveShiftPosition getOctaveShiftPosition() const;
+
       int getNoteShift() const;
 
       void setEndTick(int tick);
diff --git a/mscore/pa.cpp b/mscore/pa.cpp
index 0ef5f05..21b80e6 100644
--- a/mscore/pa.cpp
+++ b/mscore/pa.cpp
@@ -101,6 +101,8 @@ bool Portaudio::init(bool)
       if (di == nullptr)
             di = Pa_GetDeviceInfo(Pa_GetDefaultOutputDevice());
 
+      if (!di)
+            return false;    // Portaudio is not properly initialized; disable audio
       _sampleRate = int(di->defaultSampleRate);
 
       /* Open an audio I/O stream. */
diff --git a/mscore/pagesettings.ui b/mscore/pagesettings.ui
index 7107e8f..3dff778 100644
--- a/mscore/pagesettings.ui
+++ b/mscore/pagesettings.ui
@@ -563,6 +563,9 @@
        <property name="text">
         <string>OK</string>
        </property>
+       <property name="default">
+        <bool>true</bool>
+       </property>
       </widget>
      </item>
      <item>
diff --git a/mscore/palette.cpp b/mscore/palette.cpp
index a6ac73c..83006f5 100644
--- a/mscore/palette.cpp
+++ b/mscore/palette.cpp
@@ -26,6 +26,12 @@
 #include "libmscore/chord.h"
 #include "libmscore/clef.h"
 #include "libmscore/segment.h"
+#include "libmscore/measure.h"
+#include "libmscore/staff.h"
+#include "libmscore/system.h"
+#include "libmscore/page.h"
+#include "libmscore/keysig.h"
+#include "libmscore/timesig.h"
 #include "preferences.h"
 #include "seq.h"
 #include "libmscore/part.h"
@@ -275,8 +281,8 @@ static void applyDrop(Score* score, ScoreView* viewer, Element* target, Element*
       {
       DropData dropData;
       dropData.view       = viewer;
-      dropData.pos        = pt;
-      dropData.dragOffset = pt;
+      dropData.pos        = pt.isNull() ? target->pagePos() : pt;
+      dropData.dragOffset = QPointF();
       dropData.modifiers  = 0;
       dropData.element    = e;
 
@@ -303,7 +309,7 @@ void Palette::mouseDoubleClickEvent(QMouseEvent* ev)
       int i = idx(ev->pos());
       if (i == -1)
             return;
-      Score* score   = mscore->currentScore();
+      Score* score = mscore->currentScore();
       if (score == 0)
             return;
       const Selection& sel = score->selection();
@@ -311,7 +317,7 @@ void Palette::mouseDoubleClickEvent(QMouseEvent* ev)
             return;
 
       Element* element = 0;
-      if (i < size() &&  cells[i])
+      if (i < size() && cells[i])
             element = cells[i]->element;
       if (element == 0)
             return;
@@ -324,6 +330,19 @@ void Palette::mouseDoubleClickEvent(QMouseEvent* ev)
             score->startCmd();
             }
       if (sel.isList()) {
+            ChordRest* cr1 = sel.firstChordRest();
+            ChordRest* cr2 = sel.lastChordRest();
+            bool addSingle = false;       // add a single line only
+            if (cr1 && cr2 == cr1) {
+                  // one chordrest selected, ok to add line
+                  addSingle = true;
+                  }
+            else if (sel.elements().size() == 2 && cr1 && cr2 && cr1 != cr2) {
+                  // two chordrests selected
+                  // must be on same staff in order to add line, except for slur
+                  if (element->type() == Element::Type::SLUR || cr1->staffIdx() == cr2->staffIdx())
+                        addSingle = true;
+                  }
             if (viewer->mscoreState() == STATE_NOTE_ENTRY_DRUM && element->type() == Element::Type::CHORD) {
                   // use input position rather than selection if possible
                   Element* e = score->inputState().cr();
@@ -342,26 +361,166 @@ void Palette::mouseDoubleClickEvent(QMouseEvent* ev)
                   else
                         qDebug("nowhere to place drum note");
                   }
+            else if (element->type() == Element::Type::SLUR && addSingle) {
+                  viewer->cmdAddSlur();
+                  }
+            else if (element->isSLine() && element->type() != Element::Type::GLISSANDO && addSingle) {
+                  Segment* startSegment = cr1->segment();
+                  Segment* endSegment = cr2->segment();
+                  if (element->type() == Element::Type::PEDAL && cr2 != cr1)
+                        endSegment = endSegment->nextCR(cr2->track());
+                  // TODO - handle cross-voice selections
+                  int idx = cr1->staffIdx();
+                  Spanner* spanner = static_cast<Spanner*>(element->clone());
+                  spanner->setScore(score);
+                  score->cmdAddSpanner(spanner, idx, startSegment, endSegment);
+                  }
             else {
-                  foreach(Element* e, sel.elements())
+                  for (Element* e : sel.elements())
                         applyDrop(score, viewer, e, element);
                   }
             }
       else if (sel.isRange()) {
-            // TODO: check for other element types:
-            if (element->type() == Element::Type::BAR_LINE) {
-                  // TODO: apply to multiple measures
-                  Measure* m = sel.startSegment()->measure();
-                  QRectF r = m->staffabbox(sel.staffStart());
-                  QPointF pt(r.x() + r.width() * .5, r.y() + r.height() * .5);
-                  applyDrop(score, viewer, m, element, pt);
+            if (element->type() == Element::Type::BAR_LINE
+                || element->type() == Element::Type::MARKER
+                || element->type() == Element::Type::JUMP
+                || element->type() == Element::Type::SPACER
+                || element->type() == Element::Type::LAYOUT_BREAK
+                || element->type() == Element::Type::VBOX
+                || element->type() == Element::Type::HBOX
+                || element->type() == Element::Type::TBOX
+                || element->type() == Element::Type::MEASURE
+                || element->type() == Element::Type::BRACKET
+                || (element->type() == Element::Type::ICON
+                    && (static_cast<Icon*>(element)->iconType() == IconType::VFRAME
+                        || static_cast<Icon*>(element)->iconType() == IconType::HFRAME
+                        || static_cast<Icon*>(element)->iconType() == IconType::TFRAME
+                        || static_cast<Icon*>(element)->iconType() == IconType::MEASURE
+                        || static_cast<Icon*>(element)->iconType() == IconType::BRACKETS))) {
+                  Measure* last = sel.endSegment() ? sel.endSegment()->measure() : nullptr;
+                  for (Measure* m = sel.startSegment()->measure(); m; m = m->nextMeasureMM()) {
+                        QRectF r = m->staffabbox(sel.staffStart());
+                        QPointF pt(r.x() + r.width() * .5, r.y() + r.height() * .5);
+                        pt += m->system()->page()->pos();
+                        applyDrop(score, viewer, m, element, pt);
+                        if (m == last)
+                              break;
+                        }
+                  }
+            else if (element->type() == Element::Type::CLEF
+                     || element->type() == Element::Type::KEYSIG
+                     || element->type() == Element::Type::TIMESIG) {
+                  Measure* m1 = sel.startSegment()->measure();
+                  Measure* m2 = sel.endSegment() ? sel.endSegment()->measure() : nullptr;
+                  if (m2 == m1 && sel.startSegment()->rtick() == 0)
+                        m2 = nullptr;     // don't restore original if one full measure selected
+                  else if (m2)
+                        m2 = m2->nextMeasureMM();
+                  // for clefs, apply to each staff separately
+                  // otherwise just apply to top staff
+                  int staffIdx1 = sel.staffStart();
+                  int staffIdx2 = element->type() == Element::Type::CLEF ? sel.staffEnd() : staffIdx1 + 1;
+                  for (int i = staffIdx1; i < staffIdx2; ++i) {
+                        // for clefs, use mid-measure changes if appropriate
+                        Element* e1 = nullptr;
+                        Element* e2 = nullptr;
+                        // use mid-measure clef changes as appropriate
+                        if (element->type() == Element::Type::CLEF) {
+                              if (sel.startSegment()->segmentType() == Segment::Type::ChordRest && sel.startSegment()->rtick() != 0) {
+                                    ChordRest* cr = static_cast<ChordRest*>(sel.startSegment()->nextChordRest(i * VOICES));
+                                    if (cr && cr->isChord())
+                                          e1 = static_cast<Chord*>(cr)->upNote();
+                                    else
+                                          e1 = cr;
+                                    }
+                              if (sel.endSegment() && sel.endSegment()->segmentType() == Segment::Type::ChordRest) {
+                                    ChordRest* cr = static_cast<ChordRest*>(sel.endSegment()->nextChordRest(i * VOICES));
+                                    if (cr && cr->isChord())
+                                          e2 = static_cast<Chord*>(cr)->upNote();
+                                    else
+                                          e2 = cr;
+                                    }
+                              }
+                        if (m2 || e2) {
+                              // restore original clef/keysig/timesig
+                              Staff* staff = score->staff(i);
+                              int tick1 = sel.startSegment()->tick();
+                              Element* oelement = nullptr;
+                              switch (element->type()) {
+                                    case Element::Type::CLEF:
+                                          {
+                                          Clef* oclef = new Clef(score);
+                                          oclef->setClefType(staff->clef(tick1));
+                                          oelement = oclef;
+                                          break;
+                                          }
+                                    case Element::Type::KEYSIG:
+                                          {
+                                          KeySig* okeysig = new KeySig(score);
+                                          okeysig->setKeySigEvent(staff->keySigEvent(tick1));
+                                          if (!score->styleB(StyleIdx::concertPitch) && !okeysig->isCustom() && !okeysig->isAtonal()) {
+                                                Interval v = staff->part()->instrument()->transpose();
+                                                if (!v.isZero()) {
+                                                      Key k = okeysig->key();
+                                                      okeysig->setKey(transposeKey(k, v));
+                                                      }
+                                                }
+                                          oelement = okeysig;
+                                          break;
+                                          }
+                                    case Element::Type::TIMESIG:
+                                          {
+                                          TimeSig* otimesig = new TimeSig(score);
+                                          otimesig->setFrom(staff->timeSig(tick1));
+                                          oelement = otimesig;
+                                          break;
+                                          }
+                                    default:
+                                          break;
+                                    }
+                              if (oelement) {
+                                    if (e2) {
+                                          applyDrop(score, viewer, e2, oelement);
+                                          }
+                                    else {
+                                          QRectF r = m2->staffabbox(i);
+                                          QPointF pt(r.x() + r.width() * .5, r.y() + r.height() * .5);
+                                          pt += m2->system()->page()->pos();
+                                          applyDrop(score, viewer, m2, oelement, pt);
+                                          }
+                                    delete oelement;
+                                    }
+                              }
+                        // apply new clef/keysig/timesig
+                        if (e1) {
+                              applyDrop(score, viewer, e1, element);
+                              }
+                        else {
+                              QRectF r = m1->staffabbox(i);
+                              QPointF pt(r.x() + r.width() * .5, r.y() + r.height() * .5);
+                              pt += m1->system()->page()->pos();
+                              applyDrop(score, viewer, m1, element, pt);
+                              }
+                        }
+                  }
+            else if (element->type() == Element::Type::SLUR) {
+                  viewer->cmdAddSlur();
+                  }
+            else if (element->isSLine() && element->type() != Element::Type::GLISSANDO) {
+                  Segment* startSegment = sel.startSegment();
+                  Segment* endSegment = sel.endSegment();
+                  int endStaff = sel.staffEnd();
+                  for (int i = sel.staffStart(); i < endStaff; ++i) {
+                        Spanner* spanner = static_cast<Spanner*>(element->clone());
+                        spanner->setScore(score);
+                        score->cmdAddSpanner(spanner, i, startSegment, endSegment);
+                        }
                   }
             else {
                   int track1 = sel.staffStart() * VOICES;
                   int track2 = sel.staffEnd() * VOICES;
                   Segment* startSegment = sel.startSegment();
                   Segment* endSegment = sel.endSegment(); //keep it, it could change during the loop
-                  bool stop = false;
                   for (Segment* s = startSegment; s && s != endSegment; s = s->next1()) {
                         for (int track = track1; track < track2; ++track) {
                               Element* e = s->element(track);
@@ -369,22 +528,15 @@ void Palette::mouseDoubleClickEvent(QMouseEvent* ev)
                                     continue;
                               if (e->type() == Element::Type::CHORD) {
                                     Chord* chord = static_cast<Chord*>(e);
-                                    foreach(Note* n, chord->notes()) {
+                                    for (Note* n : chord->notes())
                                           applyDrop(score, viewer, n, element);
-                                          if (element->type() == Element::Type::SLUR || element->type() == Element::Type::HAIRPIN) {
-                                                stop = true;
-                                                break;
-                                                }
-                                          }
                                     }
                               else {
                                     // do not apply articulation to barline in a range selection
                                     if(e->type() != Element::Type::BAR_LINE || element->type() != Element::Type::ARTICULATION)
                                           applyDrop(score, viewer, e, element);
                                     }
-                              if (stop) break;
                               }
-                        if (stop) break;
                         }
                   }
             }
diff --git a/mscore/palettebox.cpp b/mscore/palettebox.cpp
index 8664953..4848992 100644
--- a/mscore/palettebox.cpp
+++ b/mscore/palettebox.cpp
@@ -205,7 +205,7 @@ void PaletteBox::paletteCmd(PaletteCommand cmd, int slot)
                   break;
             case PaletteCommand::SAVE:
                   {
-                  QString path = mscore->getPaletteFilename(false);
+                  QString path = mscore->getPaletteFilename(false, palette->name());
                   if (!path.isEmpty())
                         palette->write(path);
                   }
diff --git a/mscore/pianoroll.cpp b/mscore/pianoroll.cpp
index b995e73..1ef3a3c 100644
--- a/mscore/pianoroll.cpp
+++ b/mscore/pianoroll.cpp
@@ -18,6 +18,7 @@
 #include "libmscore/staff.h"
 #include "libmscore/measure.h"
 #include "libmscore/note.h"
+#include "libmscore/repeatlist.h"
 #include "awl/pitchlabel.h"
 #include "awl/pitchedit.h"
 #include "awl/poslabel.h"
@@ -64,7 +65,9 @@ PianorollEditor::PianorollEditor(QWidget* parent)
       tb->addAction(getAction("loop"));
       tb->addSeparator();
       tb->addAction(getAction("repeat"));
-      tb->addAction(getAction("follow"));
+      QAction* followAction = getAction("follow");
+      followAction->setChecked(preferences.followSong);
+      tb->addAction(followAction);
       tb->addSeparator();
       tb->addAction(getAction("metronome"));
 
@@ -482,6 +485,8 @@ void PianorollEditor::keyReleased(int /*pitch*/)
 void PianorollEditor::heartBeat(Seq* seq)
       {
       unsigned tick = seq->getCurTick();
+      if (score()->repeatList())
+            tick = score()->repeatList()->utick2tick(tick);
       if (locator[0].tick() != tick) {
             posChanged(POS::CURRENT, tick);
             if (preferences.followSong)
diff --git a/mscore/pianoroll.h b/mscore/pianoroll.h
index b784bb3..9152924 100644
--- a/mscore/pianoroll.h
+++ b/mscore/pianoroll.h
@@ -33,7 +33,7 @@ class Ruler;
 class Seq;
 class WaveView;
 
-enum class Grip : char;
+enum class Grip : signed char;
 
 //---------------------------------------------------------
 //   PianorollEditor
diff --git a/mscore/pianotools.cpp b/mscore/pianotools.cpp
index 1eb1cc9..930fa0a 100644
--- a/mscore/pianotools.cpp
+++ b/mscore/pianotools.cpp
@@ -265,7 +265,7 @@ void PianoKeyItem::mousePressEvent(QGraphicsSceneMouseEvent*)
       _pressed = true;
       update();
       bool ctrl = qApp->keyboardModifiers() & Qt::ControlModifier;
-      emit piano->keyPressed(_pitch, ctrl);
+      emit piano->keyPressed(_pitch, ctrl, 80);
       }
 
 //---------------------------------------------------------
@@ -276,6 +276,7 @@ void PianoKeyItem::mouseReleaseEvent(QGraphicsSceneMouseEvent*)
       {
       _pressed = false;
       update();
+      emit piano->keyReleased(_pitch, false, 0);
       }
 
 //---------------------------------------------------------
@@ -314,7 +315,8 @@ PianoTools::PianoTools(QWidget* parent)
       _piano->setFocusPolicy(Qt::ClickFocus);
       setWidget(_piano);
 
-      connect(_piano, SIGNAL(keyPressed(int, bool)), SIGNAL(keyPressed(int, bool)));
+      connect(_piano, SIGNAL(keyPressed(int, bool, int)), SIGNAL(keyPressed(int, bool, int)));
+      connect(_piano, SIGNAL(keyReleased(int, bool, int)), SIGNAL(keyReleased(int, bool, int)));
       }
 
 //---------------------------------------------------------
diff --git a/mscore/pianotools.h b/mscore/pianotools.h
index 8978e01..b69dd3c 100644
--- a/mscore/pianotools.h
+++ b/mscore/pianotools.h
@@ -63,7 +63,8 @@ class HPiano : public QGraphicsView {
       void setScale(qreal);
 
    signals:
-      void keyPressed(int pitch, bool chord);
+      void keyPressed(int pitch, bool chord, int velo);
+      void keyReleased(int pitch, bool chord, int velo);
 
    public:
       HPiano(QWidget* parent = 0);
@@ -82,7 +83,8 @@ class PianoTools : public QDockWidget {
       HPiano* _piano;
 
    signals:
-      void keyPressed(int pitch, bool ctrl);
+      void keyPressed(int pitch, bool ctrl, int vel);
+      void keyReleased(int pitch, bool ctrl, int vel);
 
    public:
       PianoTools(QWidget* parent = 0);
diff --git a/mscore/pluginCreator.cpp b/mscore/pluginCreator.cpp
index 0a3e89e..98444d7 100644
--- a/mscore/pluginCreator.cpp
+++ b/mscore/pluginCreator.cpp
@@ -263,10 +263,12 @@ static void qmlMsgHandler(QtMsgType type, const char* msg)
             case QtFatalMsg:
                   s = QString("Fatal: %1\n").arg(msg);
                   break;
-/* Qt5.2?           case QtTraceMsg:
-                  s = QString("Trace: %1\n").arg(msg);
+            default:
+
+// Qt5.2?   case QtTraceMsg:
+// Qt5.4   case QtInfoMsg:
+                  s = QString("Info: %1\n").arg(msg);
                   break;
-            */
             }
       mscore->pluginCreator()->msg(s);
       }
diff --git a/mscore/preferences.cpp b/mscore/preferences.cpp
index 542d97b..cdd367f 100644
--- a/mscore/preferences.cpp
+++ b/mscore/preferences.cpp
@@ -152,6 +152,7 @@ void Preferences::init()
             midiRemote[i].type = MIDI_REMOTE_TYPE_INACTIVE;
 
       midiExpandRepeats        = true;
+      midiExportRPNs           = false;
       MScore::playRepeats      = true;
       MScore::panPlayback      = true;
       instrumentList1          = ":/data/instruments.xml";
@@ -214,10 +215,10 @@ void Preferences::init()
 #else
       nativeDialogs           = false;    // don't use system native file dialogs
 #endif
-
       exportAudioSampleRate   = exportAudioSampleRates[0];
 
       workspace               = "Basic";
+      exportPdfDpi            = 300;
       };
 
 //---------------------------------------------------------
@@ -284,6 +285,7 @@ void Preferences::write()
       s.setValue("defaultStyle",       defaultStyleFile);
 
       s.setValue("midiExpandRepeats",  midiExpandRepeats);
+      s.setValue("midiExportRPNs",     midiExportRPNs);
       s.setValue("playRepeats",        MScore::playRepeats);
       s.setValue("panPlayback",        MScore::panPlayback);
       s.setValue("instrumentList",     instrumentList1);
@@ -341,6 +343,7 @@ void Preferences::write()
       s.setValue("exportAudioSampleRate", exportAudioSampleRate);
 
       s.setValue("workspace", workspace);
+      s.setValue("exportPdfDpi", exportPdfDpi);
 
       //update
       s.setValue("checkUpdateStartup", checkUpdateStartup);
@@ -425,6 +428,7 @@ void Preferences::read()
       defaultStyleFile         = s.value("defaultStyle", defaultStyleFile).toString();
 
       midiExpandRepeats        = s.value("midiExpandRepeats", midiExpandRepeats).toBool();
+      midiExportRPNs           = s.value("midiExportRPNs", midiExportRPNs).toBool();
       MScore::playRepeats      = s.value("playRepeats", MScore::playRepeats).toBool();
       MScore::panPlayback      = s.value("panPlayback", MScore::panPlayback).toBool();
       alternateNoteEntryMethod = s.value("alternateNoteEntry", alternateNoteEntryMethod).toBool();
@@ -491,6 +495,7 @@ void Preferences::read()
       exportAudioSampleRate = s.value("exportAudioSampleRate", exportAudioSampleRate).toInt();
 
       workspace          = s.value("workspace", workspace).toString();
+      exportPdfDpi       = s.value("exportPdfDpi", exportPdfDpi).toInt();
 
       checkUpdateStartup = s.value("checkUpdateStartup", checkUpdateStartup).toBool();
 
@@ -828,6 +833,7 @@ void PreferenceDialog::updateValues()
             }
       sessionScore->setText(prefs.startScore);
       expandRepeats->setChecked(prefs.midiExpandRepeats);
+      exportRPNs->setChecked(prefs.midiExportRPNs);
       instrumentList1->setText(prefs.instrumentList1);
       instrumentList2->setText(prefs.instrumentList2);
 
@@ -979,6 +985,7 @@ void PreferenceDialog::updateValues()
       if (idx == n)     // if not found in table
             idx = 0;
       exportAudioSampleRate->setCurrentIndex(idx);
+      exportPdfDpi->setValue(prefs.exportPdfDpi);
 
       sfChanged = false;
       }
@@ -1371,6 +1378,7 @@ void PreferenceDialog::apply()
       prefs.exportAudioSampleRate = exportAudioSampleRates[idx];
 
       prefs.midiExpandRepeats  = expandRepeats->isChecked();
+      prefs.midiExportRPNs     = exportRPNs->isChecked();
       prefs.instrumentList1    = instrumentList1->text();
       prefs.instrumentList2    = instrumentList2->text();
 
@@ -1390,6 +1398,7 @@ void PreferenceDialog::apply()
       prefs.pngResolution      = pngResolution->value();
       prefs.pngTransparent     = pngTransparent->isChecked();
       converterDpi             = prefs.pngResolution;
+      prefs.exportPdfDpi       = exportPdfDpi->value();
 
       if (shortcutsChanged) {
             shortcutsChanged = false;
@@ -1887,6 +1896,7 @@ void PreferenceDialog::printShortcutsClicked()
       qreal y;
       qreal lh = QFontMetricsF(p.font()).lineSpacing();
 
+      // get max width for description
       QMapIterator<QString, Shortcut*> isc(localShortcuts);
       qreal col1Width = 0.0;
       while (isc.hasNext()) {
@@ -1896,9 +1906,8 @@ void PreferenceDialog::printShortcutsClicked()
             }
 
       int idx = 0;
-      isc = QMapIterator<QString, Shortcut*>(localShortcuts);
-      while (isc.hasNext()) {
-            isc.next();
+      QTreeWidgetItem* item = shortcutList->topLevelItem(0);
+      while (item) {
             if (idx == 0 || y >= (ph - bm)) {
                   y = tm;
                   if (idx)
@@ -1915,11 +1924,11 @@ void PreferenceDialog::printShortcutsClicked()
                         y += 5 * dpmm;
                         }
                   }
-            Shortcut* s = isc.value();
-            p.drawText(lm, y, s->descr());
-            p.drawText(col1Width + lm + 5 * dpmm, y, s->keysToString());
+            p.drawText(lm, y, item->text(0));
+            p.drawText(col1Width + lm + 5 * dpmm, y, item->text(1));
             y += lh;
             ++idx;
+            item = shortcutList->itemBelow(item);
             }
       p.end();
       }
diff --git a/mscore/preferences.h b/mscore/preferences.h
index 0bb757d..0602e3c 100644
--- a/mscore/preferences.h
+++ b/mscore/preferences.h
@@ -122,6 +122,7 @@ struct Preferences {
       MidiRemote midiRemote[MIDI_REMOTES];
 
       bool midiExpandRepeats;
+      bool midiExportRPNs;
       QString instrumentList1; // file path of instrument templates
       QString instrumentList2;
 
@@ -170,6 +171,7 @@ struct Preferences {
       int exportAudioSampleRate;
 
       QString workspace;
+      int exportPdfDpi;
 
       bool dirty;
 
@@ -179,6 +181,7 @@ struct Preferences {
       void writePluginList();
       void updatePluginList();
 
+
       Preferences();
       void write();
       void read();
diff --git a/mscore/prefsdialog.ui b/mscore/prefsdialog.ui
index 2ad2032..4e6cbfc 100644
--- a/mscore/prefsdialog.ui
+++ b/mscore/prefsdialog.ui
@@ -22,8 +22,8 @@
   <property name="accessibleName">
    <string>MuseScore Preferences</string>
   </property>
-  <layout class="QGridLayout" name="gridLayout_3">
-   <item row="3" column="0">
+  <layout class="QGridLayout" name="gridLayout_10">
+   <item row="1" column="0">
     <layout class="QHBoxLayout">
      <property name="spacing">
       <number>6</number>
@@ -3018,8 +3018,21 @@
       <attribute name="title">
        <string>Export</string>
       </attribute>
-      <layout class="QVBoxLayout" name="verticalLayout_7">
-       <item>
+      <layout class="QGridLayout" name="gridLayout_3">
+       <item row="4" column="0">
+        <spacer>
+         <property name="orientation">
+          <enum>Qt::Vertical</enum>
+         </property>
+         <property name="sizeHint" stdset="0">
+          <size>
+           <width>20</width>
+           <height>40</height>
+          </size>
+         </property>
+        </spacer>
+       </item>
+       <item row="0" column="0">
         <widget class="QGroupBox" name="groupBox_9">
          <property name="title">
           <string>PNG/SVG</string>
@@ -3059,7 +3072,7 @@
            </spacer>
           </item>
           <item row="0" column="1">
-           <widget class="QDoubleSpinBox" name="pngResolution">
+           <widget class="QSpinBox" name="pngResolution">
             <property name="accessibleName">
              <string>Resolution DPI</string>
             </property>
@@ -3067,20 +3080,20 @@
              <string>Choose resolution DPI</string>
             </property>
             <property name="minimum">
-             <double>32.000000000000000</double>
+             <number>32</number>
             </property>
             <property name="maximum">
-             <double>5000.000000000000000</double>
+             <number>5000</number>
             </property>
             <property name="value">
-             <double>300.000000000000000</double>
+             <number>300</number>
             </property>
            </widget>
           </item>
          </layout>
         </widget>
        </item>
-       <item>
+       <item row="1" column="0">
         <widget class="QGroupBox" name="groupBox_8">
          <property name="sizePolicy">
           <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
@@ -3108,10 +3121,17 @@
             </property>
            </widget>
           </item>
+          <item>
+           <widget class="QCheckBox" name="exportRPNs">
+            <property name="text">
+             <string>Export RPNs</string>
+            </property>
+           </widget>
+          </item>
          </layout>
         </widget>
        </item>
-       <item>
+       <item row="1" column="1">
         <widget class="QGroupBox" name="groupBox_16">
          <property name="accessibleName">
           <string>Audio</string>
@@ -3163,7 +3183,7 @@
          </layout>
         </widget>
        </item>
-       <item>
+       <item row="3" column="0" colspan="2">
         <widget class="QGroupBox" name="groupBox_22">
          <property name="sizePolicy">
           <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
@@ -3232,18 +3252,53 @@
          </layout>
         </widget>
        </item>
-       <item>
-        <spacer>
-         <property name="orientation">
-          <enum>Qt::Vertical</enum>
-         </property>
-         <property name="sizeHint" stdset="0">
-          <size>
-           <width>20</width>
-           <height>40</height>
-          </size>
+       <item row="0" column="1">
+        <widget class="QGroupBox" name="groupBox">
+         <property name="title">
+          <string>PDF</string>
          </property>
-        </spacer>
+         <layout class="QGridLayout" name="gridLayout_11">
+          <item row="1" column="0">
+           <widget class="QLabel" name="label_6">
+            <property name="text">
+             <string>Resolution DPI:</string>
+            </property>
+           </widget>
+          </item>
+          <item row="1" column="1">
+           <widget class="QSpinBox" name="exportPdfDpi">
+            <property name="accessibleName">
+             <string>Resolution DPI</string>
+            </property>
+            <property name="accessibleDescription">
+             <string>Choose resolution DPI</string>
+            </property>
+            <property name="minimum">
+             <number>75</number>
+            </property>
+            <property name="maximum">
+             <number>2400</number>
+            </property>
+            <property name="value">
+             <number>300</number>
+            </property>
+           </widget>
+          </item>
+          <item row="1" column="2">
+           <spacer name="horizontalSpacer_3">
+            <property name="orientation">
+             <enum>Qt::Horizontal</enum>
+            </property>
+            <property name="sizeHint" stdset="0">
+             <size>
+              <width>40</width>
+              <height>20</height>
+             </size>
+            </property>
+           </spacer>
+          </item>
+         </layout>
+        </widget>
        </item>
       </layout>
      </widget>
@@ -3613,7 +3668,6 @@
   <tabstop>shortestNote</tabstop>
   <tabstop>pngResolution</tabstop>
   <tabstop>pngTransparent</tabstop>
-  <tabstop>expandRepeats</tabstop>
   <tabstop>exportAudioSampleRate</tabstop>
   <tabstop>exportLayout</tabstop>
   <tabstop>exportAllBreaks</tabstop>
diff --git a/mscore/qmlplugin.cpp b/mscore/qmlplugin.cpp
index 79a90c3..56d54e7 100644
--- a/mscore/qmlplugin.cpp
+++ b/mscore/qmlplugin.cpp
@@ -22,8 +22,6 @@
 
 namespace Ms {
 
-// extern MuseScoreCore* mscoreCore;
-
 //---------------------------------------------------------
 //   QmlPlugin
 //---------------------------------------------------------
@@ -147,6 +145,61 @@ void QmlPlugin::cmd(const QString& s)
       }
 
 //---------------------------------------------------------
+//   openLog
+//---------------------------------------------------------
+
+void QmlPlugin::openLog(const QString& name)
+      {
+      if (logFile.isOpen())
+            logFile.close();
+      logFile.setFileName(name);
+      if (!logFile.open(QIODevice::WriteOnly))
+            qDebug("QmlPlugin::openLog: failed");
+      }
+
+//---------------------------------------------------------
+//   closeLog
+//---------------------------------------------------------
+
+void QmlPlugin::closeLog()
+      {
+      if (logFile.isOpen())
+            logFile.close();
+      }
+
+//---------------------------------------------------------
+//   log
+//---------------------------------------------------------
+
+void QmlPlugin::log(const QString& txt)
+      {
+      if (logFile.isOpen())
+            logFile.write(txt.toLocal8Bit());
+      }
+
+//---------------------------------------------------------
+//   logn
+//---------------------------------------------------------
+
+void QmlPlugin::logn(const QString& txt)
+      {
+      log(txt);
+      if (logFile.isOpen())
+            logFile.write("\n");
+      }
+
+//---------------------------------------------------------
+//   log2
+//---------------------------------------------------------
+
+void QmlPlugin::log2(const QString& txt, const QString& txt2)
+      {
+      logFile.write(txt.toLocal8Bit());
+      logFile.write(txt2.toLocal8Bit());
+      logFile.write("\n");
+      }
+
+//---------------------------------------------------------
 //   newQProcess
 //---------------------------------------------------------
 
@@ -154,6 +207,7 @@ MsProcess* QmlPlugin::newQProcess()
       {
       return 0; // TODO: new MsProcess(this);
       }
+
 }
 #endif
 
diff --git a/mscore/qmlplugin.h b/mscore/qmlplugin.h
index 3091154..21a6146 100644
--- a/mscore/qmlplugin.h
+++ b/mscore/qmlplugin.h
@@ -74,6 +74,7 @@ class QmlPlugin : public QQuickItem {
       QString _dockArea;
       QString _version;
       QString _description;
+      QFile logFile;
 
    protected:
       QString _filePath;            // the path of the source file, without file name
@@ -116,6 +117,12 @@ class QmlPlugin : public QQuickItem {
       Q_INVOKABLE bool writeScore(Ms::Score*, const QString& name, const QString& ext);
       Q_INVOKABLE Ms::Score* readScore(const QString& name, bool noninteractive = false);
       Q_INVOKABLE void closeScore(Ms::Score*);
+
+      Q_INVOKABLE void log(const QString&);
+      Q_INVOKABLE void logn(const QString&);
+      Q_INVOKABLE void log2(const QString&, const QString&);
+      Q_INVOKABLE void openLog(const QString&);
+      Q_INVOKABLE void closeLog();
       };
 
 
diff --git a/mscore/resourceManager.cpp b/mscore/resourceManager.cpp
index c587bac..65fcba4 100644
--- a/mscore/resourceManager.cpp
+++ b/mscore/resourceManager.cpp
@@ -27,7 +27,7 @@ ResourceManager::ResourceManager(QWidget *parent) :
       setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
       QDir dir;
       dir.mkpath(dataPath + "/locale");
-      baseAddr = "http://extensions.musescore.org/2.0.1/";
+      baseAddr = "http://extensions.musescore.org/2.0.2/";
       displayPlugins();
       displayLanguages();
       languagesTable->horizontalHeader()->setResizeMode(QHeaderView::Stretch);
diff --git a/mscore/revision.h b/mscore/revision.h
index c1d1c50..09277a1 100644
--- a/mscore/revision.h
+++ b/mscore/revision.h
@@ -1 +1 @@
-b25f81d
+3543170
diff --git a/mscore/scoreview.cpp b/mscore/scoreview.cpp
index b41ee5e..e1d4bd0 100644
--- a/mscore/scoreview.cpp
+++ b/mscore/scoreview.cpp
@@ -672,8 +672,8 @@ ScoreView::ScoreView(QWidget* parent)
       curElement  = 0;
       _bgColor    = Qt::darkBlue;
       _fgColor    = Qt::white;
-      fgPixmap    = 0;
-      bgPixmap    = 0;
+      _fgPixmap    = 0;
+      _bgPixmap    = 0;
       curGrip     = Grip::NO_GRIP;
       defaultGrip = Grip::NO_GRIP;
       lasso       = new Lasso(_score);
@@ -990,8 +990,8 @@ ScoreView::~ScoreView()
       delete _continuousPanel;
       delete _curLoopIn;
       delete _curLoopOut;
-      delete bgPixmap;
-      delete fgPixmap;
+      delete _bgPixmap;
+      delete _fgPixmap;
       delete shadowNote;
       }
 
@@ -1089,9 +1089,8 @@ void ScoreView::measurePopup(const QPoint& gpos, Measure* obj)
       int staffIdx;
       int pitch;
       Segment* seg;
-      QPointF offset;
 
-      if (!_score->pos2measure(data.startMove, &staffIdx, &pitch, &seg, &offset))
+      if (!_score->pos2measure(data.startMove, &staffIdx, &pitch, &seg, 0))
             return;
       if (staffIdx == -1) {
             qDebug("ScoreView::measurePopup: staffIdx == -1!");
@@ -1277,15 +1276,15 @@ void ScoreView::setEditPos(const QPointF& pt)
 
 void ScoreView::setBackground(QPixmap* pm)
       {
-      delete bgPixmap;
-      bgPixmap = pm;
+      delete _bgPixmap;
+      _bgPixmap = pm;
       update();
       }
 
 void ScoreView::setBackground(const QColor& color)
       {
-      delete bgPixmap;
-      bgPixmap = 0;
+      delete _bgPixmap;
+      _bgPixmap = 0;
       _bgColor = color;
       update();
       }
@@ -1296,15 +1295,15 @@ void ScoreView::setBackground(const QColor& color)
 
 void ScoreView::setForeground(QPixmap* pm)
       {
-      delete fgPixmap;
-      fgPixmap = pm;
+      delete _fgPixmap;
+      _fgPixmap = pm;
       update();
       }
 
 void ScoreView::setForeground(const QColor& color)
       {
-      delete fgPixmap;
-      fgPixmap = 0;
+      delete _fgPixmap;
+      _fgPixmap = 0;
       _fgColor = color;
       update();
       }
@@ -1328,7 +1327,6 @@ void ScoreView::moveCursor(int tick)
       Measure* measure = score()->tick2measureMM(tick);
       if (measure == 0)
             return;
-      int offset = 0;
 
       qreal x;
       Segment* s;
@@ -1351,8 +1349,6 @@ void ScoreView::moveCursor(int tick)
                   else
                         x2 = measure->canvasPos().x() + measure->width(); //safety, should not happen
                   }
-            t1 += offset;
-            t2 += offset;
             if (tick >= t1 && tick < t2) {
                   int   dt = t2 - t1;
                   qreal dx = x2 - x1;
@@ -1389,7 +1385,7 @@ void ScoreView::moveCursor(int tick)
             SysStaff* ss = system->staff(i);
             if (!ss->show() || !_score->staff(i)->show())
                   continue;
-            y2 = ss->y() + ss->bbox().height();
+            y2 = ss->bbox().bottom();
             }
       h += y2;
       x -= _spatium;
@@ -1530,7 +1526,6 @@ void ScoreView::setLoopCursor(PositionCursor *curLoop, int tick, bool isInPos)
       if (measure == 0)
             return;
       qreal x;
-      int offset = 0;
 
       Segment* s;
       for (s = measure->first(Segment::Type::ChordRest); s;) {
@@ -1547,8 +1542,6 @@ void ScoreView::setLoopCursor(PositionCursor *curLoop, int tick, bool isInPos)
                   t2 = measure->endTick();
                   x2 = measure->canvasPos().x() + measure->width();
                   }
-            t1 += offset;
-            t2 += offset;
             if (tick >= t1 && tick < t2) {
                   int   dt = t2 - t1;
                   qreal dx = x2 - x1;
@@ -1746,10 +1739,10 @@ void ScoreView::drawBackground(QPainter* p, const QRectF& r) const
             p->fillRect(r, Qt::white);
             return;
             }
-      if (fgPixmap == 0 || fgPixmap->isNull())
+      if (_fgPixmap == 0 || _fgPixmap->isNull())
             p->fillRect(r, _fgColor);
       else {
-            p->drawTiledPixmap(r, *fgPixmap, r.topLeft()
+            p->drawTiledPixmap(r, *_fgPixmap, r.topLeft()
                - QPoint(lrint(_matrix.dx()), lrint(_matrix.dy())));
             }
       }
@@ -1861,10 +1854,10 @@ void ScoreView::paintPageBorder(QPainter& p, Page* page)
 void ScoreView::paint(const QRect& r, QPainter& p)
       {
       p.save();
-      if (fgPixmap == 0 || fgPixmap->isNull())
+      if (_fgPixmap == 0 || _fgPixmap->isNull())
             p.fillRect(r, _fgColor);
       else {
-            p.drawTiledPixmap(r, *fgPixmap, r.topLeft()
+            p.drawTiledPixmap(r, *_fgPixmap, r.topLeft()
                - QPoint(lrint(_matrix.dx()), lrint(_matrix.dy())));
             }
 
@@ -2002,10 +1995,10 @@ void ScoreView::paint(const QRect& r, QPainter& p)
       p.setMatrixEnabled(false);
       if ((_score->layoutMode() != LayoutMode::LINE) && !r1.isEmpty()) {
             p.setClipRegion(r1);  // only background
-            if (bgPixmap == 0 || bgPixmap->isNull())
+            if (_bgPixmap == 0 || _bgPixmap->isNull())
                   p.fillRect(r, _bgColor);
             else
-                  p.drawTiledPixmap(r, *bgPixmap, r.topLeft() - QPoint(_matrix.m31(), _matrix.m32()));
+                  p.drawTiledPixmap(r, *_bgPixmap, r.topLeft() - QPoint(_matrix.m31(), _matrix.m32()));
             }
       p.restore();
       }
@@ -2323,7 +2316,7 @@ void ScoreView::drawElements(QPainter& painter, const QList<Element*>& el)
 
 void ScoreView::setMag(qreal nmag)
       {
-      qreal m = mag();
+      qreal m = _matrix.m11();
 
       if (nmag == m)
             return;
@@ -2960,7 +2953,12 @@ void ScoreView::cmd(const QAction* a)
                   if (e->type() == Element::Type::NOTE)
                         e = static_cast<Note*>(e)->chord();
                   ChordRest* cr = static_cast<ChordRest*>(e);
-                  if (cr->segment()->splitsTuplet()) {
+                  if (cr->segment()->rtick() == 0) {
+                        QMessageBox::warning(0, "MuseScore",
+                           tr("Cannot split measure here:\n"
+                           "First beat of measure"));
+                        }
+                  else if (cr->segment()->splitsTuplet()) {
                         QMessageBox::warning(0, "MuseScore",
                            tr("Cannot split measure here:\n"
                            "Cannot split tuplet"));
@@ -2992,19 +2990,25 @@ void ScoreView::cmd(const QAction* a)
             }
       else if (cmd == "toggle-visible") {
             _score->startCmd();
-            foreach(Element* e, _score->selection().elements())
-                  _score->undo(new ChangeProperty(e, P_ID::VISIBLE, !e->getProperty(P_ID::VISIBLE).toBool()));
+            QSet<Element*> spanners;
+            for (Element* e : _score->selection().elements()) {
+                  bool spannerSegment = e->isSpannerSegment();
+                  if (!spannerSegment || !spanners.contains(static_cast<SpannerSegment*>(e)->spanner()))
+                        _score->undo(new ChangeProperty(e, P_ID::VISIBLE, !e->getProperty(P_ID::VISIBLE).toBool()));
+                  if (spannerSegment)
+                        spanners.insert(static_cast<SpannerSegment*>(e)->spanner());
+                  }
             _score->endCmd();
             }
       else if (cmd == "set-visible") {
             _score->startCmd();
-            foreach(Element* e, _score->selection().elements())
+            for (Element* e : _score->selection().elements())
                   _score->undo(new ChangeProperty(e, P_ID::VISIBLE, true));
             _score->endCmd();
             }
       else if (cmd == "unset-visible") {
             _score->startCmd();
-            foreach(Element* e, _score->selection().elements())
+            for (Element* e : _score->selection().elements())
                   _score->undo(new ChangeProperty(e, P_ID::VISIBLE, false));
             _score->endCmd();
             }
@@ -4137,7 +4141,7 @@ void ScoreView::startUndoRedo()
 
 //---------------------------------------------------------
 //   cmdAddSlur
-//    'S' typed on keyboard
+//    command invoked, or icon double clicked
 //---------------------------------------------------------
 
 void ScoreView::cmdAddSlur()
@@ -4150,8 +4154,10 @@ void ScoreView::cmdAddSlur()
             is.setSlur(nullptr);
             return;
             }
+      bool undoActive = _score->undo()->active();
       if (_score->selection().isRange()) {
-            _score->startCmd();
+            if (!undoActive)
+                  _score->startCmd();
             int startTrack = _score->selection().staffStart() * VOICES;
             int endTrack   = _score->selection().staffEnd() * VOICES;
             for (int track = startTrack; track < endTrack; ++track) {
@@ -4180,7 +4186,8 @@ void ScoreView::cmdAddSlur()
                         _score->undoAddElement(slur);
                         }
                   }
-            _score->endCmd();
+            if (!undoActive)
+                  _score->endCmd();
             mscore->endCmd();
             }
       else {
@@ -4235,6 +4242,10 @@ void ScoreView::cmdAddNoteLine()
             qDebug("addNoteLine: no note %p %p", firstNote, lastNote);
             return;
             }
+      if (firstNote == lastNote) {
+           qDebug("addNoteLine: no support for note to same note line %p", firstNote);
+           return;
+           }
       TextLine* tl = new TextLine(_score);
       tl->setParent(firstNote);
       tl->setStartElement(firstNote);
@@ -4316,6 +4327,14 @@ void ScoreView::cmdAddSlur(Note* firstNote, Note* lastNote)
 void ScoreView::cmdAddHairpin(bool decrescendo)
       {
       Selection selection = _score->selection();
+      // special case for two selected chordrests on same staff
+      bool twoNotesSameStaff = false;
+      if (selection.isList() && selection.elements().size() == 2) {
+            ChordRest* cr1 = selection.firstChordRest();
+            ChordRest* cr2 = selection.lastChordRest();
+            if (cr1 && cr2 && cr1 != cr2 && cr1->staffIdx() == cr2->staffIdx())
+                  twoNotesSameStaff = true;
+            }
       // add hairpin on each staff if possible
       if (selection.isRange() && selection.staffStart() != selection.staffEnd() - 1) {
             _score->startCmd();
@@ -4331,7 +4350,9 @@ void ScoreView::cmdAddHairpin(bool decrescendo)
             _score->endCmd();
             _score->startCmd();
             }
-      else {
+      else if (selection.isRange() || selection.isSingle() || twoNotesSameStaff) {
+            // for single staff range selection, or single selection,
+            // find start & end elements elements
             ChordRest* cr1;
             ChordRest* cr2;
             _score->getSelectedChordRest2(&cr1, &cr2);
@@ -4341,7 +4362,8 @@ void ScoreView::cmdAddHairpin(bool decrescendo)
                   cr2 = cr1;
 
             _score->startCmd();
-            Hairpin* pin = _score->addHairpin(decrescendo, cr1->tick(), cr2->tick() + cr2->actualTicks(), cr1->track());
+            int tick2 = twoNotesSameStaff ? cr2->tick() : cr2->tick() + cr2->actualTicks();
+            Hairpin* pin = _score->addHairpin(decrescendo, cr1->tick(), tick2, cr1->track());
             pin->layout();
             _score->endCmd();
             _score->startCmd();
@@ -4359,6 +4381,11 @@ void ScoreView::cmdAddHairpin(bool decrescendo)
                         _score->endCmd();
                   }
             }
+      else {
+            // do not attempt for list selection
+            // or we will keep adding hairpins to the same chordrests
+            return;
+            }
       }
 
 //---------------------------------------------------------
@@ -5852,57 +5879,13 @@ void ScoreView::cmdAddRemoveBreaks()
       else if (!_score->selection().isRange())
             return;
 
-      Segment* startSegment = _score->selection().startSegment();
-      if (!startSegment) // empty score?
-            return;
-      Segment* endSegment = _score->selection().endSegment();
-      Measure* startMeasure = startSegment->measure();
-      Measure* endMeasure = endSegment ? endSegment->measure() : _score->lastMeasure();
-
       BreaksDialog bd;
       if (!bd.exec())
             return;
 
-      int interval = bd.interval;
-      bool lock = bd.lock;
-      bool remove = bd.remove;
+      int interval = bd.remove || bd.lock ? 0 : bd.interval;
 
-      // loop through measures in selection
-      int count = 0;
-      for (Measure* m = startMeasure; m; m = m->nextMeasure()) {
-            if (lock) {
-                  // skip if it already has a break
-                  if (m->lineBreak() || m->pageBreak())
-                        continue;
-                  // add break if last measure of system
-                  if (m == m->system()->lastMeasure())
-                        m->undoSetLineBreak(true);
-                  }
-            else {
-                  if (remove) {
-                        // remove line break if present
-                        if (m->lineBreak())
-                             m->undoSetLineBreak(false);
-                        }
-                  else {
-                        // skip last measure in score (even if in selection)
-                        if (++count == interval) {
-                              // found place for break; add if not already one present
-                              // but skip last measure in score (even if in selection)
-                              if (!(m->lineBreak() || m->pageBreak() || m == m->system()->lastMeasure()))
-                                    m->undoSetLineBreak(true);
-                              // reset count
-                              count = 0;
-                              }
-                        else if (m->lineBreak()) {
-                              // remove line break if present in wrong place
-                              m->undoSetLineBreak(false);
-                              }
-                        }
-                  }
-            if (m == endMeasure)
-                  break;
-            }
+      _score->addRemoveBreaks(interval, bd.lock);
 
       if (noSelection)
              _score->deselectAll();
diff --git a/mscore/scoreview.h b/mscore/scoreview.h
index 63b2928..1943e3b 100644
--- a/mscore/scoreview.h
+++ b/mscore/scoreview.h
@@ -51,7 +51,7 @@ class PositionCursor;
 class ContinuousPanel;
 class Tuplet;
 
-enum class Grip : char;
+enum class Grip : signed char;
 enum class POS : char;
 enum class MagIdx : char;
 
@@ -181,8 +181,8 @@ class ScoreView : public QWidget, public MuseScoreView {
 
       QColor _bgColor;
       QColor _fgColor;
-      QPixmap* bgPixmap;
-      QPixmap* fgPixmap;
+      QPixmap* _bgPixmap;
+      QPixmap* _fgPixmap;
 
       virtual void paintEvent(QPaintEvent*);
       void paint(const QRect&, QPainter&);
@@ -314,6 +314,8 @@ class ScoreView : public QWidget, public MuseScoreView {
       ScoreView(QWidget* parent = 0);
       ~ScoreView();
 
+      QPixmap* fgPixmap() { return _fgPixmap; }
+
       virtual void startEdit(Element*, Grip);
       void startEdit(Element*);
 
diff --git a/mscore/seq.cpp b/mscore/seq.cpp
index 4ce7b1b..b49d572 100644
--- a/mscore/seq.cpp
+++ b/mscore/seq.cpp
@@ -59,8 +59,6 @@ static OggVorbis_File vf;
 
 #if 0 // yet(?) unused
 static const int AUDIO_BUFFER_SIZE = 1024 * 512;  // 2 MB
-
-static const int MIN_CLICKS   = 3;        // the minimum number of 'clicks' in a count-in
 #endif
 
 //---------------------------------------------------------
@@ -513,7 +511,7 @@ void Seq::playEvent(const NPlayEvent& event, unsigned framePos)
             if (!mute)
                   putEvent(event, framePos);
             }
-      else if (type == ME_CONTROLLER)
+      else if (type == ME_CONTROLLER || type == ME_PITCHBEND)
             putEvent(event, framePos);
       }
 
@@ -527,7 +525,7 @@ void Seq::recomputeMaxMidiOutPort() {
       if (!(preferences.useJackMidi || preferences.useAlsaAudio))
             return;
       int max = 0;
-      foreach(Score * s, mscoreCore->scores()) {
+      foreach(Score * s, MuseScoreCore::mscoreCore->scores()) {
             if (s->midiPortCount() > max)
                   max = s->midiPortCount();
             }
@@ -620,64 +618,8 @@ void Seq::addCountInClicks()
       {
       int         plPos       = cs->playPos();
       Measure*    m           = cs->tick2measure(plPos);
-      int         msrTick     = m->tick();
-      qreal       tempo       = cs->tempomap()->tempo(msrTick);
-      Fraction    timeSig     = cs->sigmap()->timesig(msrTick).nominal();
-      int         numerator   = timeSig.numerator();
-      int         denominator = timeSig.denominator();
-      int         clickTicks  = MScore::division * 4 / denominator;
-      NPlayEvent  event;
-      int         tick;
-      bool        triplets    = false;          // whether to play click-clack in triplets or not
-
-      // COMPOUND METER: if time sig is 3*n/d, convert to 3d units
-      // note: 3/8, 3/16, ... are NOT considered compound
-      if (numerator > 3 && numerator % 3 == 0) {
-            // if denominator longer than 1/8 OR tempo for compound unit slower than 60MM
-            // (i.e. each denom. unit slower than 180MM = tempo 3.0)
-            // then do not count as compound, but beat click-clack-clack triplets
-            if (denominator < 8 || tempo * denominator / 4 < 3.0)
-                  triplets = true;
-            // otherwise, count as compound meter (one beat every 3 denominator units)
-            else {
-                  numerator   /= 3;
-                  clickTicks  *= 3;
-                  }
-            }
-
-      // NUMBER OF TICKS
-      int numOfClicks = numerator;                          // default to a full measure of 'clicks'
-      int lastPause   = clickTicks;                         // the number of ticks to wait after the last 'click'
-      // if not at the beginning of a measure, add clicks for the initial measure part
-      if (msrTick < plPos) {
-            int delta    = plPos - msrTick;
-            int addClick = (delta + clickTicks - 1) / clickTicks;     // round num. of clicks up
-            numOfClicks += addClick;
-            lastPause    = delta - (addClick - 1) * clickTicks;       // anything after last click time is final pause
-            }
-      // or if measure not complete (anacrusis), add clicks for the missing measure part
-      else if (m->ticks() < clickTicks * numerator) {
-            int delta    = clickTicks * numerator - m->ticks();
-            int addClick = (delta + clickTicks - 1) / clickTicks;
-            numOfClicks += addClick;
-            lastPause    = delta - (addClick - 1) * clickTicks;
-            }
-/*
-      // MIN_CLICKS: be sure to have at least MIN_CLICKS clicks: if less, add full measures
-      while (numOfClicks < MIN_CLICKS)
-            numOfClicks += numerator;
-*/
-      // click-clack-clack triplets
-      if (triplets)
-            numerator = 3;
-
-      // add count-in events
-      for (int i = tick = 0; i < numOfClicks; i++, tick += clickTicks) {
-            event.setType( (i % numerator) == 0 ? ME_TICK1 : ME_TICK2);
-            countInEvents.insert( std::pair<int,NPlayEvent>(tick, event));
-            }
-      // add 1 empty event at the end to wait after the last click
-      tick += lastPause - clickTicks;
+      int tick = cs->renderMetronome(&countInEvents, m, plPos, 0, true);
+      NPlayEvent event;
       event.setType(ME_INVALID);
       event.setPitch(0);
       countInEvents.insert( std::pair<int,NPlayEvent>(tick, event));
@@ -977,6 +919,23 @@ void Seq::initInstruments(bool realTime)
                   else
                         sendEvent(event);
                   }
+            // Setting pitch bend sensitivity to 12 semitones for external synthesizers
+            if ((preferences.useJackMidi || preferences.useAlsaAudio) && mm.channel != 9) {
+                  if (realTime) {
+                        putEvent(NPlayEvent(ME_CONTROLLER, channel->channel, CTRL_LRPN, 0));
+                        putEvent(NPlayEvent(ME_CONTROLLER, channel->channel, CTRL_HRPN, 0));
+                        putEvent(NPlayEvent(ME_CONTROLLER, channel->channel, CTRL_HDATA,12));
+                        putEvent(NPlayEvent(ME_CONTROLLER, channel->channel, CTRL_LRPN, 127));
+                        putEvent(NPlayEvent(ME_CONTROLLER, channel->channel, CTRL_HRPN, 127));
+                        }
+                  else {
+                        sendEvent(NPlayEvent(ME_CONTROLLER, channel->channel, CTRL_LRPN, 0));
+                        sendEvent(NPlayEvent(ME_CONTROLLER, channel->channel, CTRL_HRPN, 0));
+                        sendEvent(NPlayEvent(ME_CONTROLLER, channel->channel, CTRL_HDATA,12));
+                        sendEvent(NPlayEvent(ME_CONTROLLER, channel->channel, CTRL_LRPN, 127));
+                        sendEvent(NPlayEvent(ME_CONTROLLER, channel->channel, CTRL_HRPN, 127));
+                        }
+                  }
             }
       }
 
@@ -1177,11 +1136,15 @@ void Seq::stopNotes(int channel, bool realTime)
             for(int ch = 0; ch < cs->midiMapping()->size(); ch++) {
                   send(NPlayEvent(ME_CONTROLLER, ch, CTRL_SUSTAIN, 0));
                   send(NPlayEvent(ME_CONTROLLER, ch, CTRL_ALL_NOTES_OFF, 0));
+                  if (cs->midiChannel(ch) != 9)
+                        send(NPlayEvent(ME_PITCHBEND,  ch, 0, 64));
                   }
             }
       else {
             send(NPlayEvent(ME_CONTROLLER, channel, CTRL_SUSTAIN, 0));
             send(NPlayEvent(ME_CONTROLLER, channel, CTRL_ALL_NOTES_OFF, 0));
+            if (cs->midiChannel(channel) != 9)
+                  send(NPlayEvent(ME_PITCHBEND,  channel, 0, 64));
             }
       if (preferences.useAlsaAudio || preferences.useJackAudio || preferences.usePulseAudio || preferences.usePortaudioAudio)
             _synti->allNotesOff(channel);
diff --git a/mscore/shortcut.cpp b/mscore/shortcut.cpp
index 06c3dfe..60a2b3d 100644
--- a/mscore/shortcut.cpp
+++ b/mscore/shortcut.cpp
@@ -1377,7 +1377,7 @@ Shortcut Shortcut::_sc[] = {
          Qt::WindowShortcut,
          ShortcutFlags::A_CMD
          },
-       {
+      {
          MsWidget::SCORE_TAB,
          STATE_NORMAL | STATE_NOTE_ENTRY_PITCHED | STATE_NOTE_ENTRY_DRUM,
          "flat",
@@ -1422,45 +1422,45 @@ Shortcut Shortcut::_sc[] = {
          ShortcutFlags::A_CHECKABLE
          },
       {
-        MsWidget::SCORE_TAB,
+         MsWidget::SCORE_TAB,
          STATE_NORMAL | STATE_NOTE_ENTRY,
-       /* no stroke: 4th*/
-        "grace4",
-        QT_TRANSLATE_NOOP("action","Grace: Quarter"),
-        QT_TRANSLATE_NOOP("action","Add quarter grace note"),
-        QT_TRANSLATE_NOOP("action","Grace: quarter"),
-        Icons::grace4_ICON,
+         /* no stroke: 4th*/
+         "grace4",
+         QT_TRANSLATE_NOOP("action","Grace: Quarter"),
+         QT_TRANSLATE_NOOP("action","Add quarter grace note"),
+         QT_TRANSLATE_NOOP("action","Grace: quarter"),
+         Icons::grace4_ICON,
          Qt::WindowShortcut,
          ShortcutFlags::A_CHECKABLE
          },
-     {
-        MsWidget::SCORE_TAB,
-        STATE_NORMAL | STATE_NOTE_ENTRY,
-      /* no stroke: 16th*/
-        "grace16",
-        QT_TRANSLATE_NOOP("action","Grace: 16th"),
-        QT_TRANSLATE_NOOP("action","Add 16th grace note"),
-        QT_TRANSLATE_NOOP("action","Grace: 16th"),
-        Icons::grace16_ICON,
+      {
+         MsWidget::SCORE_TAB,
+         STATE_NORMAL | STATE_NOTE_ENTRY,
+         /* no stroke: 16th*/
+         "grace16",
+         QT_TRANSLATE_NOOP("action","Grace: 16th"),
+         QT_TRANSLATE_NOOP("action","Add 16th grace note"),
+         QT_TRANSLATE_NOOP("action","Grace: 16th"),
+         Icons::grace16_ICON,
          Qt::WindowShortcut,
          ShortcutFlags::A_CHECKABLE
          },
-     {
-        MsWidget::SCORE_TAB,
-        STATE_NORMAL | STATE_NOTE_ENTRY,
-      /* no stroke: 32nd*/
-        "grace32",
-        QT_TRANSLATE_NOOP("action","Grace: 32nd"),
-        QT_TRANSLATE_NOOP("action","Add 32nd grace note"),
-        QT_TRANSLATE_NOOP("action","Grace: 32nd"),
-        Icons::grace32_ICON,
+      {
+         MsWidget::SCORE_TAB,
+         STATE_NORMAL | STATE_NOTE_ENTRY,
+         /* no stroke: 32nd*/
+         "grace32",
+         QT_TRANSLATE_NOOP("action","Grace: 32nd"),
+         QT_TRANSLATE_NOOP("action","Add 32nd grace note"),
+         QT_TRANSLATE_NOOP("action","Grace: 32nd"),
+         Icons::grace32_ICON,
          Qt::WindowShortcut,
          ShortcutFlags::A_CHECKABLE
          },
-        {
-          MsWidget::SCORE_TAB,
-          STATE_NORMAL | STATE_NOTE_ENTRY,
-        /* no stroke: Eighth*/
+      {
+         MsWidget::SCORE_TAB,
+         STATE_NORMAL | STATE_NOTE_ENTRY,
+         /* no stroke: Eighth*/
          "grace8after",
          QT_TRANSLATE_NOOP("action","Grace: Eighth after"),
          QT_TRANSLATE_NOOP("action","Add Eighth grace note after"),
@@ -1472,7 +1472,7 @@ Shortcut Shortcut::_sc[] = {
       {
          MsWidget::SCORE_TAB,
          STATE_NORMAL | STATE_NOTE_ENTRY,
-       /* no stroke: 16th*/
+         /* no stroke: 16th*/
          "grace16after",
          QT_TRANSLATE_NOOP("action","Grace: 16th after"),
          QT_TRANSLATE_NOOP("action","Add 16th grace note after"),
@@ -1484,7 +1484,7 @@ Shortcut Shortcut::_sc[] = {
       {
          MsWidget::SCORE_TAB,
          STATE_NORMAL | STATE_NOTE_ENTRY,
-       /* no stroke: 32nd*/
+         /* no stroke: 32nd*/
          "grace32after",
          QT_TRANSLATE_NOOP("action","Grace: 32nd after"),
          QT_TRANSLATE_NOOP("action","Add 32nd grace note after"),
@@ -1624,7 +1624,7 @@ Shortcut Shortcut::_sc[] = {
          MsWidget::MAIN_WINDOW,
          STATE_NORMAL | STATE_NOTE_ENTRY | STATE_EDIT | STATE_LYRICS_EDIT | STATE_PLAY,
          "toggle-palette",
-         QT_TRANSLATE_NOOP("action","Palette"),
+         QT_TRANSLATE_NOOP("action","Palettes"),
          0,
          0,
          Icons::Invalid_ICON,
@@ -1734,7 +1734,7 @@ Shortcut Shortcut::_sc[] = {
          MsWidget::SCORE_TAB,
          STATE_NORMAL | STATE_NOTE_ENTRY,
          "tempo",
-         QT_TRANSLATE_NOOP("action","Tempo Marking..."),
+         QT_TRANSLATE_NOOP("action","Tempo Marking"),
          QT_TRANSLATE_NOOP("action","Add tempo marking"),
          0,
          Icons::Invalid_ICON,
@@ -2260,6 +2260,13 @@ Shortcut Shortcut::_sc[] = {
          QT_TRANSLATE_NOOP("action","Zoom out")
          },
       {
+         MsWidget::MAIN_WINDOW,
+         STATE_NORMAL | STATE_NOTE_ENTRY | STATE_EDIT | STATE_LYRICS_EDIT | STATE_PLAY,
+         "zoom100",
+         QT_TRANSLATE_NOOP("action","Zoom to 100%"),
+         QT_TRANSLATE_NOOP("action","Zoom to 100%")
+         },
+      {
          MsWidget::SCORE_TAB,
          STATE_NORMAL | STATE_NOTE_ENTRY,
          "mirror-note",
@@ -2365,10 +2372,12 @@ Shortcut Shortcut::_sc[] = {
          MsWidget::MAIN_WINDOW,
          STATE_NORMAL | STATE_NOTE_ENTRY | STATE_PLAY,
          "follow",
-         QT_TRANSLATE_NOOP("action","Pan piano roll"),
+         QT_TRANSLATE_NOOP("action","Pan Piano Roll"),
          QT_TRANSLATE_NOOP("action","Toggle pan piano roll"),
          QT_TRANSLATE_NOOP("action","Pan roll during playback"),
-         Icons::pan_ICON
+         Icons::pan_ICON,
+         Qt::WindowShortcut,
+         ShortcutFlags::A_SCORE | ShortcutFlags::A_CHECKABLE | ShortcutFlags::A_CHECKED
          },
       {
          MsWidget::MAIN_WINDOW,
diff --git a/mscore/stafftext.ui b/mscore/stafftext.ui
index ce11ad3..baab3ec 100644
--- a/mscore/stafftext.ui
+++ b/mscore/stafftext.ui
@@ -61,43 +61,6 @@
         <layout class="QGridLayout" name="gridLayout">
          <item row="1" column="0">
           <widget class="QToolButton" name="voice1_1">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>100</red>
-                 <green>100</green>
-                 <blue>200</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>100</red>
-                 <green>100</green>
-                 <blue>200</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>100</red>
-                 <green>100</green>
-                 <blue>200</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>1</string>
            </property>
@@ -108,43 +71,6 @@
          </item>
          <item row="1" column="1">
           <widget class="QToolButton" name="voice2_1">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>0</red>
-                 <green>255</green>
-                 <blue>0</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>0</red>
-                 <green>255</green>
-                 <blue>0</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>0</red>
-                 <green>255</green>
-                 <blue>0</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>2</string>
            </property>
@@ -155,43 +81,6 @@
          </item>
          <item row="1" column="2">
           <widget class="QToolButton" name="voice3_1">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>244</green>
-                 <blue>142</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>244</green>
-                 <blue>142</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>244</green>
-                 <blue>142</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>3</string>
            </property>
@@ -202,43 +91,6 @@
          </item>
          <item row="1" column="3">
           <widget class="QToolButton" name="voice4_1">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>95</green>
-                 <blue>255</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>95</green>
-                 <blue>255</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>95</green>
-                 <blue>255</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>4</string>
            </property>
@@ -252,43 +104,6 @@
          </item>
          <item row="2" column="0">
           <widget class="QToolButton" name="voice1_2">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>100</red>
-                 <green>100</green>
-                 <blue>200</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>100</red>
-                 <green>100</green>
-                 <blue>200</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>100</red>
-                 <green>100</green>
-                 <blue>200</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>1</string>
            </property>
@@ -299,43 +114,6 @@
          </item>
          <item row="2" column="1">
           <widget class="QToolButton" name="voice2_2">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>0</red>
-                 <green>255</green>
-                 <blue>0</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>0</red>
-                 <green>255</green>
-                 <blue>0</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>0</red>
-                 <green>255</green>
-                 <blue>0</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>2</string>
            </property>
@@ -346,43 +124,6 @@
          </item>
          <item row="2" column="2">
           <widget class="QToolButton" name="voice3_2">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>244</green>
-                 <blue>142</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>244</green>
-                 <blue>142</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>244</green>
-                 <blue>142</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>3</string>
            </property>
@@ -393,43 +134,6 @@
          </item>
          <item row="2" column="3">
           <widget class="QToolButton" name="voice4_2">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>95</green>
-                 <blue>255</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>95</green>
-                 <blue>255</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>95</green>
-                 <blue>255</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>4</string>
            </property>
@@ -443,43 +147,6 @@
          </item>
          <item row="3" column="0">
           <widget class="QToolButton" name="voice1_3">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>100</red>
-                 <green>100</green>
-                 <blue>200</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>100</red>
-                 <green>100</green>
-                 <blue>200</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>100</red>
-                 <green>100</green>
-                 <blue>200</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>1</string>
            </property>
@@ -490,43 +157,6 @@
          </item>
          <item row="3" column="1">
           <widget class="QToolButton" name="voice2_3">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>0</red>
-                 <green>255</green>
-                 <blue>0</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>0</red>
-                 <green>255</green>
-                 <blue>0</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>0</red>
-                 <green>255</green>
-                 <blue>0</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>2</string>
            </property>
@@ -537,43 +167,6 @@
          </item>
          <item row="3" column="2">
           <widget class="QToolButton" name="voice3_3">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>244</green>
-                 <blue>142</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>244</green>
-                 <blue>142</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>244</green>
-                 <blue>142</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>3</string>
            </property>
@@ -584,43 +177,6 @@
          </item>
          <item row="3" column="3">
           <widget class="QToolButton" name="voice4_3">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>95</green>
-                 <blue>255</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>95</green>
-                 <blue>255</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>95</green>
-                 <blue>255</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>4</string>
            </property>
@@ -634,43 +190,6 @@
          </item>
          <item row="4" column="0">
           <widget class="QToolButton" name="voice1_4">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>100</red>
-                 <green>100</green>
-                 <blue>200</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>100</red>
-                 <green>100</green>
-                 <blue>200</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>100</red>
-                 <green>100</green>
-                 <blue>200</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>1</string>
            </property>
@@ -681,43 +200,6 @@
          </item>
          <item row="4" column="1">
           <widget class="QToolButton" name="voice2_4">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>0</red>
-                 <green>255</green>
-                 <blue>0</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>0</red>
-                 <green>255</green>
-                 <blue>0</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>0</red>
-                 <green>255</green>
-                 <blue>0</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>2</string>
            </property>
@@ -728,43 +210,6 @@
          </item>
          <item row="4" column="2">
           <widget class="QToolButton" name="voice3_4">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>244</green>
-                 <blue>142</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>244</green>
-                 <blue>142</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>244</green>
-                 <blue>142</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>3</string>
            </property>
@@ -775,43 +220,6 @@
          </item>
          <item row="4" column="3">
           <widget class="QToolButton" name="voice4_4">
-           <property name="palette">
-            <palette>
-             <active>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>95</green>
-                 <blue>255</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </active>
-             <inactive>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>95</green>
-                 <blue>255</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </inactive>
-             <disabled>
-              <colorrole role="Button">
-               <brush brushstyle="SolidPattern">
-                <color alpha="255">
-                 <red>255</red>
-                 <green>95</green>
-                 <blue>255</blue>
-                </color>
-               </brush>
-              </colorrole>
-             </disabled>
-            </palette>
-           </property>
            <property name="text">
             <string>4</string>
            </property>
diff --git a/mscore/stafftextproperties.cpp b/mscore/stafftextproperties.cpp
index 6cc41f2..8695d1c 100644
--- a/mscore/stafftextproperties.cpp
+++ b/mscore/stafftextproperties.cpp
@@ -23,6 +23,7 @@
 #include "libmscore/stafftext.h"
 #include "libmscore/system.h"
 #include "libmscore/staff.h"
+#include "globals.h"
 
 namespace Ms {
 
@@ -35,11 +36,11 @@ static void initChannelCombo(QComboBox* cb, StaffText* st)
       {
       Part* part = st->staff()->part();
       int tick = static_cast<Segment*>(st->parent())->tick();
-      foreach(const Channel* a, part->instrument(tick)->channel()) {
+      for (const Channel* a : part->instrument(tick)->channel()) {
             if (a->name.isEmpty() || a->name == "normal")
                   cb->addItem(QObject::tr("normal"));
             else
-                  cb->addItem(a->name);
+                  cb->addItem(qApp->translate("InstrumentsXML", a->name.toUtf8().data()));
             }
       }
 
@@ -51,36 +52,64 @@ StaffTextProperties::StaffTextProperties(const StaffText* st, QWidget* parent)
    : QDialog(parent)
       {
       setupUi(this);
-      if (st->systemFlag())
+      if (st->systemFlag()) {
             setWindowTitle(tr("MuseScore: System Text Properties"));
-      else
+            tabWidget->removeTab(2); // Aeolus settings  for staff text only
+            //if (!enableExperimental) tabWidget->removeTab(1); // MIDI action
+            tabWidget->removeTab(0); // Channel switching  for staff text only
+            }
+      else {
             setWindowTitle(tr("MuseScore: Staff Text Properties"));
+            //tabWidget->removeTab(3); // Swing settings for system text only, could be disabled here, if desired
+#ifndef AEOLUS
+            tabWidget->removeTab(2);
+#endif
+            //if (!enableExperimental) tabWidget->removeTab(1); // MIDI action
+            }
       setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
       _staffText = static_cast<StaffText*>(st->clone());
 
-#ifndef AEOLUS
-	tabWidget->removeTab(2);
-#endif
+      const char* vbsh { "QToolButton:checked, QToolButton:pressed { color: white; background:%1;}" };
 
+      QString voice1ss = QString(vbsh).arg(MScore::selectColor[0].name());
       vb[0][0] = voice1_1;
+      voice1_1->setStyleSheet(voice1ss);
       vb[0][1] = voice1_2;
+      voice1_2->setStyleSheet(voice1ss);
       vb[0][2] = voice1_3;
+      voice1_3->setStyleSheet(voice1ss);
       vb[0][3] = voice1_4;
+      voice1_4->setStyleSheet(voice1ss);
 
+      QString voice2ss = QString(vbsh).arg(MScore::selectColor[1].name());
       vb[1][0] = voice2_1;
+      voice2_1->setStyleSheet(voice2ss);
       vb[1][1] = voice2_2;
+      voice2_2->setStyleSheet(voice2ss);
       vb[1][2] = voice2_3;
+      voice2_3->setStyleSheet(voice2ss);
       vb[1][3] = voice2_4;
+      voice2_4->setStyleSheet(voice2ss);
 
+      QString voice3ss = QString(vbsh).arg(MScore::selectColor[2].name());
       vb[2][0] = voice3_1;
+      voice3_1->setStyleSheet(voice3ss);
       vb[2][1] = voice3_2;
+      voice3_2->setStyleSheet(voice3ss);
       vb[2][2] = voice3_3;
+      voice3_3->setStyleSheet(voice3ss);
       vb[2][3] = voice3_4;
+      voice3_4->setStyleSheet(voice3ss);
 
+      QString voice4ss = QString(vbsh).arg(MScore::selectColor[3].name());
       vb[3][0] = voice4_1;
+      voice4_1->setStyleSheet(voice4ss);
       vb[3][1] = voice4_2;
+      voice4_2->setStyleSheet(voice4ss);
       vb[3][2] = voice4_3;
+      voice4_3->setStyleSheet(voice4ss);
       vb[3][3] = voice4_4;
+      voice4_4->setStyleSheet(voice4ss);
 
       channelCombo[0] = channelCombo1;
       channelCombo[1] = channelCombo2;
@@ -164,8 +193,8 @@ StaffTextProperties::StaffTextProperties(const StaffText* st, QWidget* parent)
             if (a->name.isEmpty() || a->name == "normal")
                   item->setText(0, tr("normal"));
             else
-                  item->setText(0, a->name);
-            item->setText(1, a->descr);
+                  item->setText(0, qApp->translate("InstrumentsXML", a->name.toUtf8().data()));
+            item->setText(1, qApp->translate("InstrumentsXML", a->descr.toUtf8().data()));
             if (i == 0)
                   selectedItem = item;
             }
@@ -250,7 +279,7 @@ StaffTextProperties::StaffTextProperties(const StaffText* st, QWidget* parent)
       }
 
 //---------------------------------------------------------
-//   StaffTextProperties
+//   ~StaffTextProperties
 //---------------------------------------------------------
 
 StaffTextProperties::~StaffTextProperties()
@@ -259,7 +288,7 @@ StaffTextProperties::~StaffTextProperties()
       }
 
 //---------------------------------------------------------
-//   setSwingParameters
+//   setSwingControls
 //---------------------------------------------------------
 
 void StaffTextProperties::setSwingControls(bool checked)
@@ -361,28 +390,40 @@ void StaffTextProperties::channelItemChanged(QTreeWidgetItem* item, QTreeWidgetI
       Channel* channel    = part->instrument(tick)->channel(channelIdx);
       QString channelName = channel->name;
 
-      foreach(const NamedEventList& e, part->instrument(tick)->midiActions()) {
+      for (const NamedEventList& e : part->instrument(tick)->midiActions()) {
             QTreeWidgetItem* item = new QTreeWidgetItem(actionList);
-            if (e.name.isEmpty() || e.name == "normal")
+            if (e.name.isEmpty() || e.name == "normal") {
                   item->setText(0, tr("normal"));
-            else
-                  item->setText(0, e.name);
-            item->setText(1, e.descr);
+                  item->setData(0, Qt::UserRole, "normal");
+                  }
+            else {
+                  item->setText(0, qApp->translate("InstrumentsXML", e.name.toUtf8().data()));
+                  item->setData(0, Qt::UserRole, e.name);
+                  }
+            item->setText(1, qApp->translate("InstrumentsXML", e.descr.toUtf8().data()));
             }
-      foreach(const NamedEventList& e, channel->midiActions) {
+      for (const NamedEventList& e : channel->midiActions) {
             QTreeWidgetItem* item = new QTreeWidgetItem(actionList);
-            if (e.name.isEmpty() || e.name == "normal")
+            if (e.name.isEmpty() || e.name == "normal") {
                   item->setText(0, tr("normal"));
-            else
-                  item->setText(0, e.name);
-            item->setText(1, e.descr);
+                  item->setData(0, Qt::UserRole, "normal");
+                  }
+            else {
+                  item->setText(0, qApp->translate("InstrumentsXML", e.name.toUtf8().data()));
+                  item->setData(0, Qt::UserRole, e.name);
+                  }
+            item->setText(1, qApp->translate("InstrumentsXML", e.descr.toUtf8().data()));
             }
-      foreach(const ChannelActions& ca, *_staffText->channelActions()) {
+      for (const ChannelActions& ca : *_staffText->channelActions()) {
             if (ca.channel == channelIdx) {
-                  foreach(QString s, ca.midiActionNames) {
-                        QList<QTreeWidgetItem*> items = actionList->findItems(s, Qt::MatchExactly);
-                        foreach(QTreeWidgetItem* item, items)
-                              item->setSelected(true);
+                  for (QString s : ca.midiActionNames) {
+                        QList<QTreeWidgetItem*> items;
+                        for (int i = 0; i < actionList->topLevelItemCount(); i++) {
+                              QTreeWidgetItem* item = actionList->topLevelItem(i);
+                              if (item->data(0, Qt::UserRole) == s) {
+                                    item->setSelected(true);
+                                    }
+                              }
                         }
                   }
             }
diff --git a/mscore/startcenter.cpp b/mscore/startcenter.cpp
index 5986cfd..c8282d4 100644
--- a/mscore/startcenter.cpp
+++ b/mscore/startcenter.cpp
@@ -54,7 +54,7 @@ Startcenter::Startcenter()
       //init webview
       if (!noWebView) {
             _webView = new MyWebView(this);
-            _webView->setUrl(QUrl("https://connect2.musescore.com/"));
+            _webView->setUrl(QUrl(QString("https://connect2.musescore.com/?version=%1").arg(VERSION)));
             horizontalLayout->addWidget(_webView);
             }
 
@@ -154,7 +154,7 @@ void Startcenter::writeSettings(QSettings& settings)
 void Startcenter::readSettings(QSettings& settings)
       {
       settings.beginGroup("Startcenter");
-      resize(settings.value("size", QSize(670, 520)).toSize());
+      resize(settings.value("size", QSize(690, 520)).toSize());
       move(settings.value("pos", QPoint(200, 100)).toPoint());
       settings.endGroup();
       }
@@ -168,7 +168,6 @@ QNetworkReply* MyNetworkAccessManager::createRequest(Operation op,
                                           QIODevice * outgoingData)
       {
       QNetworkRequest new_req(req);
-      new_req.setRawHeader("User-Agent",  QString("MuseScore %1").arg(VERSION).toAscii());
       new_req.setRawHeader("Accept-Language",  QString("%1;q=0.8,en-US;q=0.6,en;q=0.4").arg(mscore->getLocaleISOCode()).toAscii());
       return QNetworkAccessManager::createRequest(op, new_req, outgoingData);
       }
@@ -196,7 +195,7 @@ MyWebView::MyWebView(QWidget *parent):
 
       setZoomFactor(guiScaling);
 
-      if(!enableExperimental)
+      if (!enableExperimental)
             setContextMenuPolicy(Qt::NoContextMenu);
 
       //set cookie jar for persistent cookies
diff --git a/mscore/symboldialog.cpp b/mscore/symboldialog.cpp
index 798a018..1573373 100644
--- a/mscore/symboldialog.cpp
+++ b/mscore/symboldialog.cpp
@@ -49,12 +49,18 @@ void SymbolDialog::createSymbols()
       {
       int currentIndex = fontList->currentIndex();
       const ScoreFont* f = &ScoreFont::scoreFonts()[currentIndex];
+      // init the font if not done yet
+      ScoreFont::fontFactory(f->name());
       sp->clear();
       for (int i = 0; i < int(SymId::lastSym); ++i) {
             if (f->isValid(SymId(i))) {
                   Symbol* s = new Symbol(gscore);
                   s->setSym(SymId(i), f);
-                  sp->append(s, Sym::id2userName(SymId(i)));
+                  bool match = true;
+                  if (!search->text().isEmpty())
+                        match = Sym::id2userName(SymId(i)).contains(search->text(), Qt::CaseInsensitive);
+                  if (match)
+                        sp->append(s, Sym::id2userName(SymId(i)));
                   }
             }
       }
@@ -118,5 +124,17 @@ void SymbolDialog::systemFontChanged(int)
       createSymbols();
       }
 
+void SymbolDialog::on_search_textChanged(const QString &searchPhrase)
+      {
+      Q_UNUSED(searchPhrase);
+      createSymbols();
+      }
+
+void SymbolDialog::on_clearSearch_clicked()
+      {
+      search->clear();
+      createSymbols();
+      }
+
 }
 
diff --git a/mscore/symboldialog.h b/mscore/symboldialog.h
index fcb2d19..cd86260 100644
--- a/mscore/symboldialog.h
+++ b/mscore/symboldialog.h
@@ -43,6 +43,8 @@ class SymbolDialog : public QWidget, Ui::SymbolDialogBase {
    private slots:
       void systemFlagChanged(int);
       void systemFontChanged(int);
+      void on_search_textChanged(const QString &searchPhrase);
+      void on_clearSearch_clicked();
 
    public:
       SymbolDialog(QWidget* parent = 0);
diff --git a/mscore/symboldialog.ui b/mscore/symboldialog.ui
index 7745447..6062598 100644
--- a/mscore/symboldialog.ui
+++ b/mscore/symboldialog.ui
@@ -15,6 +15,40 @@
   </property>
   <layout class="QVBoxLayout">
    <item>
+    <layout class="QHBoxLayout" name="horizontalLayout">
+     <item>
+      <widget class="QLineEdit" name="search">
+       <property name="text">
+        <string/>
+       </property>
+       <property name="placeholderText">
+        <string>Search...</string>
+       </property>
+      </widget>
+     </item>
+     <item>
+      <widget class="QPushButton" name="clearSearch">
+       <property name="text">
+        <string>Clear</string>
+       </property>
+      </widget>
+     </item>
+     <item>
+      <spacer name="horizontalSpacer">
+       <property name="orientation">
+        <enum>Qt::Horizontal</enum>
+       </property>
+       <property name="sizeHint" stdset="0">
+        <size>
+         <width>40</width>
+         <height>20</height>
+        </size>
+       </property>
+      </spacer>
+     </item>
+    </layout>
+   </item>
+   <item>
     <widget class="QFrame" name="frame">
      <property name="sizePolicy">
       <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
diff --git a/mscore/textpalette.cpp b/mscore/textpalette.cpp
index 15c44f0..5953f41 100644
--- a/mscore/textpalette.cpp
+++ b/mscore/textpalette.cpp
@@ -91,15 +91,15 @@ SymId commonScoreSymbols[] = {
       SymId::accidentalSharp,
       SymId::accidentalDoubleFlat,
       SymId::accidentalDoubleSharp,
-      SymId::unicodeNoteWhole,
-      SymId::unicodeNoteHalfUp,
-      SymId::unicodeNoteQuarterUp,
-      SymId::unicodeNote8thUp,
-      SymId::unicodeNote16thUp,
-      SymId::unicodeNote32ndUp,
-      SymId::unicodeNote64thUp,
-      SymId::unicodeNote128thUp,
-      SymId::unicodeAugmentationDot,
+      SymId::metNoteWhole,
+      SymId::metNoteHalfUp,
+      SymId::metNoteQuarterUp,
+      SymId::metNote8thUp,
+      SymId::metNote16thUp,
+      SymId::metNote32ndUp,
+      SymId::metNote64thUp,
+      SymId::metNote128thUp,
+      SymId::metAugmentationDot,
       SymId::restWholeLegerLine,
       SymId::restHalfLegerLine,
       SymId::restQuarter,
diff --git a/mscore/textprop.cpp b/mscore/textprop.cpp
index 462744f..7fe756d 100644
--- a/mscore/textprop.cpp
+++ b/mscore/textprop.cpp
@@ -85,7 +85,7 @@ void TextProp::setScore(bool onlyStyle, Score* score)
       for (int i = 0, n = scoreStyles.size(); i < n; ++i) {
             // if style not hidden in this context, add to combo with index in score style list as userData
             if ( !(scoreStyles.at(i).hidden() & TextStyleHidden::IN_LISTS) )
-                  styles->addItem(qApp->translate("TextStyle", scoreStyles.at(i).name().toLatin1().data()), i);
+                  styles->addItem(qApp->translate("TextStyle", scoreStyles.at(i).name().toUtf8().data()), i);
             }
       styles->blockSignals(false);
       }
diff --git a/mscore/textproperties.cpp b/mscore/textproperties.cpp
index 032f00a..8fa472f 100644
--- a/mscore/textproperties.cpp
+++ b/mscore/textproperties.cpp
@@ -79,7 +79,7 @@ TextProperties::TextProperties(Text* t, QWidget* parent)
 
 void TextProperties::resetToStyle()
       {
-      text->setPlainText(text->plainText());
+      text->setXmlText(text->plainText());
       }
 
 //---------------------------------------------------------
diff --git a/mscore/textstyle.cpp b/mscore/textstyle.cpp
index 58beccf..a88644a 100644
--- a/mscore/textstyle.cpp
+++ b/mscore/textstyle.cpp
@@ -51,7 +51,7 @@ TextStyleDialog::TextStyleDialog(QWidget* parent, Score* score)
       for (int i = 0, n = styles.size(); i < n; ++i) {
             if ( (styles.at(i).hidden() & TextStyleHidden::IN_EDITOR) == 0) {
                   int count = textNames->count();
-                  textNames->addItem(qApp->translate("TextStyle", styles.at(i).name().toLatin1().data()));
+                  textNames->addItem(qApp->translate("TextStyle", styles.at(i).name().toUtf8().data()));
                   textNames->item(count)->setData(Qt::UserRole, i);
                   }
             }
diff --git a/mscore/workspace.cpp b/mscore/workspace.cpp
index 5f0fe5a..16e36ec 100644
--- a/mscore/workspace.cpp
+++ b/mscore/workspace.cpp
@@ -108,6 +108,7 @@ void MuseScore::createNewWorkspace()
          tr("Workspace name:"));
       if (s.isEmpty())
             return;
+      s = s.replace( QRegExp( "[" + QRegExp::escape( "\\/:*?\"<>|" ) + "]" ), "_" ); //FAT/NTFS special chars
       for (;;) {
             bool notFound = true;
             foreach(Workspace* p, Workspace::workspaces()) {
@@ -124,6 +125,7 @@ void MuseScore::createNewWorkspace()
                      );
                   if (s.isEmpty())
                         return;
+                  s = s.replace( QRegExp( "[" + QRegExp::escape( "\\/:*?\"<>|" ) + "]" ), "_" ); //FAT/NTFS special chars
                   }
             else
                   break;
diff --git a/mstyle/stylehelper.cpp b/mstyle/stylehelper.cpp
index 488dcb4..f234b95 100644
--- a/mstyle/stylehelper.cpp
+++ b/mstyle/stylehelper.cpp
@@ -266,7 +266,7 @@ TileSet* StyleHelper::hole(const QColor& color, qreal shade, int size, bool outl
 
                   p.setBrush( Qt::NoBrush );
                   p.setPen( QPen( blend, 1 ) );
-                  p.drawEllipse( 3, 3.5, 8, 7 );
+                  p.drawEllipse( QPointF(3, 3.5), 8, 7 );
                   p.setPen( Qt::NoPen );
                   }
 
@@ -446,8 +446,8 @@ TileSet* StyleHelper::scrollHole(const QColor& color, Qt::Orientation orientatio
             const QColor shadow( calcShadowColor(color) );
 
             // use space for white border
-            const QRect r( QRect(0, 0, 15, 15) );
-            const QRect rect( r.adjusted(1, 0, -1, -1) );
+            const QRectF r( QRect(0, 0, 15, 15) );
+            const QRectF rect( r.adjusted(1, 0, -1, -1) );
             int shadowWidth(0);
             if ( smallShadow )
                   shadowWidth = (orientation == Qt::Horizontal) ? 2 : 1;
@@ -478,7 +478,7 @@ TileSet* StyleHelper::scrollHole(const QColor& color, Qt::Orientation orientatio
             l1.setColorAt(0.5, alphaColor(shadow, orientation == Qt::Horizontal ? 0.1 : 0.1));
             l1.setColorAt(1.0, Qt::transparent);
             p.setBrush(l1);
-            p.drawRoundedRect(QRect(rect.topLeft(), rect.bottomLeft() + QPoint(shadowWidth, 0)), 4.5, 4.5);
+            p.drawRoundedRect(QRectF(rect.topLeft(), rect.bottomLeft() + QPoint(shadowWidth, 0)), 4.5, 4.5);
 
             // right
             l1 = QLinearGradient(rect.topRight(), rect.topRight() - QPoint(shadowWidth, 0));
@@ -486,14 +486,14 @@ TileSet* StyleHelper::scrollHole(const QColor& color, Qt::Orientation orientatio
             l1.setColorAt(0.5, alphaColor(shadow, orientation == Qt::Horizontal ? 0.1 : 0.1));
             l1.setColorAt(1.0, Qt::transparent);
             p.setBrush(l1);
-            p.drawRoundedRect(QRect(rect.topRight() - QPoint(shadowWidth, 0), rect.bottomRight()), 4.5, 4.5);
+            p.drawRoundedRect(QRectF(rect.topRight() - QPoint(shadowWidth, 0), rect.bottomRight()), 4.5, 4.5);
 
             //top
             l1 = QLinearGradient(rect.topLeft(), rect.topLeft() + QPoint(0, 3));
             l1.setColorAt(0.0, alphaColor(shadow, 0.3));
             l1.setColorAt(1.0, Qt::transparent);
             p.setBrush(l1);
-            p.drawRoundedRect(QRect(rect.topLeft(), rect.topRight() + QPoint(0, 3)), 4.5, 4.5);
+            p.drawRoundedRect(QRectF(rect.topLeft(), rect.topRight() + QPoint(0, 3)), 4.5, 4.5);
 
             // light border
             QLinearGradient borderGradient(r.topLeft() + QPoint(0, r.height() / 2 - 1), r.bottomLeft());
@@ -1867,7 +1867,7 @@ TileSet* StyleHelper::dockFrame(const QColor& color, int w) {
             p.setRenderHints(QPainter::Antialiasing);
             p.setBrush(Qt::NoBrush);
             p.translate(0.5, 0.5);
-            QRect rect(0.5, 0.5, w - 0.5, h - 0.);
+            QRectF rect(0.5, 0.5, w - 0.5, h - 0.);
 
             QColor light = calcLightColor(color);
             QColor dark = calcDarkColor(color);
diff --git a/mtest/CMakeLists.txt b/mtest/CMakeLists.txt
index 4c9f5a9..5cc0bcc 100644
--- a/mtest/CMakeLists.txt
+++ b/mtest/CMakeLists.txt
@@ -17,6 +17,7 @@ enable_testing()
 include_directories(
       ${PROJECT_BINARY_DIR}
       ${PROJECT_SOURCE_DIR}
+      ${FREETYPE_INCLUDE_DIRS}
       )
 
 if (OMR)
@@ -78,6 +79,9 @@ add_library(
       ${PROJECT_SOURCE_DIR}/mscore/importmidi/importmidi_instrument.cpp
       ${PROJECT_SOURCE_DIR}/mscore/importmidi/importmidi_chordname.cpp
       ${PROJECT_SOURCE_DIR}/mscore/exportmidi.cpp
+      ${PROJECT_SOURCE_DIR}/mscore/importmxml.cpp               # required by importxml.cpp
+      ${PROJECT_SOURCE_DIR}/mscore/importmxmlpass1.cpp          # required by importxml.cpp
+      ${PROJECT_SOURCE_DIR}/mscore/importmxmlpass2.cpp          # required by importxml.cpp
       ${PROJECT_SOURCE_DIR}/mscore/importxml.cpp
       ${PROJECT_SOURCE_DIR}/mscore/importxmlfirstpass.cpp
       ${PROJECT_SOURCE_DIR}/mscore/musicxmlfonthandler.cpp
@@ -151,7 +155,8 @@ add_custom_target(reporthtml
       WORKING_DIRECTORY "${PROJECT_BINARY_DIR}/mtest"
       )
 
-subdirs (libmscore importmidi capella biab musicxml guitarpro testoves)
+subdirs (libmscore importmidi capella biab musicxml guitarpro scripting testoves)
+
 
 install(FILES
       ../share/styles/chords_std.xml
diff --git a/mtest/cmake.inc b/mtest/cmake.inc
index 0d4d3b4..efc6b4a 100644
--- a/mtest/cmake.inc
+++ b/mtest/cmake.inc
@@ -30,13 +30,13 @@ target_link_libraries(
       qzip
       z
       ${QT_LIBRARIES}
+      ${FREETYPE_LIBRARIES}
       )
 
 if (NOT MINGW AND NOT APPLE)
    target_link_libraries(${TARGET}
       dl
-      pthread
-      freetype)
+      pthread)
 endif (NOT MINGW AND NOT APPLE)
 
 if (OMR)
diff --git a/mtest/config.h b/mtest/config.h
index 2d44e44..cba915b 100644
--- a/mtest/config.h
+++ b/mtest/config.h
@@ -45,7 +45,7 @@
 /* #undef Q_OS_UIKIT */
 
 #define USE_BSP         true
-#define SCRIPT_INTERFACE
+#define SCRIPT_INTERFACE true
 
 #if QT_VERSION >= 0x040800
 //#define USE_GLYPHS  1
diff --git a/mtest/guitarpro/basic-bend.gp5-ref.mscx b/mtest/guitarpro/basic-bend.gp5-ref.mscx
index d62cb12..c07051f 100644
--- a/mtest/guitarpro/basic-bend.gp5-ref.mscx
+++ b/mtest/guitarpro/basic-bend.gp5-ref.mscx
@@ -109,6 +109,7 @@
               <point time="0" pitch="0" vibrato="0"/>
               <point time="30" pitch="100" vibrato="0"/>
               <point time="60" pitch="100" vibrato="0"/>
+              <lid>7</lid>
               </Bend>
             <pitch>66</pitch>
             <tpc>20</tpc>
@@ -264,6 +265,7 @@
                 <point time="0" pitch="0" vibrato="0"/>
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>7</lid>
                 </Bend>
               <pitch>66</pitch>
               <tpc>20</tpc>
@@ -304,6 +306,7 @@
                 <point time="0" pitch="0" vibrato="0"/>
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>7</lid>
                 </Bend>
               <pitch>66</pitch>
               <tpc>20</tpc>
diff --git a/mtest/guitarpro/bend.gp3-ref.mscx b/mtest/guitarpro/bend.gp3-ref.mscx
index 3280c2e..025469a 100644
--- a/mtest/guitarpro/bend.gp3-ref.mscx
+++ b/mtest/guitarpro/bend.gp3-ref.mscx
@@ -124,6 +124,7 @@
               <point time="40" pitch="0" vibrato="0"/>
               <point time="50" pitch="100" vibrato="0"/>
               <point time="60" pitch="100" vibrato="0"/>
+              <lid>8</lid>
               </Bend>
             <Tie id="2">
               <lid>9</lid>
@@ -175,6 +176,7 @@
               <point time="30" pitch="100" vibrato="0"/>
               <point time="45" pitch="0" vibrato="0"/>
               <point time="60" pitch="0" vibrato="0"/>
+              <lid>18</lid>
               </Bend>
             <pitch>57</pitch>
             <tpc>17</tpc>
@@ -191,6 +193,7 @@
               <point time="0" pitch="0" vibrato="0"/>
               <point time="30" pitch="100" vibrato="0"/>
               <point time="60" pitch="100" vibrato="0"/>
+              <lid>21</lid>
               </Bend>
             <pitch>60</pitch>
             <tpc>14</tpc>
@@ -208,6 +211,7 @@
             <Bend>
               <point time="0" pitch="100" vibrato="0"/>
               <point time="60" pitch="100" vibrato="0"/>
+              <lid>25</lid>
               </Bend>
             <pitch>57</pitch>
             <tpc>17</tpc>
@@ -225,6 +229,7 @@
               <point time="20" pitch="100" vibrato="0"/>
               <point time="40" pitch="0" vibrato="0"/>
               <point time="60" pitch="0" vibrato="0"/>
+              <lid>28</lid>
               </Bend>
             <pitch>53</pitch>
             <tpc>13</tpc>
@@ -383,6 +388,7 @@
                 <point time="40" pitch="0" vibrato="0"/>
                 <point time="50" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>8</lid>
                 </Bend>
               <Tie id="4">
                 <lid>9</lid>
@@ -434,6 +440,7 @@
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="45" pitch="0" vibrato="0"/>
                 <point time="60" pitch="0" vibrato="0"/>
+                <lid>18</lid>
                 </Bend>
               <pitch>57</pitch>
               <tpc>17</tpc>
@@ -450,6 +457,7 @@
                 <point time="0" pitch="0" vibrato="0"/>
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>21</lid>
                 </Bend>
               <pitch>60</pitch>
               <tpc>14</tpc>
@@ -467,6 +475,7 @@
               <Bend>
                 <point time="0" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>25</lid>
                 </Bend>
               <pitch>57</pitch>
               <tpc>17</tpc>
@@ -484,6 +493,7 @@
                 <point time="20" pitch="100" vibrato="0"/>
                 <point time="40" pitch="0" vibrato="0"/>
                 <point time="60" pitch="0" vibrato="0"/>
+                <lid>28</lid>
                 </Bend>
               <pitch>53</pitch>
               <tpc>13</tpc>
@@ -528,6 +538,7 @@
                 <point time="40" pitch="0" vibrato="0"/>
                 <point time="50" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>8</lid>
                 </Bend>
               <Tie id="6">
                 <lid>9</lid>
@@ -579,6 +590,7 @@
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="45" pitch="0" vibrato="0"/>
                 <point time="60" pitch="0" vibrato="0"/>
+                <lid>18</lid>
                 </Bend>
               <pitch>57</pitch>
               <tpc>17</tpc>
@@ -595,6 +607,7 @@
                 <point time="0" pitch="0" vibrato="0"/>
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>21</lid>
                 </Bend>
               <pitch>60</pitch>
               <tpc>14</tpc>
@@ -612,6 +625,7 @@
               <Bend>
                 <point time="0" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>25</lid>
                 </Bend>
               <pitch>57</pitch>
               <tpc>17</tpc>
@@ -629,6 +643,7 @@
                 <point time="20" pitch="100" vibrato="0"/>
                 <point time="40" pitch="0" vibrato="0"/>
                 <point time="60" pitch="0" vibrato="0"/>
+                <lid>28</lid>
                 </Bend>
               <pitch>53</pitch>
               <tpc>13</tpc>
diff --git a/mtest/guitarpro/bend.gp4-ref.mscx b/mtest/guitarpro/bend.gp4-ref.mscx
index 7b38f85..b2a72b0 100644
--- a/mtest/guitarpro/bend.gp4-ref.mscx
+++ b/mtest/guitarpro/bend.gp4-ref.mscx
@@ -146,6 +146,7 @@
               <point time="40" pitch="0" vibrato="0"/>
               <point time="50" pitch="100" vibrato="0"/>
               <point time="60" pitch="100" vibrato="0"/>
+              <lid>13</lid>
               </Bend>
             <Tie id="2">
               <lid>14</lid>
@@ -197,6 +198,7 @@
               <point time="30" pitch="100" vibrato="0"/>
               <point time="45" pitch="0" vibrato="0"/>
               <point time="60" pitch="0" vibrato="0"/>
+              <lid>23</lid>
               </Bend>
             <pitch>57</pitch>
             <tpc>17</tpc>
@@ -213,6 +215,7 @@
               <point time="0" pitch="0" vibrato="0"/>
               <point time="30" pitch="100" vibrato="0"/>
               <point time="60" pitch="100" vibrato="0"/>
+              <lid>26</lid>
               </Bend>
             <pitch>60</pitch>
             <tpc>14</tpc>
@@ -230,6 +233,7 @@
             <Bend>
               <point time="0" pitch="100" vibrato="0"/>
               <point time="60" pitch="100" vibrato="0"/>
+              <lid>30</lid>
               </Bend>
             <pitch>57</pitch>
             <tpc>17</tpc>
@@ -247,6 +251,7 @@
               <point time="20" pitch="100" vibrato="0"/>
               <point time="40" pitch="0" vibrato="0"/>
               <point time="60" pitch="0" vibrato="0"/>
+              <lid>33</lid>
               </Bend>
             <pitch>53</pitch>
             <tpc>13</tpc>
@@ -427,6 +432,7 @@
                 <point time="40" pitch="0" vibrato="0"/>
                 <point time="50" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>13</lid>
                 </Bend>
               <Tie id="4">
                 <lid>14</lid>
@@ -478,6 +484,7 @@
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="45" pitch="0" vibrato="0"/>
                 <point time="60" pitch="0" vibrato="0"/>
+                <lid>23</lid>
                 </Bend>
               <pitch>57</pitch>
               <tpc>17</tpc>
@@ -494,6 +501,7 @@
                 <point time="0" pitch="0" vibrato="0"/>
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>26</lid>
                 </Bend>
               <pitch>60</pitch>
               <tpc>14</tpc>
@@ -511,6 +519,7 @@
               <Bend>
                 <point time="0" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>30</lid>
                 </Bend>
               <pitch>57</pitch>
               <tpc>17</tpc>
@@ -528,6 +537,7 @@
                 <point time="20" pitch="100" vibrato="0"/>
                 <point time="40" pitch="0" vibrato="0"/>
                 <point time="60" pitch="0" vibrato="0"/>
+                <lid>33</lid>
                 </Bend>
               <pitch>53</pitch>
               <tpc>13</tpc>
@@ -576,6 +586,7 @@
                 <point time="40" pitch="0" vibrato="0"/>
                 <point time="50" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>13</lid>
                 </Bend>
               <Tie id="6">
                 <lid>14</lid>
@@ -627,6 +638,7 @@
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="45" pitch="0" vibrato="0"/>
                 <point time="60" pitch="0" vibrato="0"/>
+                <lid>23</lid>
                 </Bend>
               <pitch>57</pitch>
               <tpc>17</tpc>
@@ -643,6 +655,7 @@
                 <point time="0" pitch="0" vibrato="0"/>
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>26</lid>
                 </Bend>
               <pitch>60</pitch>
               <tpc>14</tpc>
@@ -660,6 +673,7 @@
               <Bend>
                 <point time="0" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>30</lid>
                 </Bend>
               <pitch>57</pitch>
               <tpc>17</tpc>
@@ -677,6 +691,7 @@
                 <point time="20" pitch="100" vibrato="0"/>
                 <point time="40" pitch="0" vibrato="0"/>
                 <point time="60" pitch="0" vibrato="0"/>
+                <lid>33</lid>
                 </Bend>
               <pitch>53</pitch>
               <tpc>13</tpc>
diff --git a/mtest/guitarpro/bend.gp5-ref.mscx b/mtest/guitarpro/bend.gp5-ref.mscx
index bc62545..14b43ee 100644
--- a/mtest/guitarpro/bend.gp5-ref.mscx
+++ b/mtest/guitarpro/bend.gp5-ref.mscx
@@ -126,6 +126,7 @@
               <point time="40" pitch="0" vibrato="0"/>
               <point time="50" pitch="100" vibrato="0"/>
               <point time="60" pitch="100" vibrato="0"/>
+              <lid>9</lid>
               </Bend>
             <Tie id="2">
               <lid>10</lid>
@@ -177,6 +178,7 @@
               <point time="30" pitch="100" vibrato="0"/>
               <point time="45" pitch="0" vibrato="0"/>
               <point time="60" pitch="0" vibrato="0"/>
+              <lid>19</lid>
               </Bend>
             <pitch>57</pitch>
             <tpc>17</tpc>
@@ -193,6 +195,7 @@
               <point time="0" pitch="0" vibrato="0"/>
               <point time="30" pitch="100" vibrato="0"/>
               <point time="60" pitch="100" vibrato="0"/>
+              <lid>22</lid>
               </Bend>
             <pitch>60</pitch>
             <tpc>14</tpc>
@@ -210,6 +213,7 @@
             <Bend>
               <point time="0" pitch="100" vibrato="0"/>
               <point time="60" pitch="100" vibrato="0"/>
+              <lid>26</lid>
               </Bend>
             <pitch>57</pitch>
             <tpc>17</tpc>
@@ -227,6 +231,7 @@
               <point time="20" pitch="100" vibrato="0"/>
               <point time="40" pitch="0" vibrato="0"/>
               <point time="60" pitch="0" vibrato="0"/>
+              <lid>29</lid>
               </Bend>
             <pitch>53</pitch>
             <tpc>13</tpc>
@@ -387,6 +392,7 @@
                 <point time="40" pitch="0" vibrato="0"/>
                 <point time="50" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>9</lid>
                 </Bend>
               <Tie id="4">
                 <lid>10</lid>
@@ -438,6 +444,7 @@
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="45" pitch="0" vibrato="0"/>
                 <point time="60" pitch="0" vibrato="0"/>
+                <lid>19</lid>
                 </Bend>
               <pitch>57</pitch>
               <tpc>17</tpc>
@@ -454,6 +461,7 @@
                 <point time="0" pitch="0" vibrato="0"/>
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>22</lid>
                 </Bend>
               <pitch>60</pitch>
               <tpc>14</tpc>
@@ -471,6 +479,7 @@
               <Bend>
                 <point time="0" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>26</lid>
                 </Bend>
               <pitch>57</pitch>
               <tpc>17</tpc>
@@ -488,6 +497,7 @@
                 <point time="20" pitch="100" vibrato="0"/>
                 <point time="40" pitch="0" vibrato="0"/>
                 <point time="60" pitch="0" vibrato="0"/>
+                <lid>29</lid>
                 </Bend>
               <pitch>53</pitch>
               <tpc>13</tpc>
@@ -536,6 +546,7 @@
                 <point time="40" pitch="0" vibrato="0"/>
                 <point time="50" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>9</lid>
                 </Bend>
               <Tie id="6">
                 <lid>10</lid>
@@ -587,6 +598,7 @@
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="45" pitch="0" vibrato="0"/>
                 <point time="60" pitch="0" vibrato="0"/>
+                <lid>19</lid>
                 </Bend>
               <pitch>57</pitch>
               <tpc>17</tpc>
@@ -603,6 +615,7 @@
                 <point time="0" pitch="0" vibrato="0"/>
                 <point time="30" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>22</lid>
                 </Bend>
               <pitch>60</pitch>
               <tpc>14</tpc>
@@ -620,6 +633,7 @@
               <Bend>
                 <point time="0" pitch="100" vibrato="0"/>
                 <point time="60" pitch="100" vibrato="0"/>
+                <lid>26</lid>
                 </Bend>
               <pitch>57</pitch>
               <tpc>17</tpc>
@@ -637,6 +651,7 @@
                 <point time="20" pitch="100" vibrato="0"/>
                 <point time="40" pitch="0" vibrato="0"/>
                 <point time="60" pitch="0" vibrato="0"/>
+                <lid>29</lid>
                 </Bend>
               <pitch>53</pitch>
               <tpc>13</tpc>
diff --git a/mtest/guitarpro/fermata.gpx-ref.mscx b/mtest/guitarpro/fermata.gpx-ref.mscx
index c25bda5..f8c7a87 100644
--- a/mtest/guitarpro/fermata.gpx-ref.mscx
+++ b/mtest/guitarpro/fermata.gpx-ref.mscx
@@ -222,21 +222,22 @@
             </Note>
           </Chord>
         <Rest>
-          <lid>24</lid>
+          <lid>25</lid>
           <durationType>quarter</durationType>
           <Articulation>
             <subtype>fermata</subtype>
+            <lid>24</lid>
             </Articulation>
           </Rest>
         <Chord>
-          <lid>26</lid>
+          <lid>27</lid>
           <durationType>quarter</durationType>
           <Articulation>
             <subtype>fermata</subtype>
-            <lid>25</lid>
+            <lid>26</lid>
             </Articulation>
           <Note>
-            <lid>27</lid>
+            <lid>28</lid>
             <Accidental>
               <subtype>sharp</subtype>
               </Accidental>
@@ -247,20 +248,20 @@
             </Note>
           </Chord>
         <Rest>
-          <lid>28</lid>
+          <lid>29</lid>
           <durationType>quarter</durationType>
           </Rest>
         </Measure>
       <Measure number="4">
         <Chord>
-          <lid>31</lid>
+          <lid>32</lid>
           <durationType>quarter</durationType>
           <Articulation>
             <subtype>fermata</subtype>
-            <lid>30</lid>
+            <lid>31</lid>
             </Articulation>
           <Note>
-            <lid>32</lid>
+            <lid>33</lid>
             <pitch>62</pitch>
             <tpc>16</tpc>
             <fret>12</fret>
@@ -268,15 +269,15 @@
             </Note>
           </Chord>
         <Rest>
-          <lid>33</lid>
+          <lid>34</lid>
           <durationType>quarter</durationType>
           </Rest>
         <Rest>
-          <lid>34</lid>
+          <lid>35</lid>
           <durationType>quarter</durationType>
           </Rest>
         <Rest>
-          <lid>35</lid>
+          <lid>36</lid>
           <durationType>quarter</durationType>
           </Rest>
         <BarLine>
@@ -528,21 +529,22 @@
               </Note>
             </Chord>
           <Rest>
-            <lid>24</lid>
+            <lid>25</lid>
             <durationType>quarter</durationType>
             <Articulation>
               <subtype>fermata</subtype>
+              <lid>24</lid>
               </Articulation>
             </Rest>
           <Chord>
-            <lid>26</lid>
+            <lid>27</lid>
             <durationType>quarter</durationType>
             <Articulation>
               <subtype>fermata</subtype>
-              <lid>25</lid>
+              <lid>26</lid>
               </Articulation>
             <Note>
-              <lid>27</lid>
+              <lid>28</lid>
               <Accidental>
                 <subtype>sharp</subtype>
                 </Accidental>
@@ -553,20 +555,20 @@
               </Note>
             </Chord>
           <Rest>
-            <lid>28</lid>
+            <lid>29</lid>
             <durationType>quarter</durationType>
             </Rest>
           </Measure>
         <Measure number="4">
           <Chord>
-            <lid>31</lid>
+            <lid>32</lid>
             <durationType>quarter</durationType>
             <Articulation>
               <subtype>fermata</subtype>
-              <lid>30</lid>
+              <lid>31</lid>
               </Articulation>
             <Note>
-              <lid>32</lid>
+              <lid>33</lid>
               <pitch>62</pitch>
               <tpc>16</tpc>
               <fret>12</fret>
@@ -574,15 +576,15 @@
               </Note>
             </Chord>
           <Rest>
-            <lid>33</lid>
+            <lid>34</lid>
             <durationType>quarter</durationType>
             </Rest>
           <Rest>
-            <lid>34</lid>
+            <lid>35</lid>
             <durationType>quarter</durationType>
             </Rest>
           <Rest>
-            <lid>35</lid>
+            <lid>36</lid>
             <durationType>quarter</durationType>
             </Rest>
           <BarLine>
@@ -681,21 +683,22 @@
               </Note>
             </Chord>
           <Rest>
-            <lid>24</lid>
+            <lid>25</lid>
             <durationType>quarter</durationType>
             <Articulation>
               <subtype>fermata</subtype>
+              <lid>24</lid>
               </Articulation>
             </Rest>
           <Chord>
-            <lid>26</lid>
+            <lid>27</lid>
             <durationType>quarter</durationType>
             <Articulation>
               <subtype>fermata</subtype>
-              <lid>25</lid>
+              <lid>26</lid>
               </Articulation>
             <Note>
-              <lid>27</lid>
+              <lid>28</lid>
               <pitch>49</pitch>
               <tpc>21</tpc>
               <fret>4</fret>
@@ -703,20 +706,20 @@
               </Note>
             </Chord>
           <Rest>
-            <lid>28</lid>
+            <lid>29</lid>
             <durationType>quarter</durationType>
             </Rest>
           </Measure>
         <Measure number="4">
           <Chord>
-            <lid>31</lid>
+            <lid>32</lid>
             <durationType>quarter</durationType>
             <Articulation>
               <subtype>fermata</subtype>
-              <lid>30</lid>
+              <lid>31</lid>
               </Articulation>
             <Note>
-              <lid>32</lid>
+              <lid>33</lid>
               <pitch>62</pitch>
               <tpc>16</tpc>
               <fret>12</fret>
@@ -724,15 +727,15 @@
               </Note>
             </Chord>
           <Rest>
-            <lid>33</lid>
+            <lid>34</lid>
             <durationType>quarter</durationType>
             </Rest>
           <Rest>
-            <lid>34</lid>
+            <lid>35</lid>
             <durationType>quarter</durationType>
             </Rest>
           <Rest>
-            <lid>35</lid>
+            <lid>36</lid>
             <durationType>quarter</durationType>
             </Rest>
           <BarLine>
diff --git a/mtest/guitarpro/fingering.gp4-ref.mscx b/mtest/guitarpro/fingering.gp4-ref.mscx
index 1d174eb..3110721 100644
--- a/mtest/guitarpro/fingering.gp4-ref.mscx
+++ b/mtest/guitarpro/fingering.gp4-ref.mscx
@@ -129,7 +129,7 @@
             <lid>11</lid>
             <Fingering>
               <lid>12</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>T</text>
               </Fingering>
             <pitch>62</pitch>
@@ -145,7 +145,7 @@
             <lid>14</lid>
             <Fingering>
               <lid>15</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>1</text>
               </Fingering>
             <pitch>53</pitch>
@@ -161,7 +161,7 @@
             <lid>17</lid>
             <Fingering>
               <lid>18</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>2</text>
               </Fingering>
             <pitch>47</pitch>
@@ -177,7 +177,7 @@
             <lid>20</lid>
             <Fingering>
               <lid>21</lid>
-              <pos x="0.6864" y="-1.6"/>
+              <pos x="0.694406" y="-1.504"/>
               <text>3</text>
               </Fingering>
             <pitch>55</pitch>
@@ -195,7 +195,7 @@
             <lid>24</lid>
             <Fingering>
               <lid>25</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>4</text>
               </Fingering>
             <pitch>59</pitch>
@@ -214,7 +214,7 @@
               </Accidental>
             <Fingering>
               <lid>28</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>T</text>
               </Fingering>
             <pitch>51</pitch>
@@ -233,7 +233,7 @@
               </Accidental>
             <Fingering>
               <lid>31</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>I</text>
               </Fingering>
             <pitch>61</pitch>
@@ -252,7 +252,7 @@
               </Accidental>
             <Fingering>
               <lid>34</lid>
-              <pos x="0.6864" y="-1.6"/>
+              <pos x="0.694406" y="-1.504"/>
               <text>M</text>
               </Fingering>
             <pitch>52</pitch>
@@ -270,7 +270,7 @@
             <lid>37</lid>
             <Fingering>
               <lid>38</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>A</text>
               </Fingering>
             <pitch>55</pitch>
@@ -289,7 +289,7 @@
               </Accidental>
             <Fingering>
               <lid>41</lid>
-              <pos x="0.6864" y="-1.6"/>
+              <pos x="0.694406" y="-1.504"/>
               <text>O</text>
               </Fingering>
             <pitch>56</pitch>
@@ -462,7 +462,7 @@
               <lid>11</lid>
               <Fingering>
                 <lid>12</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>T</text>
                 </Fingering>
               <pitch>62</pitch>
@@ -478,7 +478,7 @@
               <lid>14</lid>
               <Fingering>
                 <lid>15</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>1</text>
                 </Fingering>
               <pitch>53</pitch>
@@ -494,7 +494,7 @@
               <lid>17</lid>
               <Fingering>
                 <lid>18</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>2</text>
                 </Fingering>
               <pitch>47</pitch>
@@ -510,7 +510,7 @@
               <lid>20</lid>
               <Fingering>
                 <lid>21</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>3</text>
                 </Fingering>
               <pitch>55</pitch>
@@ -528,7 +528,7 @@
               <lid>24</lid>
               <Fingering>
                 <lid>25</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>4</text>
                 </Fingering>
               <pitch>59</pitch>
@@ -547,7 +547,7 @@
                 </Accidental>
               <Fingering>
                 <lid>28</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>T</text>
                 </Fingering>
               <pitch>51</pitch>
@@ -566,7 +566,7 @@
                 </Accidental>
               <Fingering>
                 <lid>31</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>I</text>
                 </Fingering>
               <pitch>61</pitch>
@@ -585,7 +585,7 @@
                 </Accidental>
               <Fingering>
                 <lid>34</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>M</text>
                 </Fingering>
               <pitch>52</pitch>
@@ -603,7 +603,7 @@
               <lid>37</lid>
               <Fingering>
                 <lid>38</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>A</text>
                 </Fingering>
               <pitch>55</pitch>
@@ -622,7 +622,7 @@
                 </Accidental>
               <Fingering>
                 <lid>41</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>O</text>
                 </Fingering>
               <pitch>56</pitch>
@@ -658,7 +658,7 @@
               <lid>11</lid>
               <Fingering>
                 <lid>12</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>T</text>
                 </Fingering>
               <pitch>62</pitch>
@@ -674,7 +674,7 @@
               <lid>14</lid>
               <Fingering>
                 <lid>15</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>1</text>
                 </Fingering>
               <pitch>53</pitch>
@@ -690,7 +690,7 @@
               <lid>17</lid>
               <Fingering>
                 <lid>18</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>2</text>
                 </Fingering>
               <pitch>47</pitch>
@@ -706,7 +706,7 @@
               <lid>20</lid>
               <Fingering>
                 <lid>21</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>3</text>
                 </Fingering>
               <pitch>55</pitch>
@@ -724,7 +724,7 @@
               <lid>24</lid>
               <Fingering>
                 <lid>25</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>4</text>
                 </Fingering>
               <pitch>59</pitch>
@@ -740,7 +740,7 @@
               <lid>27</lid>
               <Fingering>
                 <lid>28</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>T</text>
                 </Fingering>
               <pitch>51</pitch>
@@ -756,7 +756,7 @@
               <lid>30</lid>
               <Fingering>
                 <lid>31</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>I</text>
                 </Fingering>
               <pitch>61</pitch>
@@ -772,7 +772,7 @@
               <lid>33</lid>
               <Fingering>
                 <lid>34</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>M</text>
                 </Fingering>
               <pitch>52</pitch>
@@ -790,7 +790,7 @@
               <lid>37</lid>
               <Fingering>
                 <lid>38</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>A</text>
                 </Fingering>
               <pitch>55</pitch>
@@ -806,7 +806,7 @@
               <lid>40</lid>
               <Fingering>
                 <lid>41</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>O</text>
                 </Fingering>
               <pitch>56</pitch>
diff --git a/mtest/guitarpro/fingering.gp5-ref.mscx b/mtest/guitarpro/fingering.gp5-ref.mscx
index ede78eb..e87a023 100644
--- a/mtest/guitarpro/fingering.gp5-ref.mscx
+++ b/mtest/guitarpro/fingering.gp5-ref.mscx
@@ -109,7 +109,7 @@
             <lid>7</lid>
             <Fingering>
               <lid>8</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>T</text>
               </Fingering>
             <pitch>62</pitch>
@@ -125,7 +125,7 @@
             <lid>10</lid>
             <Fingering>
               <lid>11</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>1</text>
               </Fingering>
             <pitch>53</pitch>
@@ -141,7 +141,7 @@
             <lid>13</lid>
             <Fingering>
               <lid>14</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>2</text>
               </Fingering>
             <pitch>47</pitch>
@@ -157,7 +157,7 @@
             <lid>16</lid>
             <Fingering>
               <lid>17</lid>
-              <pos x="0.6864" y="-1.6"/>
+              <pos x="0.694406" y="-1.504"/>
               <text>3</text>
               </Fingering>
             <pitch>55</pitch>
@@ -175,7 +175,7 @@
             <lid>20</lid>
             <Fingering>
               <lid>21</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>4</text>
               </Fingering>
             <pitch>59</pitch>
@@ -194,7 +194,7 @@
               </Accidental>
             <Fingering>
               <lid>24</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>T</text>
               </Fingering>
             <pitch>51</pitch>
@@ -213,7 +213,7 @@
               </Accidental>
             <Fingering>
               <lid>27</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>I</text>
               </Fingering>
             <pitch>61</pitch>
@@ -232,7 +232,7 @@
               </Accidental>
             <Fingering>
               <lid>30</lid>
-              <pos x="0.6864" y="-1.6"/>
+              <pos x="0.694406" y="-1.504"/>
               <text>M</text>
               </Fingering>
             <pitch>52</pitch>
@@ -250,7 +250,7 @@
             <lid>33</lid>
             <Fingering>
               <lid>34</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>A</text>
               </Fingering>
             <pitch>55</pitch>
@@ -269,7 +269,7 @@
               </Accidental>
             <Fingering>
               <lid>37</lid>
-              <pos x="0.6864" y="-1.6"/>
+              <pos x="0.694406" y="-1.504"/>
               <text>O</text>
               </Fingering>
             <pitch>56</pitch>
@@ -422,7 +422,7 @@
               <lid>7</lid>
               <Fingering>
                 <lid>8</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>T</text>
                 </Fingering>
               <pitch>62</pitch>
@@ -438,7 +438,7 @@
               <lid>10</lid>
               <Fingering>
                 <lid>11</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>1</text>
                 </Fingering>
               <pitch>53</pitch>
@@ -454,7 +454,7 @@
               <lid>13</lid>
               <Fingering>
                 <lid>14</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>2</text>
                 </Fingering>
               <pitch>47</pitch>
@@ -470,7 +470,7 @@
               <lid>16</lid>
               <Fingering>
                 <lid>17</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>3</text>
                 </Fingering>
               <pitch>55</pitch>
@@ -488,7 +488,7 @@
               <lid>20</lid>
               <Fingering>
                 <lid>21</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>4</text>
                 </Fingering>
               <pitch>59</pitch>
@@ -507,7 +507,7 @@
                 </Accidental>
               <Fingering>
                 <lid>24</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>T</text>
                 </Fingering>
               <pitch>51</pitch>
@@ -526,7 +526,7 @@
                 </Accidental>
               <Fingering>
                 <lid>27</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>I</text>
                 </Fingering>
               <pitch>61</pitch>
@@ -545,7 +545,7 @@
                 </Accidental>
               <Fingering>
                 <lid>30</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>M</text>
                 </Fingering>
               <pitch>52</pitch>
@@ -563,7 +563,7 @@
               <lid>33</lid>
               <Fingering>
                 <lid>34</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>A</text>
                 </Fingering>
               <pitch>55</pitch>
@@ -582,7 +582,7 @@
                 </Accidental>
               <Fingering>
                 <lid>37</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>O</text>
                 </Fingering>
               <pitch>56</pitch>
@@ -618,7 +618,7 @@
               <lid>7</lid>
               <Fingering>
                 <lid>8</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>T</text>
                 </Fingering>
               <pitch>62</pitch>
@@ -634,7 +634,7 @@
               <lid>10</lid>
               <Fingering>
                 <lid>11</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>1</text>
                 </Fingering>
               <pitch>53</pitch>
@@ -650,7 +650,7 @@
               <lid>13</lid>
               <Fingering>
                 <lid>14</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>2</text>
                 </Fingering>
               <pitch>47</pitch>
@@ -666,7 +666,7 @@
               <lid>16</lid>
               <Fingering>
                 <lid>17</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>3</text>
                 </Fingering>
               <pitch>55</pitch>
@@ -684,7 +684,7 @@
               <lid>20</lid>
               <Fingering>
                 <lid>21</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>4</text>
                 </Fingering>
               <pitch>59</pitch>
@@ -700,7 +700,7 @@
               <lid>23</lid>
               <Fingering>
                 <lid>24</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>T</text>
                 </Fingering>
               <pitch>51</pitch>
@@ -716,7 +716,7 @@
               <lid>26</lid>
               <Fingering>
                 <lid>27</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>I</text>
                 </Fingering>
               <pitch>61</pitch>
@@ -732,7 +732,7 @@
               <lid>29</lid>
               <Fingering>
                 <lid>30</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>M</text>
                 </Fingering>
               <pitch>52</pitch>
@@ -750,7 +750,7 @@
               <lid>33</lid>
               <Fingering>
                 <lid>34</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>A</text>
                 </Fingering>
               <pitch>55</pitch>
@@ -766,7 +766,7 @@
               <lid>36</lid>
               <Fingering>
                 <lid>37</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>O</text>
                 </Fingering>
               <pitch>56</pitch>
diff --git a/mtest/guitarpro/fingering.gpx-ref.mscx b/mtest/guitarpro/fingering.gpx-ref.mscx
index 81fafcd..5f488af 100644
--- a/mtest/guitarpro/fingering.gpx-ref.mscx
+++ b/mtest/guitarpro/fingering.gpx-ref.mscx
@@ -142,7 +142,7 @@
             <lid>7</lid>
             <Fingering>
               <lid>8</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>O</text>
               </Fingering>
             <pitch>62</pitch>
@@ -158,7 +158,7 @@
             <lid>10</lid>
             <Fingering>
               <lid>11</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>t</text>
               </Fingering>
             <pitch>53</pitch>
@@ -174,7 +174,7 @@
             <lid>13</lid>
             <Fingering>
               <lid>14</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>1</text>
               </Fingering>
             <pitch>47</pitch>
@@ -190,7 +190,7 @@
             <lid>16</lid>
             <Fingering>
               <lid>17</lid>
-              <pos x="0.6864" y="-1.6"/>
+              <pos x="0.694406" y="-1.504"/>
               <text>2</text>
               </Fingering>
             <pitch>55</pitch>
@@ -208,7 +208,7 @@
             <lid>20</lid>
             <Fingering>
               <lid>21</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>3</text>
               </Fingering>
             <pitch>59</pitch>
@@ -227,7 +227,7 @@
               </Accidental>
             <Fingering>
               <lid>24</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>4</text>
               </Fingering>
             <pitch>51</pitch>
@@ -246,7 +246,7 @@
               </Accidental>
             <Fingering>
               <lid>27</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>P</text>
               </Fingering>
             <pitch>61</pitch>
@@ -265,7 +265,7 @@
               </Accidental>
             <Fingering>
               <lid>30</lid>
-              <pos x="0.6864" y="-1.6"/>
+              <pos x="0.694406" y="-1.504"/>
               <text>I</text>
               </Fingering>
             <pitch>52</pitch>
@@ -283,7 +283,7 @@
             <lid>33</lid>
             <Fingering>
               <lid>34</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>M</text>
               </Fingering>
             <pitch>55</pitch>
@@ -302,7 +302,7 @@
               </Accidental>
             <Fingering>
               <lid>37</lid>
-              <pos x="0.6864" y="-1.6"/>
+              <pos x="0.694406" y="-1.504"/>
               <text>A</text>
               </Fingering>
             <pitch>56</pitch>
@@ -318,7 +318,7 @@
             <lid>39</lid>
             <Fingering>
               <lid>40</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>C</text>
               </Fingering>
             <pitch>52</pitch>
@@ -500,7 +500,7 @@
               <lid>7</lid>
               <Fingering>
                 <lid>8</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>O</text>
                 </Fingering>
               <pitch>62</pitch>
@@ -516,7 +516,7 @@
               <lid>10</lid>
               <Fingering>
                 <lid>11</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>t</text>
                 </Fingering>
               <pitch>53</pitch>
@@ -532,7 +532,7 @@
               <lid>13</lid>
               <Fingering>
                 <lid>14</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>1</text>
                 </Fingering>
               <pitch>47</pitch>
@@ -548,7 +548,7 @@
               <lid>16</lid>
               <Fingering>
                 <lid>17</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>2</text>
                 </Fingering>
               <pitch>55</pitch>
@@ -566,7 +566,7 @@
               <lid>20</lid>
               <Fingering>
                 <lid>21</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>3</text>
                 </Fingering>
               <pitch>59</pitch>
@@ -585,7 +585,7 @@
                 </Accidental>
               <Fingering>
                 <lid>24</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>4</text>
                 </Fingering>
               <pitch>51</pitch>
@@ -604,7 +604,7 @@
                 </Accidental>
               <Fingering>
                 <lid>27</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>P</text>
                 </Fingering>
               <pitch>61</pitch>
@@ -623,7 +623,7 @@
                 </Accidental>
               <Fingering>
                 <lid>30</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>I</text>
                 </Fingering>
               <pitch>52</pitch>
@@ -641,7 +641,7 @@
               <lid>33</lid>
               <Fingering>
                 <lid>34</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>M</text>
                 </Fingering>
               <pitch>55</pitch>
@@ -660,7 +660,7 @@
                 </Accidental>
               <Fingering>
                 <lid>37</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>A</text>
                 </Fingering>
               <pitch>56</pitch>
@@ -676,7 +676,7 @@
               <lid>39</lid>
               <Fingering>
                 <lid>40</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>C</text>
                 </Fingering>
               <pitch>52</pitch>
@@ -708,7 +708,7 @@
               <lid>7</lid>
               <Fingering>
                 <lid>8</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>O</text>
                 </Fingering>
               <pitch>62</pitch>
@@ -724,7 +724,7 @@
               <lid>10</lid>
               <Fingering>
                 <lid>11</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>t</text>
                 </Fingering>
               <pitch>53</pitch>
@@ -740,7 +740,7 @@
               <lid>13</lid>
               <Fingering>
                 <lid>14</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>1</text>
                 </Fingering>
               <pitch>47</pitch>
@@ -756,7 +756,7 @@
               <lid>16</lid>
               <Fingering>
                 <lid>17</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>2</text>
                 </Fingering>
               <pitch>55</pitch>
@@ -774,7 +774,7 @@
               <lid>20</lid>
               <Fingering>
                 <lid>21</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>3</text>
                 </Fingering>
               <pitch>59</pitch>
@@ -790,7 +790,7 @@
               <lid>23</lid>
               <Fingering>
                 <lid>24</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>4</text>
                 </Fingering>
               <pitch>51</pitch>
@@ -806,7 +806,7 @@
               <lid>26</lid>
               <Fingering>
                 <lid>27</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>P</text>
                 </Fingering>
               <pitch>61</pitch>
@@ -822,7 +822,7 @@
               <lid>29</lid>
               <Fingering>
                 <lid>30</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>I</text>
                 </Fingering>
               <pitch>52</pitch>
@@ -840,7 +840,7 @@
               <lid>33</lid>
               <Fingering>
                 <lid>34</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>M</text>
                 </Fingering>
               <pitch>55</pitch>
@@ -856,7 +856,7 @@
               <lid>36</lid>
               <Fingering>
                 <lid>37</lid>
-                <pos x="0.6864" y="-1.6"/>
+                <pos x="0.694406" y="-1.504"/>
                 <text>A</text>
                 </Fingering>
               <pitch>56</pitch>
@@ -872,7 +872,7 @@
               <lid>39</lid>
               <Fingering>
                 <lid>40</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>C</text>
                 </Fingering>
               <pitch>52</pitch>
diff --git a/mtest/guitarpro/fret-diagram.gp4-ref.mscx b/mtest/guitarpro/fret-diagram.gp4-ref.mscx
index 006f7ca..851264b 100644
--- a/mtest/guitarpro/fret-diagram.gp4-ref.mscx
+++ b/mtest/guitarpro/fret-diagram.gp4-ref.mscx
@@ -1003,7 +1003,7 @@
             <useNumbers>1</useNumbers>
             </StaffType>
           <bracket type="-1" span="0"/>
-          <barLineSpan from="0" to="8">1</barLineSpan>
+          <barLineSpan from="0" to="10">1</barLineSpan>
           </Staff>
         <trackName></trackName>
         <Instrument>
diff --git a/mtest/guitarpro/fret-diagram.gp5-ref.mscx b/mtest/guitarpro/fret-diagram.gp5-ref.mscx
index c855492..154f31e 100644
--- a/mtest/guitarpro/fret-diagram.gp5-ref.mscx
+++ b/mtest/guitarpro/fret-diagram.gp5-ref.mscx
@@ -989,7 +989,7 @@
             <useNumbers>1</useNumbers>
             </StaffType>
           <bracket type="-1" span="0"/>
-          <barLineSpan from="0" to="8">1</barLineSpan>
+          <barLineSpan from="0" to="10">1</barLineSpan>
           </Staff>
         <trackName></trackName>
         <Instrument>
diff --git a/mtest/guitarpro/fret-diagram.gpx-ref.mscx b/mtest/guitarpro/fret-diagram.gpx-ref.mscx
index b011747..5f12378 100644
--- a/mtest/guitarpro/fret-diagram.gpx-ref.mscx
+++ b/mtest/guitarpro/fret-diagram.gpx-ref.mscx
@@ -972,7 +972,7 @@
             <useNumbers>1</useNumbers>
             </StaffType>
           <bracket type="-1" span="0"/>
-          <barLineSpan from="0" to="8">1</barLineSpan>
+          <barLineSpan from="0" to="10">1</barLineSpan>
           </Staff>
         <trackName></trackName>
         <Instrument>
diff --git a/mtest/guitarpro/ghost_note.gp3-ref.mscx b/mtest/guitarpro/ghost_note.gp3-ref.mscx
index fbd87c7..183b724 100644
--- a/mtest/guitarpro/ghost_note.gp3-ref.mscx
+++ b/mtest/guitarpro/ghost_note.gp3-ref.mscx
@@ -270,7 +270,7 @@
         <Staff id="2">
           <linkedTo>1</linkedTo>
           <StaffType group="tablature">
-            <name>tab6StrCommon</name>
+            <name>tab4StrCommon</name>
             <lines>4</lines>
             <lineDistance>1.5</lineDistance>
             <timesig>0</timesig>
@@ -291,7 +291,6 @@
             <useNumbers>1</useNumbers>
             </StaffType>
           <bracket type="-1" span="0"/>
-          <barLineSpan from="0" to="14">1</barLineSpan>
           </Staff>
         <trackName></trackName>
         <Instrument>
diff --git a/mtest/guitarpro/high-pitch.gp3-ref.mscx b/mtest/guitarpro/high-pitch.gp3-ref.mscx
index aa831f2..be61427 100644
--- a/mtest/guitarpro/high-pitch.gp3-ref.mscx
+++ b/mtest/guitarpro/high-pitch.gp3-ref.mscx
@@ -341,7 +341,7 @@
             <useNumbers>1</useNumbers>
             </StaffType>
           <bracket type="-1" span="0"/>
-          <barLineSpan from="0" to="12">1</barLineSpan>
+          <barLineSpan from="0" to="10">1</barLineSpan>
           </Staff>
         <trackName></trackName>
         <Instrument>
diff --git a/mtest/guitarpro/repeated-bars.gpx-ref.mscx b/mtest/guitarpro/repeated-bars.gpx-ref.mscx
index f7ab118..6c4aa85 100644
--- a/mtest/guitarpro/repeated-bars.gpx-ref.mscx
+++ b/mtest/guitarpro/repeated-bars.gpx-ref.mscx
@@ -183,9 +183,9 @@
       <Measure number="2">
         <RepeatMeasure>
           <lid>15</lid>
+          <durationType>measure</durationType>
           <duration z="4" n="4"/>
           </RepeatMeasure>
-        <tick>3840</tick>
         <BarLine>
           <subtype>end</subtype>
           <span>1</span>
@@ -396,9 +396,9 @@
         <Measure number="2">
           <RepeatMeasure>
             <lid>15</lid>
+            <durationType>measure</durationType>
             <duration z="4" n="4"/>
             </RepeatMeasure>
-          <tick>3840</tick>
           <BarLine>
             <subtype>end</subtype>
             <span>1</span>
@@ -459,9 +459,9 @@
         <Measure number="2">
           <RepeatMeasure>
             <lid>15</lid>
+            <durationType>measure</durationType>
             <duration z="4" n="4"/>
             </RepeatMeasure>
-          <tick>3840</tick>
           <BarLine>
             <subtype>end</subtype>
             <span>1</span>
diff --git a/mtest/guitarpro/slur-notes-effect-mask.gp5-ref.mscx b/mtest/guitarpro/slur-notes-effect-mask.gp5-ref.mscx
index ebfd302..46b2279 100644
--- a/mtest/guitarpro/slur-notes-effect-mask.gp5-ref.mscx
+++ b/mtest/guitarpro/slur-notes-effect-mask.gp5-ref.mscx
@@ -386,7 +386,7 @@
         <Staff id="2">
           <linkedTo>1</linkedTo>
           <StaffType group="tablature">
-            <name>tab6StrCommon</name>
+            <name>tab4StrCommon</name>
             <lines>4</lines>
             <lineDistance>1.5</lineDistance>
             <timesig>0</timesig>
@@ -407,7 +407,6 @@
             <useNumbers>1</useNumbers>
             </StaffType>
           <bracket type="-1" span="0"/>
-          <barLineSpan from="0" to="14">1</barLineSpan>
           </Staff>
         <trackName></trackName>
         <Instrument>
diff --git a/mtest/guitarpro/volta.gp5 b/mtest/guitarpro/volta.gp5
index 2b4e31a..a5e573b 100644
Binary files a/mtest/guitarpro/volta.gp5 and b/mtest/guitarpro/volta.gp5 differ
diff --git a/mtest/guitarpro/volta.gp5-ref.mscx b/mtest/guitarpro/volta.gp5-ref.mscx
index a8718ec..ce63e65 100644
--- a/mtest/guitarpro/volta.gp5-ref.mscx
+++ b/mtest/guitarpro/volta.gp5-ref.mscx
@@ -291,8 +291,8 @@
         </Measure>
       <Measure number="2">
         <Beam id="4">
-          <l1>-13</l1>
-          <l2>-7</l2>
+          <l1>-16</l1>
+          <l2>-9</l2>
           </Beam>
         <Tuplet id="4">
           <lid>34</lid>
@@ -311,9 +311,9 @@
           <Beam>4</Beam>
           <Note>
             <lid>33</lid>
-            <pitch>67</pitch>
-            <tpc>15</tpc>
-            <fret>3</fret>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <fret>5</fret>
             <string>0</string>
             </Note>
           </Chord>
@@ -324,9 +324,12 @@
           <Beam>4</Beam>
           <Note>
             <lid>36</lid>
-            <pitch>60</pitch>
-            <tpc>14</tpc>
-            <fret>1</fret>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <fret>4</fret>
             <string>1</string>
             </Note>
           </Chord>
@@ -364,12 +367,9 @@
           <Beam>5</Beam>
           <Note>
             <lid>40</lid>
-            <Accidental>
-              <subtype>sharp</subtype>
-              </Accidental>
-            <pitch>66</pitch>
-            <tpc>20</tpc>
-            <fret>2</fret>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <fret>3</fret>
             <string>0</string>
             </Note>
           </Chord>
@@ -380,9 +380,9 @@
           <Beam>5</Beam>
           <Note>
             <lid>43</lid>
-            <pitch>60</pitch>
-            <tpc>14</tpc>
-            <fret>1</fret>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <fret>4</fret>
             <string>1</string>
             </Note>
           </Chord>
@@ -420,6 +420,9 @@
           <Beam>6</Beam>
           <Note>
             <lid>47</lid>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
             <pitch>66</pitch>
             <tpc>20</tpc>
             <fret>2</fret>
@@ -433,9 +436,9 @@
           <Beam>6</Beam>
           <Note>
             <lid>50</lid>
-            <pitch>60</pitch>
-            <tpc>14</tpc>
-            <fret>1</fret>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <fret>4</fret>
             <string>1</string>
             </Note>
           </Chord>
@@ -461,25 +464,20 @@
           <Note>
             <lid>54</lid>
             <track>1</track>
-            <pitch>45</pitch>
-            <tpc>17</tpc>
-            <fret>0</fret>
+            <pitch>47</pitch>
+            <tpc>19</tpc>
+            <fret>2</fret>
             <string>4</string>
             </Note>
           </Chord>
-        <Rest>
-          <lid>55</lid>
-          <track>1</track>
-          <durationType>half</durationType>
-          </Rest>
         </Measure>
       <Measure number="3">
         <Beam id="7">
-          <l1>-16</l1>
-          <l2>-9</l2>
+          <l1>-17</l1>
+          <l2>-11</l2>
           </Beam>
         <Tuplet id="7">
-          <lid>59</lid>
+          <lid>58</lid>
           <normalNotes>2</normalNotes>
           <actualNotes>3</actualNotes>
           <baseNote>eighth</baseNote>
@@ -489,53 +487,50 @@
             </Number>
           </Tuplet>
         <Chord>
-          <lid>57</lid>
+          <lid>56</lid>
           <Tuplet>7</Tuplet>
           <durationType>eighth</durationType>
           <Beam>7</Beam>
           <Note>
-            <lid>58</lid>
-            <pitch>69</pitch>
-            <tpc>17</tpc>
-            <fret>5</fret>
+            <lid>57</lid>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            <fret>7</fret>
             <string>0</string>
             </Note>
           </Chord>
         <Chord>
-          <lid>60</lid>
+          <lid>59</lid>
           <Tuplet>7</Tuplet>
           <durationType>eighth</durationType>
           <Beam>7</Beam>
           <Note>
-            <lid>61</lid>
-            <Accidental>
-              <subtype>flat</subtype>
-              </Accidental>
-            <pitch>63</pitch>
-            <tpc>11</tpc>
-            <fret>4</fret>
+            <lid>60</lid>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            <fret>0</fret>
             <string>1</string>
             </Note>
           </Chord>
         <Chord>
-          <lid>62</lid>
+          <lid>61</lid>
           <Tuplet>7</Tuplet>
           <durationType>eighth</durationType>
           <Beam>7</Beam>
           <Note>
-            <lid>63</lid>
-            <pitch>57</pitch>
-            <tpc>17</tpc>
-            <fret>2</fret>
+            <lid>62</lid>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <fret>0</fret>
             <string>2</string>
             </Note>
           </Chord>
         <Beam id="8">
-          <l1>-13</l1>
-          <l2>-7</l2>
+          <l1>-17</l1>
+          <l2>-11</l2>
           </Beam>
         <Tuplet id="8">
-          <lid>66</lid>
+          <lid>65</lid>
           <normalNotes>2</normalNotes>
           <actualNotes>3</actualNotes>
           <baseNote>eighth</baseNote>
@@ -545,50 +540,50 @@
             </Number>
           </Tuplet>
         <Chord>
-          <lid>64</lid>
+          <lid>63</lid>
           <Tuplet>8</Tuplet>
           <durationType>eighth</durationType>
           <Beam>8</Beam>
           <Note>
-            <lid>65</lid>
-            <pitch>67</pitch>
-            <tpc>15</tpc>
-            <fret>3</fret>
+            <lid>64</lid>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            <fret>7</fret>
             <string>0</string>
             </Note>
           </Chord>
         <Chord>
-          <lid>67</lid>
+          <lid>66</lid>
           <Tuplet>8</Tuplet>
           <durationType>eighth</durationType>
           <Beam>8</Beam>
           <Note>
-            <lid>68</lid>
-            <pitch>63</pitch>
-            <tpc>11</tpc>
-            <fret>4</fret>
+            <lid>67</lid>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            <fret>0</fret>
             <string>1</string>
             </Note>
           </Chord>
         <Chord>
-          <lid>69</lid>
+          <lid>68</lid>
           <Tuplet>8</Tuplet>
           <durationType>eighth</durationType>
           <Beam>8</Beam>
           <Note>
-            <lid>70</lid>
-            <pitch>57</pitch>
-            <tpc>17</tpc>
-            <fret>2</fret>
+            <lid>69</lid>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <fret>0</fret>
             <string>2</string>
             </Note>
           </Chord>
         <Beam id="9">
-          <l1>-13</l1>
-          <l2>-7</l2>
+          <l1>-17</l1>
+          <l2>-11</l2>
           </Beam>
         <Tuplet id="9">
-          <lid>73</lid>
+          <lid>72</lid>
           <normalNotes>2</normalNotes>
           <actualNotes>3</actualNotes>
           <baseNote>eighth</baseNote>
@@ -598,70 +593,67 @@
             </Number>
           </Tuplet>
         <Chord>
-          <lid>71</lid>
+          <lid>70</lid>
           <Tuplet>9</Tuplet>
           <durationType>eighth</durationType>
           <Beam>9</Beam>
           <Note>
-            <lid>72</lid>
-            <Accidental>
-              <subtype>sharp</subtype>
-              </Accidental>
-            <pitch>66</pitch>
-            <tpc>20</tpc>
-            <fret>2</fret>
+            <lid>71</lid>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            <fret>7</fret>
             <string>0</string>
             </Note>
           </Chord>
         <Chord>
-          <lid>74</lid>
+          <lid>73</lid>
           <Tuplet>9</Tuplet>
           <durationType>eighth</durationType>
           <Beam>9</Beam>
           <Note>
-            <lid>75</lid>
-            <pitch>63</pitch>
-            <tpc>11</tpc>
-            <fret>4</fret>
+            <lid>74</lid>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            <fret>0</fret>
             <string>1</string>
             </Note>
           </Chord>
         <Chord>
-          <lid>76</lid>
+          <lid>75</lid>
           <Tuplet>9</Tuplet>
           <durationType>eighth</durationType>
           <Beam>9</Beam>
           <Note>
-            <lid>77</lid>
-            <pitch>57</pitch>
-            <tpc>17</tpc>
-            <fret>2</fret>
+            <lid>76</lid>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <fret>0</fret>
             <string>2</string>
             </Note>
           </Chord>
         <tick>2880</tick>
         <Chord>
-          <lid>78</lid>
+          <lid>77</lid>
           <track>1</track>
           <dots>1</dots>
           <durationType>half</durationType>
           <Note>
-            <lid>79</lid>
+            <lid>78</lid>
             <track>1</track>
-            <pitch>47</pitch>
-            <tpc>19</tpc>
-            <fret>2</fret>
-            <string>4</string>
+            <pitch>40</pitch>
+            <tpc>18</tpc>
+            <fret>0</fret>
+            <string>5</string>
             </Note>
           </Chord>
         </Measure>
       <Measure number="4">
         <Beam id="10">
-          <l1>-17</l1>
-          <l2>-11</l2>
+          <l1>-11</l1>
+          <l2>-5</l2>
           </Beam>
         <Tuplet id="10">
-          <lid>83</lid>
+          <lid>82</lid>
           <normalNotes>2</normalNotes>
           <actualNotes>3</actualNotes>
           <baseNote>eighth</baseNote>
@@ -671,25 +663,25 @@
             </Number>
           </Tuplet>
         <Chord>
-          <lid>81</lid>
+          <lid>80</lid>
           <Tuplet>10</Tuplet>
           <durationType>eighth</durationType>
           <Beam>10</Beam>
           <Note>
-            <lid>82</lid>
-            <pitch>71</pitch>
-            <tpc>19</tpc>
-            <fret>7</fret>
+            <lid>81</lid>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            <fret>0</fret>
             <string>0</string>
             </Note>
           </Chord>
         <Chord>
-          <lid>84</lid>
+          <lid>83</lid>
           <Tuplet>10</Tuplet>
           <durationType>eighth</durationType>
           <Beam>10</Beam>
           <Note>
-            <lid>85</lid>
+            <lid>84</lid>
             <pitch>59</pitch>
             <tpc>19</tpc>
             <fret>0</fret>
@@ -697,12 +689,12 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>86</lid>
+          <lid>85</lid>
           <Tuplet>10</Tuplet>
           <durationType>eighth</durationType>
           <Beam>10</Beam>
           <Note>
-            <lid>87</lid>
+            <lid>86</lid>
             <pitch>55</pitch>
             <tpc>15</tpc>
             <fret>0</fret>
@@ -710,11 +702,11 @@
             </Note>
           </Chord>
         <Beam id="11">
-          <l1>-17</l1>
-          <l2>-11</l2>
+          <l1>-15</l1>
+          <l2>-7</l2>
           </Beam>
         <Tuplet id="11">
-          <lid>90</lid>
+          <lid>89</lid>
           <normalNotes>2</normalNotes>
           <actualNotes>3</actualNotes>
           <baseNote>eighth</baseNote>
@@ -724,25 +716,25 @@
             </Number>
           </Tuplet>
         <Chord>
-          <lid>88</lid>
+          <lid>87</lid>
           <Tuplet>11</Tuplet>
           <durationType>eighth</durationType>
           <Beam>11</Beam>
           <Note>
-            <lid>89</lid>
-            <pitch>71</pitch>
-            <tpc>19</tpc>
-            <fret>7</fret>
+            <lid>88</lid>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <fret>3</fret>
             <string>0</string>
             </Note>
           </Chord>
         <Chord>
-          <lid>91</lid>
+          <lid>90</lid>
           <Tuplet>11</Tuplet>
           <durationType>eighth</durationType>
           <Beam>11</Beam>
           <Note>
-            <lid>92</lid>
+            <lid>91</lid>
             <pitch>59</pitch>
             <tpc>19</tpc>
             <fret>0</fret>
@@ -750,12 +742,12 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>93</lid>
+          <lid>92</lid>
           <Tuplet>11</Tuplet>
           <durationType>eighth</durationType>
           <Beam>11</Beam>
           <Note>
-            <lid>94</lid>
+            <lid>93</lid>
             <pitch>55</pitch>
             <tpc>15</tpc>
             <fret>0</fret>
@@ -763,11 +755,11 @@
             </Note>
           </Chord>
         <Beam id="12">
-          <l1>-17</l1>
-          <l2>-11</l2>
+          <l1>-15</l1>
+          <l2>-7</l2>
           </Beam>
         <Tuplet id="12">
-          <lid>97</lid>
+          <lid>96</lid>
           <normalNotes>2</normalNotes>
           <actualNotes>3</actualNotes>
           <baseNote>eighth</baseNote>
@@ -777,25 +769,25 @@
             </Number>
           </Tuplet>
         <Chord>
-          <lid>95</lid>
+          <lid>94</lid>
           <Tuplet>12</Tuplet>
           <durationType>eighth</durationType>
           <Beam>12</Beam>
           <Note>
-            <lid>96</lid>
-            <pitch>71</pitch>
-            <tpc>19</tpc>
-            <fret>7</fret>
+            <lid>95</lid>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <fret>3</fret>
             <string>0</string>
             </Note>
           </Chord>
         <Chord>
-          <lid>98</lid>
+          <lid>97</lid>
           <Tuplet>12</Tuplet>
           <durationType>eighth</durationType>
           <Beam>12</Beam>
           <Note>
-            <lid>99</lid>
+            <lid>98</lid>
             <pitch>59</pitch>
             <tpc>19</tpc>
             <fret>0</fret>
@@ -803,12 +795,12 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>100</lid>
+          <lid>99</lid>
           <Tuplet>12</Tuplet>
           <durationType>eighth</durationType>
           <Beam>12</Beam>
           <Note>
-            <lid>101</lid>
+            <lid>100</lid>
             <pitch>55</pitch>
             <tpc>15</tpc>
             <fret>0</fret>
@@ -817,12 +809,12 @@
           </Chord>
         <tick>4320</tick>
         <Chord>
-          <lid>102</lid>
+          <lid>101</lid>
           <track>1</track>
           <dots>1</dots>
           <durationType>half</durationType>
           <Note>
-            <lid>103</lid>
+            <lid>102</lid>
             <track>1</track>
             <pitch>40</pitch>
             <tpc>18</tpc>
@@ -833,11 +825,11 @@
         </Measure>
       <Measure number="5">
         <Beam id="13">
-          <l1>-11</l1>
-          <l2>-5</l2>
+          <l1>-13</l1>
+          <l2>-7</l2>
           </Beam>
         <Tuplet id="13">
-          <lid>107</lid>
+          <lid>106</lid>
           <normalNotes>2</normalNotes>
           <actualNotes>3</actualNotes>
           <baseNote>eighth</baseNote>
@@ -847,50 +839,50 @@
             </Number>
           </Tuplet>
         <Chord>
-          <lid>105</lid>
+          <lid>104</lid>
           <Tuplet>13</Tuplet>
           <durationType>eighth</durationType>
           <Beam>13</Beam>
           <Note>
-            <lid>106</lid>
-            <pitch>64</pitch>
-            <tpc>18</tpc>
-            <fret>0</fret>
+            <lid>105</lid>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <fret>3</fret>
             <string>0</string>
             </Note>
           </Chord>
         <Chord>
-          <lid>108</lid>
+          <lid>107</lid>
           <Tuplet>13</Tuplet>
           <durationType>eighth</durationType>
           <Beam>13</Beam>
           <Note>
-            <lid>109</lid>
-            <pitch>59</pitch>
-            <tpc>19</tpc>
-            <fret>0</fret>
+            <lid>108</lid>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <fret>1</fret>
             <string>1</string>
             </Note>
           </Chord>
         <Chord>
-          <lid>110</lid>
+          <lid>109</lid>
           <Tuplet>13</Tuplet>
           <durationType>eighth</durationType>
           <Beam>13</Beam>
           <Note>
-            <lid>111</lid>
-            <pitch>55</pitch>
-            <tpc>15</tpc>
-            <fret>0</fret>
+            <lid>110</lid>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            <fret>2</fret>
             <string>2</string>
             </Note>
           </Chord>
         <Beam id="14">
-          <l1>-15</l1>
+          <l1>-13</l1>
           <l2>-7</l2>
           </Beam>
         <Tuplet id="14">
-          <lid>114</lid>
+          <lid>113</lid>
           <normalNotes>2</normalNotes>
           <actualNotes>3</actualNotes>
           <baseNote>eighth</baseNote>
@@ -900,188 +892,12 @@
             </Number>
           </Tuplet>
         <Chord>
-          <lid>112</lid>
+          <lid>111</lid>
           <Tuplet>14</Tuplet>
           <durationType>eighth</durationType>
           <Beam>14</Beam>
           <Note>
-            <lid>113</lid>
-            <pitch>67</pitch>
-            <tpc>15</tpc>
-            <fret>3</fret>
-            <string>0</string>
-            </Note>
-          </Chord>
-        <Chord>
-          <lid>115</lid>
-          <Tuplet>14</Tuplet>
-          <durationType>eighth</durationType>
-          <Beam>14</Beam>
-          <Note>
-            <lid>116</lid>
-            <pitch>59</pitch>
-            <tpc>19</tpc>
-            <fret>0</fret>
-            <string>1</string>
-            </Note>
-          </Chord>
-        <Chord>
-          <lid>117</lid>
-          <Tuplet>14</Tuplet>
-          <durationType>eighth</durationType>
-          <Beam>14</Beam>
-          <Note>
-            <lid>118</lid>
-            <pitch>55</pitch>
-            <tpc>15</tpc>
-            <fret>0</fret>
-            <string>2</string>
-            </Note>
-          </Chord>
-        <Beam id="15">
-          <l1>-15</l1>
-          <l2>-7</l2>
-          </Beam>
-        <Tuplet id="15">
-          <lid>121</lid>
-          <normalNotes>2</normalNotes>
-          <actualNotes>3</actualNotes>
-          <baseNote>eighth</baseNote>
-          <Number>
-            <style>Tuplet</style>
-            <text>3</text>
-            </Number>
-          </Tuplet>
-        <Chord>
-          <lid>119</lid>
-          <Tuplet>15</Tuplet>
-          <durationType>eighth</durationType>
-          <Beam>15</Beam>
-          <Note>
-            <lid>120</lid>
-            <pitch>67</pitch>
-            <tpc>15</tpc>
-            <fret>3</fret>
-            <string>0</string>
-            </Note>
-          </Chord>
-        <Chord>
-          <lid>122</lid>
-          <Tuplet>15</Tuplet>
-          <durationType>eighth</durationType>
-          <Beam>15</Beam>
-          <Note>
-            <lid>123</lid>
-            <pitch>59</pitch>
-            <tpc>19</tpc>
-            <fret>0</fret>
-            <string>1</string>
-            </Note>
-          </Chord>
-        <Chord>
-          <lid>124</lid>
-          <Tuplet>15</Tuplet>
-          <durationType>eighth</durationType>
-          <Beam>15</Beam>
-          <Note>
-            <lid>125</lid>
-            <pitch>55</pitch>
-            <tpc>15</tpc>
-            <fret>0</fret>
-            <string>2</string>
-            </Note>
-          </Chord>
-        <tick>5760</tick>
-        <Chord>
-          <lid>126</lid>
-          <track>1</track>
-          <dots>1</dots>
-          <durationType>half</durationType>
-          <Note>
-            <lid>127</lid>
-            <track>1</track>
-            <pitch>40</pitch>
-            <tpc>18</tpc>
-            <fret>0</fret>
-            <string>5</string>
-            </Note>
-          </Chord>
-        </Measure>
-      <Measure number="6">
-        <Beam id="16">
-          <l1>-13</l1>
-          <l2>-7</l2>
-          </Beam>
-        <Tuplet id="16">
-          <lid>131</lid>
-          <normalNotes>2</normalNotes>
-          <actualNotes>3</actualNotes>
-          <baseNote>eighth</baseNote>
-          <Number>
-            <style>Tuplet</style>
-            <text>3</text>
-            </Number>
-          </Tuplet>
-        <Chord>
-          <lid>129</lid>
-          <Tuplet>16</Tuplet>
-          <durationType>eighth</durationType>
-          <Beam>16</Beam>
-          <Note>
-            <lid>130</lid>
-            <pitch>67</pitch>
-            <tpc>15</tpc>
-            <fret>3</fret>
-            <string>0</string>
-            </Note>
-          </Chord>
-        <Chord>
-          <lid>132</lid>
-          <Tuplet>16</Tuplet>
-          <durationType>eighth</durationType>
-          <Beam>16</Beam>
-          <Note>
-            <lid>133</lid>
-            <pitch>60</pitch>
-            <tpc>14</tpc>
-            <fret>1</fret>
-            <string>1</string>
-            </Note>
-          </Chord>
-        <Chord>
-          <lid>134</lid>
-          <Tuplet>16</Tuplet>
-          <durationType>eighth</durationType>
-          <Beam>16</Beam>
-          <Note>
-            <lid>135</lid>
-            <pitch>57</pitch>
-            <tpc>17</tpc>
-            <fret>2</fret>
-            <string>2</string>
-            </Note>
-          </Chord>
-        <Beam id="17">
-          <l1>-13</l1>
-          <l2>-7</l2>
-          </Beam>
-        <Tuplet id="17">
-          <lid>138</lid>
-          <normalNotes>2</normalNotes>
-          <actualNotes>3</actualNotes>
-          <baseNote>eighth</baseNote>
-          <Number>
-            <style>Tuplet</style>
-            <text>3</text>
-            </Number>
-          </Tuplet>
-        <Chord>
-          <lid>136</lid>
-          <Tuplet>17</Tuplet>
-          <durationType>eighth</durationType>
-          <Beam>17</Beam>
-          <Note>
-            <lid>137</lid>
+            <lid>112</lid>
             <Accidental>
               <subtype>sharp</subtype>
               </Accidental>
@@ -1092,12 +908,12 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>139</lid>
-          <Tuplet>17</Tuplet>
+          <lid>114</lid>
+          <Tuplet>14</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>17</Beam>
+          <Beam>14</Beam>
           <Note>
-            <lid>140</lid>
+            <lid>115</lid>
             <pitch>60</pitch>
             <tpc>14</tpc>
             <fret>1</fret>
@@ -1105,24 +921,24 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>141</lid>
-          <Tuplet>17</Tuplet>
+          <lid>116</lid>
+          <Tuplet>14</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>17</Beam>
+          <Beam>14</Beam>
           <Note>
-            <lid>142</lid>
+            <lid>117</lid>
             <pitch>57</pitch>
             <tpc>17</tpc>
             <fret>2</fret>
             <string>2</string>
             </Note>
           </Chord>
-        <Beam id="18">
+        <Beam id="15">
           <l1>-13</l1>
           <l2>-7</l2>
           </Beam>
-        <Tuplet id="18">
-          <lid>145</lid>
+        <Tuplet id="15">
+          <lid>120</lid>
           <normalNotes>2</normalNotes>
           <actualNotes>3</actualNotes>
           <baseNote>eighth</baseNote>
@@ -1132,12 +948,12 @@
             </Number>
           </Tuplet>
         <Chord>
-          <lid>143</lid>
-          <Tuplet>18</Tuplet>
+          <lid>118</lid>
+          <Tuplet>15</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>18</Beam>
+          <Beam>15</Beam>
           <Note>
-            <lid>144</lid>
+            <lid>119</lid>
             <pitch>66</pitch>
             <tpc>20</tpc>
             <fret>2</fret>
@@ -1145,12 +961,12 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>146</lid>
-          <Tuplet>18</Tuplet>
+          <lid>121</lid>
+          <Tuplet>15</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>18</Beam>
+          <Beam>15</Beam>
           <Note>
-            <lid>147</lid>
+            <lid>122</lid>
             <pitch>60</pitch>
             <tpc>14</tpc>
             <fret>1</fret>
@@ -1158,26 +974,26 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>148</lid>
-          <Tuplet>18</Tuplet>
+          <lid>123</lid>
+          <Tuplet>15</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>18</Beam>
+          <Beam>15</Beam>
           <Note>
-            <lid>149</lid>
+            <lid>124</lid>
             <pitch>57</pitch>
             <tpc>17</tpc>
             <fret>2</fret>
             <string>2</string>
             </Note>
           </Chord>
-        <tick>7200</tick>
+        <tick>5760</tick>
         <Chord>
-          <lid>150</lid>
+          <lid>125</lid>
           <track>1</track>
           <dots>1</dots>
           <durationType>half</durationType>
           <Note>
-            <lid>151</lid>
+            <lid>126</lid>
             <track>1</track>
             <pitch>45</pitch>
             <tpc>17</tpc>
@@ -1186,13 +1002,13 @@
             </Note>
           </Chord>
         </Measure>
-      <Measure number="7">
-        <Beam id="19">
+      <Measure number="6">
+        <Beam id="16">
           <l1>-16</l1>
           <l2>-9</l2>
           </Beam>
-        <Tuplet id="19">
-          <lid>155</lid>
+        <Tuplet id="16">
+          <lid>130</lid>
           <normalNotes>2</normalNotes>
           <actualNotes>3</actualNotes>
           <baseNote>eighth</baseNote>
@@ -1202,12 +1018,12 @@
             </Number>
           </Tuplet>
         <Chord>
-          <lid>153</lid>
-          <Tuplet>19</Tuplet>
+          <lid>128</lid>
+          <Tuplet>16</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>19</Beam>
+          <Beam>16</Beam>
           <Note>
-            <lid>154</lid>
+            <lid>129</lid>
             <pitch>69</pitch>
             <tpc>17</tpc>
             <fret>5</fret>
@@ -1215,12 +1031,12 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>156</lid>
-          <Tuplet>19</Tuplet>
+          <lid>131</lid>
+          <Tuplet>16</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>19</Beam>
+          <Beam>16</Beam>
           <Note>
-            <lid>157</lid>
+            <lid>132</lid>
             <Accidental>
               <subtype>flat</subtype>
               </Accidental>
@@ -1231,24 +1047,24 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>158</lid>
-          <Tuplet>19</Tuplet>
+          <lid>133</lid>
+          <Tuplet>16</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>19</Beam>
+          <Beam>16</Beam>
           <Note>
-            <lid>159</lid>
+            <lid>134</lid>
             <pitch>57</pitch>
             <tpc>17</tpc>
             <fret>2</fret>
             <string>2</string>
             </Note>
           </Chord>
-        <Beam id="20">
+        <Beam id="17">
           <l1>-13</l1>
           <l2>-7</l2>
           </Beam>
-        <Tuplet id="20">
-          <lid>162</lid>
+        <Tuplet id="17">
+          <lid>137</lid>
           <normalNotes>2</normalNotes>
           <actualNotes>3</actualNotes>
           <baseNote>eighth</baseNote>
@@ -1258,12 +1074,12 @@
             </Number>
           </Tuplet>
         <Chord>
-          <lid>160</lid>
-          <Tuplet>20</Tuplet>
+          <lid>135</lid>
+          <Tuplet>17</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>20</Beam>
+          <Beam>17</Beam>
           <Note>
-            <lid>161</lid>
+            <lid>136</lid>
             <pitch>67</pitch>
             <tpc>15</tpc>
             <fret>3</fret>
@@ -1271,12 +1087,12 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>163</lid>
-          <Tuplet>20</Tuplet>
+          <lid>138</lid>
+          <Tuplet>17</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>20</Beam>
+          <Beam>17</Beam>
           <Note>
-            <lid>164</lid>
+            <lid>139</lid>
             <pitch>63</pitch>
             <tpc>11</tpc>
             <fret>4</fret>
@@ -1284,24 +1100,24 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>165</lid>
-          <Tuplet>20</Tuplet>
+          <lid>140</lid>
+          <Tuplet>17</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>20</Beam>
+          <Beam>17</Beam>
           <Note>
-            <lid>166</lid>
+            <lid>141</lid>
             <pitch>57</pitch>
             <tpc>17</tpc>
             <fret>2</fret>
             <string>2</string>
             </Note>
           </Chord>
-        <Beam id="21">
+        <Beam id="18">
           <l1>-13</l1>
           <l2>-7</l2>
           </Beam>
-        <Tuplet id="21">
-          <lid>169</lid>
+        <Tuplet id="18">
+          <lid>144</lid>
           <normalNotes>2</normalNotes>
           <actualNotes>3</actualNotes>
           <baseNote>eighth</baseNote>
@@ -1311,12 +1127,12 @@
             </Number>
           </Tuplet>
         <Chord>
-          <lid>167</lid>
-          <Tuplet>21</Tuplet>
+          <lid>142</lid>
+          <Tuplet>18</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>21</Beam>
+          <Beam>18</Beam>
           <Note>
-            <lid>168</lid>
+            <lid>143</lid>
             <Accidental>
               <subtype>sharp</subtype>
               </Accidental>
@@ -1327,12 +1143,12 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>170</lid>
-          <Tuplet>21</Tuplet>
+          <lid>145</lid>
+          <Tuplet>18</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>21</Beam>
+          <Beam>18</Beam>
           <Note>
-            <lid>171</lid>
+            <lid>146</lid>
             <pitch>63</pitch>
             <tpc>11</tpc>
             <fret>4</fret>
@@ -1340,26 +1156,26 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>172</lid>
-          <Tuplet>21</Tuplet>
+          <lid>147</lid>
+          <Tuplet>18</Tuplet>
           <durationType>eighth</durationType>
-          <Beam>21</Beam>
+          <Beam>18</Beam>
           <Note>
-            <lid>173</lid>
+            <lid>148</lid>
             <pitch>57</pitch>
             <tpc>17</tpc>
             <fret>2</fret>
             <string>2</string>
             </Note>
           </Chord>
-        <tick>8640</tick>
+        <tick>7200</tick>
         <Chord>
-          <lid>174</lid>
+          <lid>149</lid>
           <track>1</track>
           <dots>1</dots>
           <durationType>half</durationType>
           <Note>
-            <lid>175</lid>
+            <lid>150</lid>
             <track>1</track>
             <pitch>47</pitch>
             <tpc>19</tpc>
@@ -1368,20 +1184,20 @@
             </Note>
           </Chord>
         </Measure>
-      <Measure number="8">
+      <Measure number="7">
         <endRepeat>2</endRepeat>
         <Volta id="2">
-          <lid>193</lid>
+          <lid>168</lid>
           <beginText>
             <text>1</text>
             </beginText>
           <endings>1</endings>
           </Volta>
         <Chord>
-          <lid>177</lid>
+          <lid>152</lid>
           <durationType>quarter</durationType>
           <Note>
-            <lid>178</lid>
+            <lid>153</lid>
             <pitch>64</pitch>
             <tpc>18</tpc>
             <fret>0</fret>
@@ -1389,38 +1205,38 @@
             </Note>
           </Chord>
         <Chord>
-          <lid>179</lid>
+          <lid>154</lid>
           <durationType>half</durationType>
           <Note>
-            <lid>180</lid>
+            <lid>155</lid>
             <pitch>55</pitch>
             <tpc>15</tpc>
             <fret>0</fret>
             <string>2</string>
             </Note>
           <Note>
-            <lid>181</lid>
+            <lid>156</lid>
             <pitch>59</pitch>
             <tpc>19</tpc>
             <fret>0</fret>
             <string>1</string>
             </Note>
           <Note>
-            <lid>182</lid>
+            <lid>157</lid>
             <pitch>64</pitch>
             <tpc>18</tpc>
             <fret>0</fret>
             <string>0</string>
             </Note>
           </Chord>
-        <tick>10080</tick>
+        <tick>8640</tick>
         <Chord>
-          <lid>183</lid>
+          <lid>158</lid>
           <track>1</track>
           <dots>1</dots>
           <durationType>half</durationType>
           <Note>
-            <lid>184</lid>
+            <lid>159</lid>
             <track>1</track>
             <pitch>40</pitch>
             <tpc>18</tpc>
@@ -1429,17 +1245,17 @@
             </Note>
           </Chord>
         </Measure>
-      <Measure number="9">
+      <Measure number="8">
         <endSpanner id="2"/>
         <Volta id="3">
-          <lid>194</lid>
+          <lid>169</lid>
           <beginText>
             <text>2,3,6,8</text>
             </beginText>
           <endings>2, 3, 6, 8</endings>
           </Volta>
         <Rest>
-          <lid>186</lid>
+          <lid>161</lid>
           <durationType>measure</durationType>
           <duration z="3" n="4"/>
           </Rest>
@@ -1448,14 +1264,14 @@
           <span>1</span>
           </BarLine>
         <endSpanner id="3"/>
-        <tick>11520</tick>
+        <tick>10080</tick>
         <Chord>
-          <lid>187</lid>
+          <lid>162</lid>
           <track>1</track>
           <dots>1</dots>
           <durationType>half</durationType>
           <Note>
-            <lid>188</lid>
+            <lid>163</lid>
             <track>1</track>
             <pitch>40</pitch>
             <tpc>18</tpc>
@@ -1463,7 +1279,7 @@
             <string>5</string>
             </Note>
           <Note>
-            <lid>189</lid>
+            <lid>164</lid>
             <track>1</track>
             <pitch>55</pitch>
             <tpc>15</tpc>
@@ -1471,7 +1287,7 @@
             <string>2</string>
             </Note>
           <Note>
-            <lid>190</lid>
+            <lid>165</lid>
             <track>1</track>
             <pitch>59</pitch>
             <tpc>19</tpc>
@@ -1479,7 +1295,7 @@
             <string>1</string>
             </Note>
           <Note>
-            <lid>191</lid>
+            <lid>166</lid>
             <track>1</track>
             <pitch>64</pitch>
             <tpc>18</tpc>
@@ -1624,11 +1440,11 @@
             <lid>7</lid>
             <text><sym>unicodeNoteQuarterUp</sym> = 100</text>
             </Tempo>
-          <Beam id="22">
+          <Beam id="19">
             <l1>-11</l1>
             <l2>-5</l2>
             </Beam>
-          <Tuplet id="22">
+          <Tuplet id="19">
             <lid>10</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
@@ -1640,9 +1456,9 @@
             </Tuplet>
           <Chord>
             <lid>8</lid>
-            <Tuplet>22</Tuplet>
+            <Tuplet>19</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>22</Beam>
+            <Beam>19</Beam>
             <Note>
               <lid>9</lid>
               <pitch>64</pitch>
@@ -1653,9 +1469,9 @@
             </Chord>
           <Chord>
             <lid>11</lid>
-            <Tuplet>22</Tuplet>
+            <Tuplet>19</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>22</Beam>
+            <Beam>19</Beam>
             <Note>
               <lid>12</lid>
               <pitch>59</pitch>
@@ -1666,9 +1482,9 @@
             </Chord>
           <Chord>
             <lid>13</lid>
-            <Tuplet>22</Tuplet>
+            <Tuplet>19</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>22</Beam>
+            <Beam>19</Beam>
             <Note>
               <lid>14</lid>
               <pitch>55</pitch>
@@ -1677,11 +1493,11 @@
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="23">
+          <Beam id="20">
             <l1>-15</l1>
             <l2>-7</l2>
             </Beam>
-          <Tuplet id="23">
+          <Tuplet id="20">
             <lid>17</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
@@ -1693,9 +1509,9 @@
             </Tuplet>
           <Chord>
             <lid>15</lid>
-            <Tuplet>23</Tuplet>
+            <Tuplet>20</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>23</Beam>
+            <Beam>20</Beam>
             <Note>
               <lid>16</lid>
               <pitch>67</pitch>
@@ -1706,9 +1522,9 @@
             </Chord>
           <Chord>
             <lid>18</lid>
-            <Tuplet>23</Tuplet>
+            <Tuplet>20</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>23</Beam>
+            <Beam>20</Beam>
             <Note>
               <lid>19</lid>
               <pitch>59</pitch>
@@ -1719,9 +1535,9 @@
             </Chord>
           <Chord>
             <lid>20</lid>
-            <Tuplet>23</Tuplet>
+            <Tuplet>20</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>23</Beam>
+            <Beam>20</Beam>
             <Note>
               <lid>21</lid>
               <pitch>55</pitch>
@@ -1730,11 +1546,11 @@
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="24">
+          <Beam id="21">
             <l1>-15</l1>
             <l2>-7</l2>
             </Beam>
-          <Tuplet id="24">
+          <Tuplet id="21">
             <lid>24</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
@@ -1746,9 +1562,9 @@
             </Tuplet>
           <Chord>
             <lid>22</lid>
-            <Tuplet>24</Tuplet>
+            <Tuplet>21</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>24</Beam>
+            <Beam>21</Beam>
             <Note>
               <lid>23</lid>
               <pitch>67</pitch>
@@ -1759,9 +1575,9 @@
             </Chord>
           <Chord>
             <lid>25</lid>
-            <Tuplet>24</Tuplet>
+            <Tuplet>21</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>24</Beam>
+            <Beam>21</Beam>
             <Note>
               <lid>26</lid>
               <pitch>59</pitch>
@@ -1772,9 +1588,9 @@
             </Chord>
           <Chord>
             <lid>27</lid>
-            <Tuplet>24</Tuplet>
+            <Tuplet>21</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>24</Beam>
+            <Beam>21</Beam>
             <Note>
               <lid>28</lid>
               <pitch>55</pitch>
@@ -1800,11 +1616,11 @@
             </Chord>
           </Measure>
         <Measure number="2">
-          <Beam id="25">
-            <l1>-13</l1>
-            <l2>-7</l2>
+          <Beam id="22">
+            <l1>-16</l1>
+            <l2>-9</l2>
             </Beam>
-          <Tuplet id="25">
+          <Tuplet id="22">
             <lid>34</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
@@ -1816,35 +1632,38 @@
             </Tuplet>
           <Chord>
             <lid>32</lid>
-            <Tuplet>25</Tuplet>
+            <Tuplet>22</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>25</Beam>
+            <Beam>22</Beam>
             <Note>
               <lid>33</lid>
-              <pitch>67</pitch>
-              <tpc>15</tpc>
-              <fret>3</fret>
+              <pitch>69</pitch>
+              <tpc>17</tpc>
+              <fret>5</fret>
               <string>0</string>
               </Note>
             </Chord>
           <Chord>
             <lid>35</lid>
-            <Tuplet>25</Tuplet>
+            <Tuplet>22</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>25</Beam>
+            <Beam>22</Beam>
             <Note>
               <lid>36</lid>
-              <pitch>60</pitch>
-              <tpc>14</tpc>
-              <fret>1</fret>
+              <Accidental>
+                <subtype>flat</subtype>
+                </Accidental>
+              <pitch>63</pitch>
+              <tpc>11</tpc>
+              <fret>4</fret>
               <string>1</string>
               </Note>
             </Chord>
           <Chord>
             <lid>37</lid>
-            <Tuplet>25</Tuplet>
+            <Tuplet>22</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>25</Beam>
+            <Beam>22</Beam>
             <Note>
               <lid>38</lid>
               <pitch>57</pitch>
@@ -1853,11 +1672,11 @@
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="26">
+          <Beam id="23">
             <l1>-13</l1>
             <l2>-7</l2>
             </Beam>
-          <Tuplet id="26">
+          <Tuplet id="23">
             <lid>41</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
@@ -1869,38 +1688,35 @@
             </Tuplet>
           <Chord>
             <lid>39</lid>
-            <Tuplet>26</Tuplet>
+            <Tuplet>23</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>26</Beam>
+            <Beam>23</Beam>
             <Note>
               <lid>40</lid>
-              <Accidental>
-                <subtype>sharp</subtype>
-                </Accidental>
-              <pitch>66</pitch>
-              <tpc>20</tpc>
-              <fret>2</fret>
+              <pitch>67</pitch>
+              <tpc>15</tpc>
+              <fret>3</fret>
               <string>0</string>
               </Note>
             </Chord>
           <Chord>
             <lid>42</lid>
-            <Tuplet>26</Tuplet>
+            <Tuplet>23</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>26</Beam>
+            <Beam>23</Beam>
             <Note>
               <lid>43</lid>
-              <pitch>60</pitch>
-              <tpc>14</tpc>
-              <fret>1</fret>
+              <pitch>63</pitch>
+              <tpc>11</tpc>
+              <fret>4</fret>
               <string>1</string>
               </Note>
             </Chord>
           <Chord>
             <lid>44</lid>
-            <Tuplet>26</Tuplet>
+            <Tuplet>23</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>26</Beam>
+            <Beam>23</Beam>
             <Note>
               <lid>45</lid>
               <pitch>57</pitch>
@@ -1909,11 +1725,11 @@
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="27">
+          <Beam id="24">
             <l1>-13</l1>
             <l2>-7</l2>
             </Beam>
-          <Tuplet id="27">
+          <Tuplet id="24">
             <lid>48</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
@@ -1925,11 +1741,14 @@
             </Tuplet>
           <Chord>
             <lid>46</lid>
-            <Tuplet>27</Tuplet>
+            <Tuplet>24</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>27</Beam>
+            <Beam>24</Beam>
             <Note>
               <lid>47</lid>
+              <Accidental>
+                <subtype>sharp</subtype>
+                </Accidental>
               <pitch>66</pitch>
               <tpc>20</tpc>
               <fret>2</fret>
@@ -1938,22 +1757,22 @@
             </Chord>
           <Chord>
             <lid>49</lid>
-            <Tuplet>27</Tuplet>
+            <Tuplet>24</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>27</Beam>
+            <Beam>24</Beam>
             <Note>
               <lid>50</lid>
-              <pitch>60</pitch>
-              <tpc>14</tpc>
-              <fret>1</fret>
+              <pitch>63</pitch>
+              <tpc>11</tpc>
+              <fret>4</fret>
               <string>1</string>
               </Note>
             </Chord>
           <Chord>
             <lid>51</lid>
-            <Tuplet>27</Tuplet>
+            <Tuplet>24</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>27</Beam>
+            <Beam>24</Beam>
             <Note>
               <lid>52</lid>
               <pitch>57</pitch>
@@ -1971,25 +1790,20 @@
             <Note>
               <lid>54</lid>
               <track>1</track>
-              <pitch>45</pitch>
-              <tpc>17</tpc>
-              <fret>0</fret>
+              <pitch>47</pitch>
+              <tpc>19</tpc>
+              <fret>2</fret>
               <string>4</string>
               </Note>
             </Chord>
-          <Rest>
-            <lid>55</lid>
-            <track>1</track>
-            <durationType>half</durationType>
-            </Rest>
           </Measure>
         <Measure number="3">
-          <Beam id="28">
-            <l1>-16</l1>
-            <l2>-9</l2>
+          <Beam id="25">
+            <l1>-17</l1>
+            <l2>-11</l2>
             </Beam>
-          <Tuplet id="28">
-            <lid>59</lid>
+          <Tuplet id="25">
+            <lid>58</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -1999,53 +1813,50 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>57</lid>
-            <Tuplet>28</Tuplet>
+            <lid>56</lid>
+            <Tuplet>25</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>28</Beam>
+            <Beam>25</Beam>
             <Note>
-              <lid>58</lid>
-              <pitch>69</pitch>
-              <tpc>17</tpc>
-              <fret>5</fret>
+              <lid>57</lid>
+              <pitch>71</pitch>
+              <tpc>19</tpc>
+              <fret>7</fret>
               <string>0</string>
               </Note>
             </Chord>
           <Chord>
-            <lid>60</lid>
-            <Tuplet>28</Tuplet>
+            <lid>59</lid>
+            <Tuplet>25</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>28</Beam>
+            <Beam>25</Beam>
             <Note>
-              <lid>61</lid>
-              <Accidental>
-                <subtype>flat</subtype>
-                </Accidental>
-              <pitch>63</pitch>
-              <tpc>11</tpc>
-              <fret>4</fret>
+              <lid>60</lid>
+              <pitch>59</pitch>
+              <tpc>19</tpc>
+              <fret>0</fret>
               <string>1</string>
               </Note>
             </Chord>
           <Chord>
-            <lid>62</lid>
-            <Tuplet>28</Tuplet>
+            <lid>61</lid>
+            <Tuplet>25</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>28</Beam>
+            <Beam>25</Beam>
             <Note>
-              <lid>63</lid>
-              <pitch>57</pitch>
-              <tpc>17</tpc>
-              <fret>2</fret>
+              <lid>62</lid>
+              <pitch>55</pitch>
+              <tpc>15</tpc>
+              <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="29">
-            <l1>-13</l1>
-            <l2>-7</l2>
+          <Beam id="26">
+            <l1>-17</l1>
+            <l2>-11</l2>
             </Beam>
-          <Tuplet id="29">
-            <lid>66</lid>
+          <Tuplet id="26">
+            <lid>65</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -2055,50 +1866,50 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>64</lid>
-            <Tuplet>29</Tuplet>
+            <lid>63</lid>
+            <Tuplet>26</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>29</Beam>
+            <Beam>26</Beam>
             <Note>
-              <lid>65</lid>
-              <pitch>67</pitch>
-              <tpc>15</tpc>
-              <fret>3</fret>
+              <lid>64</lid>
+              <pitch>71</pitch>
+              <tpc>19</tpc>
+              <fret>7</fret>
               <string>0</string>
               </Note>
             </Chord>
           <Chord>
-            <lid>67</lid>
-            <Tuplet>29</Tuplet>
+            <lid>66</lid>
+            <Tuplet>26</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>29</Beam>
+            <Beam>26</Beam>
             <Note>
-              <lid>68</lid>
-              <pitch>63</pitch>
-              <tpc>11</tpc>
-              <fret>4</fret>
+              <lid>67</lid>
+              <pitch>59</pitch>
+              <tpc>19</tpc>
+              <fret>0</fret>
               <string>1</string>
               </Note>
             </Chord>
           <Chord>
-            <lid>69</lid>
-            <Tuplet>29</Tuplet>
+            <lid>68</lid>
+            <Tuplet>26</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>29</Beam>
+            <Beam>26</Beam>
             <Note>
-              <lid>70</lid>
-              <pitch>57</pitch>
-              <tpc>17</tpc>
-              <fret>2</fret>
+              <lid>69</lid>
+              <pitch>55</pitch>
+              <tpc>15</tpc>
+              <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="30">
-            <l1>-13</l1>
-            <l2>-7</l2>
+          <Beam id="27">
+            <l1>-17</l1>
+            <l2>-11</l2>
             </Beam>
-          <Tuplet id="30">
-            <lid>73</lid>
+          <Tuplet id="27">
+            <lid>72</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -2108,204 +1919,25 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>71</lid>
-            <Tuplet>30</Tuplet>
+            <lid>70</lid>
+            <Tuplet>27</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>30</Beam>
+            <Beam>27</Beam>
             <Note>
-              <lid>72</lid>
-              <Accidental>
-                <subtype>sharp</subtype>
-                </Accidental>
-              <pitch>66</pitch>
-              <tpc>20</tpc>
-              <fret>2</fret>
+              <lid>71</lid>
+              <pitch>71</pitch>
+              <tpc>19</tpc>
+              <fret>7</fret>
               <string>0</string>
               </Note>
             </Chord>
           <Chord>
-            <lid>74</lid>
-            <Tuplet>30</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>30</Beam>
-            <Note>
-              <lid>75</lid>
-              <pitch>63</pitch>
-              <tpc>11</tpc>
-              <fret>4</fret>
-              <string>1</string>
-              </Note>
-            </Chord>
-          <Chord>
-            <lid>76</lid>
-            <Tuplet>30</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>30</Beam>
-            <Note>
-              <lid>77</lid>
-              <pitch>57</pitch>
-              <tpc>17</tpc>
-              <fret>2</fret>
-              <string>2</string>
-              </Note>
-            </Chord>
-          <tick>2880</tick>
-          <Chord>
-            <lid>78</lid>
-            <track>1</track>
-            <dots>1</dots>
-            <durationType>half</durationType>
-            <Note>
-              <lid>79</lid>
-              <track>1</track>
-              <pitch>47</pitch>
-              <tpc>19</tpc>
-              <fret>2</fret>
-              <string>4</string>
-              </Note>
-            </Chord>
-          </Measure>
-        <Measure number="4">
-          <Beam id="31">
-            <l1>-17</l1>
-            <l2>-11</l2>
-            </Beam>
-          <Tuplet id="31">
-            <lid>83</lid>
-            <normalNotes>2</normalNotes>
-            <actualNotes>3</actualNotes>
-            <baseNote>eighth</baseNote>
-            <Number>
-              <style>Tuplet</style>
-              <text>3</text>
-              </Number>
-            </Tuplet>
-          <Chord>
-            <lid>81</lid>
-            <Tuplet>31</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>31</Beam>
-            <Note>
-              <lid>82</lid>
-              <pitch>71</pitch>
-              <tpc>19</tpc>
-              <fret>7</fret>
-              <string>0</string>
-              </Note>
-            </Chord>
-          <Chord>
-            <lid>84</lid>
-            <Tuplet>31</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>31</Beam>
-            <Note>
-              <lid>85</lid>
-              <pitch>59</pitch>
-              <tpc>19</tpc>
-              <fret>0</fret>
-              <string>1</string>
-              </Note>
-            </Chord>
-          <Chord>
-            <lid>86</lid>
-            <Tuplet>31</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>31</Beam>
-            <Note>
-              <lid>87</lid>
-              <pitch>55</pitch>
-              <tpc>15</tpc>
-              <fret>0</fret>
-              <string>2</string>
-              </Note>
-            </Chord>
-          <Beam id="32">
-            <l1>-17</l1>
-            <l2>-11</l2>
-            </Beam>
-          <Tuplet id="32">
-            <lid>90</lid>
-            <normalNotes>2</normalNotes>
-            <actualNotes>3</actualNotes>
-            <baseNote>eighth</baseNote>
-            <Number>
-              <style>Tuplet</style>
-              <text>3</text>
-              </Number>
-            </Tuplet>
-          <Chord>
-            <lid>88</lid>
-            <Tuplet>32</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>32</Beam>
-            <Note>
-              <lid>89</lid>
-              <pitch>71</pitch>
-              <tpc>19</tpc>
-              <fret>7</fret>
-              <string>0</string>
-              </Note>
-            </Chord>
-          <Chord>
-            <lid>91</lid>
-            <Tuplet>32</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>32</Beam>
-            <Note>
-              <lid>92</lid>
-              <pitch>59</pitch>
-              <tpc>19</tpc>
-              <fret>0</fret>
-              <string>1</string>
-              </Note>
-            </Chord>
-          <Chord>
-            <lid>93</lid>
-            <Tuplet>32</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>32</Beam>
-            <Note>
-              <lid>94</lid>
-              <pitch>55</pitch>
-              <tpc>15</tpc>
-              <fret>0</fret>
-              <string>2</string>
-              </Note>
-            </Chord>
-          <Beam id="33">
-            <l1>-17</l1>
-            <l2>-11</l2>
-            </Beam>
-          <Tuplet id="33">
-            <lid>97</lid>
-            <normalNotes>2</normalNotes>
-            <actualNotes>3</actualNotes>
-            <baseNote>eighth</baseNote>
-            <Number>
-              <style>Tuplet</style>
-              <text>3</text>
-              </Number>
-            </Tuplet>
-          <Chord>
-            <lid>95</lid>
-            <Tuplet>33</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>33</Beam>
-            <Note>
-              <lid>96</lid>
-              <pitch>71</pitch>
-              <tpc>19</tpc>
-              <fret>7</fret>
-              <string>0</string>
-              </Note>
-            </Chord>
-          <Chord>
-            <lid>98</lid>
-            <Tuplet>33</Tuplet>
+            <lid>73</lid>
+            <Tuplet>27</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>33</Beam>
+            <Beam>27</Beam>
             <Note>
-              <lid>99</lid>
+              <lid>74</lid>
               <pitch>59</pitch>
               <tpc>19</tpc>
               <fret>0</fret>
@@ -2313,26 +1945,26 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>100</lid>
-            <Tuplet>33</Tuplet>
+            <lid>75</lid>
+            <Tuplet>27</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>33</Beam>
+            <Beam>27</Beam>
             <Note>
-              <lid>101</lid>
+              <lid>76</lid>
               <pitch>55</pitch>
               <tpc>15</tpc>
               <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <tick>4320</tick>
+          <tick>2880</tick>
           <Chord>
-            <lid>102</lid>
+            <lid>77</lid>
             <track>1</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>103</lid>
+              <lid>78</lid>
               <track>1</track>
               <pitch>40</pitch>
               <tpc>18</tpc>
@@ -2341,13 +1973,13 @@
               </Note>
             </Chord>
           </Measure>
-        <Measure number="5">
-          <Beam id="34">
+        <Measure number="4">
+          <Beam id="28">
             <l1>-11</l1>
             <l2>-5</l2>
             </Beam>
-          <Tuplet id="34">
-            <lid>107</lid>
+          <Tuplet id="28">
+            <lid>82</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -2357,12 +1989,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>105</lid>
-            <Tuplet>34</Tuplet>
+            <lid>80</lid>
+            <Tuplet>28</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>34</Beam>
+            <Beam>28</Beam>
             <Note>
-              <lid>106</lid>
+              <lid>81</lid>
               <pitch>64</pitch>
               <tpc>18</tpc>
               <fret>0</fret>
@@ -2370,12 +2002,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>108</lid>
-            <Tuplet>34</Tuplet>
+            <lid>83</lid>
+            <Tuplet>28</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>34</Beam>
+            <Beam>28</Beam>
             <Note>
-              <lid>109</lid>
+              <lid>84</lid>
               <pitch>59</pitch>
               <tpc>19</tpc>
               <fret>0</fret>
@@ -2383,24 +2015,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>110</lid>
-            <Tuplet>34</Tuplet>
+            <lid>85</lid>
+            <Tuplet>28</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>34</Beam>
+            <Beam>28</Beam>
             <Note>
-              <lid>111</lid>
+              <lid>86</lid>
               <pitch>55</pitch>
               <tpc>15</tpc>
               <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="35">
+          <Beam id="29">
             <l1>-15</l1>
             <l2>-7</l2>
             </Beam>
-          <Tuplet id="35">
-            <lid>114</lid>
+          <Tuplet id="29">
+            <lid>89</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -2410,12 +2042,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>112</lid>
-            <Tuplet>35</Tuplet>
+            <lid>87</lid>
+            <Tuplet>29</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>35</Beam>
+            <Beam>29</Beam>
             <Note>
-              <lid>113</lid>
+              <lid>88</lid>
               <pitch>67</pitch>
               <tpc>15</tpc>
               <fret>3</fret>
@@ -2423,12 +2055,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>115</lid>
-            <Tuplet>35</Tuplet>
+            <lid>90</lid>
+            <Tuplet>29</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>35</Beam>
+            <Beam>29</Beam>
             <Note>
-              <lid>116</lid>
+              <lid>91</lid>
               <pitch>59</pitch>
               <tpc>19</tpc>
               <fret>0</fret>
@@ -2436,24 +2068,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>117</lid>
-            <Tuplet>35</Tuplet>
+            <lid>92</lid>
+            <Tuplet>29</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>35</Beam>
+            <Beam>29</Beam>
             <Note>
-              <lid>118</lid>
+              <lid>93</lid>
               <pitch>55</pitch>
               <tpc>15</tpc>
               <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="36">
+          <Beam id="30">
             <l1>-15</l1>
             <l2>-7</l2>
             </Beam>
-          <Tuplet id="36">
-            <lid>121</lid>
+          <Tuplet id="30">
+            <lid>96</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -2463,12 +2095,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>119</lid>
-            <Tuplet>36</Tuplet>
+            <lid>94</lid>
+            <Tuplet>30</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>36</Beam>
+            <Beam>30</Beam>
             <Note>
-              <lid>120</lid>
+              <lid>95</lid>
               <pitch>67</pitch>
               <tpc>15</tpc>
               <fret>3</fret>
@@ -2476,12 +2108,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>122</lid>
-            <Tuplet>36</Tuplet>
+            <lid>97</lid>
+            <Tuplet>30</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>36</Beam>
+            <Beam>30</Beam>
             <Note>
-              <lid>123</lid>
+              <lid>98</lid>
               <pitch>59</pitch>
               <tpc>19</tpc>
               <fret>0</fret>
@@ -2489,26 +2121,26 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>124</lid>
-            <Tuplet>36</Tuplet>
+            <lid>99</lid>
+            <Tuplet>30</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>36</Beam>
+            <Beam>30</Beam>
             <Note>
-              <lid>125</lid>
+              <lid>100</lid>
               <pitch>55</pitch>
               <tpc>15</tpc>
               <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <tick>5760</tick>
+          <tick>4320</tick>
           <Chord>
-            <lid>126</lid>
+            <lid>101</lid>
             <track>1</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>127</lid>
+              <lid>102</lid>
               <track>1</track>
               <pitch>40</pitch>
               <tpc>18</tpc>
@@ -2517,13 +2149,13 @@
               </Note>
             </Chord>
           </Measure>
-        <Measure number="6">
-          <Beam id="37">
+        <Measure number="5">
+          <Beam id="31">
             <l1>-13</l1>
             <l2>-7</l2>
             </Beam>
-          <Tuplet id="37">
-            <lid>131</lid>
+          <Tuplet id="31">
+            <lid>106</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -2533,12 +2165,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>129</lid>
-            <Tuplet>37</Tuplet>
+            <lid>104</lid>
+            <Tuplet>31</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>37</Beam>
+            <Beam>31</Beam>
             <Note>
-              <lid>130</lid>
+              <lid>105</lid>
               <pitch>67</pitch>
               <tpc>15</tpc>
               <fret>3</fret>
@@ -2546,12 +2178,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>132</lid>
-            <Tuplet>37</Tuplet>
+            <lid>107</lid>
+            <Tuplet>31</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>37</Beam>
+            <Beam>31</Beam>
             <Note>
-              <lid>133</lid>
+              <lid>108</lid>
               <pitch>60</pitch>
               <tpc>14</tpc>
               <fret>1</fret>
@@ -2559,24 +2191,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>134</lid>
-            <Tuplet>37</Tuplet>
+            <lid>109</lid>
+            <Tuplet>31</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>37</Beam>
+            <Beam>31</Beam>
             <Note>
-              <lid>135</lid>
+              <lid>110</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="38">
+          <Beam id="32">
             <l1>-13</l1>
             <l2>-7</l2>
             </Beam>
-          <Tuplet id="38">
-            <lid>138</lid>
+          <Tuplet id="32">
+            <lid>113</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -2586,12 +2218,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>136</lid>
-            <Tuplet>38</Tuplet>
+            <lid>111</lid>
+            <Tuplet>32</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>38</Beam>
+            <Beam>32</Beam>
             <Note>
-              <lid>137</lid>
+              <lid>112</lid>
               <Accidental>
                 <subtype>sharp</subtype>
                 </Accidental>
@@ -2602,12 +2234,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>139</lid>
-            <Tuplet>38</Tuplet>
+            <lid>114</lid>
+            <Tuplet>32</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>38</Beam>
+            <Beam>32</Beam>
             <Note>
-              <lid>140</lid>
+              <lid>115</lid>
               <pitch>60</pitch>
               <tpc>14</tpc>
               <fret>1</fret>
@@ -2615,24 +2247,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>141</lid>
-            <Tuplet>38</Tuplet>
+            <lid>116</lid>
+            <Tuplet>32</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>38</Beam>
+            <Beam>32</Beam>
             <Note>
-              <lid>142</lid>
+              <lid>117</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="39">
+          <Beam id="33">
             <l1>-13</l1>
             <l2>-7</l2>
             </Beam>
-          <Tuplet id="39">
-            <lid>145</lid>
+          <Tuplet id="33">
+            <lid>120</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -2642,12 +2274,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>143</lid>
-            <Tuplet>39</Tuplet>
+            <lid>118</lid>
+            <Tuplet>33</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>39</Beam>
+            <Beam>33</Beam>
             <Note>
-              <lid>144</lid>
+              <lid>119</lid>
               <pitch>66</pitch>
               <tpc>20</tpc>
               <fret>2</fret>
@@ -2655,12 +2287,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>146</lid>
-            <Tuplet>39</Tuplet>
+            <lid>121</lid>
+            <Tuplet>33</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>39</Beam>
+            <Beam>33</Beam>
             <Note>
-              <lid>147</lid>
+              <lid>122</lid>
               <pitch>60</pitch>
               <tpc>14</tpc>
               <fret>1</fret>
@@ -2668,26 +2300,26 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>148</lid>
-            <Tuplet>39</Tuplet>
+            <lid>123</lid>
+            <Tuplet>33</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>39</Beam>
+            <Beam>33</Beam>
             <Note>
-              <lid>149</lid>
+              <lid>124</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <tick>7200</tick>
+          <tick>5760</tick>
           <Chord>
-            <lid>150</lid>
+            <lid>125</lid>
             <track>1</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>151</lid>
+              <lid>126</lid>
               <track>1</track>
               <pitch>45</pitch>
               <tpc>17</tpc>
@@ -2696,13 +2328,13 @@
               </Note>
             </Chord>
           </Measure>
-        <Measure number="7">
-          <Beam id="40">
+        <Measure number="6">
+          <Beam id="34">
             <l1>-16</l1>
             <l2>-9</l2>
             </Beam>
-          <Tuplet id="40">
-            <lid>155</lid>
+          <Tuplet id="34">
+            <lid>130</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -2712,12 +2344,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>153</lid>
-            <Tuplet>40</Tuplet>
+            <lid>128</lid>
+            <Tuplet>34</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>40</Beam>
+            <Beam>34</Beam>
             <Note>
-              <lid>154</lid>
+              <lid>129</lid>
               <pitch>69</pitch>
               <tpc>17</tpc>
               <fret>5</fret>
@@ -2725,12 +2357,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>156</lid>
-            <Tuplet>40</Tuplet>
+            <lid>131</lid>
+            <Tuplet>34</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>40</Beam>
+            <Beam>34</Beam>
             <Note>
-              <lid>157</lid>
+              <lid>132</lid>
               <Accidental>
                 <subtype>flat</subtype>
                 </Accidental>
@@ -2741,24 +2373,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>158</lid>
-            <Tuplet>40</Tuplet>
+            <lid>133</lid>
+            <Tuplet>34</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>40</Beam>
+            <Beam>34</Beam>
             <Note>
-              <lid>159</lid>
+              <lid>134</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="41">
+          <Beam id="35">
             <l1>-13</l1>
             <l2>-7</l2>
             </Beam>
-          <Tuplet id="41">
-            <lid>162</lid>
+          <Tuplet id="35">
+            <lid>137</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -2768,12 +2400,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>160</lid>
-            <Tuplet>41</Tuplet>
+            <lid>135</lid>
+            <Tuplet>35</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>41</Beam>
+            <Beam>35</Beam>
             <Note>
-              <lid>161</lid>
+              <lid>136</lid>
               <pitch>67</pitch>
               <tpc>15</tpc>
               <fret>3</fret>
@@ -2781,12 +2413,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>163</lid>
-            <Tuplet>41</Tuplet>
+            <lid>138</lid>
+            <Tuplet>35</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>41</Beam>
+            <Beam>35</Beam>
             <Note>
-              <lid>164</lid>
+              <lid>139</lid>
               <pitch>63</pitch>
               <tpc>11</tpc>
               <fret>4</fret>
@@ -2794,24 +2426,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>165</lid>
-            <Tuplet>41</Tuplet>
+            <lid>140</lid>
+            <Tuplet>35</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>41</Beam>
+            <Beam>35</Beam>
             <Note>
-              <lid>166</lid>
+              <lid>141</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="42">
+          <Beam id="36">
             <l1>-13</l1>
             <l2>-7</l2>
             </Beam>
-          <Tuplet id="42">
-            <lid>169</lid>
+          <Tuplet id="36">
+            <lid>144</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -2821,12 +2453,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>167</lid>
-            <Tuplet>42</Tuplet>
+            <lid>142</lid>
+            <Tuplet>36</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>42</Beam>
+            <Beam>36</Beam>
             <Note>
-              <lid>168</lid>
+              <lid>143</lid>
               <Accidental>
                 <subtype>sharp</subtype>
                 </Accidental>
@@ -2837,12 +2469,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>170</lid>
-            <Tuplet>42</Tuplet>
+            <lid>145</lid>
+            <Tuplet>36</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>42</Beam>
+            <Beam>36</Beam>
             <Note>
-              <lid>171</lid>
+              <lid>146</lid>
               <pitch>63</pitch>
               <tpc>11</tpc>
               <fret>4</fret>
@@ -2850,26 +2482,26 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>172</lid>
-            <Tuplet>42</Tuplet>
+            <lid>147</lid>
+            <Tuplet>36</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>42</Beam>
+            <Beam>36</Beam>
             <Note>
-              <lid>173</lid>
+              <lid>148</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <tick>8640</tick>
+          <tick>7200</tick>
           <Chord>
-            <lid>174</lid>
+            <lid>149</lid>
             <track>1</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>175</lid>
+              <lid>150</lid>
               <track>1</track>
               <pitch>47</pitch>
               <tpc>19</tpc>
@@ -2878,20 +2510,20 @@
               </Note>
             </Chord>
           </Measure>
-        <Measure number="8">
+        <Measure number="7">
           <endRepeat>2</endRepeat>
           <Volta id="4">
-            <lid>193</lid>
+            <lid>168</lid>
             <beginText>
               <text>1</text>
               </beginText>
             <endings>1</endings>
             </Volta>
           <Chord>
-            <lid>177</lid>
+            <lid>152</lid>
             <durationType>quarter</durationType>
             <Note>
-              <lid>178</lid>
+              <lid>153</lid>
               <pitch>64</pitch>
               <tpc>18</tpc>
               <fret>0</fret>
@@ -2899,38 +2531,38 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>179</lid>
+            <lid>154</lid>
             <durationType>half</durationType>
             <Note>
-              <lid>180</lid>
+              <lid>155</lid>
               <pitch>55</pitch>
               <tpc>15</tpc>
               <fret>0</fret>
               <string>2</string>
               </Note>
             <Note>
-              <lid>181</lid>
+              <lid>156</lid>
               <pitch>59</pitch>
               <tpc>19</tpc>
               <fret>0</fret>
               <string>1</string>
               </Note>
             <Note>
-              <lid>182</lid>
+              <lid>157</lid>
               <pitch>64</pitch>
               <tpc>18</tpc>
               <fret>0</fret>
               <string>0</string>
               </Note>
             </Chord>
-          <tick>10080</tick>
+          <tick>8640</tick>
           <Chord>
-            <lid>183</lid>
+            <lid>158</lid>
             <track>1</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>184</lid>
+              <lid>159</lid>
               <track>1</track>
               <pitch>40</pitch>
               <tpc>18</tpc>
@@ -2939,17 +2571,17 @@
               </Note>
             </Chord>
           </Measure>
-        <Measure number="9">
+        <Measure number="8">
           <endSpanner id="4"/>
           <Volta id="5">
-            <lid>194</lid>
+            <lid>169</lid>
             <beginText>
               <text>2,3,6,8</text>
               </beginText>
             <endings>2, 3, 6, 8</endings>
             </Volta>
           <Rest>
-            <lid>186</lid>
+            <lid>161</lid>
             <durationType>measure</durationType>
             <duration z="3" n="4"/>
             </Rest>
@@ -2958,14 +2590,14 @@
             <span>1</span>
             </BarLine>
           <endSpanner id="5"/>
-          <tick>11520</tick>
+          <tick>10080</tick>
           <Chord>
-            <lid>187</lid>
+            <lid>162</lid>
             <track>1</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>188</lid>
+              <lid>163</lid>
               <track>1</track>
               <pitch>40</pitch>
               <tpc>18</tpc>
@@ -2973,7 +2605,7 @@
               <string>5</string>
               </Note>
             <Note>
-              <lid>189</lid>
+              <lid>164</lid>
               <track>1</track>
               <pitch>55</pitch>
               <tpc>15</tpc>
@@ -2981,7 +2613,7 @@
               <string>2</string>
               </Note>
             <Note>
-              <lid>190</lid>
+              <lid>165</lid>
               <track>1</track>
               <pitch>59</pitch>
               <tpc>19</tpc>
@@ -2989,7 +2621,7 @@
               <string>1</string>
               </Note>
             <Note>
-              <lid>191</lid>
+              <lid>166</lid>
               <track>1</track>
               <pitch>64</pitch>
               <tpc>18</tpc>
@@ -3005,188 +2637,12 @@
             <lid>4</lid>
             <accidental>0</accidental>
             </KeySig>
-          <Beam id="43">
-            <l1>-16</l1>
-            <l2>-16</l2>
-            </Beam>
-          <Tuplet id="43">
-            <lid>10</lid>
-            <normalNotes>2</normalNotes>
-            <actualNotes>3</actualNotes>
-            <baseNote>eighth</baseNote>
-            <Number>
-              <style>Tuplet</style>
-              <text>3</text>
-              </Number>
-            </Tuplet>
-          <Chord>
-            <lid>8</lid>
-            <Tuplet>43</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>43</Beam>
-            <Note>
-              <lid>9</lid>
-              <pitch>64</pitch>
-              <tpc>18</tpc>
-              <fret>0</fret>
-              <string>0</string>
-              </Note>
-            </Chord>
-          <Chord>
-            <lid>11</lid>
-            <Tuplet>43</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>43</Beam>
-            <Note>
-              <lid>12</lid>
-              <pitch>59</pitch>
-              <tpc>19</tpc>
-              <fret>0</fret>
-              <string>1</string>
-              </Note>
-            </Chord>
-          <Chord>
-            <lid>13</lid>
-            <Tuplet>43</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>43</Beam>
-            <Note>
-              <lid>14</lid>
-              <pitch>55</pitch>
-              <tpc>15</tpc>
-              <fret>0</fret>
-              <string>2</string>
-              </Note>
-            </Chord>
-          <Beam id="44">
-            <l1>-16</l1>
-            <l2>-16</l2>
-            </Beam>
-          <Tuplet id="44">
-            <lid>17</lid>
-            <normalNotes>2</normalNotes>
-            <actualNotes>3</actualNotes>
-            <baseNote>eighth</baseNote>
-            <Number>
-              <style>Tuplet</style>
-              <text>3</text>
-              </Number>
-            </Tuplet>
-          <Chord>
-            <lid>15</lid>
-            <Tuplet>44</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>44</Beam>
-            <Note>
-              <lid>16</lid>
-              <pitch>67</pitch>
-              <tpc>15</tpc>
-              <fret>3</fret>
-              <string>0</string>
-              </Note>
-            </Chord>
-          <Chord>
-            <lid>18</lid>
-            <Tuplet>44</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>44</Beam>
-            <Note>
-              <lid>19</lid>
-              <pitch>59</pitch>
-              <tpc>19</tpc>
-              <fret>0</fret>
-              <string>1</string>
-              </Note>
-            </Chord>
-          <Chord>
-            <lid>20</lid>
-            <Tuplet>44</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>44</Beam>
-            <Note>
-              <lid>21</lid>
-              <pitch>55</pitch>
-              <tpc>15</tpc>
-              <fret>0</fret>
-              <string>2</string>
-              </Note>
-            </Chord>
-          <Beam id="45">
-            <l1>-16</l1>
-            <l2>-16</l2>
-            </Beam>
-          <Tuplet id="45">
-            <lid>24</lid>
-            <normalNotes>2</normalNotes>
-            <actualNotes>3</actualNotes>
-            <baseNote>eighth</baseNote>
-            <Number>
-              <style>Tuplet</style>
-              <text>3</text>
-              </Number>
-            </Tuplet>
-          <Chord>
-            <lid>22</lid>
-            <Tuplet>45</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>45</Beam>
-            <Note>
-              <lid>23</lid>
-              <pitch>67</pitch>
-              <tpc>15</tpc>
-              <fret>3</fret>
-              <string>0</string>
-              </Note>
-            </Chord>
-          <Chord>
-            <lid>25</lid>
-            <Tuplet>45</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>45</Beam>
-            <Note>
-              <lid>26</lid>
-              <pitch>59</pitch>
-              <tpc>19</tpc>
-              <fret>0</fret>
-              <string>1</string>
-              </Note>
-            </Chord>
-          <Chord>
-            <lid>27</lid>
-            <Tuplet>45</Tuplet>
-            <durationType>eighth</durationType>
-            <Beam>45</Beam>
-            <Note>
-              <lid>28</lid>
-              <pitch>55</pitch>
-              <tpc>15</tpc>
-              <fret>0</fret>
-              <string>2</string>
-              </Note>
-            </Chord>
-          <tick>0</tick>
-          <Chord>
-            <lid>29</lid>
-            <track>5</track>
-            <dots>1</dots>
-            <durationType>half</durationType>
-            <Note>
-              <lid>30</lid>
-              <track>5</track>
-              <pitch>40</pitch>
-              <tpc>18</tpc>
-              <fret>0</fret>
-              <string>5</string>
-              </Note>
-            </Chord>
-          </Measure>
-        <Measure number="2">
-          <Beam id="46">
-            <l1>-16</l1>
-            <l2>-16</l2>
+          <Beam id="37">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="46">
-            <lid>34</lid>
+          <Tuplet id="37">
+            <lid>10</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3196,50 +2652,50 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>32</lid>
-            <Tuplet>46</Tuplet>
+            <lid>8</lid>
+            <Tuplet>37</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>46</Beam>
+            <Beam>37</Beam>
             <Note>
-              <lid>33</lid>
-              <pitch>67</pitch>
-              <tpc>15</tpc>
-              <fret>3</fret>
+              <lid>9</lid>
+              <pitch>64</pitch>
+              <tpc>18</tpc>
+              <fret>0</fret>
               <string>0</string>
               </Note>
             </Chord>
           <Chord>
-            <lid>35</lid>
-            <Tuplet>46</Tuplet>
+            <lid>11</lid>
+            <Tuplet>37</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>46</Beam>
+            <Beam>37</Beam>
             <Note>
-              <lid>36</lid>
-              <pitch>60</pitch>
-              <tpc>14</tpc>
-              <fret>1</fret>
+              <lid>12</lid>
+              <pitch>59</pitch>
+              <tpc>19</tpc>
+              <fret>0</fret>
               <string>1</string>
               </Note>
             </Chord>
           <Chord>
-            <lid>37</lid>
-            <Tuplet>46</Tuplet>
+            <lid>13</lid>
+            <Tuplet>37</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>46</Beam>
+            <Beam>37</Beam>
             <Note>
-              <lid>38</lid>
-              <pitch>57</pitch>
-              <tpc>17</tpc>
-              <fret>2</fret>
+              <lid>14</lid>
+              <pitch>55</pitch>
+              <tpc>15</tpc>
+              <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="47">
-            <l1>-16</l1>
-            <l2>-16</l2>
+          <Beam id="38">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="47">
-            <lid>41</lid>
+          <Tuplet id="38">
+            <lid>17</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3249,50 +2705,50 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>39</lid>
-            <Tuplet>47</Tuplet>
+            <lid>15</lid>
+            <Tuplet>38</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>47</Beam>
+            <Beam>38</Beam>
             <Note>
-              <lid>40</lid>
-              <pitch>66</pitch>
-              <tpc>20</tpc>
-              <fret>2</fret>
+              <lid>16</lid>
+              <pitch>67</pitch>
+              <tpc>15</tpc>
+              <fret>3</fret>
               <string>0</string>
               </Note>
             </Chord>
           <Chord>
-            <lid>42</lid>
-            <Tuplet>47</Tuplet>
+            <lid>18</lid>
+            <Tuplet>38</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>47</Beam>
+            <Beam>38</Beam>
             <Note>
-              <lid>43</lid>
-              <pitch>60</pitch>
-              <tpc>14</tpc>
-              <fret>1</fret>
+              <lid>19</lid>
+              <pitch>59</pitch>
+              <tpc>19</tpc>
+              <fret>0</fret>
               <string>1</string>
               </Note>
             </Chord>
           <Chord>
-            <lid>44</lid>
-            <Tuplet>47</Tuplet>
+            <lid>20</lid>
+            <Tuplet>38</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>47</Beam>
+            <Beam>38</Beam>
             <Note>
-              <lid>45</lid>
-              <pitch>57</pitch>
-              <tpc>17</tpc>
-              <fret>2</fret>
+              <lid>21</lid>
+              <pitch>55</pitch>
+              <tpc>15</tpc>
+              <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="48">
-            <l1>-16</l1>
-            <l2>-16</l2>
+          <Beam id="39">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="48">
-            <lid>48</lid>
+          <Tuplet id="39">
+            <lid>24</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3302,72 +2758,67 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>46</lid>
-            <Tuplet>48</Tuplet>
+            <lid>22</lid>
+            <Tuplet>39</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>48</Beam>
+            <Beam>39</Beam>
             <Note>
-              <lid>47</lid>
-              <pitch>66</pitch>
-              <tpc>20</tpc>
-              <fret>2</fret>
+              <lid>23</lid>
+              <pitch>67</pitch>
+              <tpc>15</tpc>
+              <fret>3</fret>
               <string>0</string>
               </Note>
             </Chord>
           <Chord>
-            <lid>49</lid>
-            <Tuplet>48</Tuplet>
+            <lid>25</lid>
+            <Tuplet>39</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>48</Beam>
+            <Beam>39</Beam>
             <Note>
-              <lid>50</lid>
-              <pitch>60</pitch>
-              <tpc>14</tpc>
-              <fret>1</fret>
+              <lid>26</lid>
+              <pitch>59</pitch>
+              <tpc>19</tpc>
+              <fret>0</fret>
               <string>1</string>
               </Note>
             </Chord>
           <Chord>
-            <lid>51</lid>
-            <Tuplet>48</Tuplet>
+            <lid>27</lid>
+            <Tuplet>39</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>48</Beam>
+            <Beam>39</Beam>
             <Note>
-              <lid>52</lid>
-              <pitch>57</pitch>
-              <tpc>17</tpc>
-              <fret>2</fret>
+              <lid>28</lid>
+              <pitch>55</pitch>
+              <tpc>15</tpc>
+              <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <tick>1440</tick>
+          <tick>0</tick>
           <Chord>
-            <lid>53</lid>
+            <lid>29</lid>
             <track>5</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>54</lid>
+              <lid>30</lid>
               <track>5</track>
-              <pitch>45</pitch>
-              <tpc>17</tpc>
+              <pitch>40</pitch>
+              <tpc>18</tpc>
               <fret>0</fret>
-              <string>4</string>
+              <string>5</string>
               </Note>
             </Chord>
-          <Rest>
-            <lid>55</lid>
-            <track>5</track>
-            <durationType>half</durationType>
-            </Rest>
           </Measure>
-        <Measure number="3">
-          <Beam id="49">
-            <l1>-16</l1>
-            <l2>-16</l2>
+        <Measure number="2">
+          <Beam id="40">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="49">
-            <lid>59</lid>
+          <Tuplet id="40">
+            <lid>34</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3377,12 +2828,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>57</lid>
-            <Tuplet>49</Tuplet>
+            <lid>32</lid>
+            <Tuplet>40</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>49</Beam>
+            <Beam>40</Beam>
             <Note>
-              <lid>58</lid>
+              <lid>33</lid>
               <pitch>69</pitch>
               <tpc>17</tpc>
               <fret>5</fret>
@@ -3390,12 +2841,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>60</lid>
-            <Tuplet>49</Tuplet>
+            <lid>35</lid>
+            <Tuplet>40</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>49</Beam>
+            <Beam>40</Beam>
             <Note>
-              <lid>61</lid>
+              <lid>36</lid>
               <pitch>63</pitch>
               <tpc>11</tpc>
               <fret>4</fret>
@@ -3403,24 +2854,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>62</lid>
-            <Tuplet>49</Tuplet>
+            <lid>37</lid>
+            <Tuplet>40</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>49</Beam>
+            <Beam>40</Beam>
             <Note>
-              <lid>63</lid>
+              <lid>38</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="50">
-            <l1>-16</l1>
-            <l2>-16</l2>
+          <Beam id="41">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="50">
-            <lid>66</lid>
+          <Tuplet id="41">
+            <lid>41</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3430,12 +2881,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>64</lid>
-            <Tuplet>50</Tuplet>
+            <lid>39</lid>
+            <Tuplet>41</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>50</Beam>
+            <Beam>41</Beam>
             <Note>
-              <lid>65</lid>
+              <lid>40</lid>
               <pitch>67</pitch>
               <tpc>15</tpc>
               <fret>3</fret>
@@ -3443,12 +2894,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>67</lid>
-            <Tuplet>50</Tuplet>
+            <lid>42</lid>
+            <Tuplet>41</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>50</Beam>
+            <Beam>41</Beam>
             <Note>
-              <lid>68</lid>
+              <lid>43</lid>
               <pitch>63</pitch>
               <tpc>11</tpc>
               <fret>4</fret>
@@ -3456,24 +2907,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>69</lid>
-            <Tuplet>50</Tuplet>
+            <lid>44</lid>
+            <Tuplet>41</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>50</Beam>
+            <Beam>41</Beam>
             <Note>
-              <lid>70</lid>
+              <lid>45</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="51">
-            <l1>-16</l1>
-            <l2>-16</l2>
+          <Beam id="42">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="51">
-            <lid>73</lid>
+          <Tuplet id="42">
+            <lid>48</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3483,12 +2934,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>71</lid>
-            <Tuplet>51</Tuplet>
+            <lid>46</lid>
+            <Tuplet>42</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>51</Beam>
+            <Beam>42</Beam>
             <Note>
-              <lid>72</lid>
+              <lid>47</lid>
               <pitch>66</pitch>
               <tpc>20</tpc>
               <fret>2</fret>
@@ -3496,12 +2947,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>74</lid>
-            <Tuplet>51</Tuplet>
+            <lid>49</lid>
+            <Tuplet>42</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>51</Beam>
+            <Beam>42</Beam>
             <Note>
-              <lid>75</lid>
+              <lid>50</lid>
               <pitch>63</pitch>
               <tpc>11</tpc>
               <fret>4</fret>
@@ -3509,26 +2960,26 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>76</lid>
-            <Tuplet>51</Tuplet>
+            <lid>51</lid>
+            <Tuplet>42</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>51</Beam>
+            <Beam>42</Beam>
             <Note>
-              <lid>77</lid>
+              <lid>52</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <tick>2880</tick>
+          <tick>1440</tick>
           <Chord>
-            <lid>78</lid>
+            <lid>53</lid>
             <track>5</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>79</lid>
+              <lid>54</lid>
               <track>5</track>
               <pitch>47</pitch>
               <tpc>19</tpc>
@@ -3537,13 +2988,13 @@
               </Note>
             </Chord>
           </Measure>
-        <Measure number="4">
-          <Beam id="52">
-            <l1>-16</l1>
-            <l2>-16</l2>
+        <Measure number="3">
+          <Beam id="43">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="52">
-            <lid>83</lid>
+          <Tuplet id="43">
+            <lid>58</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3553,12 +3004,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>81</lid>
-            <Tuplet>52</Tuplet>
+            <lid>56</lid>
+            <Tuplet>43</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>52</Beam>
+            <Beam>43</Beam>
             <Note>
-              <lid>82</lid>
+              <lid>57</lid>
               <pitch>71</pitch>
               <tpc>19</tpc>
               <fret>7</fret>
@@ -3566,12 +3017,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>84</lid>
-            <Tuplet>52</Tuplet>
+            <lid>59</lid>
+            <Tuplet>43</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>52</Beam>
+            <Beam>43</Beam>
             <Note>
-              <lid>85</lid>
+              <lid>60</lid>
               <pitch>59</pitch>
               <tpc>19</tpc>
               <fret>0</fret>
@@ -3579,24 +3030,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>86</lid>
-            <Tuplet>52</Tuplet>
+            <lid>61</lid>
+            <Tuplet>43</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>52</Beam>
+            <Beam>43</Beam>
             <Note>
-              <lid>87</lid>
+              <lid>62</lid>
               <pitch>55</pitch>
               <tpc>15</tpc>
               <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="53">
-            <l1>-16</l1>
-            <l2>-16</l2>
+          <Beam id="44">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="53">
-            <lid>90</lid>
+          <Tuplet id="44">
+            <lid>65</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3606,12 +3057,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>88</lid>
-            <Tuplet>53</Tuplet>
+            <lid>63</lid>
+            <Tuplet>44</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>53</Beam>
+            <Beam>44</Beam>
             <Note>
-              <lid>89</lid>
+              <lid>64</lid>
               <pitch>71</pitch>
               <tpc>19</tpc>
               <fret>7</fret>
@@ -3619,12 +3070,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>91</lid>
-            <Tuplet>53</Tuplet>
+            <lid>66</lid>
+            <Tuplet>44</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>53</Beam>
+            <Beam>44</Beam>
             <Note>
-              <lid>92</lid>
+              <lid>67</lid>
               <pitch>59</pitch>
               <tpc>19</tpc>
               <fret>0</fret>
@@ -3632,24 +3083,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>93</lid>
-            <Tuplet>53</Tuplet>
+            <lid>68</lid>
+            <Tuplet>44</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>53</Beam>
+            <Beam>44</Beam>
             <Note>
-              <lid>94</lid>
+              <lid>69</lid>
               <pitch>55</pitch>
               <tpc>15</tpc>
               <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="54">
-            <l1>-16</l1>
-            <l2>-16</l2>
+          <Beam id="45">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="54">
-            <lid>97</lid>
+          <Tuplet id="45">
+            <lid>72</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3659,12 +3110,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>95</lid>
-            <Tuplet>54</Tuplet>
+            <lid>70</lid>
+            <Tuplet>45</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>54</Beam>
+            <Beam>45</Beam>
             <Note>
-              <lid>96</lid>
+              <lid>71</lid>
               <pitch>71</pitch>
               <tpc>19</tpc>
               <fret>7</fret>
@@ -3672,12 +3123,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>98</lid>
-            <Tuplet>54</Tuplet>
+            <lid>73</lid>
+            <Tuplet>45</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>54</Beam>
+            <Beam>45</Beam>
             <Note>
-              <lid>99</lid>
+              <lid>74</lid>
               <pitch>59</pitch>
               <tpc>19</tpc>
               <fret>0</fret>
@@ -3685,26 +3136,26 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>100</lid>
-            <Tuplet>54</Tuplet>
+            <lid>75</lid>
+            <Tuplet>45</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>54</Beam>
+            <Beam>45</Beam>
             <Note>
-              <lid>101</lid>
+              <lid>76</lid>
               <pitch>55</pitch>
               <tpc>15</tpc>
               <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <tick>4320</tick>
+          <tick>2880</tick>
           <Chord>
-            <lid>102</lid>
+            <lid>77</lid>
             <track>5</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>103</lid>
+              <lid>78</lid>
               <track>5</track>
               <pitch>40</pitch>
               <tpc>18</tpc>
@@ -3713,13 +3164,13 @@
               </Note>
             </Chord>
           </Measure>
-        <Measure number="5">
-          <Beam id="55">
-            <l1>-16</l1>
-            <l2>-16</l2>
+        <Measure number="4">
+          <Beam id="46">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="55">
-            <lid>107</lid>
+          <Tuplet id="46">
+            <lid>82</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3729,12 +3180,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>105</lid>
-            <Tuplet>55</Tuplet>
+            <lid>80</lid>
+            <Tuplet>46</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>55</Beam>
+            <Beam>46</Beam>
             <Note>
-              <lid>106</lid>
+              <lid>81</lid>
               <pitch>64</pitch>
               <tpc>18</tpc>
               <fret>0</fret>
@@ -3742,12 +3193,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>108</lid>
-            <Tuplet>55</Tuplet>
+            <lid>83</lid>
+            <Tuplet>46</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>55</Beam>
+            <Beam>46</Beam>
             <Note>
-              <lid>109</lid>
+              <lid>84</lid>
               <pitch>59</pitch>
               <tpc>19</tpc>
               <fret>0</fret>
@@ -3755,24 +3206,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>110</lid>
-            <Tuplet>55</Tuplet>
+            <lid>85</lid>
+            <Tuplet>46</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>55</Beam>
+            <Beam>46</Beam>
             <Note>
-              <lid>111</lid>
+              <lid>86</lid>
               <pitch>55</pitch>
               <tpc>15</tpc>
               <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="56">
-            <l1>-16</l1>
-            <l2>-16</l2>
+          <Beam id="47">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="56">
-            <lid>114</lid>
+          <Tuplet id="47">
+            <lid>89</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3782,12 +3233,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>112</lid>
-            <Tuplet>56</Tuplet>
+            <lid>87</lid>
+            <Tuplet>47</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>56</Beam>
+            <Beam>47</Beam>
             <Note>
-              <lid>113</lid>
+              <lid>88</lid>
               <pitch>67</pitch>
               <tpc>15</tpc>
               <fret>3</fret>
@@ -3795,12 +3246,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>115</lid>
-            <Tuplet>56</Tuplet>
+            <lid>90</lid>
+            <Tuplet>47</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>56</Beam>
+            <Beam>47</Beam>
             <Note>
-              <lid>116</lid>
+              <lid>91</lid>
               <pitch>59</pitch>
               <tpc>19</tpc>
               <fret>0</fret>
@@ -3808,24 +3259,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>117</lid>
-            <Tuplet>56</Tuplet>
+            <lid>92</lid>
+            <Tuplet>47</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>56</Beam>
+            <Beam>47</Beam>
             <Note>
-              <lid>118</lid>
+              <lid>93</lid>
               <pitch>55</pitch>
               <tpc>15</tpc>
               <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="57">
-            <l1>-16</l1>
-            <l2>-16</l2>
+          <Beam id="48">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="57">
-            <lid>121</lid>
+          <Tuplet id="48">
+            <lid>96</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3835,12 +3286,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>119</lid>
-            <Tuplet>57</Tuplet>
+            <lid>94</lid>
+            <Tuplet>48</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>57</Beam>
+            <Beam>48</Beam>
             <Note>
-              <lid>120</lid>
+              <lid>95</lid>
               <pitch>67</pitch>
               <tpc>15</tpc>
               <fret>3</fret>
@@ -3848,12 +3299,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>122</lid>
-            <Tuplet>57</Tuplet>
+            <lid>97</lid>
+            <Tuplet>48</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>57</Beam>
+            <Beam>48</Beam>
             <Note>
-              <lid>123</lid>
+              <lid>98</lid>
               <pitch>59</pitch>
               <tpc>19</tpc>
               <fret>0</fret>
@@ -3861,26 +3312,26 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>124</lid>
-            <Tuplet>57</Tuplet>
+            <lid>99</lid>
+            <Tuplet>48</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>57</Beam>
+            <Beam>48</Beam>
             <Note>
-              <lid>125</lid>
+              <lid>100</lid>
               <pitch>55</pitch>
               <tpc>15</tpc>
               <fret>0</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <tick>5760</tick>
+          <tick>4320</tick>
           <Chord>
-            <lid>126</lid>
+            <lid>101</lid>
             <track>5</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>127</lid>
+              <lid>102</lid>
               <track>5</track>
               <pitch>40</pitch>
               <tpc>18</tpc>
@@ -3889,13 +3340,13 @@
               </Note>
             </Chord>
           </Measure>
-        <Measure number="6">
-          <Beam id="58">
-            <l1>-16</l1>
-            <l2>-16</l2>
+        <Measure number="5">
+          <Beam id="49">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="58">
-            <lid>131</lid>
+          <Tuplet id="49">
+            <lid>106</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3905,12 +3356,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>129</lid>
-            <Tuplet>58</Tuplet>
+            <lid>104</lid>
+            <Tuplet>49</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>58</Beam>
+            <Beam>49</Beam>
             <Note>
-              <lid>130</lid>
+              <lid>105</lid>
               <pitch>67</pitch>
               <tpc>15</tpc>
               <fret>3</fret>
@@ -3918,12 +3369,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>132</lid>
-            <Tuplet>58</Tuplet>
+            <lid>107</lid>
+            <Tuplet>49</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>58</Beam>
+            <Beam>49</Beam>
             <Note>
-              <lid>133</lid>
+              <lid>108</lid>
               <pitch>60</pitch>
               <tpc>14</tpc>
               <fret>1</fret>
@@ -3931,24 +3382,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>134</lid>
-            <Tuplet>58</Tuplet>
+            <lid>109</lid>
+            <Tuplet>49</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>58</Beam>
+            <Beam>49</Beam>
             <Note>
-              <lid>135</lid>
+              <lid>110</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="59">
-            <l1>-16</l1>
-            <l2>-16</l2>
+          <Beam id="50">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="59">
-            <lid>138</lid>
+          <Tuplet id="50">
+            <lid>113</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -3958,12 +3409,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>136</lid>
-            <Tuplet>59</Tuplet>
+            <lid>111</lid>
+            <Tuplet>50</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>59</Beam>
+            <Beam>50</Beam>
             <Note>
-              <lid>137</lid>
+              <lid>112</lid>
               <pitch>66</pitch>
               <tpc>20</tpc>
               <fret>2</fret>
@@ -3971,12 +3422,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>139</lid>
-            <Tuplet>59</Tuplet>
+            <lid>114</lid>
+            <Tuplet>50</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>59</Beam>
+            <Beam>50</Beam>
             <Note>
-              <lid>140</lid>
+              <lid>115</lid>
               <pitch>60</pitch>
               <tpc>14</tpc>
               <fret>1</fret>
@@ -3984,24 +3435,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>141</lid>
-            <Tuplet>59</Tuplet>
+            <lid>116</lid>
+            <Tuplet>50</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>59</Beam>
+            <Beam>50</Beam>
             <Note>
-              <lid>142</lid>
+              <lid>117</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="60">
-            <l1>-16</l1>
-            <l2>-16</l2>
+          <Beam id="51">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="60">
-            <lid>145</lid>
+          <Tuplet id="51">
+            <lid>120</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -4011,12 +3462,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>143</lid>
-            <Tuplet>60</Tuplet>
+            <lid>118</lid>
+            <Tuplet>51</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>60</Beam>
+            <Beam>51</Beam>
             <Note>
-              <lid>144</lid>
+              <lid>119</lid>
               <pitch>66</pitch>
               <tpc>20</tpc>
               <fret>2</fret>
@@ -4024,12 +3475,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>146</lid>
-            <Tuplet>60</Tuplet>
+            <lid>121</lid>
+            <Tuplet>51</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>60</Beam>
+            <Beam>51</Beam>
             <Note>
-              <lid>147</lid>
+              <lid>122</lid>
               <pitch>60</pitch>
               <tpc>14</tpc>
               <fret>1</fret>
@@ -4037,26 +3488,26 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>148</lid>
-            <Tuplet>60</Tuplet>
+            <lid>123</lid>
+            <Tuplet>51</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>60</Beam>
+            <Beam>51</Beam>
             <Note>
-              <lid>149</lid>
+              <lid>124</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <tick>7200</tick>
+          <tick>5760</tick>
           <Chord>
-            <lid>150</lid>
+            <lid>125</lid>
             <track>5</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>151</lid>
+              <lid>126</lid>
               <track>5</track>
               <pitch>45</pitch>
               <tpc>17</tpc>
@@ -4065,13 +3516,13 @@
               </Note>
             </Chord>
           </Measure>
-        <Measure number="7">
-          <Beam id="61">
-            <l1>-16</l1>
-            <l2>-16</l2>
+        <Measure number="6">
+          <Beam id="52">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="61">
-            <lid>155</lid>
+          <Tuplet id="52">
+            <lid>130</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -4081,12 +3532,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>153</lid>
-            <Tuplet>61</Tuplet>
+            <lid>128</lid>
+            <Tuplet>52</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>61</Beam>
+            <Beam>52</Beam>
             <Note>
-              <lid>154</lid>
+              <lid>129</lid>
               <pitch>69</pitch>
               <tpc>17</tpc>
               <fret>5</fret>
@@ -4094,12 +3545,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>156</lid>
-            <Tuplet>61</Tuplet>
+            <lid>131</lid>
+            <Tuplet>52</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>61</Beam>
+            <Beam>52</Beam>
             <Note>
-              <lid>157</lid>
+              <lid>132</lid>
               <pitch>63</pitch>
               <tpc>11</tpc>
               <fret>4</fret>
@@ -4107,24 +3558,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>158</lid>
-            <Tuplet>61</Tuplet>
+            <lid>133</lid>
+            <Tuplet>52</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>61</Beam>
+            <Beam>52</Beam>
             <Note>
-              <lid>159</lid>
+              <lid>134</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="62">
-            <l1>-16</l1>
-            <l2>-16</l2>
+          <Beam id="53">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="62">
-            <lid>162</lid>
+          <Tuplet id="53">
+            <lid>137</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -4134,12 +3585,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>160</lid>
-            <Tuplet>62</Tuplet>
+            <lid>135</lid>
+            <Tuplet>53</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>62</Beam>
+            <Beam>53</Beam>
             <Note>
-              <lid>161</lid>
+              <lid>136</lid>
               <pitch>67</pitch>
               <tpc>15</tpc>
               <fret>3</fret>
@@ -4147,12 +3598,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>163</lid>
-            <Tuplet>62</Tuplet>
+            <lid>138</lid>
+            <Tuplet>53</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>62</Beam>
+            <Beam>53</Beam>
             <Note>
-              <lid>164</lid>
+              <lid>139</lid>
               <pitch>63</pitch>
               <tpc>11</tpc>
               <fret>4</fret>
@@ -4160,24 +3611,24 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>165</lid>
-            <Tuplet>62</Tuplet>
+            <lid>140</lid>
+            <Tuplet>53</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>62</Beam>
+            <Beam>53</Beam>
             <Note>
-              <lid>166</lid>
+              <lid>141</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <Beam id="63">
-            <l1>-16</l1>
-            <l2>-16</l2>
+          <Beam id="54">
+            <l1>46</l1>
+            <l2>46</l2>
             </Beam>
-          <Tuplet id="63">
-            <lid>169</lid>
+          <Tuplet id="54">
+            <lid>144</lid>
             <normalNotes>2</normalNotes>
             <actualNotes>3</actualNotes>
             <baseNote>eighth</baseNote>
@@ -4187,12 +3638,12 @@
               </Number>
             </Tuplet>
           <Chord>
-            <lid>167</lid>
-            <Tuplet>63</Tuplet>
+            <lid>142</lid>
+            <Tuplet>54</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>63</Beam>
+            <Beam>54</Beam>
             <Note>
-              <lid>168</lid>
+              <lid>143</lid>
               <pitch>66</pitch>
               <tpc>20</tpc>
               <fret>2</fret>
@@ -4200,12 +3651,12 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>170</lid>
-            <Tuplet>63</Tuplet>
+            <lid>145</lid>
+            <Tuplet>54</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>63</Beam>
+            <Beam>54</Beam>
             <Note>
-              <lid>171</lid>
+              <lid>146</lid>
               <pitch>63</pitch>
               <tpc>11</tpc>
               <fret>4</fret>
@@ -4213,26 +3664,26 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>172</lid>
-            <Tuplet>63</Tuplet>
+            <lid>147</lid>
+            <Tuplet>54</Tuplet>
             <durationType>eighth</durationType>
-            <Beam>63</Beam>
+            <Beam>54</Beam>
             <Note>
-              <lid>173</lid>
+              <lid>148</lid>
               <pitch>57</pitch>
               <tpc>17</tpc>
               <fret>2</fret>
               <string>2</string>
               </Note>
             </Chord>
-          <tick>8640</tick>
+          <tick>7200</tick>
           <Chord>
-            <lid>174</lid>
+            <lid>149</lid>
             <track>5</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>175</lid>
+              <lid>150</lid>
               <track>5</track>
               <pitch>47</pitch>
               <tpc>19</tpc>
@@ -4241,12 +3692,12 @@
               </Note>
             </Chord>
           </Measure>
-        <Measure number="8">
+        <Measure number="7">
           <Chord>
-            <lid>177</lid>
+            <lid>152</lid>
             <durationType>quarter</durationType>
             <Note>
-              <lid>178</lid>
+              <lid>153</lid>
               <pitch>64</pitch>
               <tpc>18</tpc>
               <fret>0</fret>
@@ -4254,38 +3705,38 @@
               </Note>
             </Chord>
           <Chord>
-            <lid>179</lid>
+            <lid>154</lid>
             <durationType>half</durationType>
             <Note>
-              <lid>180</lid>
+              <lid>155</lid>
               <pitch>55</pitch>
               <tpc>15</tpc>
               <fret>0</fret>
               <string>2</string>
               </Note>
             <Note>
-              <lid>181</lid>
+              <lid>156</lid>
               <pitch>59</pitch>
               <tpc>19</tpc>
               <fret>0</fret>
               <string>1</string>
               </Note>
             <Note>
-              <lid>182</lid>
+              <lid>157</lid>
               <pitch>64</pitch>
               <tpc>18</tpc>
               <fret>0</fret>
               <string>0</string>
               </Note>
             </Chord>
-          <tick>10080</tick>
+          <tick>8640</tick>
           <Chord>
-            <lid>183</lid>
+            <lid>158</lid>
             <track>5</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>184</lid>
+              <lid>159</lid>
               <track>5</track>
               <pitch>40</pitch>
               <tpc>18</tpc>
@@ -4294,9 +3745,9 @@
               </Note>
             </Chord>
           </Measure>
-        <Measure number="9">
+        <Measure number="8">
           <Rest>
-            <lid>186</lid>
+            <lid>161</lid>
             <durationType>measure</durationType>
             <duration z="3" n="4"/>
             </Rest>
@@ -4304,14 +3755,14 @@
             <subtype>end</subtype>
             <span>1</span>
             </BarLine>
-          <tick>11520</tick>
+          <tick>10080</tick>
           <Chord>
-            <lid>187</lid>
+            <lid>162</lid>
             <track>5</track>
             <dots>1</dots>
             <durationType>half</durationType>
             <Note>
-              <lid>188</lid>
+              <lid>163</lid>
               <track>5</track>
               <pitch>40</pitch>
               <tpc>18</tpc>
@@ -4319,7 +3770,7 @@
               <string>5</string>
               </Note>
             <Note>
-              <lid>189</lid>
+              <lid>164</lid>
               <track>5</track>
               <pitch>55</pitch>
               <tpc>15</tpc>
@@ -4327,7 +3778,7 @@
               <string>2</string>
               </Note>
             <Note>
-              <lid>190</lid>
+              <lid>165</lid>
               <track>5</track>
               <pitch>59</pitch>
               <tpc>19</tpc>
@@ -4335,7 +3786,7 @@
               <string>1</string>
               </Note>
             <Note>
-              <lid>191</lid>
+              <lid>166</lid>
               <track>5</track>
               <pitch>64</pitch>
               <tpc>18</tpc>
diff --git a/mtest/importmidi/instrument_channels.mscx b/mtest/importmidi/instrument_channels.mscx
index 40abcb7..a4ecc8e 100644
--- a/mtest/importmidi/instrument_channels.mscx
+++ b/mtest/importmidi/instrument_channels.mscx
@@ -156,7 +156,7 @@
       <trackName>Trombone</trackName>
       <Instrument>
         <longName>Trombone</longName>
-        <shortName>Trb.</shortName>
+        <shortName>Tbn.</shortName>
         <trackName>Trombone</trackName>
         <minPitchP>35</minPitchP>
         <maxPitchP>74</maxPitchP>
diff --git a/mtest/importmidi/lyrics_time_0.mid b/mtest/importmidi/lyrics_time_0.mid
new file mode 100644
index 0000000..ea26138
Binary files /dev/null and b/mtest/importmidi/lyrics_time_0.mid differ
diff --git a/mtest/importmidi/lyrics_time_0.mscx b/mtest/importmidi/lyrics_time_0.mscx
new file mode 100644
index 0000000..dbc173b
--- /dev/null
+++ b/mtest/importmidi/lyrics_time_0.mscx
@@ -0,0 +1,210 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.78</page-height>
+        <page-width>1190.55</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="2">
+        <StaffType group="pitched">
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        </Staff>
+      <trackName>Piano, untitled</trackName>
+      <Instrument>
+        <longName>Piano, untitled</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>1</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>3</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Lyrics>
+            <text>G_maj_0 </text>
+            </Lyrics>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        </Measure>
+      </Staff>
+    <Staff id="2">
+      <Measure number="1">
+        <Clef>
+          <concertClefType>F</concertClefType>
+          <transposingClefType>F</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>1</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>3</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/importmidi/lyrics_voice_1.mid b/mtest/importmidi/lyrics_voice_1.mid
new file mode 100644
index 0000000..a28b795
Binary files /dev/null and b/mtest/importmidi/lyrics_voice_1.mid differ
diff --git a/mtest/importmidi/lyrics_voice_1.mscx b/mtest/importmidi/lyrics_voice_1.mscx
new file mode 100644
index 0000000..11db1a9
--- /dev/null
+++ b/mtest/importmidi/lyrics_voice_1.mscx
@@ -0,0 +1,423 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.78</page-height>
+        <page-width>1190.55</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="2">
+        <StaffType group="pitched">
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        </Staff>
+      <trackName>Piano, untitled</trackName>
+      <Instrument>
+        <longName>Piano, untitled</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>-2</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>3</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="3">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="4">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="5">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="6">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="7">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="8">
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Lyrics>
+            <text>C_min_0 </text>
+            </Lyrics>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <tick>10080</tick>
+        <Rest>
+          <track>1</track>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <track>1</track>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <track>1</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>1</track>
+            <Tie id="2">
+              <track>1</track>
+              </Tie>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        <tick>11520</tick>
+        <Chord>
+          <track>1</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>1</track>
+            <Tie id="3">
+              <track>1</track>
+              </Tie>
+            <endSpanner id="2"/>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <track>1</track>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>1</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>1</track>
+            <endSpanner id="3"/>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <track>1</track>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>1</track>
+          <durationType>quarter</durationType>
+          <Lyrics>
+            <track>1</track>
+            <text>G_min_0 </text>
+            </Lyrics>
+          <Note>
+            <track>1</track>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <track>1</track>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>1</track>
+          <durationType>quarter</durationType>
+          <Lyrics>
+            <track>1</track>
+            <text>C_min_0 </text>
+            </Lyrics>
+          <Note>
+            <track>1</track>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <track>1</track>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        </Measure>
+      </Staff>
+    <Staff id="2">
+      <Measure number="1">
+        <Clef>
+          <concertClefType>F</concertClefType>
+          <transposingClefType>F</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>-2</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>3</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="3">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="4">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="5">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="6">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="7">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="8">
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Tie id="4">
+              </Tie>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <Tie id="5">
+              </Tie>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <endSpanner id="4"/>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <endSpanner id="5"/>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>43</pitch>
+            <tpc>15</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/importmidi/tst_importmidi.cpp b/mtest/importmidi/tst_importmidi.cpp
index 0aacc20..fb812f6 100644
--- a/mtest/importmidi/tst_importmidi.cpp
+++ b/mtest/importmidi/tst_importmidi.cpp
@@ -398,6 +398,10 @@ class TestImportMidi : public QObject, public MTest
       void instrument3StaffOrgan() { mf("instrument_3staff_organ"); }
       void instrumentClef() { noTempoText("instrument_clef"); }
 
+      // lyrics
+      void lyricsTime0() { noTempoText("lyrics_time_0"); }
+      void lyricsVoice1() { noTempoText("lyrics_voice_1"); }
+
       // gui - tracks model
       void testGuiTracksModel();
       };
diff --git a/mtest/libmscore/album/tst_album.cpp b/mtest/libmscore/album/tst_album.cpp
index f4c2481..9a615ad 100644
--- a/mtest/libmscore/album/tst_album.cpp
+++ b/mtest/libmscore/album/tst_album.cpp
@@ -19,7 +19,7 @@
 using namespace Ms;
 
 //---------------------------------------------------------
-//   TestClef
+//   TestAlbum
 //---------------------------------------------------------
 
 class TestAlbum : public QObject, public MTest
diff --git a/mtest/libmscore/barline/tst_barline.cpp b/mtest/libmscore/barline/tst_barline.cpp
index 5260ec4..5d65e98 100644
--- a/mtest/libmscore/barline/tst_barline.cpp
+++ b/mtest/libmscore/barline/tst_barline.cpp
@@ -23,7 +23,7 @@
 using namespace Ms;
 
 //---------------------------------------------------------
-//   TestClef
+//   TestBarline
 //---------------------------------------------------------
 
 class TestBarline : public QObject, public MTest
diff --git a/mtest/libmscore/clef/clef-2-ref.mscx b/mtest/libmscore/clef/clef-2-ref.mscx
new file mode 100644
index 0000000..45152b8
--- /dev/null
+++ b/mtest/libmscore/clef/clef-2-ref.mscx
@@ -0,0 +1,212 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle">ClefTimeSig</metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>ClefTimeSig</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <Clef>
+          <concertClefType>F</concertClefType>
+          <transposingClefType>F</transposingClefType>
+          </Clef>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>52</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        </Measure>
+      <Measure number="3">
+        <TimeSig>
+          <sigN>2</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="2" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="6">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="2" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/clef/clef-2.mscx b/mtest/libmscore/clef/clef-2.mscx
new file mode 100644
index 0000000..232e9e8
--- /dev/null
+++ b/mtest/libmscore/clef/clef-2.mscx
@@ -0,0 +1,206 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>8911cdd</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-05-16</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Linux</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle">ClefTimeSig</metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>ClefTimeSig</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <Clef>
+          <concertClefType>F</concertClefType>
+          <transposingClefType>F</transposingClefType>
+          </Clef>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>52</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/clef/tst_clef.cpp b/mtest/libmscore/clef/tst_clef.cpp
index c07b3c9..1dcf373 100644
--- a/mtest/libmscore/clef/tst_clef.cpp
+++ b/mtest/libmscore/clef/tst_clef.cpp
@@ -31,6 +31,7 @@ class TestClef : public QObject, public MTest
    private slots:
       void initTestCase();
       void clef1();
+      void clef2();
       };
 
 //---------------------------------------------------------
@@ -54,6 +55,27 @@ void TestClef::clef1()
       delete score;
       }
 
+//---------------------------------------------------------
+//   clef2
+//    change timesig -> rewrite measures ->insertTime
+//---------------------------------------------------------
+
+void TestClef::clef2()
+      {
+      Score* score = readScore(DIR + "clef-2.mscx");
+      Measure* m = score->firstMeasure();
+      m = m->nextMeasure();
+      m = m->nextMeasure();
+      TimeSig* ts = new TimeSig(score);
+      ts->setSig(2, 4);
+qDebug("tick %d", m->tick());
+      score->cmdAddTimeSig(m, 0, ts, false);
+
+      score->doLayout();
+      QVERIFY(saveCompareScore(score, "clef-2.mscx", DIR + "clef-2-ref.mscx"));
+      delete score;
+      }
+
 QTEST_MAIN(TestClef)
 #include "tst_clef.moc"
 
diff --git a/mtest/libmscore/clef/updateReference b/mtest/libmscore/clef/updateReference
index 4b92aff..79de1c7 100755
--- a/mtest/libmscore/clef/updateReference
+++ b/mtest/libmscore/clef/updateReference
@@ -1,4 +1,5 @@
 #!/bin/bash
 
 cp ../../../build.debug/mtest/libmscore/clef/clef-1.mscx clef-1-ref.mscx
+cp ../../../build.debug/mtest/libmscore/clef/clef-2.mscx clef-2-ref.mscx
 
diff --git a/mtest/libmscore/clef_courtesy/tst_clef_courtesy.cpp b/mtest/libmscore/clef_courtesy/tst_clef_courtesy.cpp
index a34ed52..4d382e2 100644
--- a/mtest/libmscore/clef_courtesy/tst_clef_courtesy.cpp
+++ b/mtest/libmscore/clef_courtesy/tst_clef_courtesy.cpp
@@ -22,7 +22,7 @@
 using namespace Ms;
 
 //---------------------------------------------------------
-//   TestClef
+//   TestClefCourtesy
 //---------------------------------------------------------
 
 class TestClefCourtesy : public QObject, public MTest
diff --git a/mtest/libmscore/copypaste/tst_copypaste.cpp b/mtest/libmscore/copypaste/tst_copypaste.cpp
index e168a3e..96b25cd 100644
--- a/mtest/libmscore/copypaste/tst_copypaste.cpp
+++ b/mtest/libmscore/copypaste/tst_copypaste.cpp
@@ -61,15 +61,15 @@ class TestCopyPaste : public QObject, public MTest
       void copyPasteOnlySecondVoice();
       void copypaste19() { copypaste("19"); }       // chord symbols
       void copyPasteShortTremolo() { copypastevoice("21", 1); } // remove tremolo on shorten note #30411
-      
+
 
       void copypastestaff50() { copypastestaff("50"); }       // staff & slurs
 
       void copyPastePartial();
-      
+
       void copyPasteTuplet01() { copypastetuplet("01"); }
       void copyPasteTuplet02() { copypastetuplet("02"); }
-      
+
       };
 
 //---------------------------------------------------------
@@ -204,7 +204,7 @@ void TestCopyPaste::copyPaste2Voice()
 
       // select 2 chord rests at the start of the first measure
       Segment* s = m1->first(Segment::Type::ChordRest);
-      score->select(static_cast<Chord*>(s->element(0))->notes().at(0));
+      score->select(static_cast<Ms::Chord*>(s->element(0))->notes().at(0));
       s = s->next(Segment::Type::ChordRest);
       score->select(s->element(0), SelectType::RANGE);
 
@@ -248,7 +248,7 @@ void TestCopyPaste::copypastevoice(const char* idx, int voice)
       // create a range selection on 2 and 3 beat of first measure
       Segment::Type segTypeCR = Segment::Type::ChordRest;
       Segment* s = m1->first(segTypeCR)->next1(segTypeCR);
-      score->select(static_cast<Chord*>(s->element(voice))->notes().at(0));
+      score->select(static_cast<Ms::Chord*>(s->element(voice))->notes().at(0));
       s = s->next(Segment::Type::ChordRest);
       score->select(s->element(voice), SelectType::RANGE);
 
@@ -284,7 +284,7 @@ void TestCopyPaste::copyPaste2Voice5()
       // create a range selection from 2 eighth note to the end of first measure
       Segment::Type segTypeCR = Segment::Type::ChordRest;
       Segment* s = m1->first(segTypeCR)->next1(segTypeCR);
-      score->select(static_cast<Chord*>(s->element(0))->notes().at(0));
+      score->select(static_cast<Ms::Chord*>(s->element(0))->notes().at(0));
 
       s = m1->last()->prev(Segment::Type::ChordRest);
       score->select(s->element(0), SelectType::RANGE);
@@ -365,7 +365,7 @@ void TestCopyPaste::copypaste2Voice6()
       // create a range selection from 2nd eighth note to the end of first measure
       Segment::Type segTypeCR = Segment::Type::ChordRest;
       Segment* s = m1->first(segTypeCR)->next1(segTypeCR);
-      score->select(static_cast<Chord*>(s->element(0))->notes().at(0));
+      score->select(static_cast<Ms::Chord*>(s->element(0))->notes().at(0));
 
       s = m1->last()->prev(Segment::Type::ChordRest);
       score->select(s->element(1), SelectType::RANGE);
@@ -403,7 +403,7 @@ void TestCopyPaste::copypastetuplet(const char* idx)
       Measure* m2 = m1->nextMeasure();
 
       Segment* s = m1->first(Segment::Type::ChordRest);
-      score->select(static_cast<Chord*>(s->element(0))->notes().at(0));
+      score->select(static_cast<Ms::Chord*>(s->element(0))->notes().at(0));
       s = s->next(Segment::Type::ChordRest);
       score->select(s->element(0), SelectType::RANGE);
       QVERIFY(score->selection().canCopy());
diff --git a/mtest/libmscore/copypastesymbollist/tst_copypastesymbollist.cpp b/mtest/libmscore/copypastesymbollist/tst_copypastesymbollist.cpp
index a450fec..f5e0ef1 100644
--- a/mtest/libmscore/copypastesymbollist/tst_copypastesymbollist.cpp
+++ b/mtest/libmscore/copypastesymbollist/tst_copypastesymbollist.cpp
@@ -24,7 +24,7 @@
 using namespace Ms;
 
 //---------------------------------------------------------
-//   TestCopyPaste
+//   TestCopyPasteSymbolList
 //---------------------------------------------------------
 
 class TestCopyPasteSymbolList : public QObject, public MTest
diff --git a/mtest/libmscore/earlymusic/tst_earlymusic.cpp b/mtest/libmscore/earlymusic/tst_earlymusic.cpp
index 7abeb40..ae2aac9 100644
--- a/mtest/libmscore/earlymusic/tst_earlymusic.cpp
+++ b/mtest/libmscore/earlymusic/tst_earlymusic.cpp
@@ -23,7 +23,7 @@
 using namespace Ms;
 
 //---------------------------------------------------------
-//   TestSpanners
+//   TestEarlymusic
 //---------------------------------------------------------
 
 class TestEarlymusic : public QObject, public MTest
@@ -61,7 +61,7 @@ void TestEarlymusic::earlymusic01()
       QVERIFY(msr);
       Segment*    seg   = msr->findSegment(Segment::Type::ChordRest, 0);
       QVERIFY(seg);
-      Chord*      chord = static_cast<Chord*>(seg->element(0));
+      Ms::Chord*      chord = static_cast<Ms::Chord*>(seg->element(0));
       QVERIFY(chord && chord->type() == Element::Type::CHORD);
       QVERIFY(chord->crossMeasure() == CrossMeasure::UNKNOWN);
       TDuration cmDur   = chord->crossMeasureDurationType();
diff --git a/mtest/libmscore/instrumentchange/tst_instrumentchange.cpp b/mtest/libmscore/instrumentchange/tst_instrumentchange.cpp
index f61ae20..2fd9fb6 100644
--- a/mtest/libmscore/instrumentchange/tst_instrumentchange.cpp
+++ b/mtest/libmscore/instrumentchange/tst_instrumentchange.cpp
@@ -28,7 +28,7 @@
 using namespace Ms;
 
 //---------------------------------------------------------
-//   TestChordSymbol
+//   TestInstrumentChange
 //---------------------------------------------------------
 
 class TestInstrumentChange : public QObject, public MTest {
diff --git a/mtest/libmscore/join/tst_join.cpp b/mtest/libmscore/join/tst_join.cpp
index 3a6e9c5..f094661 100644
--- a/mtest/libmscore/join/tst_join.cpp
+++ b/mtest/libmscore/join/tst_join.cpp
@@ -57,7 +57,7 @@ void TestJoin::initTestCase()
       }
 
 //---------------------------------------------------------
-//   beam
+//   join
 //---------------------------------------------------------
 
 void TestJoin::join(const char* p1, const char* p2)
@@ -113,7 +113,7 @@ void TestJoin::join1(const char* p1)
       Segment* s = score->firstSegment(Segment::Type::ChordRest);
 
       for (int i = 0; i < 8; ++i) {
-            Note* note = static_cast<Chord*>(s->element(0))->upNote();
+            Note* note = static_cast<Ms::Chord*>(s->element(0))->upNote();
             QVERIFY(note->line() == 6);
             s = s->next1(Segment::Type::ChordRest);
             }
diff --git a/mtest/libmscore/keysig/concert-pitch-01-ref.mscx b/mtest/libmscore/keysig/concert-pitch-01-ref.mscx
index 92534a9..8ef7856 100644
--- a/mtest/libmscore/keysig/concert-pitch-01-ref.mscx
+++ b/mtest/libmscore/keysig/concert-pitch-01-ref.mscx
@@ -41,6 +41,8 @@
     <metaTag name="workTitle"></metaTag>
     <PageList>
       <Page>
+        <System>
+          </System>
         </Page>
       </PageList>
     <Part>
@@ -163,7 +165,7 @@
           <duration z="4" n="4"/>
           </Rest>
         </Measure>
-      <Measure number="1">
+      <Measure number="2">
         <KeySig>
           <accidental>-4</accidental>
           </KeySig>
@@ -172,7 +174,7 @@
           <duration z="4" n="4"/>
           </Rest>
         </Measure>
-      <Measure number="1">
+      <Measure number="3">
         <KeySig>
           <accidental>0</accidental>
           </KeySig>
@@ -180,6 +182,25 @@
           <durationType>measure</durationType>
           <duration z="4" n="4"/>
           </Rest>
+        </Measure>
+      <Measure number="4">
+        <KeySig>
+          <accidental>-1</accidental>
+          </KeySig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="5">
+        <KeySig>
+          <custom>1</custom>
+          <mode>none</mode>
+          </KeySig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
         <BarLine>
           <subtype>end</subtype>
           <span>1</span>
@@ -198,7 +219,7 @@
           <duration z="4" n="4"/>
           </Rest>
         </Measure>
-      <Measure number="1">
+      <Measure number="2">
         <KeySig>
           <accidental>-4</accidental>
           </KeySig>
@@ -207,7 +228,7 @@
           <duration z="4" n="4"/>
           </Rest>
         </Measure>
-      <Measure number="1">
+      <Measure number="3">
         <KeySig>
           <accidental>0</accidental>
           </KeySig>
@@ -215,6 +236,25 @@
           <durationType>measure</durationType>
           <duration z="4" n="4"/>
           </Rest>
+        </Measure>
+      <Measure number="4">
+        <KeySig>
+          <accidental>-1</accidental>
+          </KeySig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="5">
+        <KeySig>
+          <custom>1</custom>
+          <mode>none</mode>
+          </KeySig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
         <BarLine>
           <subtype>end</subtype>
           <span>1</span>
diff --git a/mtest/libmscore/keysig/concert-pitch-02-ref.mscx b/mtest/libmscore/keysig/concert-pitch-02-ref.mscx
index 74c185a..cd4ec10 100644
--- a/mtest/libmscore/keysig/concert-pitch-02-ref.mscx
+++ b/mtest/libmscore/keysig/concert-pitch-02-ref.mscx
@@ -40,6 +40,8 @@
     <metaTag name="workTitle"></metaTag>
     <PageList>
       <Page>
+        <System>
+          </System>
         </Page>
       </PageList>
     <Part>
@@ -165,7 +167,7 @@
           <duration z="4" n="4"/>
           </Rest>
         </Measure>
-      <Measure number="1">
+      <Measure number="2">
         <KeySig>
           <accidental>-1</accidental>
           </KeySig>
@@ -174,7 +176,7 @@
           <duration z="4" n="4"/>
           </Rest>
         </Measure>
-      <Measure number="1">
+      <Measure number="3">
         <KeySig>
           <accidental>3</accidental>
           </KeySig>
@@ -182,6 +184,25 @@
           <durationType>measure</durationType>
           <duration z="4" n="4"/>
           </Rest>
+        </Measure>
+      <Measure number="4">
+        <KeySig>
+          <accidental>2</accidental>
+          </KeySig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="5">
+        <KeySig>
+          <custom>1</custom>
+          <mode>none</mode>
+          </KeySig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
         <BarLine>
           <subtype>end</subtype>
           <span>1</span>
@@ -203,7 +224,7 @@
           <duration z="4" n="4"/>
           </Rest>
         </Measure>
-      <Measure number="1">
+      <Measure number="2">
         <KeySig>
           <accidental>-2</accidental>
           </KeySig>
@@ -212,7 +233,7 @@
           <duration z="4" n="4"/>
           </Rest>
         </Measure>
-      <Measure number="1">
+      <Measure number="3">
         <KeySig>
           <accidental>2</accidental>
           </KeySig>
@@ -220,6 +241,25 @@
           <durationType>measure</durationType>
           <duration z="4" n="4"/>
           </Rest>
+        </Measure>
+      <Measure number="4">
+        <KeySig>
+          <accidental>1</accidental>
+          </KeySig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="5">
+        <KeySig>
+          <custom>1</custom>
+          <mode>none</mode>
+          </KeySig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
         <BarLine>
           <subtype>end</subtype>
           <span>1</span>
diff --git a/mtest/libmscore/keysig/concert-pitch.mscx b/mtest/libmscore/keysig/concert-pitch.mscx
index f1a8281..cd4ec10 100644
--- a/mtest/libmscore/keysig/concert-pitch.mscx
+++ b/mtest/libmscore/keysig/concert-pitch.mscx
@@ -53,8 +53,8 @@
         </Staff>
       <trackName>Alto Saxophone</trackName>
       <Instrument>
-        <longName pos="0">Alto Saxophone</longName>
-        <shortName pos="0">A. Sax.</shortName>
+        <longName>Alto Saxophone</longName>
+        <shortName>A. Sax.</shortName>
         <trackName>Alto Saxophone</trackName>
         <minPitchP>49</minPitchP>
         <maxPitchP>87</maxPitchP>
@@ -107,8 +107,8 @@
         </Staff>
       <trackName>Tenor Saxophone</trackName>
       <Instrument>
-        <longName pos="0">Tenor Saxophone</longName>
-        <shortName pos="0">T. Sax.</shortName>
+        <longName>Tenor Saxophone</longName>
+        <shortName>T. Sax.</shortName>
         <trackName>Tenor Saxophone</trackName>
         <minPitchP>44</minPitchP>
         <maxPitchP>82</maxPitchP>
@@ -184,6 +184,25 @@
           <durationType>measure</durationType>
           <duration z="4" n="4"/>
           </Rest>
+        </Measure>
+      <Measure number="4">
+        <KeySig>
+          <accidental>2</accidental>
+          </KeySig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="5">
+        <KeySig>
+          <custom>1</custom>
+          <mode>none</mode>
+          </KeySig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
         <BarLine>
           <subtype>end</subtype>
           <span>1</span>
@@ -222,6 +241,25 @@
           <durationType>measure</durationType>
           <duration z="4" n="4"/>
           </Rest>
+        </Measure>
+      <Measure number="4">
+        <KeySig>
+          <accidental>1</accidental>
+          </KeySig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="5">
+        <KeySig>
+          <custom>1</custom>
+          <mode>none</mode>
+          </KeySig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
         <BarLine>
           <subtype>end</subtype>
           <span>1</span>
diff --git a/mtest/libmscore/keysig/tst_keysig.cpp b/mtest/libmscore/keysig/tst_keysig.cpp
index 12469db..2a82b73 100644
--- a/mtest/libmscore/keysig/tst_keysig.cpp
+++ b/mtest/libmscore/keysig/tst_keysig.cpp
@@ -112,6 +112,7 @@ void TestKeySig::keysig()
 void TestKeySig::concertPitch()
       {
       Score* score = readScore(DIR + "concert-pitch.mscx");
+      score->doLayout();
       score->cmdConcertPitchChanged(true, true);
       QVERIFY(saveCompareScore(score, "concert-pitch-01-test.mscx", DIR + "concert-pitch-01-ref.mscx"));
       score->cmdConcertPitchChanged(false, true);
diff --git a/mtest/libmscore/midi/testAndanteExcerpts-ref.txt b/mtest/libmscore/midi/testAndanteExcerpts-ref.txt
new file mode 100644
index 0000000..217b78f
--- /dev/null
+++ b/mtest/libmscore/midi/testAndanteExcerpts-ref.txt
@@ -0,0 +1,1063 @@
+Tick  =      0   Type  =   144   Pitch  =    71   Velocity  =    49   Channel  =     1    
+Tick  =      0   Type  =   144   Pitch  =    74   Velocity  =    49   Channel  =     1    
+Tick  =      0   Type  =   144   Pitch  =    79   Velocity  =    49   Channel  =     1    
+Tick  =      0   Type  =   144   Pitch  =    55   Velocity  =    49   Channel  =     1    
+Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    119   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =    240   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     1    
+Tick  =    359   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =    455   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =    455   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =    455   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     1    
+Tick  =    480   Type  =   144   Pitch  =    59   Velocity  =    49   Channel  =     1    
+Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    599   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =    720   Type  =   144   Pitch  =    55   Velocity  =    49   Channel  =     1    
+Tick  =    839   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =    960   Type  =   144   Pitch  =    69   Velocity  =    49   Channel  =     1    
+Tick  =    960   Type  =   144   Pitch  =    74   Velocity  =    49   Channel  =     1    
+Tick  =    960   Type  =   144   Pitch  =    54   Velocity  =    49   Channel  =     1    
+Tick  =    960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1079   Type  =   144   Pitch  =    54   Velocity  =     0   Channel  =     1    
+Tick  =   1200   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     1    
+Tick  =   1319   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =   1415   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =   1415   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =   1440   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =   1440   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =   1440   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     1    
+Tick  =   1440   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1559   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =   1667   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =   1667   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =   1680   Type  =   144   Pitch  =    72   Velocity  =    75   Channel  =     1    
+Tick  =   1680   Type  =   144   Pitch  =    64   Velocity  =    75   Channel  =     1    
+Tick  =   1680   Type  =   144   Pitch  =    45   Velocity  =    75   Channel  =     1    
+Tick  =   1799   Type  =   144   Pitch  =    45   Velocity  =     0   Channel  =     1    
+Tick  =   1907   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =   1907   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =   1920   Type  =   144   Pitch  =    71   Velocity  =    70   Channel  =     1    
+Tick  =   1920   Type  =   144   Pitch  =    67   Velocity  =    70   Channel  =     1    
+Tick  =   1920   Type  =   144   Pitch  =    50   Velocity  =    70   Channel  =     1    
+Tick  =   1920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2159   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     1    
+Tick  =   2375   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =   2375   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =   2400   Type  =   144   Pitch  =    69   Velocity  =    60   Channel  =     1    
+Tick  =   2400   Type  =   144   Pitch  =    62   Velocity  =    60   Channel  =     1    
+Tick  =   2400   Type  =   144   Pitch  =    66   Velocity  =    60   Channel  =     1    
+Tick  =   2400   Type  =   144   Pitch  =    38   Velocity  =    60   Channel  =     1    
+Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2427   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =   2429   Type  =   144   Pitch  =    71   Velocity  =    60   Channel  =     1    
+Tick  =   2456   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =   2459   Type  =   144   Pitch  =    69   Velocity  =    60   Channel  =     1    
+Tick  =   2639   Type  =   144   Pitch  =    38   Velocity  =     0   Channel  =     1    
+Tick  =   2742   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =   2760   Type  =   144   Pitch  =    67   Velocity  =    52   Channel  =     1    
+Tick  =   2855   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =   2855   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     1    
+Tick  =   2873   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =   2880   Type  =   144   Pitch  =    74   Velocity  =    49   Channel  =     0    
+Tick  =   2880   Type  =   144   Pitch  =    59   Velocity  =    49   Channel  =     1    
+Tick  =   2880   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     1    
+Tick  =   2880   Type  =   144   Pitch  =    67   Velocity  =    49   Channel  =     1    
+Tick  =   2880   Type  =   144   Pitch  =    55   Velocity  =    49   Channel  =     1    
+Tick  =   2880   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2999   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =   3120   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     1    
+Tick  =   3239   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =   3335   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =   3335   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =   3335   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =   3360   Type  =   144   Pitch  =    59   Velocity  =    49   Channel  =     1    
+Tick  =   3360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3479   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =   3600   Type  =   144   Pitch  =    55   Velocity  =    49   Channel  =     1    
+Tick  =   3719   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =   3840   Type  =   144   Pitch  =    69   Velocity  =    49   Channel  =     1    
+Tick  =   3840   Type  =   144   Pitch  =    74   Velocity  =    49   Channel  =     1    
+Tick  =   3840   Type  =   144   Pitch  =    54   Velocity  =    49   Channel  =     1    
+Tick  =   3840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3959   Type  =   144   Pitch  =    54   Velocity  =     0   Channel  =     1    
+Tick  =   4080   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     1    
+Tick  =   4199   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =   4295   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =   4295   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =   4319   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4320   Type  =   144   Pitch  =    66   Velocity  =    49   Channel  =     0    
+Tick  =   4320   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     1    
+Tick  =   4320   Type  =   144   Pitch  =    66   Velocity  =    49   Channel  =     1    
+Tick  =   4320   Type  =   144   Pitch  =    69   Velocity  =    49   Channel  =     1    
+Tick  =   4320   Type  =   144   Pitch  =    50   Velocity  =    49   Channel  =     1    
+Tick  =   4320   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4439   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   4439   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     1    
+Tick  =   4440   Type  =   144   Pitch  =    69   Velocity  =    49   Channel  =     0    
+Tick  =   4559   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4560   Type  =   144   Pitch  =    67   Velocity  =    49   Channel  =     0    
+Tick  =   4560   Type  =   144   Pitch  =    57   Velocity  =    49   Channel  =     1    
+Tick  =   4679   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   4679   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     1    
+Tick  =   4680   Type  =   144   Pitch  =    66   Velocity  =    49   Channel  =     0    
+Tick  =   4775   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =   4775   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     1    
+Tick  =   4775   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =   4799   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   4800   Type  =   144   Pitch  =    64   Velocity  =    49   Channel  =     0    
+Tick  =   4800   Type  =   144   Pitch  =    54   Velocity  =    49   Channel  =     1    
+Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4828   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   4829   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     0    
+Tick  =   4857   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   4860   Type  =   144   Pitch  =    64   Velocity  =    49   Channel  =     0    
+Tick  =   4888   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   4889   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     0    
+Tick  =   4917   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   4919   Type  =   144   Pitch  =    54   Velocity  =     0   Channel  =     1    
+Tick  =   4920   Type  =   144   Pitch  =    64   Velocity  =    49   Channel  =     0    
+Tick  =   4948   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   4949   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     0    
+Tick  =   4977   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   4980   Type  =   144   Pitch  =    64   Velocity  =    49   Channel  =     0    
+Tick  =   5008   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   5009   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     0    
+Tick  =   5037   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   5040   Type  =   144   Pitch  =    64   Velocity  =    49   Channel  =     0    
+Tick  =   5040   Type  =   144   Pitch  =    50   Velocity  =    49   Channel  =     1    
+Tick  =   5068   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   5069   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     0    
+Tick  =   5097   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   5100   Type  =   144   Pitch  =    64   Velocity  =    49   Channel  =     0    
+Tick  =   5128   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   5129   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     0    
+Tick  =   5157   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   5159   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     1    
+Tick  =   5160   Type  =   144   Pitch  =    64   Velocity  =    49   Channel  =     0    
+Tick  =   5188   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   5189   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     0    
+Tick  =   5217   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   5220   Type  =   144   Pitch  =    60   Velocity  =    49   Channel  =     0    
+Tick  =   5248   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =   5249   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     0    
+Tick  =   5277   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   5280   Type  =   144   Pitch  =    62   Velocity  =    49   Channel  =     1    
+Tick  =   5280   Type  =   144   Pitch  =    67   Velocity  =    49   Channel  =     1    
+Tick  =   5280   Type  =   144   Pitch  =    74   Velocity  =    49   Channel  =     1    
+Tick  =   5280   Type  =   144   Pitch  =    47   Velocity  =    49   Channel  =     1    
+Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5399   Type  =   144   Pitch  =    47   Velocity  =     0   Channel  =     1    
+Tick  =   5400   Type  =   144   Pitch  =    74   Velocity  =    49   Channel  =     0    
+Tick  =   5519   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5520   Type  =   144   Pitch  =    71   Velocity  =    53   Channel  =     0    
+Tick  =   5520   Type  =   144   Pitch  =    59   Velocity  =    49   Channel  =     1    
+Tick  =   5639   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   5639   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =   5640   Type  =   144   Pitch  =    67   Velocity  =    57   Channel  =     0    
+Tick  =   5735   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =   5735   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =   5735   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =   5759   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   5760   Type  =   144   Pitch  =    76   Velocity  =    62   Channel  =     0    
+Tick  =   5760   Type  =   144   Pitch  =    76   Velocity  =    49   Channel  =     1    
+Tick  =   5760   Type  =   144   Pitch  =    67   Velocity  =    49   Channel  =     1    
+Tick  =   5760   Type  =   144   Pitch  =    48   Velocity  =    49   Channel  =     1    
+Tick  =   5760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5879   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     1    
+Tick  =   6000   Type  =   144   Pitch  =    55   Velocity  =    54   Channel  =     1    
+Tick  =   6119   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =   6119   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =   6120   Type  =   144   Pitch  =    78   Velocity  =    75   Channel  =     0    
+Tick  =   6179   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =   6180   Type  =   144   Pitch  =    79   Velocity  =    77   Channel  =     0    
+Tick  =   6215   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =   6239   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =   6240   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   6240   Type  =   144   Pitch  =    72   Velocity  =    59   Channel  =     1    
+Tick  =   6240   Type  =   144   Pitch  =    52   Velocity  =    59   Channel  =     1    
+Tick  =   6240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6359   Type  =   144   Pitch  =    52   Velocity  =     0   Channel  =     1    
+Tick  =   6443   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =   6480   Type  =   144   Pitch  =    64   Velocity  =    64   Channel  =     1    
+Tick  =   6480   Type  =   144   Pitch  =    48   Velocity  =    64   Channel  =     1    
+Tick  =   6599   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     1    
+Tick  =   6707   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =   6720   Type  =   144   Pitch  =    66   Velocity  =    69   Channel  =     1    
+Tick  =   6720   Type  =   144   Pitch  =    45   Velocity  =    69   Channel  =     1    
+Tick  =   6720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6839   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   6839   Type  =   144   Pitch  =    45   Velocity  =     0   Channel  =     1    
+Tick  =   6840   Type  =   144   Pitch  =    81   Velocity  =    80   Channel  =     0    
+Tick  =   6923   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =   6947   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     1    
+Tick  =   6959   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =   6960   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   6960   Type  =   144   Pitch  =    69   Velocity  =    74   Channel  =     1    
+Tick  =   6960   Type  =   144   Pitch  =    69   Velocity  =    74   Channel  =     1    
+Tick  =   6960   Type  =   144   Pitch  =    50   Velocity  =    74   Channel  =     1    
+Tick  =   7079   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   7079   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     1    
+Tick  =   7080   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   7187   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =   7187   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =   7199   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   7200   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   7200   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =   7200   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     1    
+Tick  =   7200   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7319   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   7319   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =   7320   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   7439   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   7440   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   7440   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =   7559   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   7559   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =   7560   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   7679   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   7680   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   7680   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =   7680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7769   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =   7799   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   7799   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =   7800   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =   7800   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =   7913   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =   7919   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =   7920   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =   7920   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =   7920   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     1    
+Tick  =   8033   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =   8039   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =   8039   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =   8040   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =   8040   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =   8153   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =   8159   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =   8160   Type  =   144   Pitch  =    81   Velocity  =    80   Channel  =     0    
+Tick  =   8160   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     1    
+Tick  =   8160   Type  =   144   Pitch  =    54   Velocity  =    80   Channel  =     1    
+Tick  =   8160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   8273   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     1    
+Tick  =   8279   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =   8279   Type  =   144   Pitch  =    54   Velocity  =     0   Channel  =     1    
+Tick  =   8280   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
+Tick  =   8280   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =   8393   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =   8399   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =   8400   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =   8400   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =   8400   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =   8429   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =   8430   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =   8459   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =   8460   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =   8489   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =   8490   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =   8513   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =   8519   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =   8519   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =   8520   Type  =   144   Pitch  =    81   Velocity  =    80   Channel  =     0    
+Tick  =   8520   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     1    
+Tick  =   8633   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     1    
+Tick  =   8639   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =   8640   Type  =   144   Pitch  =    79   Velocity  =    64   Channel  =     0    
+Tick  =   8640   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =   8640   Type  =   144   Pitch  =    52   Velocity  =    80   Channel  =     1    
+Tick  =   8640   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   8753   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =   8759   Type  =   144   Pitch  =    52   Velocity  =     0   Channel  =     1    
+Tick  =   8760   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     1    
+Tick  =   8873   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     1    
+Tick  =   8880   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =   8880   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =   8993   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =   8999   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =   9000   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =   9113   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =   9120   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =   9120   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     1    
+Tick  =   9120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9233   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =   9239   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =   9240   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     1    
+Tick  =   9353   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     1    
+Tick  =   9359   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =   9360   Type  =   144   Pitch  =    84   Velocity  =    64   Channel  =     0    
+Tick  =   9360   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =   9360   Type  =   144   Pitch  =    52   Velocity  =    80   Channel  =     1    
+Tick  =   9473   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =   9479   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
+Tick  =   9479   Type  =   144   Pitch  =    52   Velocity  =     0   Channel  =     1    
+Tick  =   9480   Type  =   144   Pitch  =    83   Velocity  =    64   Channel  =     0    
+Tick  =   9480   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =   9593   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =   9599   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =   9600   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =   9600   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =   9600   Type  =   144   Pitch  =    48   Velocity  =    80   Channel  =     1    
+Tick  =   9600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9719   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =   9719   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     1    
+Tick  =   9720   Type  =   144   Pitch  =    79   Velocity  =    64   Channel  =     0    
+Tick  =   9839   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =   9840   Type  =   144   Pitch  =    79   Velocity  =    64   Channel  =     0    
+Tick  =   9840   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     1    
+Tick  =   9869   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =   9870   Type  =   144   Pitch  =    78   Velocity  =    64   Channel  =     0    
+Tick  =   9899   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =   9900   Type  =   144   Pitch  =    79   Velocity  =    64   Channel  =     0    
+Tick  =   9929   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =   9930   Type  =   144   Pitch  =    78   Velocity  =    64   Channel  =     0    
+Tick  =   9941   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =   9959   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =   9959   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     1    
+Tick  =   9960   Type  =   144   Pitch  =    79   Velocity  =    64   Channel  =     0    
+Tick  =   9960   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  10073   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  10079   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  10080   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  10080   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  10080   Type  =   144   Pitch  =    54   Velocity  =    80   Channel  =     1    
+Tick  =  10080   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  10193   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  10200   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  10307   Type  =   144   Pitch  =    54   Velocity  =     0   Channel  =     1    
+Tick  =  10313   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  10320   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  10320   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     1    
+Tick  =  10433   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  10439   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  10440   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  10440   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  10499   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  10500   Type  =   144   Pitch  =    78   Velocity  =    64   Channel  =     0    
+Tick  =  10547   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     1    
+Tick  =  10553   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  10559   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  10560   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  10560   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  10560   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     1    
+Tick  =  10560   Type  =   144   Pitch  =    54   Velocity  =    80   Channel  =     1    
+Tick  =  10560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  10588   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  10589   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  10617   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  10619   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  10647   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  10650   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  10673   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  10678   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  10679   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  10680   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  10707   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  10709   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  10737   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  10740   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  10768   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  10769   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  10787   Type  =   144   Pitch  =    54   Velocity  =     0   Channel  =     1    
+Tick  =  10793   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  10797   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  10799   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  10800   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     1    
+Tick  =  10800   Type  =   144   Pitch  =    51   Velocity  =    80   Channel  =     1    
+Tick  =  10827   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  10830   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  10858   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  10859   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  10887   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  10889   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  10913   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     1    
+Tick  =  10917   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  10920   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  10920   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =  10948   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  10949   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  10977   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  10979   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  11007   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  11010   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  11015   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     1    
+Tick  =  11027   Type  =   144   Pitch  =    51   Velocity  =     0   Channel  =     1    
+Tick  =  11033   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =  11038   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  11039   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  11040   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     1    
+Tick  =  11040   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     1    
+Tick  =  11040   Type  =   144   Pitch  =    47   Velocity  =    80   Channel  =     1    
+Tick  =  11040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11067   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  11069   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  11097   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  11100   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  11128   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  11129   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  11153   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     1    
+Tick  =  11157   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  11159   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  11160   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     1    
+Tick  =  11187   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  11190   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  11218   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  11219   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  11247   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  11249   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  11267   Type  =   144   Pitch  =    47   Velocity  =     0   Channel  =     1    
+Tick  =  11273   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     1    
+Tick  =  11277   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  11280   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  11280   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =  11280   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     1    
+Tick  =  11393   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =  11400   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     1    
+Tick  =  11495   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     1    
+Tick  =  11507   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     1    
+Tick  =  11513   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     1    
+Tick  =  11519   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  11520   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  11520   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =  11520   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =  11520   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     1    
+Tick  =  11520   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11759   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  11760   Type  =   144   Pitch  =    72   Velocity  =    64   Channel  =     0    
+Tick  =  11789   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  11790   Type  =   144   Pitch  =    71   Velocity  =    64   Channel  =     0    
+Tick  =  11819   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  11820   Type  =   144   Pitch  =    72   Velocity  =    64   Channel  =     0    
+Tick  =  11849   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  11850   Type  =   144   Pitch  =    71   Velocity  =    64   Channel  =     0    
+Tick  =  11879   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  11880   Type  =   144   Pitch  =    69   Velocity  =    64   Channel  =     0    
+Tick  =  11975   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =  11975   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =  11975   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =  11999   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  12000   Type  =   144   Pitch  =    71   Velocity  =    64   Channel  =     0    
+Tick  =  12000   Type  =   144   Pitch  =    52   Velocity  =    80   Channel  =     1    
+Tick  =  12000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  12119   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  12120   Type  =   144   Pitch  =    73   Velocity  =    64   Channel  =     0    
+Tick  =  12239   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  12240   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  12359   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  12360   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  12455   Type  =   144   Pitch  =    52   Velocity  =     0   Channel  =     1    
+Tick  =  12479   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  12480   Type  =   144   Pitch  =    78   Velocity  =    64   Channel  =     0    
+Tick  =  12480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  12599   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  12600   Type  =   144   Pitch  =    79   Velocity  =    64   Channel  =     0    
+Tick  =  12659   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  12660   Type  =   144   Pitch  =    78   Velocity  =    64   Channel  =     0    
+Tick  =  12719   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  12720   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  12839   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  12840   Type  =   144   Pitch  =    78   Velocity  =    64   Channel  =     0    
+Tick  =  12959   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  12960   Type  =   144   Pitch  =    79   Velocity  =    64   Channel  =     0    
+Tick  =  12960   Type  =   144   Pitch  =    52   Velocity  =    80   Channel  =     1    
+Tick  =  12960   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  13187   Type  =   144   Pitch  =    52   Velocity  =     0   Channel  =     1    
+Tick  =  13200   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  13200   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =  13227   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  13230   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  13257   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  13260   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  13287   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  13290   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  13317   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  13320   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  13427   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =  13433   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  13440   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  13440   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  13440   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     1    
+Tick  =  13440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  13553   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  13560   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     1    
+Tick  =  13667   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =  13673   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     1    
+Tick  =  13680   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  13680   Type  =   144   Pitch  =    52   Velocity  =    80   Channel  =     1    
+Tick  =  13793   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  13800   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  13895   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  13907   Type  =   144   Pitch  =    52   Velocity  =     0   Channel  =     1    
+Tick  =  13913   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  13920   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  13920   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  13920   Type  =   144   Pitch  =    50   Velocity  =    80   Channel  =     1    
+Tick  =  13920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14033   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  14040   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     1    
+Tick  =  14096   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     1    
+Tick  =  14100   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  14147   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     1    
+Tick  =  14156   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  14160   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  14160   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =  14273   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  14280   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  14375   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  14387   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =  14393   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  14400   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  14400   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  14400   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  14400   Type  =   144   Pitch  =    48   Velocity  =    80   Channel  =     1    
+Tick  =  14400   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14639   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  14640   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  14759   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  14760   Type  =   144   Pitch  =    75   Velocity  =    64   Channel  =     0    
+Tick  =  14855   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  14855   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  14855   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  14855   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     1    
+Tick  =  14879   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  14880   Type  =   144   Pitch  =    76   Velocity  =    64   Channel  =     0    
+Tick  =  14880   Type  =   144   Pitch  =    36   Velocity  =    80   Channel  =     1    
+Tick  =  14880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14999   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  15000   Type  =   144   Pitch  =    78   Velocity  =    64   Channel  =     0    
+Tick  =  15119   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  15120   Type  =   144   Pitch  =    79   Velocity  =    64   Channel  =     0    
+Tick  =  15239   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  15240   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  15335   Type  =   144   Pitch  =    36   Velocity  =     0   Channel  =     1    
+Tick  =  15359   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  15360   Type  =   144   Pitch  =    83   Velocity  =    64   Channel  =     0    
+Tick  =  15360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  15479   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =  15480   Type  =   144   Pitch  =    84   Velocity  =    64   Channel  =     0    
+Tick  =  15599   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
+Tick  =  15600   Type  =   144   Pitch  =    86   Velocity  =    64   Channel  =     0    
+Tick  =  15719   Type  =   144   Pitch  =    86   Velocity  =     0   Channel  =     0    
+Tick  =  15720   Type  =   144   Pitch  =    83   Velocity  =    64   Channel  =     0    
+Tick  =  15839   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =  15840   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  15840   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =  15840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  16067   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =  16079   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16080   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  16080   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =  16080   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =  16139   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  16140   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  16193   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =  16199   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16200   Type  =   144   Pitch  =    78   Velocity  =    64   Channel  =     0    
+Tick  =  16200   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     1    
+Tick  =  16259   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  16260   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  16307   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =  16313   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     1    
+Tick  =  16319   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16320   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  16320   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =  16320   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =  16320   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =  16320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  16348   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  16349   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  16377   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16379   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  16407   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  16410   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  16433   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =  16438   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16439   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  16440   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     1    
+Tick  =  16467   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  16469   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  16497   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16500   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  16528   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  16529   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  16547   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =  16553   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     1    
+Tick  =  16557   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16559   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  16560   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     1    
+Tick  =  16560   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     1    
+Tick  =  16587   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  16590   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  16618   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16619   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  16647   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  16649   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  16673   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     1    
+Tick  =  16677   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16680   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  16680   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  16708   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  16709   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  16737   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16739   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  16767   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  16770   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  16775   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =  16787   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     1    
+Tick  =  16793   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  16798   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16799   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  16800   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  16800   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  16800   Type  =   144   Pitch  =    52   Velocity  =    80   Channel  =     1    
+Tick  =  16800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  16827   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  16829   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  16857   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16860   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  16888   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  16889   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  16913   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  16917   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16919   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  16920   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  16947   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  16950   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  16978   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  16979   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  17007   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  17009   Type  =   144   Pitch  =    80   Velocity  =    64   Channel  =     0    
+Tick  =  17027   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  17027   Type  =   144   Pitch  =    52   Velocity  =     0   Channel  =     1    
+Tick  =  17033   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  17037   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  17040   Type  =   144   Pitch  =    81   Velocity  =    64   Channel  =     0    
+Tick  =  17040   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  17040   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  17040   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =  17153   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  17160   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  17267   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  17267   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =  17273   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  17279   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  17280   Type  =   144   Pitch  =    81   Velocity  =    80   Channel  =     0    
+Tick  =  17280   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  17280   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =  17280   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     1    
+Tick  =  17280   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17507   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     1    
+Tick  =  17520   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =  17735   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =  17747   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =  17760   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     1    
+Tick  =  17760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17849   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  17880   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  17987   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     1    
+Tick  =  17993   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  18000   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  18000   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     1    
+Tick  =  18113   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  18120   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  18227   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     1    
+Tick  =  18233   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  18240   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  18240   Type  =   144   Pitch  =    54   Velocity  =    80   Channel  =     1    
+Tick  =  18240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  18353   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  18360   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  18467   Type  =   144   Pitch  =    54   Velocity  =     0   Channel  =     1    
+Tick  =  18473   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  18480   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  18480   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =  18593   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  18600   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  18707   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =  18713   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  18720   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  18720   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     1    
+Tick  =  18720   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  18746   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  18749   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  18775   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  18780   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  18806   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  18809   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  18835   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  18840   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  18866   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  18869   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  18895   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  18900   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  18926   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  18929   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  18947   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =  18955   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  18959   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  18960   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  18960   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  18960   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     1    
+Tick  =  18986   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  18989   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  19015   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  19020   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  19046   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  19049   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  19075   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  19079   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  19080   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  19080   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  19106   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  19109   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  19135   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  19140   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  19166   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  19169   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  19187   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     1    
+Tick  =  19195   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  19199   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  19200   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  19200   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  19200   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =  19200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  19319   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  19320   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  19427   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  19427   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =  19439   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  19440   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  19440   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  19440   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     1    
+Tick  =  19553   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  19559   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  19560   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  19560   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  19667   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =  19673   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  19679   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  19680   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  19680   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  19680   Type  =   144   Pitch  =    52   Velocity  =    80   Channel  =     1    
+Tick  =  19680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  19793   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  19800   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  19907   Type  =   144   Pitch  =    52   Velocity  =     0   Channel  =     1    
+Tick  =  19913   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  19920   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     1    
+Tick  =  19920   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =  20033   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     1    
+Tick  =  20040   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  20147   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =  20153   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  20159   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  20160   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  20160   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  20160   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  20160   Type  =   144   Pitch  =    48   Velocity  =    80   Channel  =     1    
+Tick  =  20160   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  20387   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     1    
+Tick  =  20400   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     1    
+Tick  =  20519   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  20520   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  20615   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  20627   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =  20639   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  20640   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  20640   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  20640   Type  =   144   Pitch  =    52   Velocity  =    80   Channel  =     1    
+Tick  =  20640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  20759   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  20760   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  20843   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  20867   Type  =   144   Pitch  =    52   Velocity  =     0   Channel  =     1    
+Tick  =  20879   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  20880   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  20880   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =  20880   Type  =   144   Pitch  =    48   Velocity  =    80   Channel  =     1    
+Tick  =  20999   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  21000   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  21107   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =  21107   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     1    
+Tick  =  21119   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  21120   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  21120   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     1    
+Tick  =  21120   Type  =   144   Pitch  =    45   Velocity  =    80   Channel  =     1    
+Tick  =  21120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  21239   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  21240   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  21323   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  21347   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     1    
+Tick  =  21347   Type  =   144   Pitch  =    45   Velocity  =     0   Channel  =     1    
+Tick  =  21359   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  21360   Type  =   144   Pitch  =    81   Velocity  =    80   Channel  =     0    
+Tick  =  21360   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  21360   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  21360   Type  =   144   Pitch  =    54   Velocity  =    80   Channel  =     1    
+Tick  =  21479   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  21480   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  21587   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  21587   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  21587   Type  =   144   Pitch  =    54   Velocity  =     0   Channel  =     1    
+Tick  =  21599   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  21600   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  21600   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  21600   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =  21600   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     1    
+Tick  =  21600   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  21827   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =  21827   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =  21840   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =  21840   Type  =   144   Pitch  =    48   Velocity  =    80   Channel  =     1    
+Tick  =  21959   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  21960   Type  =   144   Pitch  =    72   Velocity  =    73   Channel  =     0    
+Tick  =  22055   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  22067   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =  22067   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     1    
+Tick  =  22079   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  22080   Type  =   144   Pitch  =    69   Velocity  =    70   Channel  =     0    
+Tick  =  22080   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  22080   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =  22080   Type  =   144   Pitch  =    50   Velocity  =    80   Channel  =     1    
+Tick  =  22080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  22439   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  22440   Type  =   144   Pitch  =    71   Velocity  =    62   Channel  =     0    
+Tick  =  22535   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  22535   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =  22535   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     1    
+Tick  =  22559   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  22560   Type  =   144   Pitch  =    72   Velocity  =    60   Channel  =     0    
+Tick  =  22560   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     1    
+Tick  =  22560   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =  22560   Type  =   144   Pitch  =    38   Velocity  =    80   Channel  =     1    
+Tick  =  22560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  22919   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  22920   Type  =   144   Pitch  =    74   Velocity  =    52   Channel  =     0    
+Tick  =  23015   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     1    
+Tick  =  23015   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =  23015   Type  =   144   Pitch  =    38   Velocity  =     0   Channel  =     1    
+Tick  =  23039   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  23040   Type  =   144   Pitch  =    71   Velocity  =    49   Channel  =     0    
+Tick  =  23040   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23040   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     1    
+Tick  =  23040   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  23066   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23068   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23094   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23099   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23125   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23129   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23155   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23159   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23185   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23189   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23215   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23220   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23246   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23248   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23267   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =  23274   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23279   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23280   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =  23305   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23309   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23335   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23339   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23365   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23369   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23395   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23400   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23426   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23428   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23454   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23459   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23485   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23489   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23507   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =  23515   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23519   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  23519   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23520   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =  23520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  23545   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23549   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23575   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23580   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23606   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23608   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23634   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23639   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23665   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23669   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23695   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23699   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23725   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23729   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23747   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =  23755   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23760   Type  =   144   Pitch  =    76   Velocity  =    49   Channel  =     0    
+Tick  =  23760   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23760   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     1    
+Tick  =  23786   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23788   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23814   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23819   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23845   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23849   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23875   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23879   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23905   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23909   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23935   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23940   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  23966   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  23968   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  23987   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =  23994   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  23999   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  23999   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  24000   Type  =   144   Pitch  =    74   Velocity  =    49   Channel  =     0    
+Tick  =  24000   Type  =   144   Pitch  =    54   Velocity  =    80   Channel  =     1    
+Tick  =  24000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  24025   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  24029   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  24055   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  24059   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  24085   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  24089   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  24115   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  24120   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  24146   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  24148   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  24174   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  24179   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  24205   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  24209   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  24227   Type  =   144   Pitch  =    54   Velocity  =     0   Channel  =     1    
+Tick  =  24235   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  24239   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  24239   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  24240   Type  =   144   Pitch  =    76   Velocity  =    49   Channel  =     0    
+Tick  =  24240   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =  24265   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  24269   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  24295   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  24300   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     1    
+Tick  =  24326   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     1    
+Tick  =  24328   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  24354   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  24359   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  24359   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  24360   Type  =   144   Pitch  =    72   Velocity  =    49   Channel  =     0    
+Tick  =  24385   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  24389   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  24467   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =  24471   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  24479   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  24480   Type  =   144   Pitch  =    86   Velocity  =    96   Channel  =     0    
+Tick  =  24480   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  24480   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  24480   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     1    
+Tick  =  24480   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  24659   Type  =   144   Pitch  =    86   Velocity  =     0   Channel  =     0    
+Tick  =  24660   Type  =   144   Pitch  =    84   Velocity  =    96   Channel  =     0    
+Tick  =  24707   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  24707   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  24707   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     1    
+Tick  =  24719   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
+Tick  =  24720   Type  =   144   Pitch  =    83   Velocity  =    96   Channel  =     0    
+Tick  =  24720   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  24720   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     1    
+Tick  =  24720   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  24720   Type  =   144   Pitch  =    48   Velocity  =    80   Channel  =     1    
+Tick  =  24779   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =  24780   Type  =   144   Pitch  =    81   Velocity  =    96   Channel  =     0    
+Tick  =  24839   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  24840   Type  =   144   Pitch  =    83   Velocity  =    96   Channel  =     0    
+Tick  =  24899   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =  24900   Type  =   144   Pitch  =    79   Velocity  =    96   Channel  =     0    
+Tick  =  24947   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  24947   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     1    
+Tick  =  24947   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  24947   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     1    
+Tick  =  24959   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  24960   Type  =   144   Pitch  =    79   Velocity  =    96   Channel  =     0    
+Tick  =  24960   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  24960   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =  24960   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  24960   Type  =   144   Pitch  =    50   Velocity  =    80   Channel  =     1    
+Tick  =  24960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  25415   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  25415   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =  25415   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  25415   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     1    
+Tick  =  25439   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  25440   Type  =   144   Pitch  =    79   Velocity  =    96   Channel  =     0    
+Tick  =  25440   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  25440   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =  25440   Type  =   144   Pitch  =    38   Velocity  =    80   Channel  =     1    
+Tick  =  25440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  25467   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  25468   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  25469   Type  =   144   Pitch  =    78   Velocity  =    96   Channel  =     0    
+Tick  =  25469   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  25496   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  25497   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  25499   Type  =   144   Pitch  =    79   Velocity  =    96   Channel  =     0    
+Tick  =  25499   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  25526   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  25527   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  25530   Type  =   144   Pitch  =    78   Velocity  =    96   Channel  =     0    
+Tick  =  25530   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  25557   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  25558   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  25559   Type  =   144   Pitch  =    79   Velocity  =    96   Channel  =     0    
+Tick  =  25559   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  25586   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  25587   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  25589   Type  =   144   Pitch  =    78   Velocity  =    96   Channel  =     0    
+Tick  =  25589   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  25616   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  25617   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  25620   Type  =   144   Pitch  =    79   Velocity  =    96   Channel  =     0    
+Tick  =  25620   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  25647   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  25648   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  25649   Type  =   144   Pitch  =    78   Velocity  =    96   Channel  =     0    
+Tick  =  25649   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  25676   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  25677   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  25679   Type  =   144   Pitch  =    79   Velocity  =    96   Channel  =     0    
+Tick  =  25679   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  25706   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  25707   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  25710   Type  =   144   Pitch  =    78   Velocity  =    96   Channel  =     0    
+Tick  =  25710   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  25737   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  25738   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  25739   Type  =   144   Pitch  =    79   Velocity  =    96   Channel  =     0    
+Tick  =  25739   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  25766   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  25767   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  25769   Type  =   144   Pitch  =    78   Velocity  =    96   Channel  =     0    
+Tick  =  25769   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =  25796   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =  25797   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  25800   Type  =   144   Pitch  =    79   Velocity  =    96   Channel  =     0    
+Tick  =  25800   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  25895   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =  25895   Type  =   144   Pitch  =    38   Velocity  =     0   Channel  =     1    
+Tick  =  25913   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  25919   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  25920   Type  =   144   Pitch  =    79   Velocity  =    96   Channel  =     0    
+Tick  =  25920   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =  25920   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  25920   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     1    
+Tick  =  25920   Type  =   144   Pitch  =    43   Velocity  =    80   Channel  =     1    
+Tick  =  25920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  26400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  26880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  27287   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =  27287   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  27287   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     1    
+Tick  =  27287   Type  =   144   Pitch  =    43   Velocity  =     0   Channel  =     1    
+Tick  =  27359   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
diff --git a/mtest/libmscore/midi/testAndanteExcerpts.mscx b/mtest/libmscore/midi/testAndanteExcerpts.mscx
new file mode 100644
index 0000000..71aa39d
--- /dev/null
+++ b/mtest/libmscore/midi/testAndanteExcerpts.mscx
@@ -0,0 +1,3327 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>3543170</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.78</page-height>
+        <page-width>1190.55</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">JS Bach</metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2014-04-26</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">MAC</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle">Trois petites pieces de JS Bach</metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      <Page>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Oboe</trackName>
+      <Instrument>
+        <longName>Oboe</longName>
+        <shortName>Ob.</shortName>
+        <trackName>Oboe</trackName>
+        <minPitchP>58</minPitchP>
+        <maxPitchP>93</maxPitchP>
+        <minPitchA>58</minPitchA>
+        <maxPitchA>87</maxPitchA>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="68"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="2">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="3">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>Trois petites pieces de JS Bach</text>
+          </Text>
+        <Text>
+          <style>Subtitle</style>
+          <text>I Andate</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>JS Bach</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>1</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>3</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Tempo>
+          <tempo>0.616667</tempo>
+          <followText>1</followText>
+          <text><sym>unicodeNoteQuarterUp</sym> = 37</text>
+          </Tempo>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="3" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="3">
+        <Dynamic>
+          <subtype>p</subtype>
+          <velocity>49</velocity>
+          </Dynamic>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Slur id="2">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="2"/>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="2"/>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>prallup</subtype>
+            </Articulation>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>16th</durationType>
+          </Rest>
+        <Slur id="3">
+          <track>0</track>
+          </Slur>
+        <HairPin id="4">
+          <subtype>0</subtype>
+          </HairPin>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="3"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="3"/>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Slur id="5">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Slur type="start" id="5"/>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Slur type="stop" id="5"/>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Dynamic>
+          <subtype>mf</subtype>
+          <velocity>80</velocity>
+          </Dynamic>
+        <endSpanner id="4"/>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Tie id="6">
+              </Tie>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <endSpanner id="6"/>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Slur id="7">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="7"/>
+          <Note>
+            <pitch>81</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="7"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Slur id="8">
+          <track>0</track>
+          <SlurSegment no="0">
+            <o2 x="0.2" y="-0.6"/>
+            <o3 x="4.8" y="-4"/>
+            </SlurSegment>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="8"/>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <HairPin id="9">
+          <subtype>0</subtype>
+          </HairPin>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>81</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>83</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>81</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Dynamic>
+          <subtype>mp</subtype>
+          <velocity>64</velocity>
+          </Dynamic>
+        <endSpanner id="9"/>
+        <Chord>
+          <dots>1</dots>
+          <durationType>quarter</durationType>
+          <Slur type="stop" id="8"/>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Slur id="10">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="10"/>
+          <Note>
+            <pitch>84</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>83</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>81</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="10"/>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <Slur id="11">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Slur type="start" id="11"/>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>75</pitch>
+            <tpc>23</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Slur type="stop" id="11"/>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>23</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Slur id="12">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Slur type="start" id="12"/>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>75</pitch>
+            <tpc>23</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="12"/>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Note>
+            <Tie id="13">
+              </Tie>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <endSpanner id="13"/>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Slur id="14">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="14"/>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>75</pitch>
+            <tpc>23</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>81</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>83</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>84</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>86</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>83</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>80</pitch>
+            <tpc>22</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>81</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>80</pitch>
+            <tpc>22</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>80</pitch>
+            <tpc>22</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Slur type="stop" id="14"/>
+          <Note>
+            <pitch>80</pitch>
+            <tpc>22</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>81</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Dynamic>
+          <subtype>mf</subtype>
+          <velocity>80</velocity>
+          </Dynamic>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Note>
+            <Tie id="15">
+              </Tie>
+            <pitch>81</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <endSpanner id="15"/>
+            <pitch>81</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Slur id="16">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="16"/>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>75</pitch>
+            <tpc>23</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="16"/>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="15">
+        <Slur id="17">
+          <track>0</track>
+          </Slur>
+        <HairPin id="18">
+          <subtype>0</subtype>
+          </HairPin>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Slur type="start" id="17"/>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="17"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Slur id="19">
+          <track>0</track>
+          <SlurSegment no="0">
+            <o2 x="0.799999" y="-0.999999"/>
+            <o3 x="1.2" y="-3.4"/>
+            </SlurSegment>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="19"/>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>81</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="19"/>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <Dynamic>
+          <subtype>mf</subtype>
+          <velocity>80</velocity>
+          </Dynamic>
+        <endSpanner id="18"/>
+        <Slur id="20">
+          <track>0</track>
+          </Slur>
+        <HairPin id="21">
+          <subtype>1</subtype>
+          </HairPin>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Slur type="start" id="20"/>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="20"/>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Slur id="22">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Slur type="start" id="22"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="22"/>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Slur id="23">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Slur type="start" id="23"/>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="23"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Dynamic>
+          <subtype>p</subtype>
+          <velocity>49</velocity>
+          </Dynamic>
+        <endSpanner id="21"/>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Slur id="24">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="start" id="24"/>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="24"/>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="18">
+        <Dynamic>
+          <subtype>f</subtype>
+          <velocity>96</velocity>
+          </Dynamic>
+        <Slur id="25">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <dots>1</dots>
+          <durationType>16th</durationType>
+          <Slur type="start" id="25"/>
+          <Note>
+            <pitch>86</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>84</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>83</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>81</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>83</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Slur type="stop" id="25"/>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Slur id="26">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Slur type="start" id="26"/>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="26"/>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="19">
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="2">
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>1</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>3</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Dynamic>
+          <subtype>p</subtype>
+          <velocity>49</velocity>
+          </Dynamic>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Dynamic>
+          <subtype>mf</subtype>
+          <velocity>80</velocity>
+          </Dynamic>
+        <HairPin id="27">
+          <subtype>1</subtype>
+          </HairPin>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>prall</subtype>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <tick>1440</tick>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          <Note>
+            <track>5</track>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Dynamic>
+          <subtype>p</subtype>
+          <velocity>49</velocity>
+          </Dynamic>
+        <endSpanner id="27"/>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <HairPin id="28">
+          <subtype>0</subtype>
+          </HairPin>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <tick>5760</tick>
+        <Chord>
+          <track>5</track>
+          <dots>1</dots>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <endSpanner id="28"/>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Tie id="29">
+              </Tie>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <endSpanner id="29"/>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>63</pitch>
+            <tpc>23</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>61</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <tick>10080</tick>
+        <Rest>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <offset x="-0.2" y="2.2"/>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <offset x="0" y="2.2"/>
+          <durationType>quarter</durationType>
+          </Rest>
+        <tick>11520</tick>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>75</pitch>
+            <tpc>23</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>23</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <tick>12960</tick>
+        <Rest>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <tick>14400</tick>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="12">
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>63</pitch>
+            <tpc>23</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>68</pitch>
+            <tpc>22</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <tick>15840</tick>
+        <Rest>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <Accidental>
+              <subtype>natural</subtype>
+              <track>5</track>
+              </Accidental>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Dynamic>
+          <subtype>mf</subtype>
+          <velocity>80</velocity>
+          </Dynamic>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Tie id="30">
+              </Tie>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <endSpanner id="30"/>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <tick>17280</tick>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <track>5</track>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>prallup</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>75</pitch>
+            <tpc>23</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="15">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <tick>20160</tick>
+        <Chord>
+          <track>5</track>
+          <dots>1</dots>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <tick>21600</tick>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>pralldown</subtype>
+            </Articulation>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="18">
+        <Dynamic>
+          <subtype>mf</subtype>
+          <velocity>80</velocity>
+          </Dynamic>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <tick>24480</tick>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>eighth</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          <Note>
+            <track>5</track>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          <Note>
+            <track>5</track>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <Note>
+            <track>5</track>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="19">
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="3">
+      <Measure number="1">
+        <Clef>
+          <concertClefType>F</concertClefType>
+          <transposingClefType>F</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>1</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>3</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>54</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>45</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>38</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>54</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>54</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>47</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>52</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>45</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>54</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>52</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>52</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>54</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>54</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>51</pitch>
+            <tpc>23</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>47</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>52</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>52</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>52</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>36</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="12">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>56</pitch>
+            <tpc>22</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>52</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>54</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <tick>17280</tick>
+        <Rest>
+          <track>9</track>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <track>9</track>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>63</pitch>
+            <tpc>23</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>52</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="15">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>52</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>45</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>54</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>38</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>54</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="18">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>38</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="19">
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>43</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testBaroqueOrnaments-ref.txt b/mtest/libmscore/midi/testBaroqueOrnaments-ref.txt
new file mode 100644
index 0000000..487b09e
--- /dev/null
+++ b/mtest/libmscore/midi/testBaroqueOrnaments-ref.txt
@@ -0,0 +1,1692 @@
+Tick  =      0   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =     26   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =     28   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =     54   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =     59   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =     85   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =     89   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    115   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    119   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    145   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    149   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    175   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    180   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    206   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    208   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    234   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    239   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    265   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    269   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    295   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    299   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    325   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    329   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    355   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    360   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    386   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    388   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    414   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    419   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    445   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    449   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    475   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    479   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    505   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    509   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    535   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    540   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    566   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    568   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    594   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    599   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    625   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    629   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    655   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    659   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    685   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    689   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    715   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    720   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    746   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    748   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    774   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    779   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    805   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    809   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    835   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    839   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    865   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    869   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    895   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    900   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    926   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    928   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    954   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    959   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    985   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    989   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   1015   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   1019   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1045   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1049   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   1075   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   1080   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1106   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1108   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   1134   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   1139   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1165   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1169   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   1195   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   1199   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1225   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1229   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   1255   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   1260   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1286   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1288   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   1314   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   1319   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1345   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1349   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   1375   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   1379   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1405   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1409   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   1435   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   1440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1920   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1976   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1980   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2036   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2040   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   2096   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   2100   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2156   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2160   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   2216   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   2220   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2276   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2280   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   2336   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   2340   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2396   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2400   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2456   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   2460   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2516   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2520   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   2576   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   2580   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2636   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2640   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   2696   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   2700   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2756   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2760   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   2816   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   2820   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2876   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2880   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2936   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   2940   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2996   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   3000   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   3056   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   3060   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   3116   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   3120   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   3176   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   3180   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   3236   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   3240   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   3296   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   3300   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   3356   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   3360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3840   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   3840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3894   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   3899   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   3953   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   3960   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4014   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4019   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   4073   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4080   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4134   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4139   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   4193   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4200   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4254   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4259   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   4313   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4320   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4374   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4379   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   4433   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4440   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4494   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4499   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   4553   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4560   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4614   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4619   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   4673   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4680   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4734   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4739   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   4793   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5280   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5335   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5340   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   5395   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   5400   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5455   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5460   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   5515   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   5520   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5575   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5580   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   5635   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   5640   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5695   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5700   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   5755   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   5760   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5816   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5820   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   5876   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   5880   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5936   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5940   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   5996   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6000   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   6056   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   6060   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6116   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6120   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   6176   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   6180   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6236   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6240   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   6240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6296   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   6300   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6356   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6360   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   6416   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   6420   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6476   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6480   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   6536   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   6540   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6596   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6600   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   6656   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   6660   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6716   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7200   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   7200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7256   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   7260   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   7316   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   7320   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   7376   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   7380   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   7436   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   7440   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   7496   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   7500   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   7556   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   7560   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   7616   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   7620   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   7676   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   7680   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   7680   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7735   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   7740   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   7795   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   7800   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   7855   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   7860   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   7915   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   8160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   8640   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   8640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   8753   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   9120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9600   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   9600   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9656   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   9660   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   9716   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   9720   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   9776   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   9780   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   9836   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  10080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  10560   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  10560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  10673   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  11040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11520   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  11520   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11575   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  11580   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  11635   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  11640   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  11695   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  11700   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  11755   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  12000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  12480   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  12480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  12507   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  12510   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  12537   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  12540   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  12567   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  12570   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  12597   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  12960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  13440   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  13440   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  13496   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  13500   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  13556   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  13560   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  13616   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  13620   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  13676   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  13920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14400   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  14400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14427   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  14430   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  14457   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  14460   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  14487   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  14490   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  14517   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  14880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  15360   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  15360   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  15413   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  15419   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  15472   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  15479   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  15532   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  15540   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  15593   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  15599   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  15652   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  15659   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  15712   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  15720   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  15773   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  15779   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  15832   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  15839   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  15840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  15892   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  15900   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  15953   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  15959   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  16012   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  16019   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  16072   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  16080   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  16133   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  16139   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  16192   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  16199   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  16252   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  16260   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  16313   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  16319   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  16320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  16372   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  16379   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  16432   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  16440   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  16493   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  16499   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  16552   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  16559   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  16612   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  16620   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  16673   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  16679   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  16732   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  16739   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  16792   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  16800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17280   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  17280   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17336   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  17340   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  17396   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  17400   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  17456   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  17460   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  17516   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  17520   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  17576   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  17580   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  17636   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  17640   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  17696   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  17700   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  17756   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  17760   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  17760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17816   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  17820   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  17876   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  17880   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  17936   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  17940   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  17996   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  18000   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  18056   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  18060   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  18116   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  18120   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  18176   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  18180   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  18236   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  18240   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  18240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  18296   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  18300   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  18356   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  18360   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  18416   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  18420   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  18476   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  18480   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  18536   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  18540   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  18596   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  18600   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  18656   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  18660   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  18716   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  18720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  19200   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  19200   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  19254   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  19259   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  19313   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  19319   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  19373   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  19378   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  19680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  20160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  20640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  21028   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  21120   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  21120   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  21176   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  21180   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  21236   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  21240   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  21296   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  21300   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  21600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  22080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  22560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  22952   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  23040   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  23040   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  23094   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  23099   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  23153   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  23159   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  23213   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  23218   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  23520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  24000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  24480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  24868   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  24960   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  24960   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  25016   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  25020   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  25076   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  25080   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  25136   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  25140   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  25440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  25920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  26400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  26792   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  26880   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  26880   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  26934   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  26939   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  26993   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  26999   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  27360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  27840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  28320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  28706   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  28800   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  28800   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  28856   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  28860   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  28916   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  28920   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  29280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  29760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  30240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  30629   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  30720   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  30720   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  30774   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  30779   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  30833   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  30840   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  31200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  31636   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  31680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  32160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  32640   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  32640   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  32696   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  32700   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  32756   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  32760   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  33120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  33557   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  33600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  34080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  34560   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  34560   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  34615   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  34620   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  34675   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  34680   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  35020   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  35040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  35520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  36000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  36480   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  36480   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  36536   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  36540   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  36596   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  36600   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  36941   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  36960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  37440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  37920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  38400   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  38400   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  38454   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  38459   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  38513   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  38519   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  38880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  39360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  39840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  40226   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  40320   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  40320   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  40376   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  40380   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  40436   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  40440   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  40800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  41280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  41760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  42149   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  42240   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  42240   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  42294   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  42299   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  42353   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  42360   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  42720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  43156   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  43200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  43680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  44160   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  44160   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  44216   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  44220   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  44276   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  44280   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  44640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  45077   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  45120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  45600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  46080   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  46080   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  46135   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  46140   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  46195   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  46200   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  46540   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  46560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  47040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  47520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  48000   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  48000   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  48056   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  48060   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  48116   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  48120   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  48461   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  48480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  48960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  49440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  49920   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  49920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  49974   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  49979   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  50033   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  50039   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  50093   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  50098   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  50400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  50880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  51360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  51748   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  51840   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  51840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  51896   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  51900   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  51956   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  51960   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  52016   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  52020   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  52320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  52800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  53280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  53672   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  53760   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  53760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  53814   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  53819   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  53873   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  53880   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  53934   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  53939   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  54240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  54678   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  54720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  55200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  55680   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  55680   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  55736   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  55740   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  55796   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  55800   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  55856   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  55860   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  56160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  56600   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  56640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  57120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  57600   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  57600   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  57655   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  57660   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  57715   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  57720   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  57775   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  57780   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  58063   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  58080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  58560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  59040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  59520   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  59520   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  59576   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  59580   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  59636   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  59640   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  59696   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  59700   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  59984   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  60000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  60480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  60960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  61440   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  61440   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  61494   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  61499   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  61553   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  61559   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  61613   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  61618   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  61920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  62400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  62880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  63268   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  63360   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  63360   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  63416   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  63420   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  63476   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  63480   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  63536   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  63540   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  63840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  64320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  64800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  65192   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  65280   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  65280   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  65334   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  65339   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  65393   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  65400   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  65454   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  65459   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  65760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  66198   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  66240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  66720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  67200   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  67200   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  67256   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  67260   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  67316   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  67320   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  67376   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  67380   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  67680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  68120   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  68160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  68640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  69120   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  69120   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  69175   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  69180   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  69235   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  69240   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  69295   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  69300   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  69583   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  69600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  70080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  70560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  71040   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  71040   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  71096   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  71100   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  71156   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  71160   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  71216   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  71220   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  71504   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  71520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  72000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  72480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  72960   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  72960   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  73013   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  73019   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  73072   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  73079   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  73132   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  73140   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  73193   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  73199   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  73252   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  73259   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  73312   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  73320   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  73373   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  73379   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  73432   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  73439   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  73440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  73492   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  73500   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  73553   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  73559   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  73612   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  73619   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  73672   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  73680   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  73733   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  73739   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  73792   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  73799   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  73852   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  73860   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  73913   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  73919   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  73920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  73972   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  73979   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  74032   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  74040   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  74093   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  74099   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  74152   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  74159   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  74212   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  74220   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  74273   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  74279   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  74332   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  74339   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  74392   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  74400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  74880   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  74880   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  74993   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  75000   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  75113   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  75120   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  75233   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  75240   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  75353   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  75360   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  75360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  75473   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  75480   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  75593   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  75600   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  75713   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  75720   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  75833   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  75840   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  75840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  75953   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  75960   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  76073   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  76080   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  76193   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  76200   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  76313   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  76320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  76800   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  76800   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  76854   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  76859   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  76913   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  76920   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  76974   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  76979   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  77033   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  77040   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  77094   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  77099   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  77153   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  77160   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  77214   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  77219   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  77273   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  77280   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  77280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  77334   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  77339   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  77393   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  77400   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  77454   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  77459   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  77513   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  77520   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  77574   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  77579   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  77633   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  77640   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  77694   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  77699   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  77753   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  77760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  78240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  78720   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  78720   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  78833   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  78840   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  78953   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  78960   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  79073   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  79080   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  79193   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  79200   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  79200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  79313   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  79320   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  79433   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  79440   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  79553   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  79560   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  79673   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  79680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  80160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  80640   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  80640   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  80867   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  81120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  81600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  82080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  82560   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  82560   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  82597   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  82600   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  82637   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  82640   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  82677   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  82680   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  82717   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  82720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  82757   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  82760   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  82797   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  83040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  83520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  84000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  84480   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  84480   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  84533   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  84539   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  84592   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  84599   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  84652   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  84660   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  84713   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  84719   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  84772   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  84779   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  84832   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  84840   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  84893   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  84899   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  84952   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  84959   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  84960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  85012   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  85020   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  85073   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  85079   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  85132   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  85139   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  85192   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  85200   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  85253   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  85259   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  85312   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  85319   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  85372   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  85380   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  85433   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  85439   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  85440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  85492   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  85499   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  85552   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  85560   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  85613   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  85619   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  85672   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  85679   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  85732   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  85740   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  85793   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  85799   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  85852   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  85859   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  85912   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  85920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  86400   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  86400   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  86513   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  86520   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  86633   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  86640   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  86753   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  86760   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  86873   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  86880   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  86880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  86993   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  87000   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  87113   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  87120   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  87233   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  87240   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  87353   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  87360   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  87360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  87473   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  87480   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  87593   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  87600   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  87713   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  87720   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  87833   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  87840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  88320   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  88320   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  88374   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  88379   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  88433   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  88440   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  88494   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  88499   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  88553   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  88560   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  88614   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  88619   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  88673   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  88680   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  88734   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  88739   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  88793   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  88800   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  88800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  88854   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  88859   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  88913   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  88920   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  88974   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  88979   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  89033   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  89040   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  89094   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  89099   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  89153   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  89160   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  89214   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  89219   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  89273   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  89280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  89760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  90240   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  90240   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  90353   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  90360   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  90473   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  90480   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  90593   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  90600   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  90713   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  90720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  90720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  90833   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  90840   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  90953   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  90960   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  91073   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  91080   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  91193   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  91200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  91680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  92160   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  92160   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  92387   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  92640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  93120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  93600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  94080   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  94080   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  94117   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  94120   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  94157   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  94160   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  94197   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  94200   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  94237   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  94240   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  94277   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  94280   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  94317   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  94560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  95040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  95520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  96000   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  96000   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  96168   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  96180   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  96233   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  96239   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  96292   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  96299   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  96352   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  96360   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  96413   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  96419   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  96472   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  96479   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  96480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  96532   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  96540   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  96593   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  96599   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  96652   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  96659   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  96712   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  96720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  96773   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  96779   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  96832   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  96839   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  96892   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  96900   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  96953   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  96959   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  96960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  97012   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  97019   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  97072   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  97080   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  97133   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  97139   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  97192   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  97199   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  97252   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  97260   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  97313   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  97319   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  97372   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  97379   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  97432   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  97440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  97920   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  97920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  98261   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  98280   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  98393   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  98400   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  98400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  98513   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  98520   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  98633   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  98640   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  98753   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  98760   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  98873   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  98880   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  98880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  98993   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  99000   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  99113   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  99120   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  99233   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  99240   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  99353   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  99360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  99840   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  99840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  100008   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  100019   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  100073   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  100080   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  100134   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  100139   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  100193   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  100200   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  100254   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  100259   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  100313   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  100320   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  100320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  100374   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  100379   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  100433   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  100440   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  100494   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  100499   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  100553   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  100560   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  100614   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  100619   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  100673   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  100680   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  100734   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  100739   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  100793   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  100800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  101280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  101760   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  101760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  102101   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  102120   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  102233   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  102240   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  102240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  102353   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  102360   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  102473   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  102480   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  102593   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  102600   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  102713   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  102720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  103200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  103680   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  103680   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  103793   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  103800   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  103836   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  103839   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  103875   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  103879   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  103915   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  104160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  104640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  105120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  105600   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  105600   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  105683   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  105690   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  105717   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  105720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  105747   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  105750   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  105777   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  105780   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  105807   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  105810   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  105837   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  106080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  106560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  107040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  107520   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  107520   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  107688   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  107700   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  107753   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  107759   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  107812   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  107819   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  107872   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  107880   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  107933   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  107939   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  107992   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  107999   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  108000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  108052   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  108060   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  108113   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  108119   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  108172   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  108179   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  108232   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  108240   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  108293   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  108299   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  108352   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  108359   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  108412   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  108420   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  108473   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  108479   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  108480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  108532   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  108539   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  108592   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  108600   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  108653   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  108659   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  108712   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  108719   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  108772   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  108780   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  108833   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  108839   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  108892   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  108899   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  108952   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  108960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  109440   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  109440   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  109781   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  109800   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  109913   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  109920   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  109920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  110033   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  110040   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  110153   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  110160   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  110273   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  110280   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  110393   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  110400   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  110400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  110513   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  110520   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  110633   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  110640   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  110753   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  110760   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  110873   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  110880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  111360   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  111360   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  111528   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  111539   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  111593   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  111600   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  111654   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  111659   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  111713   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  111720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  111774   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  111779   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  111833   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  111840   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  111840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  111894   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  111899   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  111953   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  111960   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  112014   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  112019   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  112073   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  112080   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  112134   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  112139   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  112193   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  112200   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  112254   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  112259   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  112313   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  112320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  112800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  113280   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  113280   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  113621   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  113640   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  113753   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  113760   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  113760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  113873   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  113880   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  113993   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  114000   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  114113   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  114120   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  114233   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  114240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  114720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  115200   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  115200   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  115427   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  115680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  116160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  116640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  117120   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  117120   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  117203   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  117210   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  117237   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  117240   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  117267   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  117270   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  117297   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  117300   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  117327   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  117330   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  117357   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  117600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  118080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  118560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  119040   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  119040   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  119093   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  119099   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  119152   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  119159   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  119212   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  119220   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  119273   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  119279   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  119332   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  119339   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  119392   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  119400   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  119453   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  119459   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  119512   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  119519   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  119520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  119572   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  119580   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  119633   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  119639   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  119692   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  119699   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  119752   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  119760   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  119813   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  119819   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  119872   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  119879   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  119932   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  119940   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  119993   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  119999   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  120000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  120052   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  120059   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  120112   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  120120   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  120173   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  120179   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  120232   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  120239   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  120292   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  120300   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  120353   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  120359   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  120412   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  120419   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  120472   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  120480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  120960   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  120960   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  121073   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  121080   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  121193   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  121200   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  121313   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  121320   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  121433   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  121440   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  121440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  121553   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  121560   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  121673   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  121680   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  121793   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  121800   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  121913   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  121920   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  121920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  122033   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  122040   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  122153   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  122160   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  122273   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  122280   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  122393   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  122400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  122880   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  122880   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  122934   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  122939   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  122993   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  123000   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  123054   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  123059   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  123113   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  123120   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  123174   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  123179   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  123233   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  123240   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  123294   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  123299   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  123353   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  123360   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  123360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  123414   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  123419   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  123473   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  123480   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  123534   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  123539   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  123593   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  123600   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  123654   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  123659   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  123713   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  123720   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  123774   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  123779   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  123833   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  123840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  124320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  124800   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  124800   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  124913   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  124920   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  125033   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  125040   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  125153   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  125160   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  125273   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  125280   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  125280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  125393   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  125400   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  125513   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  125520   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  125633   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  125640   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  125753   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  125760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  126240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  126720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  126720   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  126756   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  126759   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  126795   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  126799   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  126835   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  126840   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  126876   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  126879   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  126915   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  126919   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  126955   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  127200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  127680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  128160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  128640   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  128640   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  128677   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  128680   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  128717   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  128720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  128757   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  128760   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  128797   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  128800   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  128837   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  128840   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  128877   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  129120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  129600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  130080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  130560   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  130560   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  130613   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  130619   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  130672   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  130679   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  130732   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  130740   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  130793   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  130799   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  130852   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  130859   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  130912   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  130920   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  130973   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  130979   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  131032   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  131039   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  131040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  131092   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  131100   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  131153   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  131159   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  131212   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  131219   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  131272   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  131280   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  131333   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  131339   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  131392   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  131399   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  131452   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  131460   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  131513   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  131519   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  131520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  131572   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  131579   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  131632   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  131640   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  131693   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  131699   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  131752   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  131759   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  131812   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  131820   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  131988   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  132000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  132480   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  132480   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  132593   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  132600   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  132713   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  132720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  132833   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  132840   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  132953   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  132960   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  132960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  133073   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  133080   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  133193   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  133200   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  133313   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  133320   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  133433   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  133440   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  133440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  133553   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  133560   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  133901   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  133920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  134400   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  134400   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  134454   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  134459   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  134513   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  134520   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  134574   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  134579   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  134633   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  134640   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  134694   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  134699   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  134753   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  134760   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  134814   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  134819   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  134873   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  134880   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  134880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  134934   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  134939   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  134993   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  135000   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  135054   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  135059   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  135113   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  135120   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  135174   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  135179   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  135347   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  135360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  135840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  136320   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  136320   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  136433   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  136440   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  136553   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  136560   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  136673   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  136680   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  136793   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  136800   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  136800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  136913   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  136920   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  137261   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  137280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  137760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  138240   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  138240   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  138467   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  138720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  139200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  139680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  140160   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  140160   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  140187   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  140190   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  140217   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  140220   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  140247   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  140250   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  140277   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  140280   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  140307   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  140310   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  140393   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  140640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  141120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  141600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  142080   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  142080   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  142560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  143040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  143447   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  143520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  144000   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  144000   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  144480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  144960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  145367   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  145440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  145920   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  145920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  146400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  146831   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  146880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  147360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  147840   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  147840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  148320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  148751   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  148800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  149280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  149760   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  149760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  150215   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  150240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  150720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  151200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  151680   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  151680   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  152135   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  152160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  152640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  153120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
diff --git a/mtest/libmscore/midi/testBaroqueOrnaments.mscx b/mtest/libmscore/midi/testBaroqueOrnaments.mscx
new file mode 100644
index 0000000..1e49f6b
--- /dev/null
+++ b/mtest/libmscore/midi/testBaroqueOrnaments.mscx
@@ -0,0 +1,3610 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>3543170</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>57.0217</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>57.0217</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-02-23</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Microsoft Windows</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <RehearsalMark>
+          <pos x="8.05112" y="-3.2"/>
+          <text>Trill</text>
+          </RehearsalMark>
+        <Tempo>
+          <tempo>1.5</tempo>
+          <followText>1</followText>
+          <text><sym>unicodeNoteQuarterUp</sym> = 90</text>
+          </Tempo>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <timeStretch>2</timeStretch>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Tempo>
+          <tempo>2</tempo>
+          <followText>1</followText>
+          <text><sym>unicodeNoteQuarterUp</sym> = 120</text>
+          </Tempo>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>16th</durationType>
+          </Rest>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="6">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>16th</durationType>
+          </Rest>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="7">
+        <Tempo>
+          <tempo>1</tempo>
+          <followText>1</followText>
+          <text><sym>unicodeNoteQuarterUp</sym> = 60</text>
+          </Tempo>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>16th</durationType>
+          </Rest>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="8">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>16th</durationType>
+          </Rest>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="9">
+        <Tempo>
+          <tempo>1.5</tempo>
+          <followText>1</followText>
+          <pos x="-0.2" y="-3.6"/>
+          <text><sym>unicodeNoteQuarterUp</sym> = 90</text>
+          </Tempo>
+        <RehearsalMark>
+          <pos x="13.0511" y="-3"/>
+          <text>Plusstop</text>
+          </RehearsalMark>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>plusstop</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="10">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="11">
+        <RehearsalMark>
+          <pos x="8.55612" y="-1.8"/>
+          <text>Turn</text>
+          </RehearsalMark>
+        <Chord>
+          <durationType>whole</durationType>
+          <Articulation>
+            <subtype>turn</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <Tie id="2">
+              </Tie>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>2</dots>
+          <durationType>half</durationType>
+          <Note>
+            <endSpanner id="2"/>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="13">
+        <RehearsalMark>
+          <pos x="11.7561" y="-2.2"/>
+          <text>Reverseturn</text>
+          </RehearsalMark>
+        <Chord>
+          <durationType>whole</durationType>
+          <Articulation>
+            <subtype>reverseturn</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <Tie id="3">
+              </Tie>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>2</dots>
+          <durationType>half</durationType>
+          <Note>
+            <endSpanner id="3"/>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="15">
+        <RehearsalMark>
+          <pos x="8.55612" y="-1.8"/>
+          <text>Prall</text>
+          </RehearsalMark>
+        <Chord>
+          <durationType>whole</durationType>
+          <Articulation>
+            <subtype>prall</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <Tie id="4">
+              </Tie>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Note>
+            <endSpanner id="4"/>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Chord>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>prall</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="18">
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <Tie id="5">
+              </Tie>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <endSpanner id="5"/>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="19">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>prall</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="20">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="21">
+        <RehearsalMark>
+          <pos x="9.75612" y="-3"/>
+          <text>Mordent</text>
+          </RehearsalMark>
+        <Chord>
+          <durationType>whole</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="22">
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <Tie id="6">
+              </Tie>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Note>
+            <endSpanner id="6"/>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="23">
+        <Chord>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="24">
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <Tie id="7">
+              </Tie>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <endSpanner id="7"/>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="25">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="26">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="27">
+        <RehearsalMark>
+          <pos x="10.5561" y="-2.6"/>
+          <text>PralPrall</text>
+          </RehearsalMark>
+        <Chord>
+          <durationType>whole</durationType>
+          <Articulation>
+            <subtype>prallprall</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="28">
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <Tie id="8">
+              </Tie>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>2</dots>
+          <durationType>half</durationType>
+          <Note>
+            <endSpanner id="8"/>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="29">
+        <Chord>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>prallprall</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="30">
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <Tie id="9">
+              </Tie>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>quarter</durationType>
+          <Note>
+            <endSpanner id="9"/>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="31">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>prallprall</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="32">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <Tie id="10">
+              </Tie>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <endSpanner id="10"/>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="33">
+        <RehearsalMark>
+          <pos x="12.3561" y="-2.2"/>
+          <text>PralMordent</text>
+          </RehearsalMark>
+        <Chord>
+          <durationType>whole</durationType>
+          <Articulation>
+            <subtype>prallmordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="34">
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <Tie id="11">
+              </Tie>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>2</dots>
+          <durationType>half</durationType>
+          <Note>
+            <endSpanner id="11"/>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="35">
+        <Chord>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>prallmordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="36">
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <Tie id="12">
+              </Tie>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>quarter</durationType>
+          <Note>
+            <endSpanner id="12"/>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="37">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>prallmordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="38">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <Tie id="13">
+              </Tie>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <endSpanner id="13"/>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="39">
+        <RehearsalMark>
+          <pos x="9.25112" y="-2.4"/>
+          <text>UpPrall</text>
+          </RehearsalMark>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>upprall</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="40">
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="41">
+        <Chord>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>upprall</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="42">
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="43">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>upprall</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="44">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Tuplet id="1">
+          <normalNotes>4</normalNotes>
+          <actualNotes>6</actualNotes>
+          <baseNote>32nd</baseNote>
+          <Number>
+            <style>Tuplet</style>
+            <text>6</text>
+            </Number>
+          </Tuplet>
+        <Chord>
+          <Tuplet>1</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>1</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>1</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>1</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>1</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>1</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="45">
+        <RehearsalMark>
+          <pos x="10.6511" y="-2.4"/>
+          <text>UpMordent</text>
+          </RehearsalMark>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>upmordent</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="46">
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="47">
+        <Chord>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>upmordent</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="48">
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="49">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>upmordent</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="50">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Tuplet id="2">
+          <normalNotes>4</normalNotes>
+          <actualNotes>6</actualNotes>
+          <baseNote>32nd</baseNote>
+          <Number>
+            <style>Tuplet</style>
+            <text>6</text>
+            </Number>
+          </Tuplet>
+        <Chord>
+          <Tuplet>2</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>2</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>2</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>2</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>2</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>2</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="51">
+        <Tempo>
+          <tempo>1.5</tempo>
+          <followText>1</followText>
+          <text><sym>unicodeNoteQuarterUp</sym> = 90</text>
+          </Tempo>
+        <RehearsalMark>
+          <pos x="15.0511" y="-3.2"/>
+          <text>DownPrall</text>
+          </RehearsalMark>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>downprall</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="52">
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="53">
+        <Chord>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>downprall</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="54">
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="55">
+        <Tempo>
+          <tempo>1.16667</tempo>
+          <followText>1</followText>
+          <text><sym>unicodeNoteQuarterUp</sym> = 70</text>
+          </Tempo>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>downprall</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="56">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <Tie id="14">
+              </Tie>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <Tie id="15">
+              </Tie>
+            <endSpanner id="14"/>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <endSpanner id="15"/>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="57">
+        <RehearsalMark>
+          <pos x="13.2511" y="-2.8"/>
+          <text>DownMordent</text>
+          </RehearsalMark>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>downmordent</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="58">
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="59">
+        <Chord>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>downmordent</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="60">
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="61">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>downmordent</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="62">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <Tie id="16">
+              </Tie>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <Tie id="17">
+              </Tie>
+            <endSpanner id="16"/>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <endSpanner id="17"/>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="63">
+        <RehearsalMark>
+          <pos x="9.85112" y="-3"/>
+          <text>PrallUp</text>
+          </RehearsalMark>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>prallup</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="64">
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="65">
+        <Chord>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>prallup</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="66">
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="67">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>prallup</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="68">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Tuplet id="3">
+          <normalNotes>4</normalNotes>
+          <actualNotes>6</actualNotes>
+          <baseNote>32nd</baseNote>
+          <Number>
+            <style>Tuplet</style>
+            <text>6</text>
+            </Number>
+          </Tuplet>
+        <Chord>
+          <Tuplet>3</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>3</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>3</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>3</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>3</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>3</Tuplet>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="69">
+        <RehearsalMark>
+          <pos x="10.8511" y="-1.8"/>
+          <text>PrallDown</text>
+          </RehearsalMark>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>pralldown</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="70">
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Tie id="18">
+              </Tie>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Tie id="19">
+              </Tie>
+            <endSpanner id="18"/>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <endSpanner id="19"/>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="71">
+        <Chord>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>pralldown</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="72">
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Tie id="20">
+              </Tie>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Tie id="21">
+              </Tie>
+            <endSpanner id="20"/>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <endSpanner id="21"/>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="73">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>pralldown</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="74">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <Tie id="22">
+              </Tie>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <Tie id="23">
+              </Tie>
+            <endSpanner id="22"/>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>64th</durationType>
+          <Note>
+            <endSpanner id="23"/>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="75">
+        <RehearsalMark>
+          <pos x="9.85112" y="-2.6"/>
+          <text>Schleifer</text>
+          </RehearsalMark>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>schleifer</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="76">
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="77">
+        <Chord>
+          <durationType>half</durationType>
+          <Articulation>
+            <subtype>schleifer</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="78">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="79">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>schleifer</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="80">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testBends1-ref.mid b/mtest/libmscore/midi/testBends1-ref.mid
new file mode 100644
index 0000000..99ecf3f
Binary files /dev/null and b/mtest/libmscore/midi/testBends1-ref.mid differ
diff --git a/mtest/libmscore/midi/testBends1.mscx b/mtest/libmscore/midi/testBends1.mscx
new file mode 100644
index 0000000..eb15460
--- /dev/null
+++ b/mtest/libmscore/midi/testBends1.mscx
@@ -0,0 +1,226 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>d8321d9</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-06-11</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Linux</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>G8vb</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Electric Guitar</trackName>
+      <Instrument>
+        <longName>Electric Guitar</longName>
+        <shortName>El. Guit.</shortName>
+        <trackName>Electric Guitar</trackName>
+        <minPitchP>40</minPitchP>
+        <maxPitchP>86</maxPitchP>
+        <minPitchA>40</minPitchA>
+        <maxPitchA>86</maxPitchA>
+        <instrumentId>pluck.guitar.electric</instrumentId>
+        <clef>G8vb</clef>
+        <StringData>
+          <frets>24</frets>
+          <string>40</string>
+          <string>45</string>
+          <string>50</string>
+          <string>55</string>
+          <string>59</string>
+          <string>64</string>
+          </StringData>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="27"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <Bend>
+              <point time="0" pitch="0" vibrato="0"/>
+              <point time="15" pitch="100" vibrato="0"/>
+              <point time="60" pitch="100" vibrato="0"/>
+              </Bend>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <Bend>
+              <point time="0" pitch="0" vibrato="0"/>
+              <point time="10" pitch="100" vibrato="0"/>
+              <point time="20" pitch="100" vibrato="0"/>
+              <point time="30" pitch="0" vibrato="0"/>
+              <point time="60" pitch="0" vibrato="0"/>
+              </Bend>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <Bend>
+              <point time="0" pitch="0" vibrato="0"/>
+              <point time="10" pitch="100" vibrato="0"/>
+              <point time="20" pitch="100" vibrato="0"/>
+              <point time="30" pitch="0" vibrato="0"/>
+              <point time="40" pitch="0" vibrato="0"/>
+              <point time="50" pitch="100" vibrato="0"/>
+              <point time="60" pitch="100" vibrato="0"/>
+              </Bend>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <Bend>
+              <point time="0" pitch="100" vibrato="0"/>
+              <point time="60" pitch="100" vibrato="0"/>
+              </Bend>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <Bend>
+              <point time="0" pitch="100" vibrato="0"/>
+              <point time="15" pitch="100" vibrato="0"/>
+              <point time="30" pitch="0" vibrato="0"/>
+              <point time="60" pitch="0" vibrato="0"/>
+              </Bend>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <Bend>
+              <point time="0" pitch="0" vibrato="0"/>
+              <point time="5" pitch="50" vibrato="0"/>
+              <point time="10" pitch="100" vibrato="0"/>
+              <point time="15" pitch="125" vibrato="0"/>
+              <point time="20" pitch="25" vibrato="0"/>
+              <point time="25" pitch="275" vibrato="0"/>
+              <point time="30" pitch="25" vibrato="0"/>
+              <point time="35" pitch="275" vibrato="0"/>
+              <point time="40" pitch="25" vibrato="0"/>
+              <point time="45" pitch="275" vibrato="0"/>
+              <point time="50" pitch="75" vibrato="0"/>
+              <point time="55" pitch="225" vibrato="0"/>
+              <point time="60" pitch="100" vibrato="0"/>
+              </Bend>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testBends2-ref.mid b/mtest/libmscore/midi/testBends2-ref.mid
new file mode 100644
index 0000000..687d8e5
Binary files /dev/null and b/mtest/libmscore/midi/testBends2-ref.mid differ
diff --git a/mtest/libmscore/midi/testBends2.mscx b/mtest/libmscore/midi/testBends2.mscx
new file mode 100644
index 0000000..ecc2a38
--- /dev/null
+++ b/mtest/libmscore/midi/testBends2.mscx
@@ -0,0 +1,371 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>de3a7c2</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-06-11</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Linux</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>G8vb</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Electric Guitar</trackName>
+      <Instrument>
+        <longName>Electric Guitar</longName>
+        <shortName>El. Guit.</shortName>
+        <trackName>Electric Guitar</trackName>
+        <minPitchP>40</minPitchP>
+        <maxPitchP>86</maxPitchP>
+        <minPitchA>40</minPitchA>
+        <maxPitchA>86</maxPitchA>
+        <instrumentId>pluck.guitar.electric</instrumentId>
+        <clef>G8vb</clef>
+        <StringData>
+          <frets>24</frets>
+          <string>40</string>
+          <string>45</string>
+          <string>50</string>
+          <string>55</string>
+          <string>59</string>
+          <string>64</string>
+          </StringData>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="27"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="2">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>G8vb</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Acoustic Guitar</trackName>
+      <Instrument>
+        <longName>Acoustic Guitar</longName>
+        <shortName>Guit.</shortName>
+        <trackName>Acoustic Guitar</trackName>
+        <minPitchP>40</minPitchP>
+        <maxPitchP>83</maxPitchP>
+        <minPitchA>40</minPitchA>
+        <maxPitchA>83</maxPitchA>
+        <instrumentId>pluck.guitar.acoustic</instrumentId>
+        <clef>G8vb</clef>
+        <StringData>
+          <frets>19</frets>
+          <string>40</string>
+          <string>45</string>
+          <string>50</string>
+          <string>55</string>
+          <string>59</string>
+          <string>64</string>
+          </StringData>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="25"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <Bend>
+              <point time="0" pitch="0" vibrato="0"/>
+              <point time="15" pitch="100" vibrato="0"/>
+              <point time="60" pitch="100" vibrato="0"/>
+              </Bend>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Bend>
+              <point time="0" pitch="0" vibrato="0"/>
+              <point time="15" pitch="100" vibrato="0"/>
+              <point time="60" pitch="100" vibrato="0"/>
+              <play>0</play>
+              </Bend>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Bend>
+              <point time="0" pitch="0" vibrato="0"/>
+              <point time="15" pitch="100" vibrato="0"/>
+              <point time="60" pitch="100" vibrato="0"/>
+              </Bend>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Bend>
+              <point time="0" pitch="0" vibrato="0"/>
+              <point time="15" pitch="50" vibrato="0"/>
+              <point time="20" pitch="150" vibrato="0"/>
+              <point time="25" pitch="0" vibrato="0"/>
+              <point time="30" pitch="250" vibrato="0"/>
+              <point time="35" pitch="25" vibrato="0"/>
+              <point time="40" pitch="250" vibrato="0"/>
+              <point time="45" pitch="50" vibrato="0"/>
+              <point time="50" pitch="275" vibrato="0"/>
+              <point time="55" pitch="200" vibrato="0"/>
+              <point time="60" pitch="150" vibrato="0"/>
+              </Bend>
+            <Tie id="2">
+              </Tie>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <endSpanner id="2"/>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="2">
+      <Measure number="1">
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <Bend>
+              <point time="0" pitch="0" vibrato="0"/>
+              <point time="15" pitch="100" vibrato="0"/>
+              <point time="60" pitch="100" vibrato="0"/>
+              <play>0</play>
+              </Bend>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <Bend>
+              <point time="0" pitch="0" vibrato="0"/>
+              <point time="15" pitch="100" vibrato="0"/>
+              <point time="60" pitch="100" vibrato="0"/>
+              </Bend>
+            <pitch>53</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <Bend>
+              <point time="0" pitch="0" vibrato="0"/>
+              <point time="10" pitch="50" vibrato="0"/>
+              <point time="20" pitch="50" vibrato="0"/>
+              <point time="30" pitch="0" vibrato="0"/>
+              <point time="40" pitch="0" vibrato="0"/>
+              <point time="50" pitch="50" vibrato="0"/>
+              <point time="60" pitch="50" vibrato="0"/>
+              </Bend>
+            <pitch>52</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <pitch>52</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testGlissando-ref.txt b/mtest/libmscore/midi/testGlissando-ref.txt
new file mode 100644
index 0000000..aa60eaa
--- /dev/null
+++ b/mtest/libmscore/midi/testGlissando-ref.txt
@@ -0,0 +1,544 @@
+Tick  =      0   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =     46   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =     49   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
+Tick  =     95   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
+Tick  =     99   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =    145   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =    149   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =    195   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =    199   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =    245   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =    249   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =    295   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =    299   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =    345   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =    349   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =    395   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =    399   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =    445   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =    449   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    495   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =    499   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =    545   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =    549   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    595   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    600   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    646   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    649   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =    695   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =    699   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =    745   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =    749   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =    795   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =    799   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =    845   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =    849   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =    895   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =    899   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =    953   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =    960   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =    960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1871   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =   1920   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   1920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2047   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   2056   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2183   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2193   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   2320   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   2330   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2457   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =   2467   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   2594   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   2604   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =   2731   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =   2741   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =   2869   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =   2880   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3791   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =   3840   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   3840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3989   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   3999   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   4148   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4159   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4308   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4320   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =   4320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4469   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =   4479   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4628   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4639   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =   4788   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =   4800   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5711   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =   5760   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   5760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5909   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   5919   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6068   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6079   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   6228   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   6240   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =   6240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6389   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =   6399   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   6548   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   6559   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =   6708   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =   6720   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =   6720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7631   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =   7680   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   7680   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7861   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   7872   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   8053   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   8064   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   8160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   8245   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   8256   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =   8437   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =   8448   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   8629   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   8640   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =   8640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9551   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =   9600   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   9600   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9826   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   9840   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  10066   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  10080   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  10080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  10306   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  10320   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  10546   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  10560   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  10560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11471   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  11520   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  11520   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11701   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  11712   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  11893   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  11904   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  12000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  12085   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  12096   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  12277   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  12288   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  12469   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  12480   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  12480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  12960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  13391   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  13440   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
+Tick  =  13440   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  13552   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
+Tick  =  13560   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  13672   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  13680   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  13792   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  13800   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  13912   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  13920   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  13920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14032   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  14040   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  14152   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  14160   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  14272   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  14280   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  14392   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  14400   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  14400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  15311   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  15360   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  15360   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  15586   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  15600   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  15826   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  15840   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  15840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  16066   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  16080   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  16306   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  16320   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =  16320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  16800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17231   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  17280   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  17280   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17506   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  17520   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  17746   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  17760   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  17760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17986   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  18000   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  18226   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  18240   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  18240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  18720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  19151   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  19200   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  19200   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  19426   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  19440   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  19666   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  19680   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  19680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  19906   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  19920   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  20146   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  20160   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  20160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  20640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  21071   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  21120   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  21120   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  21422   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  21439   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  21600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  21741   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  21759   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  22061   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  22080   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  22080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  22560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  22991   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  23040   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  23040   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  23342   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  23359   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  23520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  23661   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  23679   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  23981   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  24000   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  24000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  24480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  24911   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  24960   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  24960   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  25262   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  25279   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  25440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  25581   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  25599   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  25901   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  25920   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  25920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  26400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  26831   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  26880   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  26880   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  26960   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  26966   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  27046   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  27053   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =  27133   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =  27140   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  27220   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  27227   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  27307   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  27314   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  27360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  27394   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  27401   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  27481   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  27488   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  27568   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  27576   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  27656   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  27662   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  27742   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  27749   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =  27832   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  27840   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  27840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  28320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  28751   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  28800   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  28800   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  29102   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  29119   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  29280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  29421   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  29439   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  29741   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  29760   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =  29760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  30240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  30671   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  30720   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  30720   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  31175   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  31200   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  31200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  31655   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  31680   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  31680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  32160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  32591   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  32640   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  32640   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  33095   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  33120   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  33120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  33575   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  33600   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  33600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  34080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  34511   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  34560   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  34560   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  35015   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  35040   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  35040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  35495   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  35520   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  35520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  36000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  36431   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  36480   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  36480   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  36935   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  36960   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  36960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  37415   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  37440   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  37440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  37920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  38351   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  38400   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  38400   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  38855   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  38880   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  38880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  39335   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  39360   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  39360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  39840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  40271   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  40320   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  40320   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  40400   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  40406   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  40486   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  40493   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  40573   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  40580   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  40660   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  40667   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  40747   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  40754   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  40800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  40834   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  40841   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  40921   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  40928   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  41008   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  41016   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  41096   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  41102   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  41182   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  41189   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =  41272   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  41280   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  41280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  41760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  42191   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  42240   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  42240   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  42542   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  42559   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  42720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  42861   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  42879   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  43181   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  43200   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =  43200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  43680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  44111   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  44160   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  44160   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  44462   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  44479   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  44640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  44781   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  44799   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  45101   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  45120   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  45120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  45600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  46031   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  46080   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  46080   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  46535   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  46560   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  46560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  47015   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  47040   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  47040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  47520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  47951   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  48000   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  48000   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  48455   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  48480   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  48480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  48935   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  48960   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  48960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  49440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  49871   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  49920   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  49920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  50222   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  50239   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  50400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  50541   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  50559   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  50861   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  50880   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  50880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  51360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  51791   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  51840   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  51840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  52295   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  52320   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  52320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  52775   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  52800   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  52800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  53280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  53711   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  53760   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  53760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  54215   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  54240   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  54240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  54295   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  54300   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  54355   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  54360   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  54415   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  54420   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  54475   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  54480   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  54535   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  54540   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  54595   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  54600   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  54655   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  54660   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  54715   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  54720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  54720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  55175   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  55200   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  55200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  55655   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  55680   Type  =   144   Pitch  =    80   Velocity  =    80   Channel  =     0    
+Tick  =  55680   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  55719   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  55722   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  55761   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  55765   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =  55804   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  55808   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  55847   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  55851   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  55890   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  55894   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  55933   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  55937   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  55976   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  55980   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  56019   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  56023   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  56062   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  56066   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  56105   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  56109   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =  56155   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =  56160   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  56160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  56615   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  56640   Type  =   144   Pitch  =    80   Velocity  =    80   Channel  =     0    
+Tick  =  56640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  56714   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  56719   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  56793   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  56799   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =  56873   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  56880   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  56954   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  56959   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  57033   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  57039   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  57113   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  57120   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  57120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  57575   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  57600   Type  =   144   Pitch  =    80   Velocity  =    80   Channel  =     0    
+Tick  =  57600   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  57662   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  57667   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  57729   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  57735   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =  57797   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  57804   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  57866   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  57871   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  57933   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  57939   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  58001   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  58008   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  58075   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  58080   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  58080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  58535   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  58560   Type  =   144   Pitch  =    80   Velocity  =    80   Channel  =     0    
+Tick  =  58560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  58615   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  58620   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  58675   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  58680   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =  58735   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  58740   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  58795   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  58800   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  58855   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  58860   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  58915   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  58920   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  58975   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  58980   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  59035   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  59040   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  59040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  59495   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  59520   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  59520   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  59975   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  60000   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  60000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  60455   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  60480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  60960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
diff --git a/mtest/libmscore/midi/testGlissando.mscx b/mtest/libmscore/midi/testGlissando.mscx
new file mode 100644
index 0000000..3f99fe2
--- /dev/null
+++ b/mtest/libmscore/midi/testGlissando.mscx
@@ -0,0 +1,1083 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>3543170</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>57.0217</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>57.0217</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-02-23</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Microsoft Windows</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <KeySig>
+          <accidental>-3</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <RehearsalMark>
+          <pos x="7.53608" y="-3.6"/>
+          <text>Chromatic</text>
+          </RehearsalMark>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <Glissando id="2">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            <endSpanner id="2"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <Glissando id="3">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            <endSpanner id="3"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <Glissando id="4">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>76</pitch>
+            <tpc>6</tpc>
+            <endSpanner id="4"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <Glissando id="5">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            <endSpanner id="5"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <Glissando id="6">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>11</tpc>
+            <endSpanner id="6"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <Glissando id="7">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <Accidental>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            <endSpanner id="7"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <Glissando id="8">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>11</tpc>
+            <endSpanner id="8"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <RehearsalMark>
+          <pos x="2.04609" y="-2.8"/>
+          <text>blackkeys</text>
+          </RehearsalMark>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <Glissando id="9">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>blackkeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            <endSpanner id="9"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <Glissando id="10">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>blackkeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            <endSpanner id="10"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <Glissando id="11">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>blackkeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>76</pitch>
+            <tpc>6</tpc>
+            <endSpanner id="11"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <Glissando id="12">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>blackkeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            <endSpanner id="12"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <Glissando id="13">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>blackkeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>11</tpc>
+            <endSpanner id="13"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <Glissando id="14">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>blackkeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <Accidental>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            <endSpanner id="14"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <Glissando id="15">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>blackkeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>11</tpc>
+            <endSpanner id="15"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="15">
+        <RehearsalMark>
+          <pos x="3.04609" y="-3.6"/>
+          <text>whitekeys</text>
+          </RehearsalMark>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <Glissando id="16">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>whitekeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            <endSpanner id="16"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <Glissando id="17">·
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>whitekeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            <endSpanner id="17"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <Glissando id="18">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>whitekeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>76</pitch>
+            <tpc>6</tpc>
+            <endSpanner id="18"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="18">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <Glissando id="19">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>whitekeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            <endSpanner id="19"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="19">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <Glissando id="20">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>whitekeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>11</tpc>
+            <endSpanner id="20"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="20">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <Glissando id="21">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>whitekeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <Accidental>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            <endSpanner id="21"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="21">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <Glissando id="22">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>whitekeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>11</tpc>
+            <endSpanner id="22"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="22">
+        <RehearsalMark>
+          <pos x="-0.753913" y="-2.8"/>
+          <text>diatonic</text>
+          </RehearsalMark>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <Glissando id="23">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            <endSpanner id="23"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="23">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <Glissando id="24">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            <endSpanner id="24"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="24">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <Glissando id="25">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>76</pitch>
+            <tpc>6</tpc>
+            <endSpanner id="25"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="25">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <Glissando id="26">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            <endSpanner id="26"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="26">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <Glissando id="27">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>11</tpc>
+            <endSpanner id="27"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="27">
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <Glissando id="28">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <Accidental>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            <endSpanner id="28"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="28">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <Glissando id="29">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>11</tpc>
+            <endSpanner id="29"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="29">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <Glissando id="30">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            <endSpanner id="30"/>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="30">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <visible>0</visible>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            <play>0</play>
+            </Note>
+          <Note>
+            <visible>0</visible>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            <play>0</play>
+            </Note>
+          <Note>
+            <pitch>80</pitch>
+            <tpc>10</tpc>
+            <Glissando id="31">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <endSpanner id="31"/>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>80</pitch>
+            <tpc>10</tpc>
+            <Glissando id="32">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Accidental>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            <endSpanner id="32"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="31">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>80</pitch>
+            <tpc>10</tpc>
+            <Glissando id="33">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>68</pitch>
+            <tpc>10</tpc>
+            <endSpanner id="33"/>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>80</pitch>
+            <tpc>10</tpc>
+            <Glissando id="34">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <endSpanner id="34"/>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="32">
+        <RehearsalMark>
+          <pos x="6.68218" y="-3.4"/>
+          <text>dont play</text>
+          </RehearsalMark>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <Glissando id="35">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <play>0</play>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>11</tpc>
+            <endSpanner id="35"/>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testGlissandoAcrossStaffs-ref.txt b/mtest/libmscore/midi/testGlissandoAcrossStaffs-ref.txt
new file mode 100644
index 0000000..1b3f9f9
--- /dev/null
+++ b/mtest/libmscore/midi/testGlissandoAcrossStaffs-ref.txt
@@ -0,0 +1,108 @@
+Tick  =      0   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    227   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =    240   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     0    
+Tick  =    467   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     0    
+Tick  =    480   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     0    
+Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    935   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     0    
+Tick  =    960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1920   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =   1920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2147   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =   2160   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   2387   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =   2400   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     0    
+Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2855   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     0    
+Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3840   Type  =   144   Pitch  =    40   Velocity  =    80   Channel  =     0    
+Tick  =   3840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3859   Type  =   144   Pitch  =    40   Velocity  =     0   Channel  =     0    
+Tick  =   3861   Type  =   144   Pitch  =    41   Velocity  =    80   Channel  =     0    
+Tick  =   3880   Type  =   144   Pitch  =    41   Velocity  =     0   Channel  =     0    
+Tick  =   3883   Type  =   144   Pitch  =    43   Velocity  =    80   Channel  =     0    
+Tick  =   3902   Type  =   144   Pitch  =    43   Velocity  =     0   Channel  =     0    
+Tick  =   3905   Type  =   144   Pitch  =    45   Velocity  =    80   Channel  =     0    
+Tick  =   3924   Type  =   144   Pitch  =    45   Velocity  =     0   Channel  =     0    
+Tick  =   3927   Type  =   144   Pitch  =    47   Velocity  =    80   Channel  =     0    
+Tick  =   3946   Type  =   144   Pitch  =    47   Velocity  =     0   Channel  =     0    
+Tick  =   3949   Type  =   144   Pitch  =    48   Velocity  =    80   Channel  =     0    
+Tick  =   3968   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     0    
+Tick  =   3972   Type  =   144   Pitch  =    50   Velocity  =    80   Channel  =     0    
+Tick  =   3991   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     0    
+Tick  =   3993   Type  =   144   Pitch  =    52   Velocity  =    80   Channel  =     0    
+Tick  =   4012   Type  =   144   Pitch  =    52   Velocity  =     0   Channel  =     0    
+Tick  =   4015   Type  =   144   Pitch  =    53   Velocity  =    80   Channel  =     0    
+Tick  =   4034   Type  =   144   Pitch  =    53   Velocity  =     0   Channel  =     0    
+Tick  =   4037   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     0    
+Tick  =   4056   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     0    
+Tick  =   4059   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     0    
+Tick  =   4078   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     0    
+Tick  =   4081   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     0    
+Tick  =   4100   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     0    
+Tick  =   4104   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =   4123   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =   4125   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   4144   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   4147   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   4166   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   4169   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   4188   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   4191   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   4210   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   4213   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4232   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4236   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   4255   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4257   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4276   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4279   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4315   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4320   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =   4320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4775   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5280   Type  =   144   Pitch  =    80   Velocity  =    80   Channel  =     0    
+Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5305   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =   5307   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =   5332   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =   5335   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =   5360   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =   5364   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =   5389   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =   5391   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   5416   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   5419   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =   5444   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =   5448   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =   5473   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   5475   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   5500   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   5503   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
+Tick  =   5528   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
+Tick  =   5532   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   5557   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =   5559   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     0    
+Tick  =   5584   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     0    
+Tick  =   5587   Type  =   144   Pitch  =    54   Velocity  =    80   Channel  =     0    
+Tick  =   5612   Type  =   144   Pitch  =    54   Velocity  =     0   Channel  =     0    
+Tick  =   5616   Type  =   144   Pitch  =    51   Velocity  =    80   Channel  =     0    
+Tick  =   5641   Type  =   144   Pitch  =    51   Velocity  =     0   Channel  =     0    
+Tick  =   5643   Type  =   144   Pitch  =    49   Velocity  =    80   Channel  =     0    
+Tick  =   5668   Type  =   144   Pitch  =    49   Velocity  =     0   Channel  =     0    
+Tick  =   5671   Type  =   144   Pitch  =    46   Velocity  =    80   Channel  =     0    
+Tick  =   5696   Type  =   144   Pitch  =    46   Velocity  =     0   Channel  =     0    
+Tick  =   5700   Type  =   144   Pitch  =    44   Velocity  =    80   Channel  =     0    
+Tick  =   5725   Type  =   144   Pitch  =    44   Velocity  =     0   Channel  =     0    
+Tick  =   5727   Type  =   144   Pitch  =    42   Velocity  =    80   Channel  =     0    
+Tick  =   5755   Type  =   144   Pitch  =    42   Velocity  =     0   Channel  =     0    
+Tick  =   5760   Type  =   144   Pitch  =    40   Velocity  =    80   Channel  =     0    
+Tick  =   5760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6215   Type  =   144   Pitch  =    40   Velocity  =     0   Channel  =     0    
+Tick  =   6240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
diff --git a/mtest/libmscore/midi/testGlissandoAcrossStaffs.mscx b/mtest/libmscore/midi/testGlissandoAcrossStaffs.mscx
new file mode 100644
index 0000000..2f01516
--- /dev/null
+++ b/mtest/libmscore/midi/testGlissandoAcrossStaffs.mscx
@@ -0,0 +1,310 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>3543170</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-05-11</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Apple Macintosh</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle">test2</metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="2">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>test2</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <Glissando id="2">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <Glissando id="3">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>diatonic</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="3">
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            <endSpanner id="4"/>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>81</pitch>
+            <tpc>17</tpc>
+            <Glissando id="5">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>blackkeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="2">
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            <play>0</play>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            <endSpanner id="2"/>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            <play>0</play>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            <endSpanner id="3"/>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>40</pitch>
+            <tpc>18</tpc>
+            <Glissando id="4">
+              <text>gliss.</text>
+              <subtype>1</subtype>
+              <glissandoStyle>whitekeys</glissandoStyle>
+              <diagonal>1</diagonal>
+              <lineWidth>0.15</lineWidth>
+              <anchor>3</anchor>
+              </Glissando>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>40</pitch>
+            <tpc>18</tpc>
+            <endSpanner id="5"/>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testKantataBWV140Excerpts-ref.txt b/mtest/libmscore/midi/testKantataBWV140Excerpts-ref.txt
new file mode 100644
index 0000000..048689b
--- /dev/null
+++ b/mtest/libmscore/midi/testKantataBWV140Excerpts-ref.txt
@@ -0,0 +1,596 @@
+Tick  =      0   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =      0   Type  =   144   Pitch  =    51   Velocity  =    80   Channel  =     2    
+Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    119   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =    120   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =    239   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =    240   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =    479   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =    479   Type  =   144   Pitch  =    51   Velocity  =     0   Channel  =     2    
+Tick  =    480   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =    480   Type  =   144   Pitch  =    50   Velocity  =    80   Channel  =     2    
+Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    509   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =    510   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =    539   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =    540   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =    569   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =    570   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =    599   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =    600   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =    719   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =    720   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =    959   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     2    
+Tick  =    960   Type  =   144   Pitch  =    48   Velocity  =    80   Channel  =     2    
+Tick  =    960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1079   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   1080   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   1199   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   1200   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   1319   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   1320   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1439   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1439   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     2    
+Tick  =   1440   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   1440   Type  =   144   Pitch  =    51   Velocity  =    80   Channel  =     2    
+Tick  =   1440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1559   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   1560   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   1679   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   1680   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   1799   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   1800   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   1919   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   1919   Type  =   144   Pitch  =    51   Velocity  =     0   Channel  =     2    
+Tick  =   1920   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   1920   Type  =   144   Pitch  =    50   Velocity  =    80   Channel  =     2    
+Tick  =   1920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2159   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   2159   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     2    
+Tick  =   2160   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   2160   Type  =   144   Pitch  =    46   Velocity  =    80   Channel  =     2    
+Tick  =   2399   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   2399   Type  =   144   Pitch  =    46   Velocity  =     0   Channel  =     2    
+Tick  =   2400   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   2400   Type  =   144   Pitch  =    53   Velocity  =    80   Channel  =     2    
+Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2459   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   2460   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   2519   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   2520   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   2579   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   2580   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   2639   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   2639   Type  =   144   Pitch  =    53   Velocity  =     0   Channel  =     2    
+Tick  =   2640   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =   2640   Type  =   144   Pitch  =    41   Velocity  =    80   Channel  =     2    
+Tick  =   2759   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =   2760   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   2879   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =   2879   Type  =   144   Pitch  =    41   Velocity  =     0   Channel  =     2    
+Tick  =   2880   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   2880   Type  =   144   Pitch  =    43   Velocity  =    80   Channel  =     2    
+Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2999   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =   3000   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   3119   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   3119   Type  =   144   Pitch  =    43   Velocity  =     0   Channel  =     2    
+Tick  =   3120   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   3120   Type  =   144   Pitch  =    45   Velocity  =    80   Channel  =     2    
+Tick  =   3239   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   3240   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =   3359   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =   3359   Type  =   144   Pitch  =    45   Velocity  =     0   Channel  =     2    
+Tick  =   3360   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   3360   Type  =   144   Pitch  =    46   Velocity  =    80   Channel  =     2    
+Tick  =   3360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3599   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   3599   Type  =   144   Pitch  =    46   Velocity  =     0   Channel  =     2    
+Tick  =   3600   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   3600   Type  =   144   Pitch  =    38   Velocity  =    80   Channel  =     2    
+Tick  =   3839   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =   3839   Type  =   144   Pitch  =    38   Velocity  =     0   Channel  =     2    
+Tick  =   3840   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     0    
+Tick  =   3840   Type  =   144   Pitch  =    39   Velocity  =    80   Channel  =     2    
+Tick  =   3840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4079   Type  =   144   Pitch  =    39   Velocity  =     0   Channel  =     2    
+Tick  =   4080   Type  =   144   Pitch  =    36   Velocity  =    80   Channel  =     2    
+Tick  =   4199   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     0    
+Tick  =   4200   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     0    
+Tick  =   4319   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     0    
+Tick  =   4319   Type  =   144   Pitch  =    36   Velocity  =     0   Channel  =     2    
+Tick  =   4320   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   4320   Type  =   144   Pitch  =    41   Velocity  =    80   Channel  =     2    
+Tick  =   4320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4378   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =   4379   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     0    
+Tick  =   4437   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     0    
+Tick  =   4439   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   4497   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =   4500   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     0    
+Tick  =   4558   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     0    
+Tick  =   4559   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   4617   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =   4619   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     0    
+Tick  =   4677   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     0    
+Tick  =   4680   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     0    
+Tick  =   4739   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     0    
+Tick  =   4740   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     0    
+Tick  =   4799   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     0    
+Tick  =   4799   Type  =   144   Pitch  =    41   Velocity  =     0   Channel  =     2    
+Tick  =   4800   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   4800   Type  =   144   Pitch  =    46   Velocity  =    80   Channel  =     2    
+Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5039   Type  =   144   Pitch  =    46   Velocity  =     0   Channel  =     2    
+Tick  =   5040   Type  =   144   Pitch  =    48   Velocity  =    80   Channel  =     2    
+Tick  =   5279   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =   5279   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     2    
+Tick  =   5280   Type  =   144   Pitch  =    46   Velocity  =    80   Channel  =     2    
+Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5519   Type  =   144   Pitch  =    46   Velocity  =     0   Channel  =     2    
+Tick  =   5520   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   5520   Type  =   144   Pitch  =    44   Velocity  =    80   Channel  =     2    
+Tick  =   5759   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =   5759   Type  =   144   Pitch  =    44   Velocity  =     0   Channel  =     2    
+Tick  =   5760   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   5760   Type  =   144   Pitch  =    51   Velocity  =    80   Channel  =     2    
+Tick  =   5760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5999   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   6000   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6239   Type  =   144   Pitch  =    51   Velocity  =     0   Channel  =     2    
+Tick  =   6240   Type  =   144   Pitch  =    50   Velocity  =    80   Channel  =     2    
+Tick  =   6240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6479   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6480   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   6719   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   6719   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     2    
+Tick  =   6720   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   6720   Type  =   144   Pitch  =    48   Velocity  =    80   Channel  =     2    
+Tick  =   6720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6749   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   6750   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   6779   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   6780   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   6809   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   6810   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   6839   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   6840   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   6959   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   6960   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   7199   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   7199   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     2    
+Tick  =   7200   Type  =   144   Pitch  =    51   Velocity  =    80   Channel  =     2    
+Tick  =   7200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7440   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =   7679   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =   7679   Type  =   144   Pitch  =    51   Velocity  =     0   Channel  =     2    
+Tick  =   7680   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   7680   Type  =   144   Pitch  =    53   Velocity  =    80   Channel  =     2    
+Tick  =   7680   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7919   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   7920   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   8159   Type  =   144   Pitch  =    53   Velocity  =     0   Channel  =     2    
+Tick  =   8160   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     2    
+Tick  =   8160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   8399   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   8400   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   8639   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   8639   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     2    
+Tick  =   8640   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   8640   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     2    
+Tick  =   8640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   8669   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   8670   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   8699   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   8700   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   8729   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   8730   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   8759   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   8760   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   8879   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   8880   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   9119   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   9119   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     2    
+Tick  =   9120   Type  =   144   Pitch  =    53   Velocity  =    80   Channel  =     2    
+Tick  =   9120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9360   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =   9599   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =   9599   Type  =   144   Pitch  =    53   Velocity  =     0   Channel  =     2    
+Tick  =   9600   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =   9600   Type  =   144   Pitch  =    51   Velocity  =    80   Channel  =     2    
+Tick  =   9600   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9719   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =   9720   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   9839   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   9840   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  10079   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  10079   Type  =   144   Pitch  =    51   Velocity  =     0   Channel  =     2    
+Tick  =  10080   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  10080   Type  =   144   Pitch  =    50   Velocity  =    80   Channel  =     2    
+Tick  =  10080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  10109   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  10110   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  10139   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  10140   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  10169   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  10170   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  10199   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  10200   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  10319   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  10320   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  10559   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     2    
+Tick  =  10560   Type  =   144   Pitch  =    48   Velocity  =    80   Channel  =     2    
+Tick  =  10560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  10679   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  10680   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  10799   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  10800   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  10919   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  10920   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  11039   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  11039   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     2    
+Tick  =  11040   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  11040   Type  =   144   Pitch  =    51   Velocity  =    80   Channel  =     2    
+Tick  =  11040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11159   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  11160   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  11279   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  11280   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  11399   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  11400   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  11519   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  11519   Type  =   144   Pitch  =    51   Velocity  =     0   Channel  =     2    
+Tick  =  11520   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  11520   Type  =   144   Pitch  =    50   Velocity  =    80   Channel  =     2    
+Tick  =  11520   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11759   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  11759   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     2    
+Tick  =  11760   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  11760   Type  =   144   Pitch  =    46   Velocity  =    80   Channel  =     2    
+Tick  =  11999   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  11999   Type  =   144   Pitch  =    46   Velocity  =     0   Channel  =     2    
+Tick  =  12000   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  12000   Type  =   144   Pitch  =    53   Velocity  =    80   Channel  =     2    
+Tick  =  12000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  12059   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  12060   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  12119   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  12120   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  12179   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  12180   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  12239   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  12239   Type  =   144   Pitch  =    53   Velocity  =     0   Channel  =     2    
+Tick  =  12240   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  12240   Type  =   144   Pitch  =    41   Velocity  =    80   Channel  =     2    
+Tick  =  12359   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  12360   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =  12479   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =  12479   Type  =   144   Pitch  =    41   Velocity  =     0   Channel  =     2    
+Tick  =  12480   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =  12480   Type  =   144   Pitch  =    43   Velocity  =    80   Channel  =     2    
+Tick  =  12480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  12599   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =  12600   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  12719   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  12719   Type  =   144   Pitch  =    43   Velocity  =     0   Channel  =     2    
+Tick  =  12720   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  12720   Type  =   144   Pitch  =    45   Velocity  =    80   Channel  =     2    
+Tick  =  12839   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  12840   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  12959   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  12959   Type  =   144   Pitch  =    45   Velocity  =     0   Channel  =     2    
+Tick  =  12960   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  12960   Type  =   144   Pitch  =    46   Velocity  =    80   Channel  =     2    
+Tick  =  12960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  13199   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  13199   Type  =   144   Pitch  =    46   Velocity  =     0   Channel  =     2    
+Tick  =  13200   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =  13200   Type  =   144   Pitch  =    38   Velocity  =    80   Channel  =     2    
+Tick  =  13439   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =  13439   Type  =   144   Pitch  =    38   Velocity  =     0   Channel  =     2    
+Tick  =  13440   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  13440   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     1    
+Tick  =  13440   Type  =   144   Pitch  =    51   Velocity  =    80   Channel  =     2    
+Tick  =  13440   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  13679   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  13679   Type  =   144   Pitch  =    51   Velocity  =     0   Channel  =     2    
+Tick  =  13680   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  13680   Type  =   144   Pitch  =    50   Velocity  =    80   Channel  =     2    
+Tick  =  13919   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     2    
+Tick  =  13920   Type  =   144   Pitch  =    43   Velocity  =    80   Channel  =     2    
+Tick  =  13920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14159   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  14159   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     1    
+Tick  =  14159   Type  =   144   Pitch  =    43   Velocity  =     0   Channel  =     2    
+Tick  =  14160   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  14160   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  14160   Type  =   144   Pitch  =    45   Velocity  =    80   Channel  =     2    
+Tick  =  14399   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  14399   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  14399   Type  =   144   Pitch  =    45   Velocity  =     0   Channel  =     2    
+Tick  =  14400   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  14400   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  14400   Type  =   144   Pitch  =    46   Velocity  =    80   Channel  =     2    
+Tick  =  14400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14459   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  14460   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  14519   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  14519   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  14520   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  14520   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  14579   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  14580   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  14639   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  14639   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  14639   Type  =   144   Pitch  =    46   Velocity  =     0   Channel  =     2    
+Tick  =  14640   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  14640   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  14640   Type  =   144   Pitch  =    38   Velocity  =    80   Channel  =     2    
+Tick  =  14699   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  14700   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  14759   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  14760   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     1    
+Tick  =  14819   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     1    
+Tick  =  14820   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     1    
+Tick  =  14879   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  14879   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     1    
+Tick  =  14879   Type  =   144   Pitch  =    38   Velocity  =     0   Channel  =     2    
+Tick  =  14880   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  14880   Type  =   144   Pitch  =    39   Velocity  =    80   Channel  =     2    
+Tick  =  14880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14999   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  15000   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     1    
+Tick  =  15119   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     1    
+Tick  =  15119   Type  =   144   Pitch  =    39   Velocity  =     0   Channel  =     2    
+Tick  =  15120   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  15120   Type  =   144   Pitch  =    41   Velocity  =    80   Channel  =     2    
+Tick  =  15359   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  15359   Type  =   144   Pitch  =    41   Velocity  =     0   Channel  =     2    
+Tick  =  15360   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  15360   Type  =   144   Pitch  =    51   Velocity  =    80   Channel  =     2    
+Tick  =  15360   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  15479   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  15480   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  15599   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  15600   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  15839   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  15839   Type  =   144   Pitch  =    51   Velocity  =     0   Channel  =     2    
+Tick  =  15840   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  15840   Type  =   144   Pitch  =    50   Velocity  =    80   Channel  =     2    
+Tick  =  15840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  15869   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  15870   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  15899   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  15900   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  15929   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  15930   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  15959   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  15960   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  16079   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  16080   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  16319   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     2    
+Tick  =  16320   Type  =   144   Pitch  =    48   Velocity  =    80   Channel  =     2    
+Tick  =  16320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  16439   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  16440   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  16559   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  16560   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  16679   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  16680   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  16799   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  16799   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     2    
+Tick  =  16800   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  16800   Type  =   144   Pitch  =    51   Velocity  =    80   Channel  =     2    
+Tick  =  16800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  16919   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  16920   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  17039   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  17040   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  17159   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  17160   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  17279   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  17279   Type  =   144   Pitch  =    51   Velocity  =     0   Channel  =     2    
+Tick  =  17280   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  17280   Type  =   144   Pitch  =    50   Velocity  =    80   Channel  =     2    
+Tick  =  17280   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17519   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  17519   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     2    
+Tick  =  17520   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  17520   Type  =   144   Pitch  =    46   Velocity  =    80   Channel  =     2    
+Tick  =  17759   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  17759   Type  =   144   Pitch  =    46   Velocity  =     0   Channel  =     2    
+Tick  =  17760   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  17760   Type  =   144   Pitch  =    53   Velocity  =    80   Channel  =     2    
+Tick  =  17760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17819   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  17820   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  17879   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  17880   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  17939   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  17940   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  17999   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  17999   Type  =   144   Pitch  =    53   Velocity  =     0   Channel  =     2    
+Tick  =  18000   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  18000   Type  =   144   Pitch  =    41   Velocity  =    80   Channel  =     2    
+Tick  =  18119   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  18120   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =  18239   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =  18239   Type  =   144   Pitch  =    41   Velocity  =     0   Channel  =     2    
+Tick  =  18240   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =  18240   Type  =   144   Pitch  =    43   Velocity  =    80   Channel  =     2    
+Tick  =  18240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  18359   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =  18360   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  18479   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  18479   Type  =   144   Pitch  =    43   Velocity  =     0   Channel  =     2    
+Tick  =  18480   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  18480   Type  =   144   Pitch  =    45   Velocity  =    80   Channel  =     2    
+Tick  =  18599   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  18600   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  18719   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  18719   Type  =   144   Pitch  =    45   Velocity  =     0   Channel  =     2    
+Tick  =  18720   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  18720   Type  =   144   Pitch  =    46   Velocity  =    80   Channel  =     2    
+Tick  =  18720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  18959   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  18959   Type  =   144   Pitch  =    46   Velocity  =     0   Channel  =     2    
+Tick  =  18960   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =  18960   Type  =   144   Pitch  =    38   Velocity  =    80   Channel  =     2    
+Tick  =  19199   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =  19199   Type  =   144   Pitch  =    38   Velocity  =     0   Channel  =     2    
+Tick  =  19200   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  19200   Type  =   144   Pitch  =    45   Velocity  =    80   Channel  =     2    
+Tick  =  19200   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  19319   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  19320   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  19439   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  19440   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  19559   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  19560   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  19679   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  19679   Type  =   144   Pitch  =    45   Velocity  =     0   Channel  =     2    
+Tick  =  19680   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  19680   Type  =   144   Pitch  =    48   Velocity  =    80   Channel  =     2    
+Tick  =  19680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  19799   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  19800   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  19919   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  19920   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =  20039   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =  20040   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  20159   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  20159   Type  =   144   Pitch  =    48   Velocity  =     0   Channel  =     2    
+Tick  =  20160   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  20160   Type  =   144   Pitch  =    46   Velocity  =    80   Channel  =     2    
+Tick  =  20160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  20399   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  20399   Type  =   144   Pitch  =    46   Velocity  =     0   Channel  =     2    
+Tick  =  20400   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =  20400   Type  =   144   Pitch  =    43   Velocity  =    80   Channel  =     2    
+Tick  =  20639   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =  20639   Type  =   144   Pitch  =    43   Velocity  =     0   Channel  =     2    
+Tick  =  20640   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  20640   Type  =   144   Pitch  =    50   Velocity  =    80   Channel  =     2    
+Tick  =  20640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  20699   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  20700   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =  20759   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =  20760   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  20819   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  20820   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =  20879   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =  20879   Type  =   144   Pitch  =    50   Velocity  =     0   Channel  =     2    
+Tick  =  20880   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     0    
+Tick  =  20880   Type  =   144   Pitch  =    38   Velocity  =    80   Channel  =     2    
+Tick  =  20999   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     0    
+Tick  =  21000   Type  =   144   Pitch  =    55   Velocity  =    80   Channel  =     0    
+Tick  =  21119   Type  =   144   Pitch  =    55   Velocity  =     0   Channel  =     0    
+Tick  =  21119   Type  =   144   Pitch  =    38   Velocity  =     0   Channel  =     2    
+Tick  =  21120   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  21120   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =  21120   Type  =   144   Pitch  =    53   Velocity  =    80   Channel  =     2    
+Tick  =  21120   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  21149   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  21150   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  21179   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  21180   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  21209   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  21210   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  21239   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  21240   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  21359   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  21360   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  21599   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  21599   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =  21599   Type  =   144   Pitch  =    53   Velocity  =     0   Channel  =     2    
+Tick  =  21600   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  21600   Type  =   144   Pitch  =    51   Velocity  =    80   Channel  =     2    
+Tick  =  21600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  21840   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  22079   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  22079   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  22079   Type  =   144   Pitch  =    51   Velocity  =     0   Channel  =     2    
+Tick  =  22080   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  22080   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     1    
+Tick  =  22080   Type  =   144   Pitch  =    53   Velocity  =    80   Channel  =     2    
+Tick  =  22080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  22319   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  22319   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     1    
+Tick  =  22320   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  22320   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =  22559   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =  22559   Type  =   144   Pitch  =    53   Velocity  =     0   Channel  =     2    
+Tick  =  22560   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     1    
+Tick  =  22560   Type  =   144   Pitch  =    46   Velocity  =    80   Channel  =     2    
+Tick  =  22560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  22799   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  22800   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =  23039   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  23039   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     1    
+Tick  =  23039   Type  =   144   Pitch  =    46   Velocity  =     0   Channel  =     2    
+Tick  =  23040   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  23040   Type  =   144   Pitch  =    44   Velocity  =    80   Channel  =     2    
+Tick  =  23040   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  23159   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  23160   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  23279   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  23279   Type  =   144   Pitch  =    44   Velocity  =     0   Channel  =     2    
+Tick  =  23280   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  23280   Type  =   144   Pitch  =    43   Velocity  =    80   Channel  =     2    
+Tick  =  23399   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  23400   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  23519   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  23519   Type  =   144   Pitch  =    43   Velocity  =     0   Channel  =     2    
+Tick  =  23520   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  23520   Type  =   144   Pitch  =    41   Velocity  =    80   Channel  =     2    
+Tick  =  23520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  23639   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  23640   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  23759   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  23759   Type  =   144   Pitch  =    41   Velocity  =     0   Channel  =     2    
+Tick  =  23760   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  23760   Type  =   144   Pitch  =    39   Velocity  =    80   Channel  =     2    
+Tick  =  23879   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  23880   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  23999   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  23999   Type  =   144   Pitch  =    39   Velocity  =     0   Channel  =     2    
+Tick  =  24000   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  24000   Type  =   144   Pitch  =    38   Velocity  =    80   Channel  =     2    
+Tick  =  24000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  24119   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  24120   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  24239   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  24240   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  24479   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  24479   Type  =   144   Pitch  =    38   Velocity  =     0   Channel  =     2    
+Tick  =  24480   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  24480   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  24480   Type  =   144   Pitch  =    41   Velocity  =    80   Channel  =     2    
+Tick  =  24480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  24509   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  24509   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  24510   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  24510   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  24539   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  24539   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  24540   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  24540   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  24569   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  24569   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  24570   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  24570   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  24599   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  24599   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  24600   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  24719   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  24720   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  24959   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  24959   Type  =   144   Pitch  =    41   Velocity  =     0   Channel  =     2    
+Tick  =  24960   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  24960   Type  =   144   Pitch  =    51   Velocity  =    80   Channel  =     2    
+Tick  =  24960   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  25440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  25920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  26400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  26879   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  26879   Type  =   144   Pitch  =    51   Velocity  =     0   Channel  =     2    
diff --git a/mtest/libmscore/midi/testKantataBWV140Excerpts.mscx b/mtest/libmscore/midi/testKantataBWV140Excerpts.mscx
new file mode 100644
index 0000000..f0c7eaa
--- /dev/null
+++ b/mtest/libmscore/midi/testKantataBWV140Excerpts.mscx
@@ -0,0 +1,2344 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>3543170</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">JS Bach</metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-04-08</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Apple Macintosh</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle">Wachet auf ruft uns die Stimme</metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      <Page>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>English Horn</trackName>
+      <Instrument>
+        <longName>English Horn</longName>
+        <shortName>E. Hn.</shortName>
+        <trackName>English Horn</trackName>
+        <minPitchP>52</minPitchP>
+        <maxPitchP>83</maxPitchP>
+        <minPitchA>52</minPitchA>
+        <maxPitchA>81</maxPitchA>
+        <transposeDiatonic>-4</transposeDiatonic>
+        <transposeChromatic>-7</transposeChromatic>
+        <instrumentId>wind.reed.english-horn</instrumentId>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="69"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="2">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Oboe</trackName>
+      <Instrument>
+        <longName>Oboe</longName>
+        <shortName>Ob.</shortName>
+        <trackName>Oboe</trackName>
+        <minPitchP>58</minPitchP>
+        <maxPitchP>93</maxPitchP>
+        <minPitchA>58</minPitchA>
+        <maxPitchA>87</maxPitchA>
+        <instrumentId>wind.reed.oboe</instrumentId>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="68"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="3">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Bassoon</trackName>
+      <Instrument>
+        <longName>Bassoon</longName>
+        <shortName>Bsn.</shortName>
+        <trackName>Bassoon</trackName>
+        <minPitchP>34</minPitchP>
+        <maxPitchP>76</maxPitchP>
+        <minPitchA>34</minPitchA>
+        <maxPitchA>69</maxPitchA>
+        <instrumentId>wind.reed.bassoon</instrumentId>
+        <clef>F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="70"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>Wachet auf ruft uns die Stimme</text>
+          </Text>
+        <Text>
+          <style>Subtitle</style>
+          <text>Kantata BWV 140</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>JS Bach</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <KeySig>
+          <accidental>-2</accidental>
+          </KeySig>
+        <TimeSig>
+          <subtype>1</subtype>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Tempo>
+          <tempo>1</tempo>
+          <followText>1</followText>
+          <text><sym>unicodeNoteQuarterUp</sym> = 60</text>
+          </Tempo>
+        <Slur id="2">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="2"/>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="stop" id="2"/>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Tie id="3">
+              </Tie>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <endSpanner id="3"/>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Slur id="4">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="4"/>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="4"/>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <tpc2>14</tpc2>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <tpc2>14</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Slur id="5">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="5"/>
+          <Note>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="stop" id="5"/>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Slur id="6">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Slur type="start" id="6"/>
+          <Note>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Slur type="stop" id="6"/>
+          <Note>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Slur id="7">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="start" id="7"/>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Slur type="stop" id="7"/>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Slur id="8">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Slur type="start" id="8"/>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="stop" id="8"/>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Slur id="9">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="start" id="9"/>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Slur type="stop" id="9"/>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Slur id="10">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Slur type="start" id="10"/>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="stop" id="10"/>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Tie id="11">
+              </Tie>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <endSpanner id="11"/>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <tpc2>14</tpc2>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <tpc2>14</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Slur id="12">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="12"/>
+          <Note>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="stop" id="12"/>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <Slur id="13">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="start" id="13"/>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Slur id="14">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="14"/>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <tpc2>14</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <tpc2>14</tpc2>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="9">
+        <Slur id="15">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="15"/>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="15"/>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Tie id="16">
+              </Tie>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <endSpanner id="16"/>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <tpc2>14</tpc2>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <tpc2>14</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Slur id="17">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="17"/>
+          <Note>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="stop" id="17"/>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            <tpc2>21</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            <tpc2>21</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            <tpc2>19</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <Slur id="18">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Slur type="start" id="18"/>
+          <Note>
+            <pitch>68</pitch>
+            <tpc>10</tpc>
+            <tpc2>11</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="stop" id="18"/>
+          <Note>
+            <pitch>68</pitch>
+            <tpc>10</tpc>
+            <tpc2>11</tpc2>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            <tpc2>14</tpc2>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Slur id="19">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="19"/>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>9</tpc>
+            <tpc2>10</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <tpc2>15</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>68</pitch>
+            <tpc>10</tpc>
+            <tpc2>11</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <tpc2>14</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="19"/>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <tpc2>14</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Tie id="20">
+              </Tie>
+            <pitch>68</pitch>
+            <tpc>10</tpc>
+            <tpc2>11</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <endSpanner id="20"/>
+            <pitch>68</pitch>
+            <tpc>10</tpc>
+            <tpc2>11</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>68</pitch>
+            <tpc>10</tpc>
+            <tpc2>11</tpc2>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="2">
+      <Measure number="1">
+        <KeySig>
+          <accidental>-3</accidental>
+          </KeySig>
+        <TimeSig>
+          <subtype>1</subtype>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="3">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="4">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="5">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="6">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="7">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="8">
+        <Chord>
+          <dots>1</dots>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>75</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        <Slur id="21">
+          <track>4</track>
+          </Slur>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Slur type="start" id="21"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="stop" id="21"/>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="10">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="11">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="12">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Slur id="22">
+          <track>4</track>
+          </Slur>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="start" id="22"/>
+          <Note>
+            <pitch>68</pitch>
+            <tpc>10</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="stop" id="22"/>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="14">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="3">
+      <Measure number="1">
+        <KeySig>
+          <accidental>-3</accidental>
+          </KeySig>
+        <TimeSig>
+          <subtype>1</subtype>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>51</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>51</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>46</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>53</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>41</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>43</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>45</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>46</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>38</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>39</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>36</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>41</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>46</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>46</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>44</pitch>
+            <tpc>10</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>51</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>51</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>53</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>53</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>51</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>51</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>46</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>53</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>41</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>43</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>45</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>46</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>38</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>51</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>43</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>45</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>46</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>38</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>39</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>41</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>51</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>51</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>46</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>53</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>41</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>43</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>45</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>46</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>38</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>45</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>46</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>43</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>50</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>38</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>53</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>51</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>53</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>46</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>44</pitch>
+            <tpc>10</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>43</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>41</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>39</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>38</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>41</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>whole</durationType>
+          <Note>
+            <pitch>51</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testMidiPort-ref.mid b/mtest/libmscore/midi/testMidiPort-ref.mid
new file mode 100644
index 0000000..13bc972
Binary files /dev/null and b/mtest/libmscore/midi/testMidiPort-ref.mid differ
diff --git a/mtest/libmscore/midi/testMidiPort.mscx b/mtest/libmscore/midi/testMidiPort.mscx
new file mode 100644
index 0000000..4dccbde
--- /dev/null
+++ b/mtest/libmscore/midi/testMidiPort.mscx
@@ -0,0 +1,36710 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>8ff1ded</programRevision>
+  <Score>
+    <layoutMode>line</layoutMode>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-06-12</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Linux</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="2">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="3">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="4">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="5">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="6">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="7">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="8">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="9">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="10">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="11">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="12">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="13">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="14">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="15">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="16">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="17">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="18">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="19">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="20">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="21">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="22">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="23">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="24">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="25">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="26">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="27">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="28">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="29">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="30">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="31">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="32">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="33">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="34">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="35">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="36">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="37">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="38">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="39">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="40">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="41">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="42">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="43">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="44">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="45">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="46">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="47">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="48">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="49">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="50">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="51">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="52">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="53">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="54">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="55">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="56">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="57">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="58">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="59">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="60">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="61">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="62">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="63">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="64">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="65">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="66">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="67">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="68">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="69">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="70">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="71">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="72">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="73">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="74">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="75">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="76">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="77">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="78">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="79">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="80">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="81">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="82">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="83">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="84">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="85">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="86">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="87">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="88">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="89">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="90">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="91">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="92">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="93">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="94">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="95">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="96">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="97">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="98">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="99">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="100">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="101">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="102">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="103">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="104">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="105">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="106">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="107">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="108">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="109">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="110">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="111">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="112">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="113">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="114">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="115">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="116">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="117">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="118">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="119">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="120">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="121">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="122">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="123">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="124">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="125">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="126">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="127">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="128">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="129">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="130">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="131">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="132">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="133">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="134">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="135">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="136">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="137">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="138">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="139">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="140">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="141">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="142">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="143">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="144">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="145">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="146">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="147">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="148">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="149">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="2">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="3">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="4">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="5">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="6">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="7">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="8">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="9">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="10">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="11">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="12">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="13">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="14">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="15">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="16">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="17">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="18">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="19">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="20">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="21">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="22">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="23">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="24">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="25">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="26">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="27">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="28">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="29">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="30">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="31">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="32">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="33">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="34">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="35">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="36">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="37">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="38">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="39">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="40">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="41">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="42">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="43">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="44">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="45">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="46">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="47">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="48">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="49">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="50">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="51">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="52">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="53">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="54">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="55">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="56">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="57">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="58">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="59">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="60">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="61">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="62">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="63">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="64">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="65">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="66">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="67">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="68">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="69">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="70">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="71">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="72">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="73">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="74">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="75">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="76">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="77">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="78">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="79">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="80">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="81">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="82">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="83">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="84">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="85">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="86">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="87">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="88">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="89">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="90">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="91">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="92">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="93">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="94">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="95">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="96">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="97">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="98">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="99">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="100">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="101">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="102">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="103">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="104">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="105">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="106">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="107">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="108">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="109">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="110">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="111">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="112">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="113">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="114">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="115">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="116">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="117">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="118">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="119">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="120">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="121">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="122">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="123">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="124">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="125">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="126">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="127">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="128">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="129">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="130">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="131">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="132">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="133">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="134">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="135">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="136">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="137">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="138">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="139">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="140">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="141">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="142">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="143">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="144">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="145">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="146">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="147">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="148">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="149">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testMordents-ref.txt b/mtest/libmscore/midi/testMordents-ref.txt
index 330e76a..1691690 100644
--- a/mtest/libmscore/midi/testMordents-ref.txt
+++ b/mtest/libmscore/midi/testMordents-ref.txt
@@ -1,414 +1,414 @@
 Tick  =      0   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
 Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =    112   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
-Tick  =    120   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
-Tick  =    232   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
-Tick  =    240   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =     54   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =     59   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =    113   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =    120   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
 Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =    922   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =    916   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
 Tick  =    960   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
 Tick  =    960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   1072   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
-Tick  =   1080   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
-Tick  =   1192   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
-Tick  =   1200   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
+Tick  =   1014   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
+Tick  =   1019   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   1073   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   1080   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
 Tick  =   1440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   1882   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
+Tick  =   1876   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
 Tick  =   1920   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
 Tick  =   1920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   2032   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
-Tick  =   2040   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
-Tick  =   2152   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
-Tick  =   2160   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   1974   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   1979   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   2033   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   2040   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
 Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   2842   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   2836   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
 Tick  =   2880   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
 Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   2992   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
-Tick  =   3000   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
-Tick  =   3112   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
-Tick  =   3120   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   2934   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   2939   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   2993   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   3000   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
 Tick  =   3360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   3802   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   3796   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
 Tick  =   3840   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
 Tick  =   3840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   3952   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
-Tick  =   3960   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
-Tick  =   4072   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
-Tick  =   4080   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =   3894   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   3899   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   3953   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   3960   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
 Tick  =   4320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   4762   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   4756   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
 Tick  =   4800   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
 Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   4912   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
-Tick  =   4920   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
-Tick  =   5032   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
-Tick  =   5040   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   4854   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   4859   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4913   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4920   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
 Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   5722   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   5716   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
 Tick  =   5760   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
 Tick  =   5760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   5872   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
-Tick  =   5880   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
-Tick  =   5992   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
-Tick  =   6000   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   5814   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   5819   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5873   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5880   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
 Tick  =   6240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   6682   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   6676   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
 Tick  =   6720   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
 Tick  =   6720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   6832   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
-Tick  =   6840   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
-Tick  =   6952   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
-Tick  =   6960   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6774   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6779   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   6833   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   6840   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
 Tick  =   7200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   7642   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   7636   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
 Tick  =   7680   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
 Tick  =   7680   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   7792   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
-Tick  =   7800   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
-Tick  =   7912   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
-Tick  =   7920   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   7734   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   7739   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   7793   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   7800   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
 Tick  =   8160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   8602   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   8596   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
 Tick  =   8640   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
 Tick  =   8640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   8752   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
-Tick  =   8760   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
-Tick  =   8872   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
-Tick  =   8880   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =   8694   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =   8699   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   8753   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   8760   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
 Tick  =   9120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   9562   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =   9556   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
 Tick  =   9600   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
 Tick  =   9600   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   9712   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
-Tick  =   9720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
-Tick  =   9832   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
-Tick  =   9840   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =   9654   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =   9659   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   9713   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   9720   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
 Tick  =  10080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  10522   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  10516   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
 Tick  =  10560   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
 Tick  =  10560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  10672   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
-Tick  =  10680   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
-Tick  =  10792   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
-Tick  =  10800   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =  10614   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  10619   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  10673   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  10680   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
 Tick  =  11040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  11482   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  11476   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
 Tick  =  11520   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
 Tick  =  11520   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  11632   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
-Tick  =  11640   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
-Tick  =  11752   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
-Tick  =  11760   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  11574   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  11579   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  11633   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  11640   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
 Tick  =  12000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  12442   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  12436   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
 Tick  =  12480   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
 Tick  =  12480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  12592   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
-Tick  =  12600   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
-Tick  =  12712   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
-Tick  =  12720   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  12534   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  12539   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  12593   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  12600   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
 Tick  =  12960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  13402   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  13396   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
 Tick  =  13440   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
 Tick  =  13440   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  13552   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
-Tick  =  13560   Type  =   144   Pitch  =    81   Velocity  =    80   Channel  =     0    
-Tick  =  13672   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
-Tick  =  13680   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
+Tick  =  13494   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
+Tick  =  13499   Type  =   144   Pitch  =    81   Velocity  =    80   Channel  =     0    
+Tick  =  13553   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  13560   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
 Tick  =  13920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  14362   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
+Tick  =  14356   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
 Tick  =  14400   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
 Tick  =  14400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  14512   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
-Tick  =  14520   Type  =   144   Pitch  =    81   Velocity  =    80   Channel  =     0    
-Tick  =  14632   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
-Tick  =  14640   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
+Tick  =  14454   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =  14459   Type  =   144   Pitch  =    81   Velocity  =    80   Channel  =     0    
+Tick  =  14513   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  14520   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
 Tick  =  14880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  15322   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =  15316   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
 Tick  =  15360   Type  =   144   Pitch  =    84   Velocity  =    80   Channel  =     0    
 Tick  =  15360   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  15585   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
-Tick  =  15600   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
-Tick  =  15825   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
-Tick  =  15840   Type  =   144   Pitch  =    84   Velocity  =    80   Channel  =     0    
+Tick  =  15414   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
+Tick  =  15419   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
+Tick  =  15473   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =  15479   Type  =   144   Pitch  =    84   Velocity  =    80   Channel  =     0    
 Tick  =  15840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =  16320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =  16800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  17206   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
+Tick  =  17186   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
 Tick  =  17280   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
 Tick  =  17280   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  17392   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
-Tick  =  17400   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
-Tick  =  17512   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
-Tick  =  17520   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  17334   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  17339   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
+Tick  =  17393   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
+Tick  =  17400   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
 Tick  =  17760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  18202   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  18196   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
 Tick  =  18240   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
 Tick  =  18240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  18352   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
-Tick  =  18360   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
-Tick  =  18472   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
-Tick  =  18480   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
+Tick  =  18294   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
+Tick  =  18299   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  18353   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  18360   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
 Tick  =  18720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  19162   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
+Tick  =  19156   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
 Tick  =  19200   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
 Tick  =  19200   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  19312   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
-Tick  =  19320   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
-Tick  =  19432   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
-Tick  =  19440   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =  19254   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =  19259   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  19313   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  19320   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
 Tick  =  19680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  20122   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =  20116   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
 Tick  =  20160   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
 Tick  =  20160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  20272   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
-Tick  =  20280   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
-Tick  =  20392   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
-Tick  =  20400   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  20214   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  20219   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  20273   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  20280   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
 Tick  =  20640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  21082   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  21076   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
 Tick  =  21120   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
 Tick  =  21120   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  21232   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
-Tick  =  21240   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
-Tick  =  21352   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
-Tick  =  21360   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  21174   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  21179   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  21233   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  21240   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
 Tick  =  21600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  22042   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  22036   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
 Tick  =  22080   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
 Tick  =  22080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  22192   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
-Tick  =  22200   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
-Tick  =  22312   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
-Tick  =  22320   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  22134   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  22139   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  22193   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  22200   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
 Tick  =  22560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  23002   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  22996   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
 Tick  =  23040   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
 Tick  =  23040   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  23152   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
-Tick  =  23160   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
-Tick  =  23272   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
-Tick  =  23280   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  23094   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  23099   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  23153   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  23160   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
 Tick  =  23520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  23962   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  23956   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
 Tick  =  24000   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
 Tick  =  24000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  24112   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
-Tick  =  24120   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
-Tick  =  24232   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
-Tick  =  24240   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  24054   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  24059   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  24113   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  24120   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
 Tick  =  24480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  24922   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  24916   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
 Tick  =  24960   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
 Tick  =  24960   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  25072   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
-Tick  =  25080   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
-Tick  =  25192   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
-Tick  =  25200   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  25014   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  25019   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  25073   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  25080   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
 Tick  =  25440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  25882   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  25876   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
 Tick  =  25920   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
 Tick  =  25920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  26032   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
-Tick  =  26040   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
-Tick  =  26152   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
-Tick  =  26160   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  25974   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  25979   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  26033   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  26040   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
 Tick  =  26400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  26842   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  26836   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
 Tick  =  26880   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
 Tick  =  26880   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  26992   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
-Tick  =  27000   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
-Tick  =  27112   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
-Tick  =  27120   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  26934   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  26939   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  26993   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  27000   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
 Tick  =  27360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  27802   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  27796   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
 Tick  =  27840   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
 Tick  =  27840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  27952   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
-Tick  =  27960   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
-Tick  =  28072   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
-Tick  =  28080   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =  27894   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  27899   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  27953   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  27960   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
 Tick  =  28320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  28762   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  28756   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
 Tick  =  28800   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
 Tick  =  28800   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  28912   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
-Tick  =  28920   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
-Tick  =  29032   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
-Tick  =  29040   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  28854   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  28859   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  28913   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  28920   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
 Tick  =  29280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  29722   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  29716   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
 Tick  =  29760   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
 Tick  =  29760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  29872   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
-Tick  =  29880   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
-Tick  =  29992   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
-Tick  =  30000   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  29814   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  29819   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  29873   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  29880   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
 Tick  =  30240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  30682   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  30676   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
 Tick  =  30720   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
 Tick  =  30720   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  30832   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
-Tick  =  30840   Type  =   144   Pitch  =    80   Velocity  =    80   Channel  =     0    
-Tick  =  30952   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
-Tick  =  30960   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
+Tick  =  30774   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
+Tick  =  30779   Type  =   144   Pitch  =    80   Velocity  =    80   Channel  =     0    
+Tick  =  30833   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  30840   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
 Tick  =  31200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  31642   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
+Tick  =  31636   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
 Tick  =  31680   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
 Tick  =  31680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  31792   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
-Tick  =  31800   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
-Tick  =  31912   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
-Tick  =  31920   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
+Tick  =  31734   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =  31739   Type  =   144   Pitch  =    80   Velocity  =    80   Channel  =     0    
+Tick  =  31793   Type  =   144   Pitch  =    80   Velocity  =     0   Channel  =     0    
+Tick  =  31800   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
 Tick  =  32160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  32602   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =  32596   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
 Tick  =  32640   Type  =   144   Pitch  =    84   Velocity  =    80   Channel  =     0    
 Tick  =  32640   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  32865   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
-Tick  =  32880   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
-Tick  =  33105   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
-Tick  =  33120   Type  =   144   Pitch  =    84   Velocity  =    80   Channel  =     0    
+Tick  =  32694   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
+Tick  =  32699   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
+Tick  =  32753   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
+Tick  =  32759   Type  =   144   Pitch  =    84   Velocity  =    80   Channel  =     0    
 Tick  =  33120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =  33600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =  34080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  34486   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
+Tick  =  34466   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
 Tick  =  34560   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
 Tick  =  34560   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  34672   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
-Tick  =  34680   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
-Tick  =  34792   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
-Tick  =  34800   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =  34614   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  34619   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  34673   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  34680   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
 Tick  =  35040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  35482   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =  35476   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
 Tick  =  35520   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
 Tick  =  35520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  35632   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
-Tick  =  35640   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
-Tick  =  35752   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
-Tick  =  35760   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
+Tick  =  35574   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
+Tick  =  35579   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  35633   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  35640   Type  =   144   Pitch  =    61   Velocity  =    80   Channel  =     0    
 Tick  =  36000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  36442   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
+Tick  =  36436   Type  =   144   Pitch  =    61   Velocity  =     0   Channel  =     0    
 Tick  =  36480   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
 Tick  =  36480   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  36592   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
-Tick  =  36600   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
-Tick  =  36712   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
-Tick  =  36720   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =  36534   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =  36539   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  36593   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  36600   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
 Tick  =  36960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  37402   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =  37396   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
 Tick  =  37440   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
 Tick  =  37440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  37552   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
-Tick  =  37560   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
-Tick  =  37672   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
-Tick  =  37680   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  37494   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  37499   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  37553   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  37560   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
 Tick  =  37920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  38362   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  38356   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
 Tick  =  38400   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
 Tick  =  38400   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  38512   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
-Tick  =  38520   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
-Tick  =  38632   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
-Tick  =  38640   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  38454   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  38459   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  38513   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  38520   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
 Tick  =  38880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  39322   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  39316   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
 Tick  =  39360   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
 Tick  =  39360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  39472   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
-Tick  =  39480   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
-Tick  =  39592   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
-Tick  =  39600   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  39414   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  39419   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  39473   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  39480   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
 Tick  =  39840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  40282   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  40276   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
 Tick  =  40320   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
 Tick  =  40320   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  40432   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
-Tick  =  40440   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
-Tick  =  40552   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
-Tick  =  40560   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  40374   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  40379   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  40433   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  40440   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
 Tick  =  40800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  41242   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  41236   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
 Tick  =  41280   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
 Tick  =  41280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  41392   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
-Tick  =  41400   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
-Tick  =  41512   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
-Tick  =  41520   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  41334   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  41339   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  41393   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  41400   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
 Tick  =  41760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  42202   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  42196   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
 Tick  =  42240   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
 Tick  =  42240   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  42352   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
-Tick  =  42360   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
-Tick  =  42472   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
-Tick  =  42480   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  42294   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  42299   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  42353   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  42360   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
 Tick  =  42720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  43162   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  43156   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
 Tick  =  43200   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
 Tick  =  43200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  43312   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
-Tick  =  43320   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
-Tick  =  43432   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
-Tick  =  43440   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  43254   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  43259   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  43313   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  43320   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
 Tick  =  43680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  44122   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  44116   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
 Tick  =  44160   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
 Tick  =  44160   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  44272   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
-Tick  =  44280   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
-Tick  =  44392   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
-Tick  =  44400   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  44214   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  44219   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =  44273   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =  44280   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
 Tick  =  44640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  45082   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  45076   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
 Tick  =  45120   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
 Tick  =  45120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  45232   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
-Tick  =  45240   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
-Tick  =  45352   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
-Tick  =  45360   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =  45174   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  45179   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  45233   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  45240   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
 Tick  =  45600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  46042   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =  46036   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
 Tick  =  46080   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
 Tick  =  46080   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  46192   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
-Tick  =  46200   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
-Tick  =  46312   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
-Tick  =  46320   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  46134   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  46139   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
+Tick  =  46193   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
+Tick  =  46200   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
 Tick  =  46560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  47002   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  46996   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
 Tick  =  47040   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
 Tick  =  47040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  47152   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
-Tick  =  47160   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
-Tick  =  47272   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
-Tick  =  47280   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =  47094   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  47099   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  47153   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  47160   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
 Tick  =  47520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  47962   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =  47956   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
 Tick  =  48000   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
 Tick  =  48000   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  48112   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
-Tick  =  48120   Type  =   144   Pitch  =    81   Velocity  =    80   Channel  =     0    
-Tick  =  48232   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
-Tick  =  48240   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
+Tick  =  48054   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
+Tick  =  48059   Type  =   144   Pitch  =    81   Velocity  =    80   Channel  =     0    
+Tick  =  48113   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  48120   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
 Tick  =  48480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  48922   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
+Tick  =  48916   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
 Tick  =  48960   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
 Tick  =  48960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  49072   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
-Tick  =  49080   Type  =   144   Pitch  =    81   Velocity  =    80   Channel  =     0    
-Tick  =  49192   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
-Tick  =  49200   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
+Tick  =  49014   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =  49019   Type  =   144   Pitch  =    81   Velocity  =    80   Channel  =     0    
+Tick  =  49073   Type  =   144   Pitch  =    81   Velocity  =     0   Channel  =     0    
+Tick  =  49080   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
 Tick  =  49440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  49882   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =  49876   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
 Tick  =  49920   Type  =   144   Pitch  =    84   Velocity  =    80   Channel  =     0    
 Tick  =  49920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  50145   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
-Tick  =  50160   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
-Tick  =  50385   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
-Tick  =  50400   Type  =   144   Pitch  =    84   Velocity  =    80   Channel  =     0    
+Tick  =  49974   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
+Tick  =  49979   Type  =   144   Pitch  =    83   Velocity  =    80   Channel  =     0    
+Tick  =  50033   Type  =   144   Pitch  =    83   Velocity  =     0   Channel  =     0    
+Tick  =  50039   Type  =   144   Pitch  =    84   Velocity  =    80   Channel  =     0    
 Tick  =  50400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =  50880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =  51360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =  51766   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
+Tick  =  51746   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
diff --git a/mtest/libmscore/midi/testMultiNoteTremolo-ref.txt b/mtest/libmscore/midi/testMultiNoteTremolo-ref.txt
new file mode 100644
index 0000000..850a6e7
--- /dev/null
+++ b/mtest/libmscore/midi/testMultiNoteTremolo-ref.txt
@@ -0,0 +1,460 @@
+Tick  =      0   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =     55   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =     60   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    115   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    120   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =    175   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =    180   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    235   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    240   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =    295   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =    300   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    355   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    360   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =    415   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =    420   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    475   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    480   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    535   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =    540   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    595   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    600   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =    655   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =    660   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    715   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    720   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =    775   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =    780   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    835   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    840   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =    895   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =    900   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    955   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    960   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =    960   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =    960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1072   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   1072   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   1080   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   1192   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   1200   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   1200   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   1312   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   1312   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   1320   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   1432   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   1440   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   1440   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   1440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1552   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   1552   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   1560   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   1672   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   1680   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   1680   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   1792   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   1792   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   1800   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   1912   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   1920   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   1920   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   1920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2146   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   2146   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2159   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =   2159   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =   2385   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =   2385   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =   2399   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   2399   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2625   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   2625   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2639   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =   2639   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =   2865   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =   2865   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =   2879   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   2879   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3105   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   3105   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   3118   Type  =   144   Pitch  =    75   Velocity  =    80   Channel  =     0    
+Tick  =   3118   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =   3344   Type  =   144   Pitch  =    75   Velocity  =     0   Channel  =     0    
+Tick  =   3344   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =   3360   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   3360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3473   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   3480   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   3480   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   3593   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   3593   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   3600   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   3713   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   3720   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   3720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   3833   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   3833   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   3840   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   3840   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   3840   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   3840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3866   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   3866   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   3866   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   3869   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   3895   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   3899   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   3899   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   3899   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   3925   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   3925   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   3925   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   3929   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   3955   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   3959   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   3959   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   3959   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   3985   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   3985   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   3985   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   3988   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4014   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4018   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4018   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4018   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4044   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4044   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4044   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4048   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4074   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4078   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4078   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4078   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4104   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4104   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4104   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4107   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4133   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4137   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4137   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4137   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4163   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4163   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4163   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4167   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4193   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4197   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4197   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4197   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4223   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4223   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4223   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4226   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4252   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4256   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4256   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4256   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4282   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4282   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4282   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4286   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4312   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4316   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4316   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4316   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4342   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4342   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4342   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4345   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4371   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4375   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4375   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4375   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4401   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4401   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4401   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4405   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4431   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4435   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4435   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4435   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4461   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4461   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4461   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4464   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4490   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4494   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4494   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4494   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4520   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4520   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4520   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4524   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4550   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4554   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4554   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4554   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4580   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4580   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4580   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4584   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4610   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4613   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4613   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4613   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4639   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4639   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4639   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4643   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4669   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4673   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4673   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4673   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4699   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4699   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4699   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4703   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4729   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4732   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4732   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4732   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4758   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4758   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4758   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4762   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4788   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4792   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4792   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4792   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4818   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4818   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4818   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4822   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4848   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4851   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4851   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4851   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4877   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4877   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4877   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4881   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4907   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4911   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4911   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4911   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4937   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4937   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4937   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   4941   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4967   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4970   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   4970   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4970   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   4996   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   4996   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4996   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5000   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5026   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5030   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   5030   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5030   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5056   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   5056   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5056   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5060   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5086   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5089   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   5089   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5089   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5115   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   5115   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5115   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5119   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5145   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5149   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   5149   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5149   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5175   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   5175   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5175   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5179   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5205   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5208   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   5208   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5208   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5234   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   5234   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5234   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5238   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5264   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5268   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   5268   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5268   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5294   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   5294   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5294   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5298   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5324   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5328   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   5328   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5328   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5354   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   5354   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5354   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5357   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5383   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5387   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   5387   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5387   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5413   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   5413   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5413   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5417   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5443   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5447   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   5447   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5447   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5473   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   5473   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5473   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5476   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5502   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5506   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   5506   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5506   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5532   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   5532   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5532   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5536   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5562   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5566   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   5566   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5566   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5592   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   5592   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5592   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5595   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5621   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5625   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   5625   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5625   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5651   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   5651   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5651   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5655   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5681   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5685   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =   5685   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5685   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   5711   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =   5711   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5711   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   5714   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5740   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5760   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5760   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =   5760   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   5760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5872   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   5872   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =   5872   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   5880   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
+Tick  =   5880   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   5880   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5992   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
+Tick  =   5992   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   5992   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6000   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   6000   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =   6000   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   6112   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   6112   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =   6112   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   6120   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
+Tick  =   6120   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   6120   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6232   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
+Tick  =   6232   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   6232   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6240   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   6240   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =   6240   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   6240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6352   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   6352   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =   6352   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   6360   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
+Tick  =   6360   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   6360   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6472   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
+Tick  =   6472   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   6472   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6480   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   6480   Type  =   144   Pitch  =    77   Velocity  =    80   Channel  =     0    
+Tick  =   6480   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   6592   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   6592   Type  =   144   Pitch  =    77   Velocity  =     0   Channel  =     0    
+Tick  =   6592   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   6600   Type  =   144   Pitch  =    82   Velocity  =    80   Channel  =     0    
+Tick  =   6600   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   6600   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6712   Type  =   144   Pitch  =    82   Velocity  =     0   Channel  =     0    
+Tick  =   6712   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   6712   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   6720   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =   6720   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   6720   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =   6720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6832   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   6832   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =   6832   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   6832   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =   6840   Type  =   144   Pitch  =    84   Velocity  =    80   Channel  =     0    
+Tick  =   6840   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   6952   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
+Tick  =   6952   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =   6960   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   6960   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =   6960   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   6960   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =   7072   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   7072   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =   7072   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   7072   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =   7080   Type  =   144   Pitch  =    84   Velocity  =    80   Channel  =     0    
+Tick  =   7080   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   7192   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
+Tick  =   7192   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =   7200   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   7200   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =   7200   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   7200   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =   7200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7312   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   7312   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =   7312   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   7312   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =   7320   Type  =   144   Pitch  =    84   Velocity  =    80   Channel  =     0    
+Tick  =   7320   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   7432   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
+Tick  =   7432   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
+Tick  =   7440   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   7440   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
+Tick  =   7440   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   7440   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =   7552   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   7552   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
+Tick  =   7552   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   7552   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =   7560   Type  =   144   Pitch  =    84   Velocity  =    80   Channel  =     0    
+Tick  =   7560   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     0    
+Tick  =   7672   Type  =   144   Pitch  =    84   Velocity  =     0   Channel  =     0    
+Tick  =   7672   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     0    
diff --git a/mtest/libmscore/midi/testMultiNoteTremolo.mscx b/mtest/libmscore/midi/testMultiNoteTremolo.mscx
new file mode 100644
index 0000000..35f59a6
--- /dev/null
+++ b/mtest/libmscore/midi/testMultiNoteTremolo.mscx
@@ -0,0 +1,384 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>3543170</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-05-09</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Linux</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle">test MultiNote Tremolo</metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>test MultiNote Tremolo</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>half</durationType>
+          <duration z="1" n="4"/>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          <Tremolo>
+            <subtype>c32</subtype>
+            </Tremolo>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <duration z="1" n="4"/>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <duration z="1" n="4"/>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          <Tremolo>
+            <subtype>c16</subtype>
+            </Tremolo>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <duration z="1" n="4"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <duration z="3" n="8"/>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          <Tremolo>
+            <subtype>c8</subtype>
+            </Tremolo>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>half</durationType>
+          <duration z="3" n="8"/>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>75</pitch>
+            <tpc>11</tpc>
+            </Note>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <duration z="1" n="8"/>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          <Tremolo>
+            <subtype>c16</subtype>
+            </Tremolo>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <duration z="1" n="8"/>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>whole</durationType>
+          <duration z="1" n="2"/>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            </Note>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          <Tremolo>
+            <subtype>c64</subtype>
+            </Tremolo>
+          </Chord>
+        <Chord>
+          <durationType>whole</durationType>
+          <duration z="1" n="2"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>half</durationType>
+          <duration z="1" n="4"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          <Tremolo>
+            <subtype>c16</subtype>
+            </Tremolo>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <duration z="1" n="4"/>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>82</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <duration z="1" n="4"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          <Tremolo>
+            <subtype>c16</subtype>
+            </Tremolo>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <duration z="1" n="4"/>
+          <Note>
+            <pitch>84</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        <tick>5760</tick>
+        <Chord>
+          <track>1</track>
+          <durationType>half</durationType>
+          <duration z="1" n="4"/>
+          <Note>
+            <track>1</track>
+            <Accidental>
+              <subtype>flat</subtype>
+              <track>1</track>
+              </Accidental>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          <Tremolo>
+            <subtype>c16</subtype>
+            <track>1</track>
+            </Tremolo>
+          </Chord>
+        <Chord>
+          <track>1</track>
+          <durationType>half</durationType>
+          <duration z="1" n="4"/>
+          <Note>
+            <track>1</track>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          <Note>
+            <track>1</track>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <track>1</track>
+          <durationType>half</durationType>
+          <duration z="1" n="4"/>
+          <Note>
+            <track>1</track>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          <Note>
+            <track>1</track>
+            <Accidental>
+              <subtype>flat</subtype>
+              <track>1</track>
+              </Accidental>
+            <pitch>68</pitch>
+            <tpc>10</tpc>
+            </Note>
+          <Tremolo>
+            <subtype>c16</subtype>
+            <track>1</track>
+            </Tremolo>
+          </Chord>
+        <Chord>
+          <track>1</track>
+          <durationType>half</durationType>
+          <duration z="1" n="4"/>
+          <Note>
+            <track>1</track>
+            <Accidental>
+              <subtype>flat</subtype>
+              <track>1</track>
+              </Accidental>
+            <pitch>58</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testOrnamentAccidentals-ref.txt b/mtest/libmscore/midi/testOrnamentAccidentals-ref.txt
new file mode 100644
index 0000000..2fddd4c
--- /dev/null
+++ b/mtest/libmscore/midi/testOrnamentAccidentals-ref.txt
@@ -0,0 +1,230 @@
+Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    480   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    535   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    540   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =    595   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =    600   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    940   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1440   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   1440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1496   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   1500   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   1556   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   1560   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   1901   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   1920   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   1920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2375   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   2400   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2455   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   2460   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2515   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2520   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   2860   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3360   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   3360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3416   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   3420   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   3476   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   3480   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   3821   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   3840   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   3840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4067   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   4080   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =   4307   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =   4320   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   4320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4375   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   4380   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =   4435   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =   4440   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   4780   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5280   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5336   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   5340   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =   5396   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =   5400   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =   5741   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =   5760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6240   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =   6240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6295   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   6300   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   6355   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   6360   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =   6700   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   6720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7200   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =   7200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7256   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   7260   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   7316   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   7320   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =   7661   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   7680   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   7680   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7907   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   8160   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   8160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   8215   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   8220   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   8275   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   8280   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   8620   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   8640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9120   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   9120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9176   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   9180   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   9236   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   9240   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   9581   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   9600   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   9600   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9827   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  10080   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  10080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  10135   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  10140   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =  10195   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =  10200   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  10540   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  10560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11040   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  11040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11096   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  11100   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =  11156   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =  11160   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  11501   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  11520   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  11520   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11747   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  11760   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  11987   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  12000   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  12000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  12055   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  12060   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  12115   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  12120   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  12460   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  12480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  12960   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  12960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  13016   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  13020   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     0    
+Tick  =  13076   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     0    
+Tick  =  13080   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =  13421   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =  13440   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  13920   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  13920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  13975   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  13980   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  14035   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  14040   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  14380   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  14400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14880   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  14880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14936   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  14940   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  14996   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  15000   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  15341   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  15360   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  15360   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  15815   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  15840   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  15840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  15895   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  15900   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  15955   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  15960   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  16300   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  16320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  16800   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  16800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  16856   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  16860   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  16916   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  16920   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  17261   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  17280   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  17280   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17507   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  17760   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  17760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17815   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  17820   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  17875   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  17880   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  18220   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  18240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  18720   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  18720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  18776   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  18780   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  18836   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  18840   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  19181   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  19200   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  19680   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  19680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  19735   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  19740   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  19795   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  19800   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  20140   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  20160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  20640   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  20640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  20696   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  20700   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  20756   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  20760   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     0    
+Tick  =  21101   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     0    
+Tick  =  21120   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  21120   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  21575   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  21600   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  21600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  21655   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  21660   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  21715   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  21720   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  22060   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  22080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  22560   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  22560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  22616   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  22620   Type  =   144   Pitch  =    68   Velocity  =    80   Channel  =     0    
+Tick  =  22676   Type  =   144   Pitch  =    68   Velocity  =     0   Channel  =     0    
+Tick  =  22680   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  23021   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  23040   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  23040   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  23267   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  23520   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  23520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  23575   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  23580   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  23635   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  23640   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  23980   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  24000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  24480   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  24480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  24536   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  24540   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  24596   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  24600   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  24941   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
diff --git a/mtest/libmscore/midi/testOrnamentAccidentals.mscx b/mtest/libmscore/midi/testOrnamentAccidentals.mscx
new file mode 100644
index 0000000..151bae1
--- /dev/null
+++ b/mtest/libmscore/midi/testOrnamentAccidentals.mscx
@@ -0,0 +1,797 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>3543170</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-05-04</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Apple Macintosh</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle">accidentaltest</metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>accidentaltest</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>68</pitch>
+            <tpc>10</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>68</pitch>
+            <tpc>10</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <KeySig>
+          <accidental>1</accidental>
+          </KeySig>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <KeySig>
+          <accidental>-1</accidental>
+          </KeySig>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Accidental>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <role>1</role>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <Accidental>
+              <role>1</role>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <role>1</role>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <Accidental>
+              <role>1</role>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <KeySig>
+          <accidental>-3</accidental>
+          </KeySig>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>68</pitch>
+            <tpc>10</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Accidental>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <role>1</role>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <Accidental>
+              <role>1</role>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>68</pitch>
+            <tpc>10</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <role>1</role>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>mordent</subtype>
+            </Articulation>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>32nd</durationType>
+          <Note>
+            <Accidental>
+              <role>1</role>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>5</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <dots>1</dots>
+          <durationType>eighth</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testOrnaments-ref.txt b/mtest/libmscore/midi/testOrnaments-ref.txt
new file mode 100644
index 0000000..4de4209
--- /dev/null
+++ b/mtest/libmscore/midi/testOrnaments-ref.txt
@@ -0,0 +1,140 @@
+Tick  =      0   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    455   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    480   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    649   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =    660   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    715   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    720   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    775   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    780   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    835   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    840   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    952   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    960   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =    960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1415   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   1440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1920   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   1920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2375   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2400   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2474   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   2479   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   2553   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   2559   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2633   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2640   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   2714   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   2719   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2793   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2799   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   2873   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   2880   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2954   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   2959   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   3033   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   3039   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   3113   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   3120   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   3194   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   3199   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   3273   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   3279   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   3353   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   3360   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   3360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3434   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   3439   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   3513   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   3519   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   3593   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   3600   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   3674   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   3679   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   3753   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   3759   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   3833   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   3840   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   3840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4295   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   4320   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   4320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4489   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   4500   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   4555   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   4560   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =   4615   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =   4620   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   4675   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   4680   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =   4792   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =   4800   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5027   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =   5040   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     0    
+Tick  =   5114   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     0    
+Tick  =   5119   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =   5193   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =   5199   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     0    
+Tick  =   5273   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     0    
+Tick  =   5280   Type  =   144   Pitch  =    57   Velocity  =    80   Channel  =     0    
+Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5735   Type  =   144   Pitch  =    57   Velocity  =     0   Channel  =     0    
+Tick  =   5760   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6215   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6240   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   6240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6295   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   6300   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6355   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6360   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   6415   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   6420   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6475   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6480   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   6535   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   6540   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6595   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6600   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   6655   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   6660   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6715   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6720   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   6720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6775   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   6780   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   6835   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   6840   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   6895   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   6900   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   6955   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   6960   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   7015   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   7020   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   7075   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   7080   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   7135   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   7140   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   7195   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   7200   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   7200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7255   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   7260   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   7315   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   7320   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   7375   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   7380   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   7435   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   7440   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   7495   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   7500   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   7555   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
+Tick  =   7560   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   7615   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   7620   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
+Tick  =   7675   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
diff --git a/mtest/libmscore/midi/testOrnaments.mscx b/mtest/libmscore/midi/testOrnaments.mscx
new file mode 100644
index 0000000..7cab918
--- /dev/null
+++ b/mtest/libmscore/midi/testOrnaments.mscx
@@ -0,0 +1,274 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>3543170</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">x</metaTag>
+    <metaTag name="copyright">x</metaTag>
+    <metaTag name="creationDate">2015-07-11</metaTag>
+    <metaTag name="lyricist">x</metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Apple Macintosh</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle">x</metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>x</text>
+          </Text>
+        <Text>
+          <style>Subtitle</style>
+          <text>x</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>x</text>
+          </Text>
+        <Text>
+          <style>Lyricist</style>
+          <text>x</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>lineprall</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Trill id="2">
+          <subtype>upprall</subtype>
+          <lineWidth>0.15</lineWidth>
+          </Trill>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <endSpanner id="2"/>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>lineprall</subtype>
+            </Articulation>
+          <Note>
+            <pitch>60</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>downprall</subtype>
+            </Articulation>
+          <Note>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>57</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Trill id="3">
+          <subtype>pure</subtype>
+          <lineWidth>0.15</lineWidth>
+          </Trill>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        <endSpanner id="3"/>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testSwingPickup-ref.txt b/mtest/libmscore/midi/testSwingPickup-ref.txt
index 8b30621..d08e07b 100644
--- a/mtest/libmscore/midi/testSwingPickup-ref.txt
+++ b/mtest/libmscore/midi/testSwingPickup-ref.txt
@@ -2,7 +2,6 @@ Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =
 Tick  =     48   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
 Tick  =    239   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
 Tick  =    240   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
-Tick  =    240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =    527   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
 Tick  =    528   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
@@ -20,13 +19,16 @@ Tick  =   1487   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =
 Tick  =   1488   Type  =   144   Pitch  =    79   Velocity  =    80   Channel  =     0    
 Tick  =   1679   Type  =   144   Pitch  =    79   Velocity  =     0   Channel  =     0    
 Tick  =   1680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   1920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   2160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   2400   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   2448   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
 Tick  =   2639   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
 Tick  =   2640   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
 Tick  =   2640   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2640   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   2927   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
 Tick  =   2928   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
@@ -38,59 +40,63 @@ Tick  =   3407   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =
 Tick  =   3408   Type  =   144   Pitch  =    76   Velocity  =    80   Channel  =     0    
 Tick  =   3599   Type  =   144   Pitch  =    76   Velocity  =     0   Channel  =     0    
 Tick  =   3600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   3840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   3888   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
 Tick  =   4079   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
 Tick  =   4080   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
 Tick  =   4080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4320   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   4320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   4367   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
 Tick  =   4368   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
 Tick  =   4559   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
 Tick  =   4560   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
-Tick  =   4560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4560   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   4847   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
 Tick  =   4848   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
 Tick  =   5039   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
 Tick  =   5040   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   5040   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   5327   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
 Tick  =   5328   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
 Tick  =   5519   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
 Tick  =   5520   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
 Tick  =   5520   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   5807   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
 Tick  =   5808   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
 Tick  =   5999   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
 Tick  =   6000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   6480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   6960   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
 Tick  =   6960   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   7200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   7247   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
 Tick  =   7248   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
 Tick  =   7439   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
 Tick  =   7440   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
 Tick  =   7440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   7680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   7727   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
 Tick  =   7728   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     0    
 Tick  =   7919   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     0    
 Tick  =   7920   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
 Tick  =   7920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   8160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   8207   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
 Tick  =   8208   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
 Tick  =   8399   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
 Tick  =   8400   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
 Tick  =   8400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
-Tick  =   8640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   8687   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
 Tick  =   8688   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
 Tick  =   8879   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
 Tick  =   8880   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
-Tick  =   8880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   9120   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
 Tick  =   9120   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
 Tick  =   9167   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
diff --git a/mtest/libmscore/midi/testTieTrill-ref.txt b/mtest/libmscore/midi/testTieTrill-ref.txt
new file mode 100644
index 0000000..c6cb82d
--- /dev/null
+++ b/mtest/libmscore/midi/testTieTrill-ref.txt
@@ -0,0 +1,132 @@
+Tick  =      0   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =     55   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =     60   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    115   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    120   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =    175   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =    180   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    235   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    240   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =    295   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =    300   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    355   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    360   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =    415   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =    420   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    475   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    480   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    535   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =    540   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    595   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    600   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =    655   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =    660   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    715   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =    775   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =    780   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    835   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    840   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =    895   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =    900   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =    955   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =    960   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =    960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1015   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   1020   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1075   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1080   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   1135   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   1140   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1195   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1200   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   1255   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   1260   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1315   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1320   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   1375   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   1380   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1435   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1440   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   1440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1495   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   1500   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1555   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1560   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   1615   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   1620   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1675   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1680   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   1735   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   1740   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1795   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   1800   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   1855   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   1860   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =   1920   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   1920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1975   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   1980   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2035   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2040   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2095   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2100   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2155   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2160   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2215   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2220   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2275   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2280   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2335   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2340   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2395   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2400   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2455   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2460   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2515   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2520   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2575   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2580   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2635   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2640   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2695   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2700   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2755   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2760   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2815   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2820   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2875   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2880   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2935   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2940   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2995   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   3000   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   3055   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   3060   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   3115   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   3120   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   3175   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   3180   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   3235   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   3240   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   3283   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =   3295   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   3300   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   3360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3840   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     0    
+Tick  =   3840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3895   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     0    
+Tick  =   3900   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   3955   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
+Tick  =   3960   Type  =   144   Pitch  =    64   Velocity  =    80   Channel  =     0    
+Tick  =   4015   Type  =   144   Pitch  =    64   Velocity  =     0   Channel  =     0    
+Tick  =   4020   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     0    
+Tick  =   4267   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6127   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     0    
diff --git a/mtest/libmscore/midi/testTieTrill.mscx b/mtest/libmscore/midi/testTieTrill.mscx
new file mode 100644
index 0000000..2ec2c35
--- /dev/null
+++ b/mtest/libmscore/midi/testTieTrill.mscx
@@ -0,0 +1,221 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>3543170</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">x</metaTag>
+    <metaTag name="copyright">x</metaTag>
+    <metaTag name="creationDate">2015-07-11</metaTag>
+    <metaTag name="lyricist">x</metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Apple Macintosh</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle">x</metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>x</text>
+          </Text>
+        <Text>
+          <style>Subtitle</style>
+          <text>x</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>x</text>
+          </Text>
+        <Text>
+          <style>Lyricist</style>
+          <text>x</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <Tie id="2">
+              </Tie>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <Tie id="3">
+              </Tie>
+            <endSpanner id="2"/>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <endSpanner id="3"/>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            </Articulation>
+          <Note>
+            <Tie id="4">
+              </Tie>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <endSpanner id="4"/>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>reverseturn</subtype>
+            </Articulation>
+          <Note>
+            <Tie id="5">
+              </Tie>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <endSpanner id="5"/>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testTrillLines-ref.txt b/mtest/libmscore/midi/testTrillLines-ref.txt
new file mode 100644
index 0000000..c811eec
--- /dev/null
+++ b/mtest/libmscore/midi/testTrillLines-ref.txt
@@ -0,0 +1,180 @@
+Tick  =      0   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =     54   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =     59   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =    113   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =    120   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    174   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    179   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =    233   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =    240   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    294   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    299   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =    353   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =    360   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    414   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    419   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =    473   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =    480   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    534   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    539   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =    593   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =    600   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    654   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    659   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =    713   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =    720   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    774   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    779   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =    833   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =    840   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    894   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    899   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =    953   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =    960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1920   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   1920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2032   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   2040   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2152   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2160   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2272   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2280   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2392   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2400   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2512   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2520   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2632   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2640   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2752   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2760   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2872   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3840   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   3840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4180   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4200   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4312   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4320   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   4320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4432   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4440   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4552   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4560   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   4672   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4680   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4792   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5760   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5814   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5819   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   5873   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   5880   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5934   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5939   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   5993   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6000   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6054   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6059   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6113   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6120   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6174   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6179   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6233   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6240   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6294   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6299   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6353   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6360   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6414   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6419   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6473   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6480   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6534   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6539   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6593   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6600   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6654   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6659   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6713   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7680   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   7680   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7734   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   7739   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   7793   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   7800   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   7854   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   7859   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   7913   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   7920   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   7974   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   7979   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   8033   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   8040   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   8094   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   8099   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   8153   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   8160   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   8160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   8214   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   8219   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   8273   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   8280   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   8334   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   8339   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   8393   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   8400   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   8454   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   8459   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   8513   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   8520   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   8574   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   8579   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   8633   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   8640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9600   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   9600   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9655   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   9660   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   9715   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   9720   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   9775   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   9780   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   9835   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   9840   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   9895   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   9900   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   9955   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   9960   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  10015   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  10020   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  10075   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  10080   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  10080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  10135   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  10140   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  10195   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  10200   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  10255   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  10260   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  10315   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  10320   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  10375   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  10380   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  10435   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  10440   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  10495   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  10500   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     0    
+Tick  =  10555   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     0    
+Tick  =  10560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
diff --git a/mtest/libmscore/midi/testTrillLines.mscx b/mtest/libmscore/midi/testTrillLines.mscx
new file mode 100644
index 0000000..403dff3
--- /dev/null
+++ b/mtest/libmscore/midi/testTrillLines.mscx
@@ -0,0 +1,227 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>3543170</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-05-28</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Apple Macintosh</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Trill id="2">
+          <subtype>trill</subtype>
+          <ornamentStyle>baroque</ornamentStyle>
+          <lineWidth>0.15</lineWidth>
+          </Trill>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <endSpanner id="2"/>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Trill id="3">
+          <subtype>upprall</subtype>
+          <lineWidth>0.15</lineWidth>
+          </Trill>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <endSpanner id="3"/>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="3">
+        <Trill id="4">
+          <subtype>downprall</subtype>
+          <lineWidth>0.15</lineWidth>
+          </Trill>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <endSpanner id="4"/>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="4">
+        <Trill id="5">
+          <subtype>prallprall</subtype>
+          <lineWidth>0.15</lineWidth>
+          </Trill>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <endSpanner id="5"/>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="5">
+        <Trill id="6">
+          <subtype>pure</subtype>
+          <lineWidth>0.15</lineWidth>
+          </Trill>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <endSpanner id="6"/>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="6">
+        <Trill id="7">
+          <subtype>pure</subtype>
+          <lineWidth>0.15</lineWidth>
+          </Trill>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <endSpanner id="7"/>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testTrillTempos-ref.txt b/mtest/libmscore/midi/testTrillTempos-ref.txt
new file mode 100644
index 0000000..691328a
--- /dev/null
+++ b/mtest/libmscore/midi/testTrillTempos-ref.txt
@@ -0,0 +1,404 @@
+Tick  =      0   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    119   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =    120   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =    233   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =    240   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =    299   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =    360   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =    419   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =    480   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    599   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =    720   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =    839   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =    960   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =    960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1079   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   1200   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =   1319   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   1440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1680   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =   1907   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =   1920   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   1920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2039   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2040   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   2153   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   2160   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =   2219   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =   2280   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   2339   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   2400   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2519   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   2640   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   2759   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   2880   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2999   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   3120   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =   3239   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   3360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3600   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =   3827   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =   3840   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   3840   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3959   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   3960   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   4073   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   4080   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =   4139   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =   4200   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   4259   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   4320   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4439   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4560   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   4679   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   4800   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   4829   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4860   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   4889   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   4920   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   4949   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   4980   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   5009   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   5040   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =   5159   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   5280   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5520   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =   5747   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =   5760   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   5760   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   5879   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   5880   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   5993   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   6000   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =   6059   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =   6120   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   6179   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   6240   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6359   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6480   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   6599   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   6720   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   6749   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6780   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   6809   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   6840   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   6869   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   6900   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   6929   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   6960   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =   7079   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   7200   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7440   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =   7667   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =   7680   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   7680   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   7799   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   7800   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   7913   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   7920   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =   7979   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =   8040   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =   8099   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =   8160   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   8160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   8279   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   8400   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   8519   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   8640   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   8640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   8669   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   8700   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   8729   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   8760   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   8789   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   8820   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =   8849   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =   8880   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =   8999   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =   9120   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9360   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =   9587   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =   9600   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =   9600   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   9719   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =   9720   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =   9833   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =   9840   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =   9899   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =   9960   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  10019   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  10080   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  10080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  10199   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  10320   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  10439   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  10560   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  10560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  10589   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  10620   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  10649   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  10680   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  10709   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  10740   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  10769   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  10800   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  10919   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  11040   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11280   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  11507   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  11520   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  11520   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  11639   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  11640   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  11753   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  11760   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  11819   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  11880   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  11939   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  12000   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  12000   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  12119   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  12240   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  12359   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  12480   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  12480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  12493   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  12510   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  12523   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  12540   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  12553   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  12570   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  12583   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  12600   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  12613   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  12630   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  12643   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  12660   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  12673   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  12690   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  12703   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  12720   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  12839   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  12960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  13200   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  13427   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  13440   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  13440   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  13559   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  13560   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  13673   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  13680   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  13739   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  13800   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  13859   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  13920   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  13920   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14039   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  14160   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  14279   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  14400   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  14400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  14413   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  14430   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  14443   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  14460   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  14473   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  14490   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  14503   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  14520   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  14533   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  14550   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  14563   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  14580   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  14593   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  14610   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  14623   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  14640   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  14759   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  14880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  15120   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  15347   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  15360   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  15360   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  15479   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  15480   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  15593   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  15600   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  15659   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  15720   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  15779   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  15840   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  15840   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  15959   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  16080   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  16199   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  16320   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  16320   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  16333   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  16350   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  16363   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  16380   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  16393   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  16410   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  16423   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  16440   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  16453   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  16470   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  16483   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  16500   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  16513   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  16530   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  16543   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  16560   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  16679   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  16800   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17040   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  17267   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  17280   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  17280   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17399   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  17400   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  17513   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  17520   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  17579   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  17640   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  17699   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  17760   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  17760   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  17879   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  18000   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  18119   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  18240   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  18240   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  18253   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  18270   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  18283   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  18300   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  18313   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  18330   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  18343   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  18360   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  18373   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  18390   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  18403   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  18420   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  18433   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  18450   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  18463   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  18480   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  18599   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  18720   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  18960   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  19187   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  19200   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  19200   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  19319   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  19320   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  19433   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  19440   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  19499   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  19560   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  19619   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  19680   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  19680   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  19799   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  19920   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  20039   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  20160   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  20160   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  20166   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  20174   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  20180   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  20190   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  20196   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  20204   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  20210   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  20220   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  20226   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  20234   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  20240   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  20250   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  20256   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  20264   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  20270   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  20280   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  20286   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  20294   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  20300   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  20310   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  20316   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  20324   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  20330   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  20340   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  20346   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  20354   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  20360   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  20370   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  20376   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  20384   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  20390   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  20400   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  20519   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  20640   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  20880   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  21107   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
+Tick  =  21120   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  21120   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  21239   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  21240   Type  =   144   Pitch  =    74   Velocity  =    80   Channel  =     0    
+Tick  =  21353   Type  =   144   Pitch  =    74   Velocity  =     0   Channel  =     0    
+Tick  =  21360   Type  =   144   Pitch  =    73   Velocity  =    80   Channel  =     0    
+Tick  =  21419   Type  =   144   Pitch  =    73   Velocity  =     0   Channel  =     0    
+Tick  =  21480   Type  =   144   Pitch  =    71   Velocity  =    80   Channel  =     0    
+Tick  =  21539   Type  =   144   Pitch  =    71   Velocity  =     0   Channel  =     0    
+Tick  =  21600   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  21600   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  21719   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  21840   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  21959   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  22080   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  22080   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  22086   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  22094   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  22100   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  22110   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  22116   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  22124   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  22130   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  22140   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  22146   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  22154   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  22160   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  22170   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  22176   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  22184   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  22190   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  22200   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  22206   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  22214   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  22220   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  22230   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  22236   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  22244   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  22250   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  22260   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  22266   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  22274   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  22280   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  22290   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     0    
+Tick  =  22296   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     0    
+Tick  =  22304   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     0    
+Tick  =  22310   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     0    
+Tick  =  22320   Type  =   144   Pitch  =    66   Velocity  =    80   Channel  =     0    
+Tick  =  22439   Type  =   144   Pitch  =    66   Velocity  =     0   Channel  =     0    
+Tick  =  22560   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =  22800   Type  =   144   Pitch  =    78   Velocity  =    80   Channel  =     0    
+Tick  =  23027   Type  =   144   Pitch  =    78   Velocity  =     0   Channel  =     0    
diff --git a/mtest/libmscore/midi/testTrillTempos.mscx b/mtest/libmscore/midi/testTrillTempos.mscx
new file mode 100644
index 0000000..ac436c3
--- /dev/null
+++ b/mtest/libmscore/midi/testTrillTempos.mscx
@@ -0,0 +1,1462 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>3543170</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">Composer</metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Linux</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle">Title</metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>Trill Tempos</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>Composer</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Tempo>
+          <tempo>3</tempo>
+          <followText>1</followText>
+          <text><sym>metNoteQuarterUp</sym> = 180</text>
+          </Tempo>
+        <Slur id="2">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="2"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="2"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Tempo>
+          <tempo>2.5</tempo>
+          <followText>1</followText>
+          <text><sym>metNoteQuarterUp</sym> = 150</text>
+          </Tempo>
+        <Slur id="3">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="3"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="3"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Tempo>
+          <tempo>2</tempo>
+          <followText>1</followText>
+          <text><sym>metNoteQuarterUp</sym> =120</text>
+          </Tempo>
+        <Slur id="4">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="4"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="4"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Tempo>
+          <tempo>1.66667</tempo>
+          <followText>1</followText>
+          <text><sym>metNoteQuarterUp</sym> = 100</text>
+          </Tempo>
+        <Slur id="5">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="5"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="5"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Tempo>
+          <tempo>1.33333</tempo>
+          <followText>1</followText>
+          <text><sym>metNoteQuarterUp</sym> = 80</text>
+          </Tempo>
+        <Slur id="6">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="6"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="6"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Tempo>
+          <tempo>1</tempo>
+          <followText>1</followText>
+          <text><sym>metNoteQuarterUp</sym> = 60</text>
+          </Tempo>
+        <Slur id="7">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="7"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="7"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Tempo>
+          <tempo>0.833333</tempo>
+          <followText>1</followText>
+          <text><sym>metNoteQuarterUp</sym> = 50</text>
+          </Tempo>
+        <Slur id="8">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="8"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="8"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Tempo>
+          <tempo>0.75</tempo>
+          <followText>1</followText>
+          <text><sym>metNoteQuarterUp</sym> = 45</text>
+          </Tempo>
+        <Slur id="9">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="9"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="9"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Tempo>
+          <tempo>0.666667</tempo>
+          <followText>1</followText>
+          <text><sym>metNoteQuarterUp</sym> = 40</text>
+          </Tempo>
+        <Slur id="10">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="10"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="10"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Tempo>
+          <tempo>0.583333</tempo>
+          <followText>1</followText>
+          <text><sym>metNoteQuarterUp</sym> = 35</text>
+          </Tempo>
+        <Slur id="11">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="11"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="11"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Tempo>
+          <tempo>0.416667</tempo>
+          <followText>1</followText>
+          <text><sym>metNoteQuarterUp</sym> = 25</text>
+          </Tempo>
+        <Slur id="12">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="12"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="12"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <Tempo>
+          <tempo>0.333333</tempo>
+          <followText>1</followText>
+          <text><sym>metNoteQuarterUp</sym> = 20</text>
+          </Tempo>
+        <Slur id="13">
+          <track>0</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="13"/>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="13"/>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>73</pitch>
+            <tpc>21</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Articulation>
+            <subtype>staccato</subtype>
+            </Articulation>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>78</pitch>
+            <tpc>20</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/midi/testTrillTransposingInstrument-ref.txt b/mtest/libmscore/midi/testTrillTransposingInstrument-ref.txt
new file mode 100644
index 0000000..274b348
--- /dev/null
+++ b/mtest/libmscore/midi/testTrillTransposingInstrument-ref.txt
@@ -0,0 +1,90 @@
+Tick  =      0   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     1    
+Tick  =      0   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =     59   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     1    
+Tick  =     60   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     1    
+Tick  =    119   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     1    
+Tick  =    120   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     1    
+Tick  =    179   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     1    
+Tick  =    180   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     1    
+Tick  =    239   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     1    
+Tick  =    240   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     1    
+Tick  =    299   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     1    
+Tick  =    300   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     1    
+Tick  =    359   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     1    
+Tick  =    360   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     1    
+Tick  =    419   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     1    
+Tick  =    420   Type  =   144   Pitch  =    58   Velocity  =    80   Channel  =     1    
+Tick  =    479   Type  =   144   Pitch  =    58   Velocity  =     0   Channel  =     1    
+Tick  =    480   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     1    
+Tick  =    480   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =    539   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     1    
+Tick  =    540   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =    599   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =    600   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     1    
+Tick  =    659   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     1    
+Tick  =    660   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =    719   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =    720   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     1    
+Tick  =    779   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     1    
+Tick  =    780   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =    839   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =    840   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     1    
+Tick  =    899   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     1    
+Tick  =    900   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =    959   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =    960   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =    960   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1439   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =   1440   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     1    
+Tick  =   1440   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   1499   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     1    
+Tick  =   1500   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =   1559   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =   1560   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     1    
+Tick  =   1619   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     1    
+Tick  =   1620   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =   1679   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =   1680   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     1    
+Tick  =   1739   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     1    
+Tick  =   1740   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =   1799   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =   1800   Type  =   144   Pitch  =    56   Velocity  =    80   Channel  =     1    
+Tick  =   1859   Type  =   144   Pitch  =    56   Velocity  =     0   Channel  =     1    
+Tick  =   1860   Type  =   144   Pitch  =    59   Velocity  =    80   Channel  =     1    
+Tick  =   1919   Type  =   144   Pitch  =    59   Velocity  =     0   Channel  =     1    
+Tick  =   1920   Type  =   144   Pitch  =    60   Velocity  =    80   Channel  =     1    
+Tick  =   1920   Type  =     3   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2039   Type  =   144   Pitch  =    60   Velocity  =     0   Channel  =     1    
+Tick  =   2040   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =   2159   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =   2160   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     1    
+Tick  =   2399   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     1    
+Tick  =   2400   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     1    
+Tick  =   2400   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2429   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     1    
+Tick  =   2430   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     1    
+Tick  =   2459   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     1    
+Tick  =   2460   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     1    
+Tick  =   2489   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     1    
+Tick  =   2490   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     1    
+Tick  =   2519   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     1    
+Tick  =   2520   Type  =   144   Pitch  =    62   Velocity  =    80   Channel  =     1    
+Tick  =   2639   Type  =   144   Pitch  =    62   Velocity  =     0   Channel  =     1    
+Tick  =   2640   Type  =   144   Pitch  =    63   Velocity  =    80   Channel  =     1    
+Tick  =   2880   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   2999   Type  =   144   Pitch  =    63   Velocity  =     0   Channel  =     1    
+Tick  =   3000   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =   3119   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =   3120   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     1    
+Tick  =   3239   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     1    
+Tick  =   3240   Type  =   144   Pitch  =    72   Velocity  =    80   Channel  =     1    
+Tick  =   3359   Type  =   144   Pitch  =    72   Velocity  =     0   Channel  =     1    
+Tick  =   3360   Type  =   144   Pitch  =    70   Velocity  =    80   Channel  =     1    
+Tick  =   3360   Type  =     4   Pitch  =     0   Velocity  =     0   Channel  =     0    
+Tick  =   3479   Type  =   144   Pitch  =    70   Velocity  =     0   Channel  =     1    
+Tick  =   3480   Type  =   144   Pitch  =    69   Velocity  =    80   Channel  =     1    
+Tick  =   3599   Type  =   144   Pitch  =    69   Velocity  =     0   Channel  =     1    
+Tick  =   3600   Type  =   144   Pitch  =    67   Velocity  =    80   Channel  =     1    
+Tick  =   3719   Type  =   144   Pitch  =    67   Velocity  =     0   Channel  =     1    
+Tick  =   3720   Type  =   144   Pitch  =    65   Velocity  =    80   Channel  =     1    
+Tick  =   3839   Type  =   144   Pitch  =    65   Velocity  =     0   Channel  =     1    
diff --git a/mtest/importmidi/instrument_channels.mscx b/mtest/libmscore/midi/testTrillTransposingInstrument.mscx
similarity index 50%
copy from mtest/importmidi/instrument_channels.mscx
copy to mtest/libmscore/midi/testTrillTransposingInstrument.mscx
index 40abcb7..2ad4ae5 100644
--- a/mtest/importmidi/instrument_channels.mscx
+++ b/mtest/libmscore/midi/testTrillTransposingInstrument.mscx
@@ -1,13 +1,18 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<museScore version="2.00">
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>3543170</programRevision>
   <Score>
     <LayerTag id="0" tag="default"></LayerTag>
     <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
     <Division>480</Division>
     <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
       <page-layout>
-        <page-height>1683.78</page-height>
-        <page-width>1190.55</page-width>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
         <page-margins type="even">
           <left-margin>56.6929</left-margin>
           <right-margin>56.6929</right-margin>
@@ -30,34 +35,44 @@
     <metaTag name="arranger"></metaTag>
     <metaTag name="composer"></metaTag>
     <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-04-30</metaTag>
     <metaTag name="lyricist"></metaTag>
     <metaTag name="movementNumber"></metaTag>
     <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Apple Macintosh</metaTag>
     <metaTag name="poet"></metaTag>
     <metaTag name="source"></metaTag>
     <metaTag name="translator"></metaTag>
     <metaTag name="workNumber"></metaTag>
-    <metaTag name="workTitle"></metaTag>
+    <metaTag name="workTitle">trilltes4</metaTag>
     <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
       </PageList>
     <Part>
       <Staff id="1">
         <StaffType group="pitched">
+          <name>stdNormal</name>
           </StaffType>
         </Staff>
-      <trackName>Violins</trackName>
+      <trackName>Piano</trackName>
       <Instrument>
-        <longName>Violins</longName>
-        <shortName>Vlns.</shortName>
-        <trackName>Violins</trackName>
-        <minPitchP>55</minPitchP>
-        <maxPitchP>103</maxPitchP>
-        <minPitchA>55</minPitchA>
-        <maxPitchA>88</maxPitchA>
-        <instrumentId>strings.group</instrumentId>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
         <Articulation>
           <velocity>100</velocity>
-          <gateTime>100</gateTime>
+          <gateTime>95</gateTime>
           </Articulation>
         <Articulation name="staccatissimo">
           <velocity>100</velocity>
@@ -84,86 +99,30 @@
           <gateTime>100</gateTime>
           </Articulation>
         <Channel>
-          <program value="48"/>
-          </Channel>
-        <Channel name="pizzicato">
-          <program value="45"/>
-          </Channel>
-        <Channel name="tremolo">
-          <program value="44"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
           </Channel>
         </Instrument>
       </Part>
     <Part>
       <Staff id="2">
         <StaffType group="pitched">
+          <name>stdNormal</name>
           </StaffType>
+        <bracket type="-1" span="0"/>
         </Staff>
-      <trackName>Bâ™­ Cornet</trackName>
+      <trackName>English Horn</trackName>
       <Instrument>
-        <longName>Bâ™­ Cornet</longName>
-        <shortName>Bâ™­ Cnt.</shortName>
-        <trackName>Bâ™­ Cornet</trackName>
+        <longName>English Horn</longName>
+        <shortName>E. Hn.</shortName>
+        <trackName>English Horn</trackName>
         <minPitchP>52</minPitchP>
-        <maxPitchP>82</maxPitchP>
+        <maxPitchP>83</maxPitchP>
         <minPitchA>52</minPitchA>
-        <maxPitchA>79</maxPitchA>
-        <transposeDiatonic>-1</transposeDiatonic>
-        <transposeChromatic>-2</transposeChromatic>
-        <instrumentId>brass.cornet</instrumentId>
-        <Articulation>
-          <velocity>100</velocity>
-          <gateTime>100</gateTime>
-          </Articulation>
-        <Articulation name="staccatissimo">
-          <velocity>100</velocity>
-          <gateTime>33</gateTime>
-          </Articulation>
-        <Articulation name="staccato">
-          <velocity>100</velocity>
-          <gateTime>50</gateTime>
-          </Articulation>
-        <Articulation name="portato">
-          <velocity>100</velocity>
-          <gateTime>67</gateTime>
-          </Articulation>
-        <Articulation name="tenuto">
-          <velocity>100</velocity>
-          <gateTime>100</gateTime>
-          </Articulation>
-        <Articulation name="marcato">
-          <velocity>120</velocity>
-          <gateTime>67</gateTime>
-          </Articulation>
-        <Articulation name="sforzato">
-          <velocity>120</velocity>
-          <gateTime>100</gateTime>
-          </Articulation>
-        <Channel>
-          <program value="56"/>
-          </Channel>
-        <Channel name="mute">
-          <program value="59"/>
-          </Channel>
-        </Instrument>
-      </Part>
-    <Part>
-      <Staff id="3">
-        <StaffType group="pitched">
-          </StaffType>
-        <defaultClef>F</defaultClef>
-        </Staff>
-      <trackName>Trombone</trackName>
-      <Instrument>
-        <longName>Trombone</longName>
-        <shortName>Trb.</shortName>
-        <trackName>Trombone</trackName>
-        <minPitchP>35</minPitchP>
-        <maxPitchP>74</maxPitchP>
-        <minPitchA>35</minPitchA>
-        <maxPitchA>70</maxPitchA>
-        <instrumentId>brass.trombone</instrumentId>
-        <clef>F</clef>
+        <maxPitchA>81</maxPitchA>
+        <transposeDiatonic>-4</transposeDiatonic>
+        <transposeChromatic>-7</transposeChromatic>
+        <instrumentId>wind.reed.english-horn</instrumentId>
         <Articulation>
           <velocity>100</velocity>
           <gateTime>100</gateTime>
@@ -193,169 +152,268 @@
           <gateTime>100</gateTime>
           </Articulation>
         <Channel>
-          <program value="57"/>
+          <program value="69"/>
+          <synti>Fluid</synti>
           </Channel>
         </Instrument>
       </Part>
     <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>test transposing instrument</text>
+          </Text>
+        </VBox>
       <Measure number="1">
+        <KeySig>
+          <accidental>-3</accidental>
+          </KeySig>
         <TimeSig>
           <sigN>4</sigN>
           <sigD>4</sigD>
           <showCourtesySig>1</showCourtesySig>
           </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
         <Tempo>
-          <tempo>2</tempo>
-          <text><sym>unicodeNoteQuarterUp</sym> = 120</text>
+          <tempo>1</tempo>
+          <followText>1</followText>
+          <text><sym>unicodeNoteQuarterUp</sym> = 60</text>
           </Tempo>
         <Rest>
-          <durationType>eighth</durationType>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
           </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="2">
+      <Measure number="1">
+        <KeySig>
+          <accidental>-2</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
         <Chord>
-          <durationType>eighth</durationType>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            </Articulation>
           <Note>
-            <pitch>88</pitch>
-            <tpc>18</tpc>
-            <velocity>80</velocity>
-            <veloType>user</veloType>
+            <pitch>56</pitch>
+            <tpc>10</tpc>
+            <tpc2>11</tpc2>
             </Note>
           </Chord>
         <Chord>
           <durationType>quarter</durationType>
           <Articulation>
-            <subtype>staccato</subtype>
+            <subtype>trill</subtype>
             </Articulation>
           <Note>
-            <pitch>86</pitch>
-            <tpc>16</tpc>
-            <velocity>80</velocity>
-            <veloType>user</veloType>
+            <pitch>56</pitch>
+            <tpc>10</tpc>
+            <tpc2>11</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>59</pitch>
+            <tpc>19</tpc>
+            <tpc2>20</tpc2>
             </Note>
           </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            </Articulation>
+          <Note>
+            <pitch>56</pitch>
+            <tpc>10</tpc>
+            <tpc2>11</tpc2>
+            </Note>
+          </Chord>
+        <tick>0</tick>
         <Rest>
+          <offset x="0" y="-2"/>
+          <track>5</track>
           <durationType>quarter</durationType>
           </Rest>
         <Chord>
+          <track>5</track>
+          <durationType>quarter</durationType>
+          <noStem>1</noStem>
+          <Note>
+            <track>5</track>
+            <Accidental>
+              <subtype>sharp</subtype>
+              <track>5</track>
+              </Accidental>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            <tpc2>20</tpc2>
+            <play>0</play>
+            </Note>
+          </Chord>
+        <Rest>
+          <offset x="0" y="-3"/>
+          <track>5</track>
+          <durationType>half</durationType>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Slur id="2">
+          <track>4</track>
+          </Slur>
+        <Chord>
           <durationType>16th</durationType>
+          <Slur type="start" id="2"/>
           <Note>
-            <pitch>84</pitch>
+            <pitch>60</pitch>
             <tpc>14</tpc>
-            <velocity>80</velocity>
-            <veloType>user</veloType>
+            <tpc2>15</tpc2>
             </Note>
           </Chord>
         <Chord>
           <durationType>16th</durationType>
           <Note>
-            <pitch>83</pitch>
-            <tpc>19</tpc>
-            <velocity>80</velocity>
-            <veloType>user</veloType>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>eighth</durationType>
+          <Slur type="stop" id="2"/>
+          <Note>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
             </Note>
           </Chord>
         <Chord>
           <durationType>16th</durationType>
+          <Articulation>
+            <subtype>trill</subtype>
+            <ornamentStyle>baroque</ornamentStyle>
+            </Articulation>
           <Note>
-            <pitch>81</pitch>
-            <tpc>17</tpc>
-            <velocity>80</velocity>
-            <veloType>user</veloType>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
             </Note>
           </Chord>
         <Chord>
           <durationType>16th</durationType>
           <Note>
-            <pitch>79</pitch>
-            <tpc>15</tpc>
-            <velocity>80</velocity>
-            <veloType>user</veloType>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <tpc2>17</tpc2>
             </Note>
           </Chord>
-        </Measure>
-      </Staff>
-    <Staff id="2">
-      <Measure number="1">
-        <TimeSig>
-          <sigN>4</sigN>
-          <sigD>4</sigD>
-          <showCourtesySig>1</showCourtesySig>
-          </TimeSig>
-        <Rest>
-          <durationType>half</durationType>
-          </Rest>
-        <Rest>
-          <durationType>quarter</durationType>
-          </Rest>
-        <Rest>
-          <durationType>eighth</durationType>
-          </Rest>
         <Chord>
           <durationType>eighth</durationType>
           <Note>
+            <Tie id="3">
+              </Tie>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <endSpanner id="3"/>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>12</tpc2>
+            </Note>
+          </Chord>
+        <Slur id="4">
+          <track>4</track>
+          </Slur>
+        <Chord>
+          <durationType>16th</durationType>
+          <Slur type="start" id="4"/>
+          <Note>
+            <Accidental>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>16th</durationType>
+          <Note>
             <pitch>72</pitch>
             <tpc>14</tpc>
-            <tpc2>16</tpc2>
-            <velocity>80</velocity>
-            <veloType>user</veloType>
+            <tpc2>15</tpc2>
             </Note>
           </Chord>
-        </Measure>
-      </Staff>
-    <Staff id="3">
-      <Measure number="1">
-        <TimeSig>
-          <sigN>4</sigN>
-          <sigD>4</sigD>
-          <showCourtesySig>1</showCourtesySig>
-          </TimeSig>
-        <Rest>
-          <durationType>eighth</durationType>
-          </Rest>
         <Chord>
-          <durationType>eighth</durationType>
+          <durationType>16th</durationType>
           <Note>
-            <pitch>41</pitch>
-            <tpc>13</tpc>
-            <velocity>80</velocity>
-            <veloType>user</veloType>
+            <pitch>70</pitch>
+            <tpc>12</tpc>
+            <tpc2>13</tpc2>
             </Note>
           </Chord>
         <Chord>
-          <durationType>quarter</durationType>
-          <Articulation>
-            <subtype>staccato</subtype>
-            </Articulation>
+          <durationType>16th</durationType>
           <Note>
-            <pitch>40</pitch>
-            <tpc>18</tpc>
-            <velocity>80</velocity>
-            <veloType>user</veloType>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <tpc2>18</tpc2>
             </Note>
           </Chord>
         <Chord>
-          <durationType>quarter</durationType>
-          <Articulation>
-            <subtype>staccato</subtype>
-            </Articulation>
+          <durationType>16th</durationType>
           <Note>
-            <pitch>41</pitch>
-            <tpc>13</tpc>
-            <velocity>80</velocity>
-            <veloType>user</veloType>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>16</tpc2>
             </Note>
           </Chord>
-        <Rest>
-          <durationType>eighth</durationType>
-          </Rest>
         <Chord>
-          <durationType>eighth</durationType>
+          <durationType>16th</durationType>
+          <Slur type="stop" id="4"/>
           <Note>
-            <pitch>45</pitch>
-            <tpc>17</tpc>
-            <velocity>80</velocity>
-            <veloType>user</veloType>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <tpc2>14</tpc2>
             </Note>
           </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
         </Measure>
       </Staff>
     </Score>
diff --git a/mtest/libmscore/midi/tst_midi.cpp b/mtest/libmscore/midi/tst_midi.cpp
index d174651..665b90d 100644
--- a/mtest/libmscore/midi/tst_midi.cpp
+++ b/mtest/libmscore/midi/tst_midi.cpp
@@ -24,6 +24,7 @@
 #include "libmscore/note.h"
 #include "libmscore/keysig.h"
 #include "mscore/exportmidi.h"
+#include "mscore/preferences.h"
 #include <QIODevice>
 
 #include "libmscore/mcursor.h"
@@ -43,6 +44,7 @@ using namespace Ms;
 class TestMidi : public QObject, public MTest
       {
       Q_OBJECT
+      void midiExportTestRef(const QString& file);
 
    private slots:
       void initTestCase();
@@ -51,6 +53,9 @@ class TestMidi : public QObject, public MTest
       void midi03();
       void events_data();
       void events();
+      void midiBendsExport1() { midiExportTestRef("testBends1"); }
+      void midiBendsExport2() { midiExportTestRef("testBends2"); }      // Play property test
+      void midiPortExport()   { midiExportTestRef("testMidiPort"); }
       };
 
 //---------------------------------------------------------
@@ -83,9 +88,23 @@ void TestMidi::events_data()
       QTest::newRow("testSwingTexts") <<  "testSwingTexts";
       // ornaments
       QTest::newRow("testMordents") <<  "testMordents";
+      QTest::newRow("testBaroqueOrnaments") << "testBaroqueOrnaments";
+      QTest::newRow("testOrnamentAccidentals") << "testOrnamentAccidentals";
       QTest::newRow("testGraceBefore") <<  "testGraceBefore";
+      QTest::newRow("testKantataBWV140Excerpts") <<  "testKantataBWV140Excerpts";
+      QTest::newRow("testTrillTransposingInstrument") <<  "testTrillTransposingInstrument";
+      QTest::newRow("testAndanteExcerpts") <<  "testAndanteExcerpts";
+      QTest::newRow("testTrillLines") << "testTrillLines";
+      QTest::newRow("testTrillTempos") << "testTrillTempos";
+      QTest::newRow("testOrnaments") << "testOrnaments";
+      QTest::newRow("testTieTrill") << "testTieTrill";
+      // glissando
+      QTest::newRow("testGlissando") << "testGlissando";
+      QTest::newRow("testGlissandoAcrossStaffs") << "testGlissandoAcrossStaffs";
       // pedal
       QTest::newRow("testPedal") <<  "testPedal";
+      // multi note tremolo
+      QTest::newRow("testMultiNoteTremolo") << "testMultiNoteTremolo";
       }
 
 //---------------------------------------------------------
@@ -362,6 +381,24 @@ void TestMidi::events()
      // QVERIFY(saveCompareScore(score, writeFile, reference));
       }
 
+//---------------------------------------------------------
+//   midiExportTest
+//   read a MuseScore mscx file, write to a MIDI file and verify against reference
+//---------------------------------------------------------
+
+void TestMidi::midiExportTestRef(const QString& file)
+      {
+      MScore::debugMode = true;
+      preferences.midiExportRPNs = true;
+      Score* score = readScore(DIR + file + ".mscx");
+      QVERIFY(score);
+      score->doLayout();
+      score->rebuildMidiMapping();
+      QVERIFY(saveMidi(score, QString(file) + ".mid"));
+      QVERIFY(compareFiles(QString(file) + ".mid", DIR + QString(file) + "-ref.mid"));
+      delete score;
+      }
+
 QTEST_MAIN(TestMidi)
 
 #include "tst_midi.moc"
diff --git a/mtest/libmscore/note/tst_note.cpp b/mtest/libmscore/note/tst_note.cpp
index 7ff829f..2aa5855 100644
--- a/mtest/libmscore/note/tst_note.cpp
+++ b/mtest/libmscore/note/tst_note.cpp
@@ -16,6 +16,7 @@
 #include "libmscore/mscore.h"
 #include "libmscore/score.h"
 #include "libmscore/note.h"
+#include "libmscore/accidental.h"
 #include "libmscore/chord.h"
 #include "libmscore/measure.h"
 #include "libmscore/segment.h"
@@ -315,12 +316,12 @@ void TestNote::grace()
       {
       Score* score = readScore(DIR + "grace.mscx");
       score->doLayout();
-      Chord* chord = score->firstMeasure()->findChord(0, 0);
+      Ms::Chord* chord = score->firstMeasure()->findChord(0, 0);
       Note* note = chord->upNote();
 
       // create
       score->setGraceNote(chord, note->pitch(), NoteType::APPOGGIATURA, MScore::division/2);
-      Chord* gc = chord->graceNotes().first();
+      Ms::Chord* gc = chord->graceNotes().first();
       Note* gn = gc->notes().first();
 //      Note* n = static_cast<Note*>(writeReadElement(gn));
 //      QCOMPARE(n->noteType(), NoteType::APPOGGIATURA);
@@ -341,7 +342,7 @@ void TestNote::grace()
       tr->setTrack(gc->track());
       score->undoAddElement(tr);
       score->endCmd();
-//      Chord* c = static_cast<Chord*>(writeReadElement(gc));
+//      Ms::Chord* c = static_cast<Ms::Chord*>(writeReadElement(gc));
 //      QVERIFY(c->tremolo() != 0);
 //      delete c;
 
@@ -353,7 +354,7 @@ void TestNote::grace()
       ar->setTrack(gc->track());
       score->undoAddElement(ar);
       score->endCmd();
-//      c = static_cast<Chord*>(writeReadElement(gc));
+//      c = static_cast<Ms::Chord*>(writeReadElement(gc));
 //      QVERIFY(c->articulations().size() == 1);
 //      delete c;
 
@@ -404,7 +405,7 @@ void TestNote::tpcTranspose()
       score->startCmd();
       Measure* m = score->firstMeasure();
       score->select(m, SelectType::SINGLE, 0);
-      score->changeAccidental(Accidental::Type::FLAT);
+      score->changeAccidental(AccidentalType::FLAT);
       score->endCmd();
 
       score->startCmd();
diff --git a/mtest/libmscore/parts/part-fingering-add.mscx b/mtest/libmscore/parts/part-fingering-add.mscx
index 5ef7411..32f40ea 100644
--- a/mtest/libmscore/parts/part-fingering-add.mscx
+++ b/mtest/libmscore/parts/part-fingering-add.mscx
@@ -163,7 +163,7 @@
             <lid>9</lid>
             <Fingering>
               <lid>118</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>3</text>
               </Fingering>
             <pitch>74</pitch>
@@ -801,7 +801,7 @@
               <lid>9</lid>
               <Fingering>
                 <lid>118</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>3</text>
                 </Fingering>
               <pitch>74</pitch>
diff --git a/mtest/libmscore/parts/part-fingering-uradd.mscx b/mtest/libmscore/parts/part-fingering-uradd.mscx
index 4492156..058e746 100644
--- a/mtest/libmscore/parts/part-fingering-uradd.mscx
+++ b/mtest/libmscore/parts/part-fingering-uradd.mscx
@@ -163,7 +163,7 @@
             <lid>9</lid>
             <Fingering>
               <lid>119</lid>
-              <pos x="0.6498" y="-1.6"/>
+              <pos x="0.657562" y="-1.50062"/>
               <text>3</text>
               </Fingering>
             <pitch>74</pitch>
@@ -801,7 +801,7 @@
               <lid>9</lid>
               <Fingering>
                 <lid>119</lid>
-                <pos x="0.6498" y="-1.6"/>
+                <pos x="0.657562" y="-1.50062"/>
                 <text>3</text>
                 </Fingering>
               <pitch>74</pitch>
diff --git a/mtest/libmscore/parts/tst_parts.cpp b/mtest/libmscore/parts/tst_parts.cpp
index b82ebe4..78b422e 100644
--- a/mtest/libmscore/parts/tst_parts.cpp
+++ b/mtest/libmscore/parts/tst_parts.cpp
@@ -897,7 +897,7 @@ Score* TestParts::doAddImage()
 
       Measure* m   = score->firstMeasure();
       Segment* s   = m->tick2segment(MScore::division);
-      Chord* chord = static_cast<Chord*>(s->element(0));
+      Ms::Chord* chord = static_cast<Ms::Chord*>(s->element(0));
       Note* note   = chord->upNote();
       DropData dd;
       dd.view = 0;
diff --git a/mtest/libmscore/repeat/repeat24.mscx b/mtest/libmscore/repeat/repeat24.mscx
new file mode 100644
index 0000000..9687dbe
--- /dev/null
+++ b/mtest/libmscore/repeat/repeat24.mscx
@@ -0,0 +1,475 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <TextStyle>
+        <halign>center</halign>
+        <valign>top</valign>
+        <offsetType>absolute</offsetType>
+        <name>Title</name>
+        <family>Times New Roman</family>
+        <size>36</size>
+        </TextStyle>
+      <TextStyle>
+        <halign>center</halign>
+        <valign>top</valign>
+        <xoffset>0</xoffset>
+        <yoffset>10</yoffset>
+        <offsetType>absolute</offsetType>
+        <name>Subtitle</name>
+        <family>Times New Roman</family>
+        <size>24</size>
+        </TextStyle>
+      <TextStyle>
+        <halign>right</halign>
+        <valign>bottom</valign>
+        <offsetType>absolute</offsetType>
+        <name>Composer</name>
+        <family>Times New Roman</family>
+        <size>14</size>
+        </TextStyle>
+      <TextStyle>
+        <halign>left</halign>
+        <valign>bottom</valign>
+        <offsetType>absolute</offsetType>
+        <name>Lyricist</name>
+        <family>Times New Roman</family>
+        <size>14</size>
+        </TextStyle>
+      <TextStyle>
+        <halign>center</halign>
+        <valign>baseline</valign>
+        <xoffset>0</xoffset>
+        <yoffset>6</yoffset>
+        <offsetType>spatium</offsetType>
+        <name>Lyrics Odd Lines</name>
+        <family>FreeSerif</family>
+        <size>10</size>
+        <sizeIsSpatiumDependent>1</sizeIsSpatiumDependent>
+        <foregroundColor r="150" g="0" b="0" a="255"/>
+        </TextStyle>
+      <TextStyle>
+        <halign>center</halign>
+        <valign>baseline</valign>
+        <xoffset>0</xoffset>
+        <yoffset>6</yoffset>
+        <offsetType>spatium</offsetType>
+        <name>Lyrics Even Lines</name>
+        <family>FreeSerif</family>
+        <size>10</size>
+        <sizeIsSpatiumDependent>1</sizeIsSpatiumDependent>
+        <foregroundColor r="150" g="0" b="0" a="255"/>
+        </TextStyle>
+      <TextStyle>
+        <halign>right</halign>
+        <valign>center</valign>
+        <offsetType>absolute</offsetType>
+        <name>Instrument Name (Long)</name>
+        <family>Times New Roman</family>
+        <size>9</size>
+        <sizeIsSpatiumDependent>1</sizeIsSpatiumDependent>
+        <foregroundColor r="85" g="85" b="255" a="255"/>
+        </TextStyle>
+      <TextStyle>
+        <halign>right</halign>
+        <valign>center</valign>
+        <offsetType>absolute</offsetType>
+        <name>Instrument Name (Short)</name>
+        <family>Times New Roman</family>
+        <size>9</size>
+        <sizeIsSpatiumDependent>1</sizeIsSpatiumDependent>
+        <foregroundColor r="85" g="85" b="255" a="255"/>
+        </TextStyle>
+      <TextStyle>
+        <halign>center</halign>
+        <valign>baseline</valign>
+        <xoffset>0</xoffset>
+        <yoffset>8</yoffset>
+        <offsetType>spatium</offsetType>
+        <name>Dynamics</name>
+        <family>FreeSerif</family>
+        <size>11</size>
+        <sizeIsSpatiumDependent>1</sizeIsSpatiumDependent>
+        </TextStyle>
+      <TextStyle>
+        <halign>left</halign>
+        <valign>baseline</valign>
+        <xoffset>0</xoffset>
+        <yoffset>-4</yoffset>
+        <offsetType>spatium</offsetType>
+        <name>Tempo</name>
+        <family>Times New Roman</family>
+        <size>10</size>
+        <bold>1</bold>
+        <italic>1</italic>
+        <sizeIsSpatiumDependent>1</sizeIsSpatiumDependent>
+        <foregroundColor r="255" g="0" b="0" a="255"/>
+        <systemFlag>1</systemFlag>
+        </TextStyle>
+      <TextStyle>
+        <halign>center</halign>
+        <valign>bottom</valign>
+        <xoffset>-1.2</xoffset>
+        <yoffset>-2</yoffset>
+        <offsetType>spatium</offsetType>
+        <name>Measure Number</name>
+        <family>FreeSerif</family>
+        <size>8</size>
+        <sizeIsSpatiumDependent>1</sizeIsSpatiumDependent>
+        <foregroundColor r="140" g="70" b="0" a="255"/>
+        <backgroundColor r="255" g="200" b="180" a="0"/>
+        <frameWidthS>0.1</frameWidthS>
+        <paddingWidthS>0.5</paddingWidthS>
+        <frameRound>0</frameRound>
+        <frameColor r="220" g="160" b="150" a="255"/>
+        </TextStyle>
+      <TextStyle>
+        <halign>left</halign>
+        <valign>center</valign>
+        <offsetType>spatium</offsetType>
+        <name>Ottava</name>
+        <family>FreeSerif</family>
+        <size>10</size>
+        <italic>1</italic>
+        <sizeIsSpatiumDependent>1</sizeIsSpatiumDependent>
+        </TextStyle>
+      <TextStyle>
+        <halign>left</halign>
+        <valign>baseline</valign>
+        <xoffset>0</xoffset>
+        <yoffset>0.15</yoffset>
+        <offsetType>spatium</offsetType>
+        <name>Pedal</name>
+        <family>FreeSerif</family>
+        <size>10</size>
+        <sizeIsSpatiumDependent>1</sizeIsSpatiumDependent>
+        </TextStyle>
+      <TextStyle>
+        <halign>center</halign>
+        <valign>center</valign>
+        <offsetType>spatium</offsetType>
+        <name>Bend</name>
+        <family>FreeSerif</family>
+        <size>8</size>
+        <sizeIsSpatiumDependent>1</sizeIsSpatiumDependent>
+        </TextStyle>
+      <TextStyle>
+        <halign>left</halign>
+        <valign>bottom</valign>
+        <xoffset>0</xoffset>
+        <yoffset>-3</yoffset>
+        <offsetType>spatium</offsetType>
+        <name>Instrument Change</name>
+        <family>Times New Roman</family>
+        <size>10</size>
+        <bold>1</bold>
+        <sizeIsSpatiumDependent>1</sizeIsSpatiumDependent>
+        <foregroundColor r="0" g="85" b="127" a="255"/>
+        </TextStyle>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>57.0217</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>57.0217</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Flûte</trackName>
+      <Instrument>
+        <longName>Flûte</longName>
+        <shortName>Fl.</shortName>
+        <trackName>Flûte</trackName>
+        <minPitchP>59</minPitchP>
+        <maxPitchP>98</maxPitchP>
+        <minPitchA>60</minPitchA>
+        <maxPitchA>93</maxPitchA>
+        <instrumentId>wind.flutes.flute</instrumentId>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="73"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>Repeat Test</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Marker>
+          <style>Repeat Text Left</style>
+          <text><sym>segno</sym></text>
+          <label>segno</label>
+          </Marker>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <startRepeat/>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Jump>
+          <style>Repeat Text Right</style>
+          <text>D.S.</text>
+          <jumpTo>segno</jumpTo>
+          <playUntil>end</playUntil>
+          <continueAt></continueAt>
+          </Jump>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>double</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="5">
+        <endRepeat>2</endRepeat>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/repeat/repeat25.mscx b/mtest/libmscore/repeat/repeat25.mscx
new file mode 100644
index 0000000..3042dbc
--- /dev/null
+++ b/mtest/libmscore/repeat/repeat25.mscx
@@ -0,0 +1,160 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <startRepeat/>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <BarLine>
+          <subtype>start-repeat</subtype>
+          <span>1</span>
+          </BarLine>
+        <StaffText>
+          <pos x="-8.19999" y="-6"/>
+          <text>1,2,1,2,3,4,2,3,4,5,4,5</text>
+          </StaffText>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <endRepeat>2</endRepeat>
+        <Marker>
+          <style>Repeat Text Left</style>
+          <text><sym>segno</sym></text>
+          <label>segno</label>
+          </Marker>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="3">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="4">
+        <startRepeat/>
+        <Jump>
+          <style>Repeat Text Right</style>
+          <text>D.S.</text>
+          <jumpTo>segno</jumpTo>
+          <playUntil>end</playUntil>
+          <continueAt></continueAt>
+          </Jump>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="5">
+        <endRepeat>2</endRepeat>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/repeat/repeat26.mscx b/mtest/libmscore/repeat/repeat26.mscx
new file mode 100644
index 0000000..8daf07b
--- /dev/null
+++ b/mtest/libmscore/repeat/repeat26.mscx
@@ -0,0 +1,226 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">Composer</metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle">Title</metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <startRepeat/>
+        <endRepeat>2</endRepeat>
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Jump>
+          <style>Repeat Text Right</style>
+          <text>Empty Jump</text>
+          <jumpTo></jumpTo>
+          <playUntil></playUntil>
+          <continueAt></continueAt>
+          </Jump>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <BarLine>
+          <subtype>start-repeat</subtype>
+          <span>1</span>
+          </BarLine>
+        <StaffText>
+          <text>11223</text>
+          </StaffText>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <startRepeat/>
+        <endRepeat>2</endRepeat>
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Jump>
+          <style>Repeat Text Right</style>
+          <text>Garbage Jump</text>
+          <jumpTo>test</jumpTo>
+          <playUntil>test</playUntil>
+          <continueAt>test</continueAt>
+          </Jump>
+        <BarLine>
+          <subtype>start-repeat</subtype>
+          <span>1</span>
+          </BarLine>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/repeat/tst_repeat.cpp b/mtest/libmscore/repeat/tst_repeat.cpp
index bc7a379..9e6a52f 100644
--- a/mtest/libmscore/repeat/tst_repeat.cpp
+++ b/mtest/libmscore/repeat/tst_repeat.cpp
@@ -62,6 +62,11 @@ class TestRepeat : public QObject, public MTest
       // complex roadmap
       void repeat23() { repeat("repeat23.mscx", "1;2;1;2;3;2;3;4;5;6;7;6;7;8;9;10;11;9;10;12;12;13;14;13;14;15;16;13;14"); }
       
+      void repeat24() { repeat("repeat24.mscx", "1;2;3;4;2;3;4;5;3;4;5;6"); } // imbricated DS and ||: :||
+      void repeat25() { repeat("repeat25.mscx", "1;2;1;2;3;4;2;3;4;5;4;5"); } // imbricated DS and ||: :||
+      
+      void repeat26() { repeat("repeat26.mscx", "1;1;2;2;3"); } // empty and garbage jump
+
       };
 
 //---------------------------------------------------------
@@ -74,7 +79,7 @@ void TestRepeat::initTestCase()
       }
 
 //---------------------------------------------------------
-//   initTestCase
+//   repeat
 //---------------------------------------------------------
 
 void TestRepeat::repeat(const char* f1, const QString & ref)
diff --git a/mtest/libmscore/selectionrangedelete/tst_selectionrangedelete.cpp b/mtest/libmscore/selectionrangedelete/tst_selectionrangedelete.cpp
index 0df842c..9d4216a 100644
--- a/mtest/libmscore/selectionrangedelete/tst_selectionrangedelete.cpp
+++ b/mtest/libmscore/selectionrangedelete/tst_selectionrangedelete.cpp
@@ -23,7 +23,7 @@
 using namespace Ms;
 
 //---------------------------------------------------------
-//   SelectionRangeDelete
+//   TestSelectionRangeDelete
 //---------------------------------------------------------
 
 class TestSelectionRangeDelete : public QObject, public MTest
diff --git a/mtest/libmscore/spanners/tst_spanners.cpp b/mtest/libmscore/spanners/tst_spanners.cpp
index a99c49f..5b4e27a 100644
--- a/mtest/libmscore/spanners/tst_spanners.cpp
+++ b/mtest/libmscore/spanners/tst_spanners.cpp
@@ -82,7 +82,7 @@ void TestSpanners::spanners01()
       QVERIFY(msr);
       Segment*    seg   = msr->findSegment(Segment::Type::ChordRest, 0);
       QVERIFY(seg);
-      Chord*      chord = static_cast<Chord*>(seg->element(0));
+      Ms::Chord*      chord = static_cast<Ms::Chord*>(seg->element(0));
       QVERIFY(chord && chord->type() == Element::Type::CHORD);
       Note*       note  = chord->upNote();
       QVERIFY(note);
@@ -98,7 +98,7 @@ void TestSpanners::spanners01()
       QVERIFY(msr);
       seg   = msr->first();
       QVERIFY(seg);
-      chord = static_cast<Chord*>(seg->element(0));   // voice 0 of staff 0
+      chord = static_cast<Ms::Chord*>(seg->element(0));   // voice 0 of staff 0
       QVERIFY(chord && chord->type() == Element::Type::CHORD);
       note  = chord->upNote();
       QVERIFY(note);
@@ -114,7 +114,7 @@ void TestSpanners::spanners01()
       QVERIFY(msr);
       seg   = msr->first();
       QVERIFY(seg);
-      chord = static_cast<Chord*>(seg->element(4));   // voice 0 of staff 1
+      chord = static_cast<Ms::Chord*>(seg->element(4));   // voice 0 of staff 1
       QVERIFY(chord && chord->type() == Element::Type::CHORD);
       note  = chord->upNote();
       QVERIFY(note);
@@ -130,7 +130,7 @@ void TestSpanners::spanners01()
       QVERIFY(msr);
       seg   = msr->first();
       QVERIFY(seg);
-      chord = static_cast<Chord*>(seg->element(0));   // voice 0 of staff 0
+      chord = static_cast<Ms::Chord*>(seg->element(0));   // voice 0 of staff 0
       QVERIFY(chord && chord->type() == Element::Type::CHORD);
       note  = chord->upNote();
       QVERIFY(note);
@@ -146,7 +146,7 @@ void TestSpanners::spanners01()
       QVERIFY(msr);
       seg   = msr->first();
       QVERIFY(seg);
-      chord = static_cast<Chord*>(seg->element(0));   // voice 0 of staff 0
+      chord = static_cast<Ms::Chord*>(seg->element(0));   // voice 0 of staff 0
       QVERIFY(chord && chord->type() == Element::Type::CHORD);
       note  = chord->upNote();
       QVERIFY(note);
@@ -199,7 +199,7 @@ void TestSpanners::spanners03()
       QVERIFY(msr);
       Segment*    seg   = msr->findSegment(Segment::Type::ChordRest, 0);
       QVERIFY(seg);
-      Chord*      chord = static_cast<Chord*>(seg->element(0));
+      Ms::Chord*      chord = static_cast<Ms::Chord*>(seg->element(0));
       QVERIFY(chord && chord->type() == Element::Type::CHORD);
       Note*       note  = chord->upNote();
       QVERIFY(note);
@@ -211,7 +211,7 @@ void TestSpanners::spanners03()
 
       // GLISSANDO FROM AFTER-GRACE TO BEFORE-GRACE OF NEXT CHORD
       // go to last after-grace of chord and drop a glissando on it
-      Chord*      grace = chord->graceNotesAfter().last();
+      Ms::Chord*      grace = chord->graceNotesAfter().last();
       QVERIFY(grace && grace->type() == Element::Type::CHORD);
       note              = grace->upNote();
       QVERIFY(note);
@@ -224,7 +224,7 @@ void TestSpanners::spanners03()
       // go to next chord
       seg               = seg->nextCR(0);
       QVERIFY(seg);
-      chord             = static_cast<Chord*>(seg->element(0));
+      chord             = static_cast<Ms::Chord*>(seg->element(0));
       QVERIFY(chord && chord->type() == Element::Type::CHORD);
       note              = chord->upNote();
       QVERIFY(note);
@@ -237,7 +237,7 @@ void TestSpanners::spanners03()
       // go to next chord
       seg               = seg->nextCR(0);
       QVERIFY(seg);
-      chord             = static_cast<Chord*>(seg->element(0));
+      chord             = static_cast<Ms::Chord*>(seg->element(0));
       QVERIFY(chord && chord->type() == Element::Type::CHORD);
       // go to its last before-grace note
       grace             = chord->graceNotesBefore().last();
@@ -335,7 +335,7 @@ void TestSpanners::spanners06()
       QVERIFY(msr);
       Segment*    seg   = msr->findSegment(Segment::Type::ChordRest, 0);
       QVERIFY(seg);
-      Chord*      chord = static_cast<Chord*>(seg->element(0));
+      Ms::Chord*      chord = static_cast<Ms::Chord*>(seg->element(0));
       QVERIFY(chord && chord->type() == Element::Type::CHORD);
       Note*       note  = chord->upNote();
       QVERIFY(note);
@@ -368,7 +368,7 @@ void TestSpanners::spanners07()
       QVERIFY(msr);
       Segment*    seg   = msr->findSegment(Segment::Type::ChordRest, 0);
       QVERIFY(seg);
-      Chord*      chord = static_cast<Chord*>(seg->element(0));
+      Ms::Chord*      chord = static_cast<Ms::Chord*>(seg->element(0));
       QVERIFY(chord && chord->type() == Element::Type::CHORD);
       Note*       note  = chord->upNote();
       QVERIFY(note);
@@ -403,7 +403,7 @@ void TestSpanners::spanners08()
       QVERIFY(msr);
       Segment*    seg   = msr->findSegment(Segment::Type::ChordRest, 0);
       QVERIFY(seg);
-      Chord*      chord = static_cast<Chord*>(seg->element(0));
+      Ms::Chord*      chord = static_cast<Ms::Chord*>(seg->element(0));
       QVERIFY(chord && chord->type() == Element::Type::CHORD);
       QVERIFY(chord->lyricsList().size() > 0);
       Lyrics*     lyr   = chord->lyrics(0);
diff --git a/mtest/libmscore/text/tst_text.cpp b/mtest/libmscore/text/tst_text.cpp
index e723482..2e2ec8a 100644
--- a/mtest/libmscore/text/tst_text.cpp
+++ b/mtest/libmscore/text/tst_text.cpp
@@ -21,7 +21,7 @@
 using namespace Ms;
 
 //---------------------------------------------------------
-//   TestNote
+//   TestText
 //---------------------------------------------------------
 
 class TestText : public QObject, public MTest
@@ -34,6 +34,7 @@ class TestText : public QObject, public MTest
       void testSpecialSymbols();
       void testTextProperties();
       void testCompatibility();
+      void testDelete();
       };
 
 //---------------------------------------------------------
@@ -46,6 +47,28 @@ void TestText::initTestCase()
       }
 
 //---------------------------------------------------------
+//   testDelete
+//---------------------------------------------------------
+
+void TestText::testDelete()
+      {
+      Text* text = new Text(score);
+      text->setTextStyle(score->textStyle(TextStyleType::DYNAMICS));
+
+      text->setPlainText("aaa bbb ccc\nddd eee fff\nggg hhh iii");
+      text->layout();
+      QCOMPARE(text->xmlText(), QString("aaa bbb ccc\nddd eee fff\nggg hhh iii"));
+
+      text->startEdit(0, QPoint());
+      text->moveCursorToStart();
+      QVERIFY(text->movePosition(QTextCursor::Down, QTextCursor::KeepAnchor, 2));
+      text->deleteSelectedText();
+      text->endEdit();
+      QCOMPARE(text->xmlText(), QString("ggg hhh iii"));
+      }
+
+
+//---------------------------------------------------------
 ///   testText
 //---------------------------------------------------------
 
diff --git a/mtest/libmscore/tools/tst_tools.cpp b/mtest/libmscore/tools/tst_tools.cpp
index 8a3f7e2..b53b2a8 100644
--- a/mtest/libmscore/tools/tst_tools.cpp
+++ b/mtest/libmscore/tools/tst_tools.cpp
@@ -32,6 +32,9 @@ class TestTools : public QObject, public MTest
 
    private slots:
       void initTestCase();
+      void undoAddLineBreaks();
+      void undoLockLineBreaks();
+      void undoRemoveLineBreaks();
       void undoExplode();
       void undoImplode();
       void undoImplodeVoice();
@@ -54,6 +57,105 @@ void TestTools::initTestCase()
       }
 
 //---------------------------------------------------------
+//   undoAddLineBreaks
+//---------------------------------------------------------
+
+void TestTools::undoAddLineBreaks()
+      {
+      QString readFile(DIR + "undoAddLineBreaks.mscx");
+      QString writeFile1("undoAddLineBreaks01-test.mscx");
+      QString reference1(DIR  + "undoAddLineBreaks01-ref.mscx");
+      QString writeFile2("undoAddLineBreaks02-test.mscx");
+      QString reference2(DIR  + "undoAddLineBreaks02-ref.mscx");
+
+      Score* score = readScore(readFile);
+      score->doLayout();
+
+      // select all
+      score->startCmd();
+      score->cmdSelectAll();
+      score->endCmd();
+
+      // do
+      score->startCmd();
+      score->addRemoveBreaks(4, false);
+      score->endCmd();
+      QVERIFY(saveCompareScore(score, writeFile1, reference1));
+
+      // undo
+      score->undo()->undo();
+      QVERIFY(saveCompareScore(score, writeFile2, reference2));
+
+      delete score;
+      }
+
+//---------------------------------------------------------
+//   undoAddLineBreaks
+//---------------------------------------------------------
+
+void TestTools::undoLockLineBreaks()
+      {
+      QString readFile(DIR + "undoLockLineBreaks.mscx");
+      QString writeFile1("undoLockLineBreaks01-test.mscx");
+      QString reference1(DIR  + "undoLockLineBreaks01-ref.mscx");
+      QString writeFile2("undoLockLineBreaks02-test.mscx");
+      QString reference2(DIR  + "undoLockLineBreaks02-ref.mscx");
+
+      Score* score = readScore(readFile);
+      score->doLayout();
+
+      // select all
+      score->startCmd();
+      score->cmdSelectAll();
+      score->endCmd();
+
+      // do
+      score->startCmd();
+      score->addRemoveBreaks(0, true);
+      score->endCmd();
+      QVERIFY(saveCompareScore(score, writeFile1, reference1));
+
+      // undo
+      score->undo()->undo();
+      QVERIFY(saveCompareScore(score, writeFile2, reference2));
+
+      delete score;
+      }
+
+//---------------------------------------------------------
+//   undoRemoveLineBreaks
+//---------------------------------------------------------
+
+void TestTools::undoRemoveLineBreaks()
+      {
+      QString readFile(DIR + "undoRemoveLineBreaks.mscx");
+      QString writeFile1("undoRemoveLineBreaks01-test.mscx");
+      QString reference1(DIR  + "undoRemoveLineBreaks01-ref.mscx");
+      QString writeFile2("undoRemoveLineBreaks02-test.mscx");
+      QString reference2(DIR  + "undoRemoveLineBreaks02-ref.mscx");
+
+      Score* score = readScore(readFile);
+      score->doLayout();
+
+      // select all
+      score->startCmd();
+      score->cmdSelectAll();
+      score->endCmd();
+
+      // do
+      score->startCmd();
+      score->addRemoveBreaks(0, false);
+      score->endCmd();
+      QVERIFY(saveCompareScore(score, writeFile1, reference1));
+
+      // undo
+      score->undo()->undo();
+      QVERIFY(saveCompareScore(score, writeFile2, reference2));
+
+      delete score;
+      }
+
+//---------------------------------------------------------
 //   undoExplode
 //---------------------------------------------------------
 
@@ -314,7 +416,7 @@ void TestTools::undoChangeVoice()
       for (Segment* s = score->firstSegment(Segment::Type::ChordRest); s; s = s->next1()) {
             ChordRest* cr = static_cast<ChordRest*>(s->element(0));
             if (cr && cr->type() == Element::Type::CHORD) {
-                  Chord* c = static_cast<Chord*>(cr);
+                  Ms::Chord* c = static_cast<Ms::Chord*>(cr);
                   score->select(c->downNote(), SelectType::ADD);
                   }
             }
diff --git a/mtest/libmscore/tools/undoAddLineBreaks.mscx b/mtest/libmscore/tools/undoAddLineBreaks.mscx
new file mode 100644
index 0000000..c8082ea
--- /dev/null
+++ b/mtest/libmscore/tools/undoAddLineBreaks.mscx
@@ -0,0 +1,957 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <createMultiMeasureRests>1</createMultiMeasureRests>
+      <page-layout>
+        <page-height>1584</page-height>
+        <page-width>1224</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="15">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="17" len="16/4">
+        <multiMeasureRest>4</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="16" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>32640</tick>
+      <Measure number="18">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="19">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="20">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="21">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="22">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="23">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="24">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="25">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="26">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="27">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="28">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="29">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="30">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="31">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="31" len="8/4">
+        <multiMeasureRest>2</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="8" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>59520</tick>
+      <Measure number="32">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/tools/undoAddLineBreaks01-ref.mscx b/mtest/libmscore/tools/undoAddLineBreaks01-ref.mscx
new file mode 100644
index 0000000..605b7e9
--- /dev/null
+++ b/mtest/libmscore/tools/undoAddLineBreaks01-ref.mscx
@@ -0,0 +1,981 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <createMultiMeasureRests>1</createMultiMeasureRests>
+      <page-layout>
+        <page-height>1584</page-height>
+        <page-width>1224</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="15">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="17" len="16/4">
+        <multiMeasureRest>4</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="16" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>32640</tick>
+      <Measure number="18">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="19">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="20">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="21">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="22">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="23">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="24">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="25">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="26">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="27">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="28">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="29">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="30">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="31">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="31" len="8/4">
+        <multiMeasureRest>2</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="8" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>59520</tick>
+      <Measure number="32">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/tools/undoAddLineBreaks02-ref.mscx b/mtest/libmscore/tools/undoAddLineBreaks02-ref.mscx
new file mode 100644
index 0000000..6aefadc
--- /dev/null
+++ b/mtest/libmscore/tools/undoAddLineBreaks02-ref.mscx
@@ -0,0 +1,963 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <createMultiMeasureRests>1</createMultiMeasureRests>
+      <page-layout>
+        <page-height>1584</page-height>
+        <page-width>1224</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="15">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="17" len="16/4">
+        <multiMeasureRest>4</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="16" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>32640</tick>
+      <Measure number="18">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="19">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="20">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="21">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="22">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="23">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="24">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="25">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="26">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="27">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="28">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="29">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="30">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="31">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="31" len="8/4">
+        <multiMeasureRest>2</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="8" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>59520</tick>
+      <Measure number="32">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/tools/undoLockLineBreaks.mscx b/mtest/libmscore/tools/undoLockLineBreaks.mscx
new file mode 100644
index 0000000..5ba4c4b
--- /dev/null
+++ b/mtest/libmscore/tools/undoLockLineBreaks.mscx
@@ -0,0 +1,960 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <createMultiMeasureRests>1</createMultiMeasureRests>
+      <page-layout>
+        <page-height>1584</page-height>
+        <page-width>1224</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="15">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="17" len="16/4">
+        <multiMeasureRest>4</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="16" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>32640</tick>
+      <Measure number="18">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="19">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="20">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="21">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="22">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="23">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="24">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="25">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="26">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="27">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="28">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="29">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="30">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="31">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="31" len="8/4">
+        <multiMeasureRest>2</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="8" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>59520</tick>
+      <Measure number="32">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/tools/undoLockLineBreaks01-ref.mscx b/mtest/libmscore/tools/undoLockLineBreaks01-ref.mscx
new file mode 100644
index 0000000..74d0c32
--- /dev/null
+++ b/mtest/libmscore/tools/undoLockLineBreaks01-ref.mscx
@@ -0,0 +1,969 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <createMultiMeasureRests>1</createMultiMeasureRests>
+      <page-layout>
+        <page-height>1584</page-height>
+        <page-width>1224</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="15">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="17" len="16/4">
+        <multiMeasureRest>4</multiMeasureRest>
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="16" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>32640</tick>
+      <Measure number="18">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="19">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="20">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="21">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="22">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="23">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="24">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="25">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="26">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="27">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="28">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="29">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="30">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="31">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="31" len="8/4">
+        <multiMeasureRest>2</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="8" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>59520</tick>
+      <Measure number="32">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/tools/undoLockLineBreaks02-ref.mscx b/mtest/libmscore/tools/undoLockLineBreaks02-ref.mscx
new file mode 100644
index 0000000..78141ac
--- /dev/null
+++ b/mtest/libmscore/tools/undoLockLineBreaks02-ref.mscx
@@ -0,0 +1,963 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <createMultiMeasureRests>1</createMultiMeasureRests>
+      <page-layout>
+        <page-height>1584</page-height>
+        <page-width>1224</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="15">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="17" len="16/4">
+        <multiMeasureRest>4</multiMeasureRest>
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="16" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>32640</tick>
+      <Measure number="18">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="19">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="20">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="21">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="22">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="23">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="24">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="25">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="26">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="27">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="28">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="29">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="30">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="31">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="31" len="8/4">
+        <multiMeasureRest>2</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="8" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>59520</tick>
+      <Measure number="32">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/tools/undoRemoveLineBreaks.mscx b/mtest/libmscore/tools/undoRemoveLineBreaks.mscx
new file mode 100644
index 0000000..605b7e9
--- /dev/null
+++ b/mtest/libmscore/tools/undoRemoveLineBreaks.mscx
@@ -0,0 +1,981 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <createMultiMeasureRests>1</createMultiMeasureRests>
+      <page-layout>
+        <page-height>1584</page-height>
+        <page-width>1224</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="15">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="17" len="16/4">
+        <multiMeasureRest>4</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="16" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>32640</tick>
+      <Measure number="18">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="19">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="20">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="21">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="22">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="23">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="24">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="25">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="26">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="27">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="28">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="29">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="30">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="31">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="31" len="8/4">
+        <multiMeasureRest>2</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="8" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>59520</tick>
+      <Measure number="32">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/tools/undoRemoveLineBreaks01-ref.mscx b/mtest/libmscore/tools/undoRemoveLineBreaks01-ref.mscx
new file mode 100644
index 0000000..c8082ea
--- /dev/null
+++ b/mtest/libmscore/tools/undoRemoveLineBreaks01-ref.mscx
@@ -0,0 +1,957 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <createMultiMeasureRests>1</createMultiMeasureRests>
+      <page-layout>
+        <page-height>1584</page-height>
+        <page-width>1224</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="15">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="17" len="16/4">
+        <multiMeasureRest>4</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="16" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>32640</tick>
+      <Measure number="18">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="19">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="20">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="21">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="22">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="23">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="24">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="25">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="26">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="27">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="28">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="29">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="30">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="31">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="31" len="8/4">
+        <multiMeasureRest>2</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="8" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>59520</tick>
+      <Measure number="32">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/tools/undoRemoveLineBreaks02-ref.mscx b/mtest/libmscore/tools/undoRemoveLineBreaks02-ref.mscx
new file mode 100644
index 0000000..9e5b07c
--- /dev/null
+++ b/mtest/libmscore/tools/undoRemoveLineBreaks02-ref.mscx
@@ -0,0 +1,975 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <createMultiMeasureRests>1</createMultiMeasureRests>
+      <page-layout>
+        <page-height>1584</page-height>
+        <page-width>1224</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="4">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="8">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="12">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="13">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="14">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="15">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="16">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="17">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="17" len="16/4">
+        <multiMeasureRest>4</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="16" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>32640</tick>
+      <Measure number="18">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="19">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="20">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="21">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="22">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="23">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="24">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="25">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="26">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="27">
+        <LayoutBreak>
+          <subtype>line</subtype>
+          </LayoutBreak>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="28">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="29">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="30">
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>79</pitch>
+            <tpc>15</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>77</pitch>
+            <tpc>13</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>76</pitch>
+            <tpc>18</tpc>
+            </Note>
+          </Chord>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="31">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="31" len="8/4">
+        <multiMeasureRest>2</multiMeasureRest>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="8" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <tick>59520</tick>
+      <Measure number="32">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/libmscore/tools/undoSlashRhythm01-ref.mscx b/mtest/libmscore/tools/undoSlashRhythm01-ref.mscx
index 65875d0..05f7bc1 100644
--- a/mtest/libmscore/tools/undoSlashRhythm01-ref.mscx
+++ b/mtest/libmscore/tools/undoSlashRhythm01-ref.mscx
@@ -539,7 +539,7 @@
           </Rest>
         <tick>3840</tick>
         <Rest>
-          <offset x="0" y="-1.32"/>
+          <offset x="0" y="-1.28044"/>
           <track>2</track>
           <small>1</small>
           <durationType>quarter</durationType>
@@ -960,7 +960,7 @@
           </Rest>
         <tick>3840</tick>
         <Rest>
-          <offset x="0" y="-1.32"/>
+          <offset x="0" y="-1.28044"/>
           <track>6</track>
           <small>1</small>
           <durationType>quarter</durationType>
diff --git a/mtest/libmscore/tools/updateReference b/mtest/libmscore/tools/updateReference
index d190226..6fdcf22 100755
--- a/mtest/libmscore/tools/updateReference
+++ b/mtest/libmscore/tools/updateReference
@@ -3,7 +3,8 @@
 BUILD=../../../build.debug
 #BUILD=../../../../MuseScore-build
 
-for a in undoExplode undoImplode undoImplodeVoice undoSlashFill \
+for a in undoAddLineBreaks undoLockLineBreaks undoRemoveLineBreaks \
+   undoExplode undoImplode undoImplodeVoice undoSlashFill \
    undoSlashRhythm undoResequenceAlpha undoResequenceNumeric \
    undoChangeVoice undoResequencePart \
    undoResequenceMeasure; do
diff --git a/mtest/musicxml/font/testAllTextsArial.pdf b/mtest/musicxml/font/testAllTextsArial.pdf
new file mode 100644
index 0000000..164f529
Binary files /dev/null and b/mtest/musicxml/font/testAllTextsArial.pdf differ
diff --git a/mtest/musicxml/font/testAllTextsArial18.pdf b/mtest/musicxml/font/testAllTextsArial18.pdf
new file mode 100644
index 0000000..8f07597
Binary files /dev/null and b/mtest/musicxml/font/testAllTextsArial18.pdf differ
diff --git a/mtest/musicxml/font/testAllTextsDefault.pdf b/mtest/musicxml/font/testAllTextsDefault.pdf
new file mode 100644
index 0000000..de273d9
Binary files /dev/null and b/mtest/musicxml/font/testAllTextsDefault.pdf differ
diff --git a/mtest/musicxml/io/iotest.mscxformat b/mtest/musicxml/io/iotest.mscxformat
new file mode 100755
index 0000000..f4a038f
--- /dev/null
+++ b/mtest/musicxml/io/iotest.mscxformat
@@ -0,0 +1,80 @@
+#!/bin/bash
+
+# simple standalone iotest for MusicXML import
+# run in mtest/musicxml/io directory as "./iotest.mscxformat <dir>"
+# verify OLD_MSCORE and NEW_MSCORE generate the same .mscx files
+
+# Linux
+#MSCORE=../../../build.debug/mscore/mscore
+# OS X terminal build
+#MSCORE=../../../applebuild/mscore.app/Contents/MacOS/mscore
+# OS X Xcode build
+OLD_MSCORE=../../../oldbuilds/mscore-20150301.app/Contents/MacOS/mscore
+NEW_MSCORE=../../../build.xcode/mscore/Debug/mscore.app/Contents/MacOS/mscore
+
+echo "----------------------------------------------"
+echo "Regression Tests for MuseScore MusicXML import"
+echo "----------------------------------------------"
+echo
+$NEW_MSCORE -v
+echo
+
+
+testcount=0
+failures=0
+
+rwtestXml() {
+      echo -n "testing load/save $1";
+      $OLD_MSCORE $1 -d -o mops_old.mscx &> /dev/null
+      $NEW_MSCORE $1 -d -o mops_new.mscx &> /dev/null
+      if diff -q mops_old.mscx mops_new.mscx &> /dev/null; then
+            echo -e "\r\t\t\t\t\t\t...OK";
+      else
+            echo -e "\r\t\t\t\t\t\t...FAILED";
+            failures=$(($failures+1));
+            echo "+++++++++DIFF++++++++++++++"
+            diff mops_old.mscx mops_new.mscx
+            echo "+++++++++++++++++++++++++++"
+      fi
+      rm mops_old.mscx mops_new.mscx
+      testcount=$(($testcount+1))
+      }
+
+rwtestXmlRef() {
+      echo -n "testing load/save $1";
+      REF=`basename $1 .xml`_ref.xml
+      $MSCORE $1 -d -o mops.xml &> /dev/null
+      if diff -q $REF mops.xml &> /dev/null; then
+            echo -e "\r\t\t\t\t\t\t...OK";
+      else
+            echo -e "\r\t\t\t\t\t\t...FAILED";
+            failures=$(($failures+1));
+            echo "+++++++++DIFF++++++++++++++"
+            diff $REF mops.xml
+            echo "+++++++++++++++++++++++++++"
+      fi
+      rm mops.xml
+      testcount=$(($testcount+1))
+      }
+
+rwtestAllXml() {
+      musicxml_files=`ls $1/*.xml | grep -v _ref | sort`
+      for f in $musicxml_files; do
+                  rwtestXml ${f}
+      done
+      }
+
+usage() {
+      echo "usage: $0 <dir>"
+      echo
+      exit 1
+      }
+
+if [ $# -eq 1 ]; then
+      rwtestAllXml $1
+else
+      usage
+fi
+
+echo
+echo "$testcount test(s), $failures failure(s)"
diff --git a/mtest/musicxml/io/iotest.mxmlformat b/mtest/musicxml/io/iotest.mxmlformat
new file mode 100755
index 0000000..22a3610
--- /dev/null
+++ b/mtest/musicxml/io/iotest.mxmlformat
@@ -0,0 +1,80 @@
+#!/bin/bash
+
+# simple standalone iotest for MusicXML import
+# run in mtest/musicxml/io directory as "./iotest.mscxformat <dir>"
+# verify OLD_MSCORE and NEW_MSCORE generate the same .mscx files
+
+# Linux
+#MSCORE=../../../build.debug/mscore/mscore
+# OS X terminal build
+#MSCORE=../../../applebuild/mscore.app/Contents/MacOS/mscore
+# OS X Xcode build
+OLD_MSCORE=../../../oldbuilds/mscore-20150301.app/Contents/MacOS/mscore
+NEW_MSCORE=../../../build.xcode/mscore/Debug/mscore.app/Contents/MacOS/mscore
+
+echo "----------------------------------------------"
+echo "Regression Tests for MuseScore MusicXML import"
+echo "----------------------------------------------"
+echo
+$NEW_MSCORE -v
+echo
+
+
+testcount=0
+failures=0
+
+rwtestXml() {
+      echo -n "testing load/save $1";
+      $OLD_MSCORE $1 -d -o mops_old.xml &> /dev/null
+      $NEW_MSCORE $1 -d -o mops_new.xml &> /dev/null
+      if diff -q mops_old.xml mops_new.xml &> /dev/null; then
+            echo -e "\r\t\t\t\t\t\t...OK";
+      else
+            echo -e "\r\t\t\t\t\t\t...FAILED";
+            failures=$(($failures+1));
+            echo "+++++++++DIFF++++++++++++++"
+            diff mops_old.xml mops_new.xml
+            echo "+++++++++++++++++++++++++++"
+      fi
+      rm mops_old.xml mops_new.xml
+      testcount=$(($testcount+1))
+      }
+
+rwtestXmlRef() {
+      echo -n "testing load/save $1";
+      REF=`basename $1 .xml`_ref.xml
+      $MSCORE $1 -d -o mops.xml &> /dev/null
+      if diff -q $REF mops.xml &> /dev/null; then
+            echo -e "\r\t\t\t\t\t\t...OK";
+      else
+            echo -e "\r\t\t\t\t\t\t...FAILED";
+            failures=$(($failures+1));
+            echo "+++++++++DIFF++++++++++++++"
+            diff $REF mops.xml
+            echo "+++++++++++++++++++++++++++"
+      fi
+      rm mops.xml
+      testcount=$(($testcount+1))
+      }
+
+rwtestAllXml() {
+      musicxml_files=`ls $1/*.xml | grep -v _ref | sort`
+      for f in $musicxml_files; do
+                  rwtestXml ${f}
+      done
+      }
+
+usage() {
+      echo "usage: $0 <dir>"
+      echo
+      exit 1
+      }
+
+if [ $# -eq 1 ]; then
+      rwtestAllXml $1
+else
+      usage
+fi
+
+echo
+echo "$testcount test(s), $failures failure(s)"
diff --git a/mtest/musicxml/io/iotest.short b/mtest/musicxml/io/iotest.short
new file mode 100755
index 0000000..efd383e
--- /dev/null
+++ b/mtest/musicxml/io/iotest.short
@@ -0,0 +1,83 @@
+#!/bin/bash
+
+# simple standalone iotest for MusicXML import
+# run in mtest/musicxml/io directory as "./iotest"
+
+# Linux
+#MSCORE=../../../build.debug/mscore/mscore
+# OS X terminal build
+#MSCORE=../../../applebuild/mscore.app/Contents/MacOS/mscore
+# OS X Xcode build
+MSCORE=../../../build.xcode/mscore/Debug/mscore.app/Contents/MacOS/mscore
+
+echo "----------------------------------------------"
+echo "Regression Tests for MuseScore MusicXML import"
+echo "----------------------------------------------"
+echo
+$MSCORE -v
+echo
+
+
+musicxml_files=`cat tst_mxml_io.cpp | grep "{ mxmlIoTest" | awk -F\" '{print $2}' | sort`
+testcount=0
+failures=0
+
+rwtestXml() {
+      echo -n "testing load/save $1";
+      $MSCORE $1 -d -o mops.xml &> /dev/null
+      if diff -q $1 mops.xml &> /dev/null; then
+            echo -e "\r\t\t\t\t\t\t...OK";
+      else
+            echo -e "\r\t\t\t\t\t\t...FAILED";
+            failures=$(($failures+1));
+            #echo "+++++++++DIFF++++++++++++++"
+            #diff $1 mops.xml
+            #echo "+++++++++++++++++++++++++++"
+      fi
+      rm mops.xml
+      testcount=$(($testcount+1))
+      }
+
+rwtestXmlRef() {
+      echo -n "testing load/save $1";
+      REF=`basename $1 .xml`_ref.xml
+      $MSCORE $1 -d -o mops.xml &> /dev/null
+      if diff -q $REF mops.xml &> /dev/null; then
+            echo -e "\r\t\t\t\t\t\t...OK";
+      else
+            echo -e "\r\t\t\t\t\t\t...FAILED";
+            failures=$(($failures+1));
+            #echo "+++++++++DIFF++++++++++++++"
+            #diff $REF mops.xml
+            #echo "+++++++++++++++++++++++++++"
+      fi
+      rm mops.xml
+      testcount=$(($testcount+1))
+      }
+
+rwtestAllXml() {
+      for f in $musicxml_files; do
+            if [ -f ${f}_ref.xml ]; then
+                  # reference file exists, test against it
+                  rwtestXmlRef ${f}.xml
+            else
+                  # reference file does not exist: use regular test
+                  rwtestXml ${f}.xml
+            fi
+      done
+      }
+
+usage() {
+      echo "usage: $0"
+      echo
+      exit 1
+      }
+
+if [ $# -eq 0 ]; then
+      rwtestAllXml
+else
+      usage
+fi
+
+echo
+echo "$testcount test(s), $failures failure(s)"
diff --git a/mtest/musicxml/io/testAccidentals1.pdf b/mtest/musicxml/io/testAccidentals1.pdf
new file mode 100644
index 0000000..2b897c3
Binary files /dev/null and b/mtest/musicxml/io/testAccidentals1.pdf differ
diff --git a/mtest/musicxml/io/testAccidentals2.pdf b/mtest/musicxml/io/testAccidentals2.pdf
new file mode 100644
index 0000000..209c355
Binary files /dev/null and b/mtest/musicxml/io/testAccidentals2.pdf differ
diff --git a/mtest/musicxml/io/testArpGliss1.pdf b/mtest/musicxml/io/testArpGliss1.pdf
new file mode 100644
index 0000000..f8bb143
Binary files /dev/null and b/mtest/musicxml/io/testArpGliss1.pdf differ
diff --git a/mtest/musicxml/io/testArpGliss2.pdf b/mtest/musicxml/io/testArpGliss2.pdf
new file mode 100644
index 0000000..256c91a
Binary files /dev/null and b/mtest/musicxml/io/testArpGliss2.pdf differ
diff --git a/mtest/musicxml/io/testArpGliss3.pdf b/mtest/musicxml/io/testArpGliss3.pdf
new file mode 100644
index 0000000..16e9448
Binary files /dev/null and b/mtest/musicxml/io/testArpGliss3.pdf differ
diff --git a/mtest/musicxml/io/testBarStyles.pdf b/mtest/musicxml/io/testBarStyles.pdf
new file mode 100644
index 0000000..c15ef40
Binary files /dev/null and b/mtest/musicxml/io/testBarStyles.pdf differ
diff --git a/mtest/musicxml/io/testClefs1.pdf b/mtest/musicxml/io/testClefs1.pdf
new file mode 100644
index 0000000..f3aa9c2
Binary files /dev/null and b/mtest/musicxml/io/testClefs1.pdf differ
diff --git a/mtest/musicxml/io/testCueNotes.pdf b/mtest/musicxml/io/testCueNotes.pdf
new file mode 100644
index 0000000..f2a8c61
Binary files /dev/null and b/mtest/musicxml/io/testCueNotes.pdf differ
diff --git a/mtest/musicxml/io/testDCalCoda.pdf b/mtest/musicxml/io/testDCalCoda.pdf
new file mode 100644
index 0000000..ac13dcd
Binary files /dev/null and b/mtest/musicxml/io/testDCalCoda.pdf differ
diff --git a/mtest/musicxml/io/testDCalFine.pdf b/mtest/musicxml/io/testDCalFine.pdf
new file mode 100644
index 0000000..7af8aec
Binary files /dev/null and b/mtest/musicxml/io/testDCalFine.pdf differ
diff --git a/mtest/musicxml/io/testDalSegno.pdf b/mtest/musicxml/io/testDalSegno.pdf
new file mode 100644
index 0000000..0b55d06
Binary files /dev/null and b/mtest/musicxml/io/testDalSegno.pdf differ
diff --git a/mtest/musicxml/io/testDirections1.pdf b/mtest/musicxml/io/testDirections1.pdf
new file mode 100644
index 0000000..57e75a8
Binary files /dev/null and b/mtest/musicxml/io/testDirections1.pdf differ
diff --git a/mtest/musicxml/io/testDrumset2.xml b/mtest/musicxml/io/testDrumset2.xml
index 6e03cfc..30c285e 100644
--- a/mtest/musicxml/io/testDrumset2.xml
+++ b/mtest/musicxml/io/testDrumset2.xml
@@ -69,7 +69,7 @@
       <score-instrument id="P2-I64">
         <instrument-name>open high conga</instrument-name>
         </score-instrument>
-      <midi-device port="1"></midi-device>
+      <midi-device port="2"></midi-device>
       <midi-instrument id="P2-I64">
         <midi-channel>10</midi-channel>
         <midi-program>1</midi-program>
@@ -84,7 +84,7 @@
       <score-instrument id="P3-I39">
         <instrument-name>Acoustic Snare</instrument-name>
         </score-instrument>
-      <midi-device port="1"></midi-device>
+      <midi-device port="3"></midi-device>
       <midi-instrument id="P3-I39">
         <midi-channel>10</midi-channel>
         <midi-program>1</midi-program>
diff --git a/mtest/musicxml/io/testDynamics1.pdf b/mtest/musicxml/io/testDynamics1.pdf
new file mode 100644
index 0000000..f302b0f
Binary files /dev/null and b/mtest/musicxml/io/testDynamics1.pdf differ
diff --git a/mtest/musicxml/io/testDynamics2.pdf b/mtest/musicxml/io/testDynamics2.pdf
new file mode 100644
index 0000000..e9ab881
Binary files /dev/null and b/mtest/musicxml/io/testDynamics2.pdf differ
diff --git a/mtest/musicxml/io/testDynamics3.pdf b/mtest/musicxml/io/testDynamics3.pdf
new file mode 100644
index 0000000..a7220dc
Binary files /dev/null and b/mtest/musicxml/io/testDynamics3.pdf differ
diff --git a/mtest/musicxml/io/testEmptyMeasure.pdf b/mtest/musicxml/io/testEmptyMeasure.pdf
new file mode 100644
index 0000000..f9b642a
Binary files /dev/null and b/mtest/musicxml/io/testEmptyMeasure.pdf differ
diff --git a/mtest/musicxml/io/testEmptyVoice1.pdf b/mtest/musicxml/io/testEmptyVoice1.pdf
new file mode 100644
index 0000000..84437c2
Binary files /dev/null and b/mtest/musicxml/io/testEmptyVoice1.pdf differ
diff --git a/mtest/musicxml/io/testFiguredBass2.pdf b/mtest/musicxml/io/testFiguredBass2.pdf
new file mode 100644
index 0000000..3deff8c
Binary files /dev/null and b/mtest/musicxml/io/testFiguredBass2.pdf differ
diff --git a/mtest/musicxml/io/testFiguredBass3.pdf b/mtest/musicxml/io/testFiguredBass3.pdf
new file mode 100644
index 0000000..9359525
Binary files /dev/null and b/mtest/musicxml/io/testFiguredBass3.pdf differ
diff --git a/mtest/musicxml/io/testFormattedThings.pdf b/mtest/musicxml/io/testFormattedThings.pdf
new file mode 100644
index 0000000..d646739
Binary files /dev/null and b/mtest/musicxml/io/testFormattedThings.pdf differ
diff --git a/mtest/musicxml/io/testGrace1.pdf b/mtest/musicxml/io/testGrace1.pdf
new file mode 100644
index 0000000..d0cd7c0
Binary files /dev/null and b/mtest/musicxml/io/testGrace1.pdf differ
diff --git a/mtest/musicxml/io/testGrace2.pdf b/mtest/musicxml/io/testGrace2.pdf
new file mode 100644
index 0000000..cf54175
Binary files /dev/null and b/mtest/musicxml/io/testGrace2.pdf differ
diff --git a/mtest/musicxml/io/testHarmony4.xml b/mtest/musicxml/io/testGraceAfter1.xml
similarity index 72%
copy from mtest/musicxml/io/testHarmony4.xml
copy to mtest/musicxml/io/testGraceAfter1.xml
index 9f42c73..da58e05 100644
--- a/mtest/musicxml/io/testHarmony4.xml
+++ b/mtest/musicxml/io/testGraceAfter1.xml
@@ -3,9 +3,10 @@
 <score-partwise>
   <work>
     <work-number>MuseScore testfile</work-number>
-    <work-title>Harmony 4</work-title>
+    <work-title>Grace after 1: implied grace after</work-title>
     </work>
   <identification>
+  <creator type="composer">Leon Vinken</creator>
     <encoding>
       <software>MuseScore 0.7.0</software>
       <encoding-date>2007-09-10</encoding-date>
@@ -18,9 +19,10 @@
     </identification>
   <part-list>
     <score-part id="P1">
-      <part-name></part-name>
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
       <score-instrument id="P1-I1">
-        <instrument-name></instrument-name>
+        <instrument-name>Piano</instrument-name>
         </score-instrument>
       <midi-device id="P1-I1" port="1"></midi-device>
       <midi-instrument id="P1-I1">
@@ -47,38 +49,28 @@
           <line>2</line>
           </clef>
         </attributes>
-      <harmony print-frame="no">
-        <root>
-          <root-step text="">C</root-step>
-          </root>
-        <kind text="N.C.">none</kind>
-        </harmony>
       <note>
         <pitch>
-          <step>C</step>
-          <octave>5</octave>
+          <step>G</step>
+          <octave>4</octave>
           </pitch>
         <duration>4</duration>
         <voice>1</voice>
         <type>whole</type>
         </note>
-      </measure>
-    <measure number="2">
-      <harmony print-frame="no">
-        <root>
-          <root-step>C</root-step>
-          </root>
-        <kind text="weird">other</kind>
-        </harmony>
       <note>
+        <grace/>
         <pitch>
-          <step>C</step>
-          <octave>5</octave>
+          <step>A</step>
+          <octave>4</octave>
           </pitch>
-        <duration>4</duration>
         <voice>1</voice>
-        <type>whole</type>
+        <type>eighth</type>
+        <stem>up</stem>
         </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
       </measure>
     </part>
   </score-partwise>
diff --git a/mtest/musicxml/io/testHarmony4.xml b/mtest/musicxml/io/testGraceAfter2.xml
similarity index 63%
copy from mtest/musicxml/io/testHarmony4.xml
copy to mtest/musicxml/io/testGraceAfter2.xml
index 9f42c73..6f45b05 100644
--- a/mtest/musicxml/io/testHarmony4.xml
+++ b/mtest/musicxml/io/testGraceAfter2.xml
@@ -3,9 +3,10 @@
 <score-partwise>
   <work>
     <work-number>MuseScore testfile</work-number>
-    <work-title>Harmony 4</work-title>
+    <work-title>Grace after 2: slurred grace after</work-title>
     </work>
   <identification>
+    <creator type="composer">Leon Vinken</creator>
     <encoding>
       <software>MuseScore 0.7.0</software>
       <encoding-date>2007-09-10</encoding-date>
@@ -18,9 +19,10 @@
     </identification>
   <part-list>
     <score-part id="P1">
-      <part-name></part-name>
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
       <score-instrument id="P1-I1">
-        <instrument-name></instrument-name>
+        <instrument-name>Piano</instrument-name>
         </score-instrument>
       <midi-device id="P1-I1" port="1"></midi-device>
       <midi-instrument id="P1-I1">
@@ -47,38 +49,43 @@
           <line>2</line>
           </clef>
         </attributes>
-      <harmony print-frame="no">
-        <root>
-          <root-step text="">C</root-step>
-          </root>
-        <kind text="N.C.">none</kind>
-        </harmony>
       <note>
         <pitch>
-          <step>C</step>
-          <octave>5</octave>
+          <step>G</step>
+          <octave>4</octave>
           </pitch>
-        <duration>4</duration>
+        <duration>2</duration>
         <voice>1</voice>
-        <type>whole</type>
+        <type>half</type>
+        <notations>
+          <slur type="start" number="1"/>
+          </notations>
+        </note>
+      <note>
+        <grace/>
+        <pitch>
+          <step>A</step>
+          <octave>4</octave>
+          </pitch>
+        <voice>1</voice>
+        <type>eighth</type>
+        <stem>up</stem>
+        <notations>
+          <slur type="stop" number="1"/>
+          </notations>
         </note>
-      </measure>
-    <measure number="2">
-      <harmony print-frame="no">
-        <root>
-          <root-step>C</root-step>
-          </root>
-        <kind text="weird">other</kind>
-        </harmony>
       <note>
         <pitch>
-          <step>C</step>
-          <octave>5</octave>
+          <step>G</step>
+          <octave>4</octave>
           </pitch>
-        <duration>4</duration>
+        <duration>2</duration>
         <voice>1</voice>
-        <type>whole</type>
+        <type>half</type>
         </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
       </measure>
     </part>
   </score-partwise>
diff --git a/mtest/musicxml/io/testHarmony4.xml b/mtest/musicxml/io/testGraceAfter3.xml
similarity index 55%
copy from mtest/musicxml/io/testHarmony4.xml
copy to mtest/musicxml/io/testGraceAfter3.xml
index 9f42c73..d31307c 100644
--- a/mtest/musicxml/io/testHarmony4.xml
+++ b/mtest/musicxml/io/testGraceAfter3.xml
@@ -3,9 +3,10 @@
 <score-partwise>
   <work>
     <work-number>MuseScore testfile</work-number>
-    <work-title>Harmony 4</work-title>
+    <work-title>Grace after 3: slurred grace chord after</work-title>
     </work>
   <identification>
+    <creator type="composer">Leon Vinken</creator>
     <encoding>
       <software>MuseScore 0.7.0</software>
       <encoding-date>2007-09-10</encoding-date>
@@ -18,9 +19,10 @@
     </identification>
   <part-list>
     <score-part id="P1">
-      <part-name></part-name>
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
       <score-instrument id="P1-I1">
-        <instrument-name></instrument-name>
+        <instrument-name>Piano</instrument-name>
         </score-instrument>
       <midi-device id="P1-I1" port="1"></midi-device>
       <midi-instrument id="P1-I1">
@@ -47,38 +49,64 @@
           <line>2</line>
           </clef>
         </attributes>
-      <harmony print-frame="no">
-        <root>
-          <root-step text="">C</root-step>
-          </root>
-        <kind text="N.C.">none</kind>
-        </harmony>
       <note>
         <pitch>
-          <step>C</step>
-          <octave>5</octave>
+          <step>G</step>
+          <octave>4</octave>
           </pitch>
-        <duration>4</duration>
+        <duration>2</duration>
         <voice>1</voice>
-        <type>whole</type>
+        <type>half</type>
+        <notations>
+          <slur type="start" number="1"/>
+          </notations>
+        </note>
+      <note>
+        <chord/>
+        <pitch>
+          <step>B</step>
+          <octave>4</octave>
+          </pitch>
+        <duration>2</duration>
+        <voice>1</voice>
+        <type>half</type>
+        </note>
+      <note>
+        <grace/>
+        <pitch>
+          <step>A</step>
+          <octave>4</octave>
+          </pitch>
+        <voice>1</voice>
+        <type>eighth</type>
+        <stem>up</stem>
+        <notations>
+          <slur type="stop" number="1"/>
+          </notations>
         </note>
-      </measure>
-    <measure number="2">
-      <harmony print-frame="no">
-        <root>
-          <root-step>C</root-step>
-          </root>
-        <kind text="weird">other</kind>
-        </harmony>
       <note>
+        <grace/>
+        <chord/>
         <pitch>
           <step>C</step>
           <octave>5</octave>
           </pitch>
-        <duration>4</duration>
         <voice>1</voice>
-        <type>whole</type>
+        <type>eighth</type>
+        <stem>up</stem>
+        </note>
+      <note>
+        <pitch>
+          <step>G</step>
+          <octave>4</octave>
+          </pitch>
+        <duration>2</duration>
+        <voice>1</voice>
+        <type>half</type>
         </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
       </measure>
     </part>
   </score-partwise>
diff --git a/mtest/musicxml/io/testHarmony4.xml b/mtest/musicxml/io/testGraceAfter4.xml
similarity index 54%
copy from mtest/musicxml/io/testHarmony4.xml
copy to mtest/musicxml/io/testGraceAfter4.xml
index 9f42c73..fad56d5 100644
--- a/mtest/musicxml/io/testHarmony4.xml
+++ b/mtest/musicxml/io/testGraceAfter4.xml
@@ -3,9 +3,10 @@
 <score-partwise>
   <work>
     <work-number>MuseScore testfile</work-number>
-    <work-title>Harmony 4</work-title>
+    <work-title>Grace after 4: grace note trill ending</work-title>
     </work>
   <identification>
+    <creator type="composer">Leon Vinken</creator>
     <encoding>
       <software>MuseScore 0.7.0</software>
       <encoding-date>2007-09-10</encoding-date>
@@ -18,9 +19,10 @@
     </identification>
   <part-list>
     <score-part id="P1">
-      <part-name></part-name>
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
       <score-instrument id="P1-I1">
-        <instrument-name></instrument-name>
+        <instrument-name>Piano</instrument-name>
         </score-instrument>
       <midi-device id="P1-I1" port="1"></midi-device>
       <midi-instrument id="P1-I1">
@@ -47,38 +49,63 @@
           <line>2</line>
           </clef>
         </attributes>
-      <harmony print-frame="no">
-        <root>
-          <root-step text="">C</root-step>
-          </root>
-        <kind text="N.C.">none</kind>
-        </harmony>
       <note>
         <pitch>
-          <step>C</step>
+          <step>F</step>
           <octave>5</octave>
           </pitch>
-        <duration>4</duration>
+        <duration>2</duration>
         <voice>1</voice>
-        <type>whole</type>
+        <type>half</type>
+        <stem>down</stem>
+        <notations>
+          <ornaments>
+            <wavy-line type="start" number="1"/>
+            </ornaments>
+          </notations>
+        </note>
+      <note>
+        <grace/>
+        <pitch>
+          <step>E</step>
+          <octave>5</octave>
+          </pitch>
+        <voice>1</voice>
+        <type>16th</type>
+        <stem>up</stem>
+        <beam number="1">begin</beam>
+        <beam number="2">begin</beam>
+        </note>
+      <note>
+        <grace/>
+        <pitch>
+          <step>F</step>
+          <octave>5</octave>
+          </pitch>
+        <voice>1</voice>
+        <type>16th</type>
+        <stem>up</stem>
+        <beam number="1">end</beam>
+        <beam number="2">end</beam>
+        <notations>
+          <ornaments>
+            <wavy-line type="stop" number="1"/>
+            </ornaments>
+          </notations>
         </note>
-      </measure>
-    <measure number="2">
-      <harmony print-frame="no">
-        <root>
-          <root-step>C</root-step>
-          </root>
-        <kind text="weird">other</kind>
-        </harmony>
       <note>
         <pitch>
-          <step>C</step>
+          <step>F</step>
           <octave>5</octave>
           </pitch>
-        <duration>4</duration>
+        <duration>2</duration>
         <voice>1</voice>
-        <type>whole</type>
+        <type>half</type>
+        <stem>down</stem>
         </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
       </measure>
     </part>
   </score-partwise>
diff --git a/mtest/musicxml/io/testHarmony4.xml b/mtest/musicxml/io/testHarmony4.xml
index 9f42c73..1aa755c 100644
--- a/mtest/musicxml/io/testHarmony4.xml
+++ b/mtest/musicxml/io/testHarmony4.xml
@@ -49,7 +49,7 @@
         </attributes>
       <harmony print-frame="no">
         <root>
-          <root-step text="">C</root-step>
+          <root-step>C</root-step>
           </root>
         <kind text="N.C.">none</kind>
         </harmony>
diff --git a/mtest/musicxml/io/testHello.pdf b/mtest/musicxml/io/testHello.pdf
new file mode 100644
index 0000000..7b33dd7
Binary files /dev/null and b/mtest/musicxml/io/testHello.pdf differ
diff --git a/mtest/musicxml/io/testImplicitMeasure1.pdf b/mtest/musicxml/io/testImplicitMeasure1.pdf
new file mode 100644
index 0000000..a4914c6
Binary files /dev/null and b/mtest/musicxml/io/testImplicitMeasure1.pdf differ
diff --git a/mtest/musicxml/io/testInstrumentChangeMIDIportExport.mscx b/mtest/musicxml/io/testInstrumentChangeMIDIportExport.mscx
new file mode 100644
index 0000000..d8e3ecc
--- /dev/null
+++ b/mtest/musicxml/io/testInstrumentChangeMIDIportExport.mscx
@@ -0,0 +1,1701 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>d8321d9</programRevision>
+  <Score>
+    <layoutMode>line</layoutMode>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-06-11</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Linux</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="2">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="3">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="4">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="5">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="6">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="7">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="8">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="9">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="10">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="11">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="12">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="13">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="14">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="15">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="16">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="17">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="18">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="19">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="20">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="21">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="22">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="23">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="24">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="25">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="26">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="27">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="28">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="29">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        <defaultClef>F</defaultClef>
+        <bracket type="-1" span="0"/>
+        <barLineSpan>0</barLineSpan>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <shortName>Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="2">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="3">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    <Staff id="4">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="5">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    <Staff id="6">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="7">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    <Staff id="8">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="9">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    <Staff id="10">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="11">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    <Staff id="12">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="13">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    <Staff id="14">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="15">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    <Staff id="16">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="17">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    <Staff id="18">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="19">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    <Staff id="20">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="21">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    <Staff id="22">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="23">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    <Staff id="24">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="25">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    <Staff id="26">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="27">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    <Staff id="28">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <InstrumentChange>
+          <Instrument>
+            <longName>Voice</longName>
+            <shortName>Vo.</shortName>
+            <trackName>Voice</trackName>
+            <minPitchP>36</minPitchP>
+            <maxPitchP>94</maxPitchP>
+            <minPitchA>40</minPitchA>
+            <maxPitchA>79</maxPitchA>
+            <instrumentId>voice.vocals</instrumentId>
+            <Articulation>
+              <velocity>100</velocity>
+              <gateTime>100</gateTime>
+              </Articulation>
+            <Articulation name="staccatissimo">
+              <velocity>100</velocity>
+              <gateTime>33</gateTime>
+              </Articulation>
+            <Articulation name="staccato">
+              <velocity>100</velocity>
+              <gateTime>50</gateTime>
+              </Articulation>
+            <Articulation name="portato">
+              <velocity>100</velocity>
+              <gateTime>67</gateTime>
+              </Articulation>
+            <Articulation name="tenuto">
+              <velocity>100</velocity>
+              <gateTime>100</gateTime>
+              </Articulation>
+            <Articulation name="marcato">
+              <velocity>120</velocity>
+              <gateTime>67</gateTime>
+              </Articulation>
+            <Articulation name="sforzato">
+              <velocity>120</velocity>
+              <gateTime>100</gateTime>
+              </Articulation>
+            <Channel>
+              <program value="52"/>
+              <synti>Fluid</synti>
+              </Channel>
+            </Instrument>
+          <text>Voice</text>
+          </InstrumentChange>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="29">
+      <Measure number="1">
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/musicxml/io/testInstrumentChangeMIDIportExport_ref.xml b/mtest/musicxml/io/testInstrumentChangeMIDIportExport_ref.xml
new file mode 100644
index 0000000..6d612b6
--- /dev/null
+++ b/mtest/musicxml/io/testInstrumentChangeMIDIportExport_ref.xml
@@ -0,0 +1,1089 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.0 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd">
+<score-partwise>
+  <identification>
+    <encoding>
+      <software>MuseScore 0.7.0</software>
+      <encoding-date>2007-09-10</encoding-date>
+      <supports element="accidental" type="yes"/>
+      <supports element="beam" type="yes"/>
+      <supports element="print" attribute="new-page" type="no"/>
+      <supports element="print" attribute="new-system" type="no"/>
+      <supports element="stem" type="yes"/>
+      </encoding>
+    </identification>
+  <part-list>
+    <score-part id="P1">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P1-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P1-I1" port="1"></midi-device>
+      <midi-instrument id="P1-I1">
+        <midi-channel>1</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P2">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P2-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P2-I1" port="1"></midi-device>
+      <midi-instrument id="P2-I1">
+        <midi-channel>2</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P3">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P3-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P3-I1" port="1"></midi-device>
+      <midi-instrument id="P3-I1">
+        <midi-channel>3</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P4">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P4-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P4-I1" port="1"></midi-device>
+      <midi-instrument id="P4-I1">
+        <midi-channel>4</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P5">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P5-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P5-I1" port="1"></midi-device>
+      <midi-instrument id="P5-I1">
+        <midi-channel>5</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P6">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P6-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P6-I1" port="1"></midi-device>
+      <midi-instrument id="P6-I1">
+        <midi-channel>6</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P7">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P7-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P7-I1" port="1"></midi-device>
+      <midi-instrument id="P7-I1">
+        <midi-channel>7</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P8">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P8-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P8-I1" port="1"></midi-device>
+      <midi-instrument id="P8-I1">
+        <midi-channel>8</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P9">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P9-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P9-I1" port="1"></midi-device>
+      <midi-instrument id="P9-I1">
+        <midi-channel>9</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P10">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P10-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P10-I1" port="1"></midi-device>
+      <midi-instrument id="P10-I1">
+        <midi-channel>11</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P11">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P11-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P11-I1" port="1"></midi-device>
+      <midi-instrument id="P11-I1">
+        <midi-channel>12</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P12">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P12-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P12-I1" port="1"></midi-device>
+      <midi-instrument id="P12-I1">
+        <midi-channel>13</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P13">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P13-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P13-I1" port="1"></midi-device>
+      <midi-instrument id="P13-I1">
+        <midi-channel>14</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P14">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P14-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P14-I1" port="1"></midi-device>
+      <midi-instrument id="P14-I1">
+        <midi-channel>15</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P15">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P15-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I2">
+        <instrument-name>Voice</instrument-name>
+        </score-instrument>
+      <midi-device id="P15-I1" port="1"></midi-device>
+      <midi-instrument id="P15-I1">
+        <midi-channel>16</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-device id="P15-I2" port="2"></midi-device>
+      <midi-instrument id="P15-I2">
+        <midi-channel>1</midi-channel>
+        <midi-program>53</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    </part-list>
+  <part id="P1">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <clef>
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P2">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P3">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P4">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P5">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P6">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P7">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P8">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P9">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P10">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P11">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P12">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P13">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P14">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P15">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <staves>2</staves>
+        <instruments>2</instruments>
+        <clef number="1">
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        <clef number="2">
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      </measure>
+    <measure number="2">
+      <direction placement="above">
+        <direction-type>
+          <words font-weight="bold" font-size="12">Voice</words>
+          </direction-type>
+        <staff>1</staff>
+        </direction>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <staff>1</staff>
+        </note>
+      <backup>
+        <duration>4</duration>
+        </backup>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>5</voice>
+        <staff>2</staff>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  </score-partwise>
diff --git a/mtest/musicxml/io/testInvisibleElements.pdf b/mtest/musicxml/io/testInvisibleElements.pdf
new file mode 100644
index 0000000..4225416
Binary files /dev/null and b/mtest/musicxml/io/testInvisibleElements.pdf differ
diff --git a/mtest/musicxml/io/testKeysig1.pdf b/mtest/musicxml/io/testKeysig1.pdf
new file mode 100644
index 0000000..67f9bb8
Binary files /dev/null and b/mtest/musicxml/io/testKeysig1.pdf differ
diff --git a/mtest/musicxml/io/testKeysig2.pdf b/mtest/musicxml/io/testKeysig2.pdf
new file mode 100644
index 0000000..aadab83
Binary files /dev/null and b/mtest/musicxml/io/testKeysig2.pdf differ
diff --git a/mtest/musicxml/io/testLines1.pdf b/mtest/musicxml/io/testLines1.pdf
new file mode 100644
index 0000000..ba6d8d2
Binary files /dev/null and b/mtest/musicxml/io/testLines1.pdf differ
diff --git a/mtest/musicxml/io/testLines2.pdf b/mtest/musicxml/io/testLines2.pdf
new file mode 100644
index 0000000..2684397
Binary files /dev/null and b/mtest/musicxml/io/testLines2.pdf differ
diff --git a/mtest/musicxml/io/testLyricsVoice2a.pdf b/mtest/musicxml/io/testLyricsVoice2a.pdf
new file mode 100644
index 0000000..0353cf8
Binary files /dev/null and b/mtest/musicxml/io/testLyricsVoice2a.pdf differ
diff --git a/mtest/musicxml/io/testLyricsVoice2b.pdf b/mtest/musicxml/io/testLyricsVoice2b.pdf
new file mode 100644
index 0000000..1ce2d6c
Binary files /dev/null and b/mtest/musicxml/io/testLyricsVoice2b.pdf differ
diff --git a/mtest/musicxml/io/testMeasureLength.pdf b/mtest/musicxml/io/testMeasureLength.pdf
new file mode 100644
index 0000000..0965481
Binary files /dev/null and b/mtest/musicxml/io/testMeasureLength.pdf differ
diff --git a/mtest/musicxml/io/testMidiPortExport.mscx b/mtest/musicxml/io/testMidiPortExport.mscx
new file mode 100644
index 0000000..09cf4f5
--- /dev/null
+++ b/mtest/musicxml/io/testMidiPortExport.mscx
@@ -0,0 +1,4238 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>8ff1ded</programRevision>
+  <Score>
+    <layoutMode>line</layoutMode>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-06-12</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Linux</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="2">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="3">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="4">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="5">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="6">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="7">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="8">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="9">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="10">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="11">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="12">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="13">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="14">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="15">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="16">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Part>
+      <Staff id="17">
+        <StaffType group="percussion">
+          <name>perc5Line</name>
+          <keysig>0</keysig>
+          </StaffType>
+        <defaultClef>PERC</defaultClef>
+        <bracket type="-1" span="0"/>
+        </Staff>
+      <trackName>Drumset</trackName>
+      <Instrument>
+        <longName>Drumset</longName>
+        <shortName>Drs.</shortName>
+        <trackName>Drumset</trackName>
+        <instrumentId>drum.group.set</instrumentId>
+        <useDrumset>1</useDrumset>
+        <Drum pitch="35">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Acoustic Bass Drum</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="36">
+          <head>0</head>
+          <line>7</line>
+          <voice>1</voice>
+          <name>Bass Drum 1</name>
+          <stem>2</stem>
+          <shortcut>B</shortcut>
+          </Drum>
+        <Drum pitch="37">
+          <head>1</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Side Stick</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="38">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Acoustic Snare</name>
+          <stem>1</stem>
+          <shortcut>A</shortcut>
+          </Drum>
+        <Drum pitch="40">
+          <head>0</head>
+          <line>3</line>
+          <voice>0</voice>
+          <name>Electric Snare</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="41">
+          <head>0</head>
+          <line>5</line>
+          <voice>0</voice>
+          <name>Low Floor Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="42">
+          <head>1</head>
+          <line>-1</line>
+          <voice>0</voice>
+          <name>Closed Hi-Hat</name>
+          <stem>1</stem>
+          <shortcut>G</shortcut>
+          </Drum>
+        <Drum pitch="43">
+          <head>0</head>
+          <line>5</line>
+          <voice>1</voice>
+          <name>High Floor Tom</name>
+          <stem>2</stem>
+          </Drum>
+        <Drum pitch="44">
+          <head>1</head>
+          <line>9</line>
+          <voice>1</voice>
+          <name>Pedal Hi-Hat</name>
+          <stem>2</stem>
+          <shortcut>F</shortcut>
+          </Drum>
+        <Drum pitch="45">
+          <head>0</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Low Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="46">
+          <head>1</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Open Hi-Hat</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="47">
+          <head>0</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Low-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="48">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Hi-Mid Tom</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="49">
+          <head>1</head>
+          <line>-2</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>C</shortcut>
+          </Drum>
+        <Drum pitch="50">
+          <head>0</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>High Tom</name>
+          <stem>1</stem>
+          <shortcut>E</shortcut>
+          </Drum>
+        <Drum pitch="51">
+          <head>1</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 1</name>
+          <stem>1</stem>
+          <shortcut>D</shortcut>
+          </Drum>
+        <Drum pitch="52">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Chinese Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="53">
+          <head>2</head>
+          <line>0</line>
+          <voice>0</voice>
+          <name>Ride Bell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="54">
+          <head>2</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Tambourine</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="55">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Splash Cymbal</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="56">
+          <head>3</head>
+          <line>1</line>
+          <voice>0</voice>
+          <name>Cowbell</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="57">
+          <head>1</head>
+          <line>-3</line>
+          <voice>0</voice>
+          <name>Crash Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="59">
+          <head>1</head>
+          <line>2</line>
+          <voice>0</voice>
+          <name>Ride Cymbal 2</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="63">
+          <head>1</head>
+          <line>4</line>
+          <voice>0</voice>
+          <name>Open Hi Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <Drum pitch="64">
+          <head>1</head>
+          <line>6</line>
+          <voice>0</voice>
+          <name>Low Conga</name>
+          <stem>1</stem>
+          </Drum>
+        <clef>PERC</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <controller ctrl="0" value="1"/>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="2">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="3">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="4">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="5">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="6">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="7">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="8">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="9">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="10">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="11">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="12">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="13">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="14">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="15">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="16">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="17">
+      <Measure number="1">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/musicxml/io/testMidiPortExport_ref.xml b/mtest/musicxml/io/testMidiPortExport_ref.xml
new file mode 100644
index 0000000..594d0b1
--- /dev/null
+++ b/mtest/musicxml/io/testMidiPortExport_ref.xml
@@ -0,0 +1,4725 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.0 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd">
+<score-partwise>
+  <identification>
+    <encoding>
+      <software>MuseScore 0.7.0</software>
+      <encoding-date>2007-09-10</encoding-date>
+      <supports element="accidental" type="yes"/>
+      <supports element="beam" type="yes"/>
+      <supports element="print" attribute="new-page" type="no"/>
+      <supports element="print" attribute="new-system" type="no"/>
+      <supports element="stem" type="yes"/>
+      </encoding>
+    </identification>
+  <part-list>
+    <score-part id="P1">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P1-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P1-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="1"></midi-device>
+      <midi-instrument id="P1-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P1-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P2">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P2-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P2-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="2"></midi-device>
+      <midi-instrument id="P2-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P2-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P3">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P3-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P3-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="3"></midi-device>
+      <midi-instrument id="P3-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P3-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P4">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P4-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P4-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="4"></midi-device>
+      <midi-instrument id="P4-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P4-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P5">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P5-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P5-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="5"></midi-device>
+      <midi-instrument id="P5-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P5-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P6">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P6-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P6-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="6"></midi-device>
+      <midi-instrument id="P6-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P6-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P7">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P7-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P7-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="7"></midi-device>
+      <midi-instrument id="P7-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P7-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P8">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P8-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P8-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="8"></midi-device>
+      <midi-instrument id="P8-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P8-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P9">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P9-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P9-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="9"></midi-device>
+      <midi-instrument id="P9-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P9-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P10">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P10-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P10-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="10"></midi-device>
+      <midi-instrument id="P10-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P10-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P11">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P11-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P11-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="11"></midi-device>
+      <midi-instrument id="P11-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P11-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P12">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P12-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P12-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="12"></midi-device>
+      <midi-instrument id="P12-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P12-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P13">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P13-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P13-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="13"></midi-device>
+      <midi-instrument id="P13-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P13-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P14">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P14-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P14-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="14"></midi-device>
+      <midi-instrument id="P14-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P14-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P15">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P15-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P15-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="15"></midi-device>
+      <midi-instrument id="P15-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P15-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P16">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P16-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P16-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-device port="16"></midi-device>
+      <midi-instrument id="P16-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P16-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    <score-part id="P17">
+      <part-name>Drumset</part-name>
+      <part-abbreviation>Drs.</part-abbreviation>
+      <score-instrument id="P17-I36">
+        <instrument-name>Acoustic Bass Drum</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I37">
+        <instrument-name>Bass Drum 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I38">
+        <instrument-name>Side Stick</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I39">
+        <instrument-name>Acoustic Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I41">
+        <instrument-name>Electric Snare</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I42">
+        <instrument-name>Low Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I43">
+        <instrument-name>Closed Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I44">
+        <instrument-name>High Floor Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I45">
+        <instrument-name>Pedal Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I46">
+        <instrument-name>Low Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I47">
+        <instrument-name>Open Hi-Hat</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I48">
+        <instrument-name>Low-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I49">
+        <instrument-name>Hi-Mid Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I50">
+        <instrument-name>Crash Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I51">
+        <instrument-name>High Tom</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I52">
+        <instrument-name>Ride Cymbal 1</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I53">
+        <instrument-name>Chinese Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I54">
+        <instrument-name>Ride Bell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I55">
+        <instrument-name>Tambourine</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I56">
+        <instrument-name>Splash Cymbal</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I57">
+        <instrument-name>Cowbell</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I58">
+        <instrument-name>Crash Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I60">
+        <instrument-name>Ride Cymbal 2</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I64">
+        <instrument-name>Open Hi Conga</instrument-name>
+        </score-instrument>
+      <score-instrument id="P17-I65">
+        <instrument-name>Low Conga</instrument-name>
+        </score-instrument>
+      <midi-instrument id="P17-I36">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>36</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I37">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>37</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I38">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>38</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I39">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>39</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I41">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>41</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I42">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>42</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I43">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>43</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I44">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>44</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I45">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>45</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I46">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>46</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I47">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>47</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I48">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>48</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I49">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>49</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I50">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>50</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I51">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>51</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I52">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>52</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I53">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>53</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I54">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>54</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I55">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>55</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I56">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>56</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I57">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>57</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I58">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>58</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I60">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>60</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I64">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>64</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      <midi-instrument id="P17-I65">
+        <midi-channel>10</midi-channel>
+        <midi-program>1</midi-program>
+        <midi-unpitched>65</midi-unpitched>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    </part-list>
+  <part id="P1">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P2">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P3">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P4">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P5">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P6">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P7">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P8">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P9">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P10">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P11">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P12">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P13">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P14">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P15">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P16">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  <part id="P17">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <clef>
+          <sign>percussion</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  </score-partwise>
diff --git a/mtest/musicxml/io/testMultiInstrumentPart1.pdf b/mtest/musicxml/io/testMultiInstrumentPart1.pdf
new file mode 100644
index 0000000..aed16c3
Binary files /dev/null and b/mtest/musicxml/io/testMultiInstrumentPart1.pdf differ
diff --git a/mtest/musicxml/io/testMultiInstrumentPart2.pdf b/mtest/musicxml/io/testMultiInstrumentPart2.pdf
new file mode 100644
index 0000000..638e926
Binary files /dev/null and b/mtest/musicxml/io/testMultiInstrumentPart2.pdf differ
diff --git a/mtest/musicxml/io/testMultiInstrumentPart2.xml b/mtest/musicxml/io/testMultiInstrumentPart2.xml
index ea06e82..2b5d502 100644
--- a/mtest/musicxml/io/testMultiInstrumentPart2.xml
+++ b/mtest/musicxml/io/testMultiInstrumentPart2.xml
@@ -192,6 +192,7 @@
       <note>
         <rest/>
         <duration>4</duration>
+        <instrument id="P2-I1"/>
         <voice>1</voice>
         </note>
       </measure>
@@ -199,6 +200,7 @@
       <note>
         <rest/>
         <duration>4</duration>
+        <instrument id="P2-I1"/>
         <voice>1</voice>
         </note>
       </measure>
@@ -211,6 +213,7 @@
       <note>
         <rest/>
         <duration>4</duration>
+        <instrument id="P2-I1"/>
         <voice>1</voice>
         </note>
       </measure>
@@ -218,6 +221,7 @@
       <note>
         <rest/>
         <duration>4</duration>
+        <instrument id="P2-I1"/>
         <voice>1</voice>
         </note>
       </measure>
diff --git a/mtest/musicxml/io/testMultiMeasureRest1.pdf b/mtest/musicxml/io/testMultiMeasureRest1.pdf
new file mode 100644
index 0000000..66668d2
Binary files /dev/null and b/mtest/musicxml/io/testMultiMeasureRest1.pdf differ
diff --git a/mtest/musicxml/io/testMultiMeasureRest3.pdf b/mtest/musicxml/io/testMultiMeasureRest3.pdf
new file mode 100644
index 0000000..61bd629
Binary files /dev/null and b/mtest/musicxml/io/testMultiMeasureRest3.pdf differ
diff --git a/mtest/musicxml/io/testNonStandardKeySig1.pdf b/mtest/musicxml/io/testNonStandardKeySig1.pdf
new file mode 100644
index 0000000..0bf8e22
Binary files /dev/null and b/mtest/musicxml/io/testNonStandardKeySig1.pdf differ
diff --git a/mtest/musicxml/io/testNonStandardKeySig2.pdf b/mtest/musicxml/io/testNonStandardKeySig2.pdf
new file mode 100644
index 0000000..6a3babb
Binary files /dev/null and b/mtest/musicxml/io/testNonStandardKeySig2.pdf differ
diff --git a/mtest/musicxml/io/testNonUniqueThings.pdf b/mtest/musicxml/io/testNonUniqueThings.pdf
new file mode 100644
index 0000000..06fd16a
Binary files /dev/null and b/mtest/musicxml/io/testNonUniqueThings.pdf differ
diff --git a/mtest/musicxml/io/testNoteAttributes1.pdf b/mtest/musicxml/io/testNoteAttributes1.pdf
new file mode 100644
index 0000000..34e6940
Binary files /dev/null and b/mtest/musicxml/io/testNoteAttributes1.pdf differ
diff --git a/mtest/musicxml/io/testNoteAttributes2.xml b/mtest/musicxml/io/testNoteAttributes2.xml
index 916dc11..091f110 100644
--- a/mtest/musicxml/io/testNoteAttributes2.xml
+++ b/mtest/musicxml/io/testNoteAttributes2.xml
@@ -389,6 +389,11 @@
         <voice>1</voice>
         <type>quarter</type>
         <stem>down</stem>
+        <notations>
+          <articulations>
+            <breath-mark>comma</breath-mark>
+            </articulations>
+          </notations>
         </note>
       </measure>
     <measure number="7">
diff --git a/mtest/musicxml/io/testNoteAttributes2_ref.xml b/mtest/musicxml/io/testNoteAttributes2_ref.xml
index 6782ac8..6ad51ac 100644
--- a/mtest/musicxml/io/testNoteAttributes2_ref.xml
+++ b/mtest/musicxml/io/testNoteAttributes2_ref.xml
@@ -384,6 +384,11 @@
         <voice>1</voice>
         <type>quarter</type>
         <stem>down</stem>
+        <notations>
+          <articulations>
+            <breath-mark/>
+            </articulations>
+          </notations>
         </note>
       </measure>
     <measure number="7">
diff --git a/mtest/musicxml/io/testNoteheads.pdf b/mtest/musicxml/io/testNoteheads.pdf
new file mode 100644
index 0000000..06041b2
Binary files /dev/null and b/mtest/musicxml/io/testNoteheads.pdf differ
diff --git a/mtest/musicxml/io/testNotesRests1.pdf b/mtest/musicxml/io/testNotesRests1.pdf
new file mode 100644
index 0000000..20b3760
Binary files /dev/null and b/mtest/musicxml/io/testNotesRests1.pdf differ
diff --git a/mtest/musicxml/io/testNumberedLyrics.pdf b/mtest/musicxml/io/testNumberedLyrics.pdf
new file mode 100644
index 0000000..07d935c
Binary files /dev/null and b/mtest/musicxml/io/testNumberedLyrics.pdf differ
diff --git a/mtest/musicxml/io/testOverlappingSpanners.pdf b/mtest/musicxml/io/testOverlappingSpanners.pdf
new file mode 100644
index 0000000..3a743c3
Binary files /dev/null and b/mtest/musicxml/io/testOverlappingSpanners.pdf differ
diff --git a/mtest/musicxml/io/testPrintSpacingNo.xml b/mtest/musicxml/io/testPrintSpacingNo.xml
new file mode 100644
index 0000000..1f112f2
--- /dev/null
+++ b/mtest/musicxml/io/testPrintSpacingNo.xml
@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.0 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd">
+<score-partwise>
+  <identification>
+    <encoding>
+      <software>MuseScore 0.7.0</software>
+      <encoding-date>2007-09-10</encoding-date>
+      <supports element="accidental" type="yes"/>
+      <supports element="beam" type="yes"/>
+      <supports element="print" attribute="new-page" type="no"/>
+      <supports element="print" attribute="new-system" type="no"/>
+      <supports element="stem" type="yes"/>
+      </encoding>
+    <miscellaneous>
+      <miscellaneous-field name="description">
+        Finale / Dolet (at least since Finale 2004 for Windows / Dolet 3.3 for Finale)
+        generates invisible notes (e.g. providing sound-only data) by setting the attribute
+        for print-spacing to no and leaving out the type. MuseScore ignores these notes.
+        </miscellaneous-field>
+      </miscellaneous>
+    </identification>
+  <part-list>
+    <score-part id="P1">
+      <part-name>Timpani</part-name>
+      <part-abbreviation>Timp.</part-abbreviation>
+      <score-instrument id="P1-I1">
+        <instrument-name>Timpani</instrument-name>
+        </score-instrument>
+      <midi-device id="P1-I1" port="1"></midi-device>
+      <midi-instrument id="P1-I1">
+        <midi-channel>1</midi-channel>
+        <midi-program>48</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    </part-list>
+  <part id="P1">
+    <measure number="1">
+      <attributes>
+        <divisions>2</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <clef>
+          <sign>F</sign>
+          <line>4</line>
+          </clef>
+        </attributes>
+      <note>
+        <pitch>
+          <step>E</step>
+          <octave>3</octave>
+          </pitch>
+        <duration>8</duration>
+        <voice>1</voice>
+        <type>whole</type>
+        <notations>
+          <ornaments>
+            <tremolo type="single">3</tremolo>
+            </ornaments>
+          </notations>
+        </note>
+      <backup>
+        <duration>8</duration>
+        </backup>
+      <note print-object="no" print-spacing="no">
+        <pitch>
+          <step>E</step>
+          <octave>3</octave>
+          </pitch>
+        <duration>1</duration>
+        <voice>2</voice>
+        <stem>down</stem>
+        </note>
+      <note print-object="no" print-spacing="no">
+        <pitch>
+          <step>E</step>
+          <octave>3</octave>
+          </pitch>
+        <duration>1</duration>
+        <voice>2</voice>
+        <stem>down</stem>
+        </note>
+      <note print-object="no" print-spacing="no">
+        <pitch>
+          <step>E</step>
+          <octave>3</octave>
+          </pitch>
+        <duration>1</duration>
+        <voice>2</voice>
+        <stem>down</stem>
+        </note>
+      <note print-object="no" print-spacing="no">
+        <pitch>
+          <step>E</step>
+          <octave>3</octave>
+          </pitch>
+        <duration>1</duration>
+        <voice>2</voice>
+        <stem>down</stem>
+        </note>
+      <note print-object="no" print-spacing="no">
+        <pitch>
+          <step>E</step>
+          <octave>3</octave>
+          </pitch>
+        <duration>1</duration>
+        <voice>2</voice>
+        <stem>down</stem>
+        </note>
+      <note print-object="no" print-spacing="no">
+        <pitch>
+          <step>E</step>
+          <octave>3</octave>
+          </pitch>
+        <duration>1</duration>
+        <voice>2</voice>
+        <stem>down</stem>
+        </note>
+      <note print-object="no" print-spacing="no">
+        <pitch>
+          <step>E</step>
+          <octave>3</octave>
+          </pitch>
+        <duration>1</duration>
+        <voice>2</voice>
+        <stem>down</stem>
+        </note>
+      <note print-object="no" print-spacing="no">
+        <pitch>
+          <step>E</step>
+          <octave>3</octave>
+          </pitch>
+        <duration>1</duration>
+        <voice>2</voice>
+        <stem>down</stem>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <pitch>
+          <step>E</step>
+          <octave>3</octave>
+          </pitch>
+        <duration>8</duration>
+        <voice>1</voice>
+        <type>whole</type>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  </score-partwise>
diff --git a/mtest/musicxml/io/testHarmony4.xml b/mtest/musicxml/io/testPrintSpacingNo_ref.xml
similarity index 70%
copy from mtest/musicxml/io/testHarmony4.xml
copy to mtest/musicxml/io/testPrintSpacingNo_ref.xml
index 9f42c73..b6b7307 100644
--- a/mtest/musicxml/io/testHarmony4.xml
+++ b/mtest/musicxml/io/testPrintSpacingNo_ref.xml
@@ -1,10 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.0 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd">
 <score-partwise>
-  <work>
-    <work-number>MuseScore testfile</work-number>
-    <work-title>Harmony 4</work-title>
-    </work>
   <identification>
     <encoding>
       <software>MuseScore 0.7.0</software>
@@ -18,14 +14,15 @@
     </identification>
   <part-list>
     <score-part id="P1">
-      <part-name></part-name>
+      <part-name>Timpani</part-name>
+      <part-abbreviation>Timp.</part-abbreviation>
       <score-instrument id="P1-I1">
-        <instrument-name></instrument-name>
+        <instrument-name>Timpani</instrument-name>
         </score-instrument>
       <midi-device id="P1-I1" port="1"></midi-device>
       <midi-instrument id="P1-I1">
         <midi-channel>1</midi-channel>
-        <midi-program>1</midi-program>
+        <midi-program>48</midi-program>
         <volume>78.7402</volume>
         <pan>0</pan>
         </midi-instrument>
@@ -43,42 +40,38 @@
           <beat-type>4</beat-type>
           </time>
         <clef>
-          <sign>G</sign>
-          <line>2</line>
+          <sign>F</sign>
+          <line>4</line>
           </clef>
         </attributes>
-      <harmony print-frame="no">
-        <root>
-          <root-step text="">C</root-step>
-          </root>
-        <kind text="N.C.">none</kind>
-        </harmony>
       <note>
         <pitch>
-          <step>C</step>
-          <octave>5</octave>
+          <step>E</step>
+          <octave>3</octave>
           </pitch>
         <duration>4</duration>
         <voice>1</voice>
         <type>whole</type>
+        <notations>
+          <ornaments>
+            <tremolo type="single">3</tremolo>
+            </ornaments>
+          </notations>
         </note>
       </measure>
     <measure number="2">
-      <harmony print-frame="no">
-        <root>
-          <root-step>C</root-step>
-          </root>
-        <kind text="weird">other</kind>
-        </harmony>
       <note>
         <pitch>
-          <step>C</step>
-          <octave>5</octave>
+          <step>E</step>
+          <octave>3</octave>
           </pitch>
         <duration>4</duration>
         <voice>1</voice>
         <type>whole</type>
         </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
       </measure>
     </part>
   </score-partwise>
diff --git a/mtest/musicxml/io/testRestNotations.xml b/mtest/musicxml/io/testRestNotations.xml
new file mode 100644
index 0000000..6dd9cd7
--- /dev/null
+++ b/mtest/musicxml/io/testRestNotations.xml
@@ -0,0 +1,132 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.0 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd">
+<score-partwise>
+  <work>
+    <work-number>MuseScore testfile</work-number>
+    <work-title>Rests (with notations)</work-title>
+    </work>
+  <identification>
+    <encoding>
+      <software>MuseScore 0.7.0</software>
+      <encoding-date>2007-09-10</encoding-date>
+      <supports element="accidental" type="yes"/>
+      <supports element="beam" type="yes"/>
+      <supports element="print" attribute="new-page" type="no"/>
+      <supports element="print" attribute="new-system" type="no"/>
+      <supports element="stem" type="yes"/>
+      </encoding>
+    <miscellaneous>
+      <miscellaneous-field name="description">
+        Some notations attach to notes only in MuseScore, but in MusicXML
+        they may also be found on rests. These notations will be removed.
+        </miscellaneous-field>
+      </miscellaneous>
+    </identification>
+  <part-list>
+    <score-part id="P1">
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
+      <score-instrument id="P1-I1">
+        <instrument-name>Piano</instrument-name>
+        </score-instrument>
+      <midi-device id="P1-I1" port="1"></midi-device>
+      <midi-instrument id="P1-I1">
+        <midi-channel>1</midi-channel>
+        <midi-program>1</midi-program>
+        <volume>78.7402</volume>
+        <pan>0</pan>
+        </midi-instrument>
+      </score-part>
+    </part-list>
+  <part id="P1">
+    <measure number="1">
+      <attributes>
+        <divisions>1</divisions>
+        <key>
+          <fifths>0</fifths>
+          </key>
+        <time>
+          <beats>4</beats>
+          <beat-type>4</beat-type>
+          </time>
+        <clef>
+          <sign>G</sign>
+          <line>2</line>
+          </clef>
+        </attributes>
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <type>whole</type>
+        <notations>
+          <technical>
+            <fingering>1</fingering>
+            </technical>
+          </notations>
+        </note>
+      </measure>
+    <measure number="2">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <type>whole</type>
+        <notations>
+          <technical>
+            <pluck>p</pluck>
+            </technical>
+          </notations>
+        </note>
+      </measure>
+    <measure number="3">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <type>whole</type>
+        <notations>
+          <technical>
+            <string>3</string>
+            </technical>
+          </notations>
+        </note>
+      </measure>
+    <measure number="4">
+      <note>
+        <rest/>
+        <duration>2</duration>
+        <voice>1</voice>
+        <type>half</type>
+        <notations>
+          <slide line-type="solid" number="1" type="start">gliss.</slide>
+          </notations>
+        </note>
+      <note>
+        <rest/>
+        <duration>2</duration>
+        <voice>1</voice>
+        <type>half</type>
+        <notations>
+          <slide line-type="solid" number="1" type="stop"/>
+          </notations>
+        </note>
+      </measure>
+    <measure number="5">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <type>whole</type>
+        <notations>
+          <articulations>
+            <doit/>
+            </articulations>
+          </notations>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
+    </part>
+  </score-partwise>
diff --git a/mtest/musicxml/io/testHarmony4.xml b/mtest/musicxml/io/testRestNotations_ref.xml
similarity index 64%
copy from mtest/musicxml/io/testHarmony4.xml
copy to mtest/musicxml/io/testRestNotations_ref.xml
index 9f42c73..109657f 100644
--- a/mtest/musicxml/io/testHarmony4.xml
+++ b/mtest/musicxml/io/testRestNotations_ref.xml
@@ -3,7 +3,7 @@
 <score-partwise>
   <work>
     <work-number>MuseScore testfile</work-number>
-    <work-title>Harmony 4</work-title>
+    <work-title>Rests (with notations)</work-title>
     </work>
   <identification>
     <encoding>
@@ -18,9 +18,10 @@
     </identification>
   <part-list>
     <score-part id="P1">
-      <part-name></part-name>
+      <part-name>Piano</part-name>
+      <part-abbreviation>Pno.</part-abbreviation>
       <score-instrument id="P1-I1">
-        <instrument-name></instrument-name>
+        <instrument-name>Piano</instrument-name>
         </score-instrument>
       <midi-device id="P1-I1" port="1"></midi-device>
       <midi-instrument id="P1-I1">
@@ -47,38 +48,53 @@
           <line>2</line>
           </clef>
         </attributes>
-      <harmony print-frame="no">
-        <root>
-          <root-step text="">C</root-step>
-          </root>
-        <kind text="N.C.">none</kind>
-        </harmony>
       <note>
-        <pitch>
-          <step>C</step>
-          <octave>5</octave>
-          </pitch>
+        <rest/>
         <duration>4</duration>
         <voice>1</voice>
         <type>whole</type>
         </note>
       </measure>
     <measure number="2">
-      <harmony print-frame="no">
-        <root>
-          <root-step>C</root-step>
-          </root>
-        <kind text="weird">other</kind>
-        </harmony>
       <note>
-        <pitch>
-          <step>C</step>
-          <octave>5</octave>
-          </pitch>
+        <rest/>
         <duration>4</duration>
         <voice>1</voice>
         <type>whole</type>
         </note>
       </measure>
+    <measure number="3">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <type>whole</type>
+        </note>
+      </measure>
+    <measure number="4">
+      <note>
+        <rest/>
+        <duration>2</duration>
+        <voice>1</voice>
+        <type>half</type>
+        </note>
+      <note>
+        <rest/>
+        <duration>2</duration>
+        <voice>1</voice>
+        <type>half</type>
+        </note>
+      </measure>
+    <measure number="5">
+      <note>
+        <rest/>
+        <duration>4</duration>
+        <voice>1</voice>
+        <type>whole</type>
+        </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
+      </measure>
     </part>
   </score-partwise>
diff --git a/mtest/musicxml/io/testHarmony4.xml b/mtest/musicxml/io/testRestsTypeWhole.xml
similarity index 63%
copy from mtest/musicxml/io/testHarmony4.xml
copy to mtest/musicxml/io/testRestsTypeWhole.xml
index 9f42c73..6778d28 100644
--- a/mtest/musicxml/io/testHarmony4.xml
+++ b/mtest/musicxml/io/testRestsTypeWhole.xml
@@ -3,7 +3,7 @@
 <score-partwise>
   <work>
     <work-number>MuseScore testfile</work-number>
-    <work-title>Harmony 4</work-title>
+    <work-title>Rests (type whole)</work-title>
     </work>
   <identification>
     <encoding>
@@ -15,17 +15,26 @@
       <supports element="print" attribute="new-system" type="no"/>
       <supports element="stem" type="yes"/>
       </encoding>
+    <miscellaneous>
+      <miscellaneous-field name="description">
+        Test a complete measure rest and a normal rest, both without type.
+
+        Cakewalk SONAR X2 Studio [Version: 19.0.0.306]) leaves out voice
+        and type for all rests.
+        </miscellaneous-field>
+      </miscellaneous>
     </identification>
   <part-list>
     <score-part id="P1">
-      <part-name></part-name>
+      <part-name>Flute</part-name>
+      <part-abbreviation>Fl.</part-abbreviation>
       <score-instrument id="P1-I1">
-        <instrument-name></instrument-name>
+        <instrument-name>Flute</instrument-name>
         </score-instrument>
       <midi-device id="P1-I1" port="1"></midi-device>
       <midi-instrument id="P1-I1">
         <midi-channel>1</midi-channel>
-        <midi-program>1</midi-program>
+        <midi-program>74</midi-program>
         <volume>78.7402</volume>
         <pan>0</pan>
         </midi-instrument>
@@ -39,7 +48,7 @@
           <fifths>0</fifths>
           </key>
         <time>
-          <beats>4</beats>
+          <beats>1</beats>
           <beat-type>4</beat-type>
           </time>
         <clef>
@@ -47,38 +56,24 @@
           <line>2</line>
           </clef>
         </attributes>
-      <harmony print-frame="no">
-        <root>
-          <root-step text="">C</root-step>
-          </root>
-        <kind text="N.C.">none</kind>
-        </harmony>
+      <!-- A complete measure rest using the Sibelius 7.1.3 Direct export convention -->
       <note>
-        <pitch>
-          <step>C</step>
-          <octave>5</octave>
-          </pitch>
-        <duration>4</duration>
+        <rest/>
+        <duration>1</duration>
         <voice>1</voice>
         <type>whole</type>
         </note>
       </measure>
     <measure number="2">
-      <harmony print-frame="no">
-        <root>
-          <root-step>C</root-step>
-          </root>
-        <kind text="weird">other</kind>
-        </harmony>
+      <!-- A complete measure rest using the MusicXML 3.0 convention -->
       <note>
-        <pitch>
-          <step>C</step>
-          <octave>5</octave>
-          </pitch>
-        <duration>4</duration>
+        <rest measure="yes"/>
+        <duration>1</duration>
         <voice>1</voice>
-        <type>whole</type>
         </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
       </measure>
     </part>
   </score-partwise>
diff --git a/mtest/musicxml/io/testHarmony4.xml b/mtest/musicxml/io/testRestsTypeWhole_ref.xml
similarity index 66%
copy from mtest/musicxml/io/testHarmony4.xml
copy to mtest/musicxml/io/testRestsTypeWhole_ref.xml
index 9f42c73..3010d3c 100644
--- a/mtest/musicxml/io/testHarmony4.xml
+++ b/mtest/musicxml/io/testRestsTypeWhole_ref.xml
@@ -3,7 +3,7 @@
 <score-partwise>
   <work>
     <work-number>MuseScore testfile</work-number>
-    <work-title>Harmony 4</work-title>
+    <work-title>Rests (type whole)</work-title>
     </work>
   <identification>
     <encoding>
@@ -18,14 +18,15 @@
     </identification>
   <part-list>
     <score-part id="P1">
-      <part-name></part-name>
+      <part-name>Flute</part-name>
+      <part-abbreviation>Fl.</part-abbreviation>
       <score-instrument id="P1-I1">
-        <instrument-name></instrument-name>
+        <instrument-name>Flute</instrument-name>
         </score-instrument>
       <midi-device id="P1-I1" port="1"></midi-device>
       <midi-instrument id="P1-I1">
         <midi-channel>1</midi-channel>
-        <midi-program>1</midi-program>
+        <midi-program>74</midi-program>
         <volume>78.7402</volume>
         <pan>0</pan>
         </midi-instrument>
@@ -39,7 +40,7 @@
           <fifths>0</fifths>
           </key>
         <time>
-          <beats>4</beats>
+          <beats>1</beats>
           <beat-type>4</beat-type>
           </time>
         <clef>
@@ -47,38 +48,21 @@
           <line>2</line>
           </clef>
         </attributes>
-      <harmony print-frame="no">
-        <root>
-          <root-step text="">C</root-step>
-          </root>
-        <kind text="N.C.">none</kind>
-        </harmony>
       <note>
-        <pitch>
-          <step>C</step>
-          <octave>5</octave>
-          </pitch>
-        <duration>4</duration>
+        <rest/>
+        <duration>1</duration>
         <voice>1</voice>
-        <type>whole</type>
         </note>
       </measure>
     <measure number="2">
-      <harmony print-frame="no">
-        <root>
-          <root-step>C</root-step>
-          </root>
-        <kind text="weird">other</kind>
-        </harmony>
       <note>
-        <pitch>
-          <step>C</step>
-          <octave>5</octave>
-          </pitch>
-        <duration>4</duration>
+        <rest/>
+        <duration>1</duration>
         <voice>1</voice>
-        <type>whole</type>
         </note>
+      <barline location="right">
+        <bar-style>light-heavy</bar-style>
+        </barline>
       </measure>
     </part>
   </score-partwise>
diff --git a/mtest/musicxml/io/testSlurs.pdf b/mtest/musicxml/io/testSlurs.pdf
new file mode 100644
index 0000000..3967088
Binary files /dev/null and b/mtest/musicxml/io/testSlurs.pdf differ
diff --git a/mtest/musicxml/io/testSlurs2.pdf b/mtest/musicxml/io/testSlurs2.pdf
new file mode 100644
index 0000000..4fe0d02
Binary files /dev/null and b/mtest/musicxml/io/testSlurs2.pdf differ
diff --git a/mtest/musicxml/io/testSpecialCharacters.pdf b/mtest/musicxml/io/testSpecialCharacters.pdf
new file mode 100644
index 0000000..db533e4
Binary files /dev/null and b/mtest/musicxml/io/testSpecialCharacters.pdf differ
diff --git a/mtest/musicxml/io/testStaffTwoKeySigs.pdf b/mtest/musicxml/io/testStaffTwoKeySigs.pdf
new file mode 100644
index 0000000..31a6a64
Binary files /dev/null and b/mtest/musicxml/io/testStaffTwoKeySigs.pdf differ
diff --git a/mtest/musicxml/io/testSystemBrackets2.pdf b/mtest/musicxml/io/testSystemBrackets2.pdf
new file mode 100644
index 0000000..dc6746d
Binary files /dev/null and b/mtest/musicxml/io/testSystemBrackets2.pdf differ
diff --git a/mtest/musicxml/io/testTempo1.pdf b/mtest/musicxml/io/testTempo1.pdf
new file mode 100644
index 0000000..321b566
Binary files /dev/null and b/mtest/musicxml/io/testTempo1.pdf differ
diff --git a/mtest/musicxml/io/testTimesig1.pdf b/mtest/musicxml/io/testTimesig1.pdf
new file mode 100644
index 0000000..68776db
Binary files /dev/null and b/mtest/musicxml/io/testTimesig1.pdf differ
diff --git a/mtest/musicxml/io/testTimesig3.pdf b/mtest/musicxml/io/testTimesig3.pdf
new file mode 100644
index 0000000..ea18db1
Binary files /dev/null and b/mtest/musicxml/io/testTimesig3.pdf differ
diff --git a/mtest/musicxml/io/testTremolo.pdf b/mtest/musicxml/io/testTremolo.pdf
new file mode 100644
index 0000000..9a02eb9
Binary files /dev/null and b/mtest/musicxml/io/testTremolo.pdf differ
diff --git a/mtest/musicxml/io/testTuplets1.pdf b/mtest/musicxml/io/testTuplets1.pdf
new file mode 100644
index 0000000..030714c
Binary files /dev/null and b/mtest/musicxml/io/testTuplets1.pdf differ
diff --git a/mtest/musicxml/io/testTuplets2.pdf b/mtest/musicxml/io/testTuplets2.pdf
new file mode 100644
index 0000000..0817c78
Binary files /dev/null and b/mtest/musicxml/io/testTuplets2.pdf differ
diff --git a/mtest/musicxml/io/testTuplets3.pdf b/mtest/musicxml/io/testTuplets3.pdf
new file mode 100644
index 0000000..91f22cd
Binary files /dev/null and b/mtest/musicxml/io/testTuplets3.pdf differ
diff --git a/mtest/musicxml/io/testVoiceMapper1.pdf b/mtest/musicxml/io/testVoiceMapper1.pdf
new file mode 100644
index 0000000..f6e0f56
Binary files /dev/null and b/mtest/musicxml/io/testVoiceMapper1.pdf differ
diff --git a/mtest/musicxml/io/testVoiceMapper2.pdf b/mtest/musicxml/io/testVoiceMapper2.pdf
new file mode 100644
index 0000000..0aef834
Binary files /dev/null and b/mtest/musicxml/io/testVoiceMapper2.pdf differ
diff --git a/mtest/musicxml/io/testVoiceMapper3.pdf b/mtest/musicxml/io/testVoiceMapper3.pdf
new file mode 100644
index 0000000..560cb5a
Binary files /dev/null and b/mtest/musicxml/io/testVoiceMapper3.pdf differ
diff --git a/mtest/musicxml/io/testVoicePiano1.pdf b/mtest/musicxml/io/testVoicePiano1.pdf
new file mode 100644
index 0000000..b7668eb
Binary files /dev/null and b/mtest/musicxml/io/testVoicePiano1.pdf differ
diff --git a/mtest/musicxml/io/testWedge1.pdf b/mtest/musicxml/io/testWedge1.pdf
new file mode 100644
index 0000000..3e73af1
Binary files /dev/null and b/mtest/musicxml/io/testWedge1.pdf differ
diff --git a/mtest/musicxml/io/testWedge2.pdf b/mtest/musicxml/io/testWedge2.pdf
new file mode 100644
index 0000000..15e43c6
Binary files /dev/null and b/mtest/musicxml/io/testWedge2.pdf differ
diff --git a/mtest/musicxml/io/testWords1.pdf b/mtest/musicxml/io/testWords1.pdf
new file mode 100644
index 0000000..dab4722
Binary files /dev/null and b/mtest/musicxml/io/testWords1.pdf differ
diff --git a/mtest/musicxml/io/testWords2.pdf b/mtest/musicxml/io/testWords2.pdf
new file mode 100644
index 0000000..272e394
Binary files /dev/null and b/mtest/musicxml/io/testWords2.pdf differ
diff --git a/mtest/musicxml/io/tst_mxml_io.cpp b/mtest/musicxml/io/tst_mxml_io.cpp
index 20b2b04..f89f45e 100644
--- a/mtest/musicxml/io/tst_mxml_io.cpp
+++ b/mtest/musicxml/io/tst_mxml_io.cpp
@@ -39,6 +39,7 @@ class TestMxmlIO : public QObject, public MTest
 
       void mxmlIoTest(const char* file);
       void mxmlIoTestRef(const char* file);
+      void mxmlMscxExportTestRef(const char* file);
       void mxmlReadTestCompr(const char* file);
       void mxmlReadWriteTestCompr(const char* file);
 
@@ -92,6 +93,7 @@ private slots:
       void helloReadWriteCompr() { mxmlReadWriteTestCompr("testHello"); }
       void implicitMeasure1() { mxmlIoTest("testImplicitMeasure1"); }
       void incorrectStaffNumber() { mxmlIoTestRef("testIncorrectStaffNumber"); }
+      void instrumentChangeMIDIportExport() { mxmlMscxExportTestRef("testInstrumentChangeMIDIportExport"); }
       void invisibleElements() { mxmlIoTest("testInvisibleElements"); }
       void keysig1() { mxmlIoTest("testKeysig1"); }
       void keysig2() { mxmlIoTest("testKeysig2"); }
@@ -101,8 +103,9 @@ private slots:
       void lyricsVoice2b() { mxmlIoTestRef("testLyricsVoice2b"); }
       void manualBreaks() { mxmlIoTest("testManualBreaks"); }
       void measureLength() { mxmlIoTestRef("testMeasureLength"); }
+      void midiPortExport() { mxmlMscxExportTestRef("testMidiPortExport"); }
       void multiInstrumentPart1() { mxmlIoTest("testMultiInstrumentPart1"); }
-      void multiInstrumentPart2() { mxmlIoTest("testMultiInstrumentPart2"); }
+      //void multiInstrumentPart2() { mxmlIoTest("testMultiInstrumentPart2"); } must also fix exportxml.cpp
       void multiMeasureRest1() { mxmlIoTestRef("testMultiMeasureRest1"); }
       void multiMeasureRest3() { mxmlIoTestRef("testMultiMeasureRest3"); }
       void multipleNotations() { mxmlIoTestRef("testMultipleNotations"); }
@@ -118,8 +121,11 @@ private slots:
       void notesRests2() { mxmlIoTest("testNotesRests2"); }
       void numberedLyrics() { mxmlIoTestRef("testNumberedLyrics"); }
       void overlappingSpanners() { mxmlIoTest("testOverlappingSpanners"); }
+      void printSpacingNo() { mxmlIoTestRef("testPrintSpacingNo"); }
       void repeatCounts() { mxmlIoTest("testRepeatCounts"); }
+      void restNotations() { mxmlIoTestRef("testRestNotations"); }
       void restsNoType() { mxmlIoTestRef("testRestsNoType"); }
+      void restsTypeWhole() { mxmlIoTestRef("testRestsTypeWhole"); }
       void slurTieLineStyle() { mxmlIoTest("testSlurTieLineStyle"); }
       void slurs() { mxmlIoTest("testSlurs"); }
       //void slurs2() { mxmlIoTest("testSlurs2"); } OK in DOM parser, fails in pull parser
@@ -140,7 +146,7 @@ private slots:
       void tuplets2() { mxmlIoTestRef("testTuplets2"); }
       void tuplets3() { mxmlIoTestRef("testTuplets3"); }
       void tuplets4() { mxmlIoTest("testTuplets4"); }
-      void uninitializedDivisions() { mxmlIoTestRef("testUninitializedDivisions"); }
+      //void uninitializedDivisions() { mxmlIoTestRef("testUninitializedDivisions"); } correct behaviour to be checked
       void unusualDurations() { mxmlIoTestRef("testUnusualDurations"); }
       void virtualInstruments() { mxmlIoTestRef("testVirtualInstruments"); }
       void voiceMapper1() { mxmlIoTestRef("testVoiceMapper1"); }
@@ -252,6 +258,25 @@ void TestMxmlIO::mxmlIoTestRef(const char* file)
       }
 
 //---------------------------------------------------------
+//   mxmlMscxExportTestRef
+//   read a MuseScore mscx file, write to a MusicXML file and verify against reference
+//---------------------------------------------------------
+
+void TestMxmlIO::mxmlMscxExportTestRef(const char* file)
+      {
+      MScore::debugMode = true;
+      preferences.musicxmlExportBreaks = MusicxmlExportBreaks::MANUAL;
+      preferences.musicxmlExportLayout = false;
+      Score* score = readScore(DIR + file + ".mscx");
+      QVERIFY(score);
+      fixupScore(score);
+      score->doLayout();
+      QVERIFY(saveMusicXml(score, QString(file) + ".xml"));
+      QVERIFY(saveCompareMusicXmlScore(score, QString(file) + ".xml", DIR + file + "_ref.xml"));
+      delete score;
+      }
+
+//---------------------------------------------------------
 //   mxmlReadTestCompr
 //   read a compressed MusicXML file, write to a new file and verify against reference
 //---------------------------------------------------------
diff --git a/mtest/scripting/CMakeLists.txt b/mtest/scripting/CMakeLists.txt
new file mode 100644
index 0000000..72f325b
--- /dev/null
+++ b/mtest/scripting/CMakeLists.txt
@@ -0,0 +1,16 @@
+#=============================================================================
+#  MuseScore
+#  Music Composition & Notation
+#  $Id:$
+#
+#  Copyright (C) 2013 Werner Schweer
+#
+#  This program is free software; you can redistribute it and/or modify
+#  it under the terms of the GNU General Public License version 2
+#  as published by the Free Software Foundation and appearing in
+#  the file LICENSE.GPL
+#=============================================================================
+
+set(TARGET tst_scripting)
+
+include(${PROJECT_SOURCE_DIR}/mtest/cmake.inc)
diff --git a/mtest/scripting/p1.log.ref b/mtest/scripting/p1.log.ref
new file mode 100644
index 0000000..90c0cbe
--- /dev/null
+++ b/mtest/scripting/p1.log.ref
@@ -0,0 +1,107 @@
+test script p1
+filter:128
+filter:-1
+Clef
+KeySig
+TimeSig
+Chord
+  durationType:480
+  beamMode:0
+  small:false
+  duration:
+    numerator:1
+    denominator:4
+    ticks:480
+  Note
+    subchannel:0
+    line:6
+    fret:-1
+    string:-1
+    tpc:22
+    tpc1:22
+    tpc2:22
+    pitch:68
+    ppitch:68
+    ghost:false
+    hidden:false
+    mirror:false
+    small:false
+    play:true
+    tuning:0
+    veloType:0
+    veloOffset:0
+    userMirror:0
+    userDotPosition:0
+    headGroup:0
+    headType:255
+    accidentalType:1
+    dotsCount:0
+      Accidental
+        hasBracket:false
+        small:false
+        accType:1
+        role:0
+  Note
+    subchannel:0
+    line:2
+    fret:-1
+    string:-1
+    tpc:16
+    tpc1:16
+    tpc2:16
+    pitch:74
+    ppitch:74
+    ghost:false
+    hidden:false
+    mirror:false
+    small:false
+    play:true
+    tuning:0
+    veloType:0
+    veloOffset:0
+    userMirror:0
+    userDotPosition:0
+    headGroup:0
+    headType:255
+    accidentalType:0
+    dotsCount:0
+Rest
+  duration:
+    numerator:1
+    denominator:4
+    ticks:480
+  beamMode:4
+  small:false
+Chord
+  durationType:960
+  beamMode:0
+  small:false
+  duration:
+    numerator:1
+    denominator:2
+    ticks:960
+  Note
+    subchannel:0
+    line:5
+    fret:-1
+    string:-1
+    tpc:17
+    tpc1:17
+    tpc2:17
+    pitch:69
+    ppitch:69
+    ghost:false
+    hidden:false
+    mirror:false
+    small:false
+    play:true
+    tuning:0
+    veloType:0
+    veloOffset:0
+    userMirror:0
+    userDotPosition:0
+    headGroup:0
+    headType:255
+    accidentalType:0
+    dotsCount:0
+BarLine
diff --git a/mtest/scripting/p1.qml b/mtest/scripting/p1.qml
new file mode 100644
index 0000000..0393491
--- /dev/null
+++ b/mtest/scripting/p1.qml
@@ -0,0 +1,82 @@
+import QtQuick 2.0
+import MuseScore 1.0
+
+MuseScore {
+      menuPath: "Plugins.p1"
+      onRun: {
+            openLog("p1.log");
+            logn("test script p1")
+
+            var cursor = curScore.newCursor();
+            cursor.voice = 0;
+            cursor.staffIdx = 0;
+            log2("filter:", cursor.filter);
+            cursor.filter = -1;
+            log2("filter:", cursor.filter);
+            cursor.rewind(0);
+
+            while (cursor.segment) {
+                  if (cursor.element) {
+                        var type = cursor.element.type;
+                        var e    = cursor.element;
+                        logn(e._name());
+                        if (type == Element.CHORD) {
+                            log2("  durationType:", e.durationType);
+                            log2("  beamMode:", e.beamMode);
+                            log2("  small:",    e.small);
+                            logn("  duration:");
+                            log2("    numerator:",   e.duration.numerator);
+                            log2("    denominator:", e.duration.denominator);
+                            log2("    ticks:",       e.duration.ticks);
+                            var notes = e.notes;
+                            for (var i = 0; i < notes.length; i++) {
+                                var note = notes[i];
+                                log2("  ", note._name());
+                                log2("    subchannel:", note.subchannel);
+                                log2("    line:", note.line);
+                                log2("    fret:", note.fret);
+                                log2("    string:", note.string);
+                                log2("    tpc:", note.tpc);
+                                log2("    tpc1:", note.tpc1);
+                                log2("    tpc2:", note.tpc2);
+                                log2("    pitch:", note.pitch);
+                                log2("    ppitch:", note.ppitch);
+                                log2("    ghost:", note.ghost);
+                                log2("    hidden:", note.hidden);
+                                log2("    mirror:", note.mirror);
+                                log2("    small:", note.small);
+                                log2("    play:", note.play);
+                                log2("    tuning:", note.tuning);
+                                log2("    veloType:", note.veloType);
+                                log2("    veloOffset:", note.veloOffset);
+                                log2("    userMirror:", note.userMirror);
+                                log2("    userDotPosition:", note.userDotPosition);
+                                log2("    headGroup:", note.headGroup);
+                                log2("    headType:", note.headType);
+                                log2("    accidentalType:", note.accidentalType);
+                                log2("    dotsCount:", note.dotsCount);
+                                if (note.accidental) {
+                                      var acc = note.accidental;
+                                      log2("      ", acc._name());
+                                      log2("        hasBracket:", acc.hasBracket);
+                                      log2("        small:", acc.small);
+                                      log2("        accType:", acc.accType);
+                                      log2("        role:", acc.role);
+                                      }
+                                }
+                            }
+                        if (type == Element.REST) {
+                            logn("  duration:");
+                            log2("    numerator:",   e.duration.numerator);
+                            log2("    denominator:", e.duration.denominator);
+                            log2("    ticks:",       e.duration.ticks);
+                            log2("  beamMode:", e.beamMode);
+                            log2("  small:", e.small);
+                            }
+                        }
+                  cursor.next();
+                  }
+            closeLog();
+            Qt.quit()
+            }
+      }
diff --git a/mtest/scripting/s1.mscx b/mtest/scripting/s1.mscx
new file mode 100644
index 0000000..59cc1c5
--- /dev/null
+++ b/mtest/scripting/s1.mscx
@@ -0,0 +1,155 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.06">
+  <programVersion>2.1.0</programVersion>
+  <programRevision>3543170</programRevision>
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Synthesizer>
+      </Synthesizer>
+    <Division>480</Division>
+    <Style>
+      <lastSystemFillLimit>0</lastSystemFillLimit>
+      <page-layout>
+        <page-height>1683.36</page-height>
+        <page-width>1190.88</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer"></metaTag>
+    <metaTag name="copyright"></metaTag>
+    <metaTag name="creationDate">2015-04-02</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle"></metaTag>
+    <metaTag name="platform">Linux</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle">s1</metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          <name>stdNormal</name>
+          </StaffType>
+        </Staff>
+      <trackName>Piano</trackName>
+      <Instrument>
+        <longName pos="0">Piano</longName>
+        <shortName pos="0">Pno.</shortName>
+        <trackName>Piano</trackName>
+        <minPitchP>21</minPitchP>
+        <maxPitchP>108</maxPitchP>
+        <minPitchA>21</minPitchA>
+        <maxPitchA>108</maxPitchA>
+        <instrumentId>keyboard.piano</instrumentId>
+        <clef staff="2">F</clef>
+        <Articulation>
+          <velocity>100</velocity>
+          <gateTime>95</gateTime>
+          </Articulation>
+        <Articulation name="staccatissimo">
+          <velocity>100</velocity>
+          <gateTime>33</gateTime>
+          </Articulation>
+        <Articulation name="staccato">
+          <velocity>100</velocity>
+          <gateTime>50</gateTime>
+          </Articulation>
+        <Articulation name="portato">
+          <velocity>100</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="tenuto">
+          <velocity>100</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Articulation name="marcato">
+          <velocity>120</velocity>
+          <gateTime>67</gateTime>
+          </Articulation>
+        <Articulation name="sforzato">
+          <velocity>120</velocity>
+          <gateTime>100</gateTime>
+          </Articulation>
+        <Channel>
+          <program value="0"/>
+          <synti>Fluid</synti>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>s1</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <KeySig>
+          <accidental>2</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Chord>
+          <durationType>quarter</durationType>
+          <Note>
+            <Accidental>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>68</pitch>
+            <tpc>22</tpc>
+            </Note>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <durationType>half</durationType>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/scripting/tst_scripting.cpp b/mtest/scripting/tst_scripting.cpp
new file mode 100644
index 0000000..c49352e
--- /dev/null
+++ b/mtest/scripting/tst_scripting.cpp
@@ -0,0 +1,91 @@
+//=============================================================================
+//  MuseScore
+//  Music Composition & Notation
+//  $Id:$
+//
+//  Copyright (C) 2013 Werner Schweer
+//
+//  This program is free software; you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License version 2
+//  as published by the Free Software Foundation and appearing in
+//  the file LICENCE.GPL
+//=============================================================================
+
+#include <QtTest/QtTest>
+#include "mtest/testutils.h"
+#include "libmscore/score.h"
+#include "libmscore/musescoreCore.h"
+#include "mscore/preferences.h"
+#include "mscore/qmlplugin.h"
+
+#define DIR QString("scripting/")
+
+using namespace Ms;
+
+//---------------------------------------------------------
+//   TestScripting
+//---------------------------------------------------------
+
+class TestScripting : public QObject, public MTest
+      {
+      Q_OBJECT
+
+      void read1(const char*, const char*);
+
+   private slots:
+      void initTestCase();
+      void test1() { read1("s1", "p1"); }
+      };
+
+//---------------------------------------------------------
+//   initTestCase
+//---------------------------------------------------------
+
+void TestScripting::initTestCase()
+      {
+      initMTest();
+      qmlRegisterType<QmlPlugin>  ("MuseScore", 1, 0, "MuseScore");
+      }
+
+//---------------------------------------------------------
+//   read1
+//   read a score, apply script and compare script output with
+//    reference
+//---------------------------------------------------------
+
+void TestScripting::read1(const char* file, const char* script)
+      {
+      Score* score = readScore(DIR + file + ".mscx");
+      MuseScoreCore::mscoreCore->setCurrentScore(score);
+
+      QVERIFY(score);
+      score->doLayout();
+
+      QQmlEngine* engine = Ms::MScore::qml();
+      QVERIFY(engine);
+
+      QString scriptPath = root + "/" + DIR + script + ".qml";
+
+      QFileInfo fi(scriptPath);
+      QVERIFY(fi.exists());
+
+      QQmlComponent component(engine);
+      component.loadUrl(QUrl::fromLocalFile(scriptPath));
+      if (component.isError()) {
+            for (QQmlError e : component.errors()) {
+                  qDebug("qml error: %s", qPrintable(e.toString()));
+                  }
+            }
+
+      QObject* obj = component.create();
+      QVERIFY(obj);
+
+      QmlPlugin* item = qobject_cast<QmlPlugin*>(obj);
+      item->runPlugin();
+
+      QVERIFY(compareFiles("p1.log", DIR + "p1.log.ref"));
+      delete score;
+      }
+
+QTEST_MAIN(TestScripting)
+#include "tst_scripting.moc"
diff --git a/mtest/scripting/updateReference b/mtest/scripting/updateReference
new file mode 100755
index 0000000..43b512c
--- /dev/null
+++ b/mtest/scripting/updateReference
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+P=../../build.debug
+#P=../../../../MuseScore-build
+
+cp $P/mtest/scripting/p1.log p1.log.ref
diff --git a/test/testoves/bdat/note-accidental.ove b/mtest/testoves/bdat/note-accidental.ove
similarity index 100%
rename from test/testoves/bdat/note-accidental.ove
rename to mtest/testoves/bdat/note-accidental.ove
diff --git a/mtest/testoves/bdat/note-accidental.ove-ref.mscx b/mtest/testoves/bdat/note-accidental.ove-ref.mscx
new file mode 100644
index 0000000..9520ec6
--- /dev/null
+++ b/mtest/testoves/bdat/note-accidental.ove-ref.mscx
@@ -0,0 +1,348 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.78</page-height>
+        <page-width>1190.55</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">作者</metaTag>
+    <metaTag name="copyright">www.popiano.org</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle">标题</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          </StaffType>
+        </Staff>
+      <trackName></trackName>
+      <Instrument>
+        <trackName></trackName>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>标题</text>
+          </Text>
+        <Text>
+          <style>Lyricist</style>
+          <text>注解</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>作者</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Tempo>
+          <tempo>1.6</tempo>
+          <visible>0</visible>
+          <xoffset>0</xoffset>
+          <yoffset>-2</yoffset>
+          <text><sym>unicodeNoteQuarterUp</sym> = 96</text>
+          </Tempo>
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>whole</durationType>
+          <noStem>1</noStem>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>whole</durationType>
+          <noStem>1</noStem>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <Accidental>
+              <role>1</role>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="3">
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>whole</durationType>
+          <noStem>1</noStem>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <Accidental>
+              <role>1</role>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            <tpc2>6</tpc2>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="4">
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>whole</durationType>
+          <noStem>1</noStem>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <Accidental>
+              <role>1</role>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="5">
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>whole</durationType>
+          <noStem>1</noStem>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <Accidental>
+              <role>1</role>
+              <subtype>double sharp</subtype>
+              </Accidental>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>27</tpc2>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="6">
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>whole</durationType>
+          <noStem>1</noStem>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <Accidental>
+              <role>1</role>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>-1</tpc2>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="7">
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>whole</durationType>
+          <noStem>1</noStem>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <Accidental>
+              <bracket>1</bracket>
+              <role>1</role>
+              <subtype>sharp</subtype>
+              </Accidental>
+            <pitch>66</pitch>
+            <tpc>20</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="8">
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>whole</durationType>
+          <noStem>1</noStem>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <Accidental>
+              <bracket>1</bracket>
+              <role>1</role>
+              <subtype>flat</subtype>
+              </Accidental>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            <tpc2>6</tpc2>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="9">
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>whole</durationType>
+          <noStem>1</noStem>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <Accidental>
+              <bracket>1</bracket>
+              <role>1</role>
+              <subtype>natural</subtype>
+              </Accidental>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="10">
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>whole</durationType>
+          <noStem>1</noStem>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <Accidental>
+              <bracket>1</bracket>
+              <role>1</role>
+              <subtype>double sharp</subtype>
+              </Accidental>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <tpc2>27</tpc2>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="11">
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>whole</durationType>
+          <noStem>1</noStem>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <Accidental>
+              <bracket>1</bracket>
+              <role>1</role>
+              <subtype>double flat</subtype>
+              </Accidental>
+            <pitch>63</pitch>
+            <tpc>11</tpc>
+            <tpc2>-1</tpc2>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/test/testoves/bdat/note-articulation-with-rest.ove b/mtest/testoves/bdat/note-articulation-with-rest.ove
similarity index 100%
rename from test/testoves/bdat/note-articulation-with-rest.ove
rename to mtest/testoves/bdat/note-articulation-with-rest.ove
diff --git a/mtest/testoves/bdat/note-articulation-with-rest.ove-ref.mscx b/mtest/testoves/bdat/note-articulation-with-rest.ove-ref.mscx
new file mode 100644
index 0000000..8e6ea4d
--- /dev/null
+++ b/mtest/testoves/bdat/note-articulation-with-rest.ove-ref.mscx
@@ -0,0 +1,115 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.78</page-height>
+        <page-width>1190.55</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">作者</metaTag>
+    <metaTag name="copyright">www.popiano.org</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle">标题</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          </StaffType>
+        </Staff>
+      <trackName></trackName>
+      <Instrument>
+        <trackName></trackName>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>标题</text>
+          </Text>
+        <Text>
+          <style>Lyricist</style>
+          <text>注解</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>作者</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Tempo>
+          <tempo>1.6</tempo>
+          <visible>0</visible>
+          <xoffset>0</xoffset>
+          <yoffset>-2</yoffset>
+          <text><sym>unicodeNoteQuarterUp</sym> = 96</text>
+          </Tempo>
+        <Rest>
+          <durationType>half</durationType>
+          <Articulation>
+            <direction>down</direction>
+            <subtype>fermata</subtype>
+            </Articulation>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/test/testoves/bdat/note-cross-staff 2.ove b/mtest/testoves/bdat/note-cross-staff 2.ove
similarity index 100%
rename from test/testoves/bdat/note-cross-staff 2.ove
rename to mtest/testoves/bdat/note-cross-staff 2.ove
diff --git a/mtest/testoves/bdat/note-cross-staff 2.ove-ref.mscx b/mtest/testoves/bdat/note-cross-staff 2.ove-ref.mscx
new file mode 100644
index 0000000..0d6eef5
--- /dev/null
+++ b/mtest/testoves/bdat/note-cross-staff 2.ove-ref.mscx	
@@ -0,0 +1,176 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.78</page-height>
+        <page-width>1190.55</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">作者</metaTag>
+    <metaTag name="copyright">www.popiano.org</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle">标题</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="2">
+        <StaffType group="pitched">
+          </StaffType>
+        </Staff>
+      <trackName></trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <trackName></trackName>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>标题</text>
+          </Text>
+        <Text>
+          <style>Lyricist</style>
+          <text>注解</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>作者</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Beam id="1">
+          <l1>26</l1>
+          <l2>30</l2>
+          </Beam>
+        <Chord>
+          <BeamMode>begin</BeamMode>
+          <durationType>eighth</durationType>
+          <Beam>1</Beam>
+          <StemDirection>down</StemDirection>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <BeamMode>end</BeamMode>
+          <move>1</move>
+          <durationType>eighth</durationType>
+          <Beam>1</Beam>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="2">
+      <Measure number="1">
+        <Clef>
+          <concertClefType>F</concertClefType>
+          <transposingClefType>F</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/test/testoves/bdat/note-cross-staff.ove b/mtest/testoves/bdat/note-cross-staff.ove
similarity index 100%
rename from test/testoves/bdat/note-cross-staff.ove
rename to mtest/testoves/bdat/note-cross-staff.ove
diff --git a/mtest/testoves/bdat/note-cross-staff.ove-ref.mscx b/mtest/testoves/bdat/note-cross-staff.ove-ref.mscx
new file mode 100644
index 0000000..c28211c
--- /dev/null
+++ b/mtest/testoves/bdat/note-cross-staff.ove-ref.mscx
@@ -0,0 +1,281 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.78</page-height>
+        <page-width>1190.55</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">作者</metaTag>
+    <metaTag name="copyright">www.popiano.org</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle">标题</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          </StaffType>
+        <bracket type="1" span="2"/>
+        <barLineSpan>2</barLineSpan>
+        </Staff>
+      <Staff id="2">
+        <StaffType group="pitched">
+          </StaffType>
+        </Staff>
+      <trackName></trackName>
+      <Instrument>
+        <longName>Piano</longName>
+        <trackName></trackName>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>标题</text>
+          </Text>
+        <Text>
+          <style>Lyricist</style>
+          <text>注解</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>作者</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Tempo>
+          <tempo>1.6</tempo>
+          <visible>0</visible>
+          <xoffset>0</xoffset>
+          <yoffset>-2</yoffset>
+          <text><sym>unicodeNoteQuarterUp</sym> = 96</text>
+          </Tempo>
+        <Dynamic>
+          <subtype>p</subtype>
+          <velocity>49</velocity>
+          </Dynamic>
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      <Measure number="2">
+        <Beam id="1">
+          <l1>26</l1>
+          <l2>30</l2>
+          </Beam>
+        <Chord>
+          <BeamMode>begin</BeamMode>
+          <durationType>eighth</durationType>
+          <Beam>1</Beam>
+          <StemDirection>down</StemDirection>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <BeamMode>end</BeamMode>
+          <move>1</move>
+          <durationType>eighth</durationType>
+          <Beam>1</Beam>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      <Measure number="3">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      <Measure number="4">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>2</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    <Staff id="2">
+      <Measure number="1">
+        <Clef>
+          <concertClefType>F</concertClefType>
+          <transposingClefType>F</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Beam id="2">
+          <l1>-10</l1>
+          <l2>-14</l2>
+          </Beam>
+        <Chord>
+          <BeamMode>begin</BeamMode>
+          <durationType>eighth</durationType>
+          <Beam>2</Beam>
+          <StemDirection>down</StemDirection>
+          <Note>
+            <pitch>48</pitch>
+            <tpc>14</tpc>
+            <velocity>69</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <BeamMode>mid</BeamMode>
+          <durationType>eighth</durationType>
+          <Beam>2</Beam>
+          <StemDirection>down</StemDirection>
+          <Note>
+            <pitch>55</pitch>
+            <tpc>15</tpc>
+            <velocity>57</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <BeamMode>mid</BeamMode>
+          <move>-1</move>
+          <durationType>eighth</durationType>
+          <Beam>2</Beam>
+          <StemDirection>down</StemDirection>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <velocity>64</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <BeamMode>end</BeamMode>
+          <move>-1</move>
+          <durationType>eighth</durationType>
+          <Beam>2</Beam>
+          <StemDirection>down</StemDirection>
+          <Note>
+            <pitch>64</pitch>
+            <tpc>18</tpc>
+            <velocity>70</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <move>-1</move>
+          <durationType>half</durationType>
+          <StemDirection>down</StemDirection>
+          <Note>
+            <pitch>72</pitch>
+            <tpc>14</tpc>
+            <velocity>71</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="3">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      <Measure number="4">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/test/testoves/bdat/note-cue.ove b/mtest/testoves/bdat/note-cue.ove
similarity index 100%
rename from test/testoves/bdat/note-cue.ove
rename to mtest/testoves/bdat/note-cue.ove
diff --git a/mtest/testoves/bdat/note-cue.ove-ref.mscx b/mtest/testoves/bdat/note-cue.ove-ref.mscx
new file mode 100644
index 0000000..f9fa2a6
--- /dev/null
+++ b/mtest/testoves/bdat/note-cue.ove-ref.mscx
@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.78</page-height>
+        <page-width>1190.55</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">作者</metaTag>
+    <metaTag name="copyright">www.popiano.org</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle">标题</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          </StaffType>
+        </Staff>
+      <trackName></trackName>
+      <Instrument>
+        <trackName></trackName>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>标题</text>
+          </Text>
+        <Text>
+          <style>Lyricist</style>
+          <text>注解</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>作者</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Tempo>
+          <tempo>1.6</tempo>
+          <visible>0</visible>
+          <xoffset>0</xoffset>
+          <yoffset>-2</yoffset>
+          <text><sym>unicodeNoteQuarterUp</sym> = 96</text>
+          </Tempo>
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <small>1</small>
+          <durationType>quarter</durationType>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <small>1</small>
+          <durationType>quarter</durationType>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <small>1</small>
+          <durationType>quarter</durationType>
+          <StemDirection>down</StemDirection>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <small>1</small>
+          <durationType>quarter</durationType>
+          <StemDirection>down</StemDirection>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/test/testoves/bdat/tie.ove b/mtest/testoves/bdat/tie.ove
similarity index 100%
rename from test/testoves/bdat/tie.ove
rename to mtest/testoves/bdat/tie.ove
diff --git a/mtest/testoves/bdat/tie.ove-ref.mscx b/mtest/testoves/bdat/tie.ove-ref.mscx
new file mode 100644
index 0000000..3ad1e4d
--- /dev/null
+++ b/mtest/testoves/bdat/tie.ove-ref.mscx
@@ -0,0 +1,206 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.78</page-height>
+        <page-width>1190.55</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">作者</metaTag>
+    <metaTag name="copyright">www.popiano.org</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle">标题</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          </StaffType>
+        </Staff>
+      <trackName></trackName>
+      <Instrument>
+        <trackName></trackName>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>标题</text>
+          </Text>
+        <Text>
+          <style>Lyricist</style>
+          <text>注解</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>作者</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Tempo>
+          <tempo>1.6</tempo>
+          <visible>0</visible>
+          <xoffset>0</xoffset>
+          <yoffset>-2</yoffset>
+          <text><sym>unicodeNoteQuarterUp</sym> = 96</text>
+          </Tempo>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>quarter</durationType>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <Tie id="2">
+              </Tie>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <Tie id="3">
+              </Tie>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>quarter</durationType>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <endSpanner id="2"/>
+            <pitch>62</pitch>
+            <tpc>16</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <endSpanner id="3"/>
+            <pitch>65</pitch>
+            <tpc>13</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>eighth</durationType>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <Tie id="4">
+              </Tie>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <Tie id="5">
+              </Tie>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="2">
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>eighth</durationType>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <endSpanner id="4"/>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          <Note>
+            <endSpanner id="5"/>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/testoves/bdat/tst_ove_bdat.cpp b/mtest/testoves/bdat/tst_ove_bdat.cpp
index 1287c86..dc21ed4 100644
--- a/mtest/testoves/bdat/tst_ove_bdat.cpp
+++ b/mtest/testoves/bdat/tst_ove_bdat.cpp
@@ -35,11 +35,11 @@ private slots:
       // The list of Ove regression tests
       // Currently failing tests are commented out and annotated with the failure reason
 
-      //void oveBeamMultipleVoicesTest() { oveReadTest("beam - multiple voices"); }
+      void oveBeamMultipleVoicesTest() { oveReadTest("beam - multiple voices"); }
       void oveBeam2Test()              { oveReadTest("beam 2"); }
       void oveBeamWinstonTest()        { oveReadTest("beam-George Winston - Joy"); }
       //void oveBeamOverBarlineTest()    { oveReadTest("beam-over-barline"); }
-      //void oveBeamTest()               { oveReadTest("beam"); }
+      void oveBeamTest()               { oveReadTest("beam"); }
       void oveClef2Test()              { oveReadTest("clef-2"); }
       //void oveClefTypes()              { oveReadTest("clef-types"); }
       //void oveClefTest()               { oveReadTest("clef"); }
@@ -65,20 +65,20 @@ private slots:
       //void oveLyricsVerseTest()        { oveReadTest("lyric-verse"); }
       void oveLyricsTest()             { oveReadTest("lyric"); }
       //void oveMultimeasureRestTest()   { oveReadTest("multi-measure-rest"); }
-      //void oveAccidentalsTest()        { oveReadTest("note-accidental"); }
+      void oveAccidentalsTest()        { oveReadTest("note-accidental"); }
       //void oveArticulations2Test()     { oveReadTest("note-articulation-2"); }
       void oveArpeggioTest()           { oveReadTest("note-articulation-arpeggio"); }
       //void ovePedalTest()              { oveReadTest("note-articulation-pedal"); }
       void oveTremoloTest()            { oveReadTest("note-articulation-tremolo"); }
       //void oveTrillLineTest()          { oveReadTest("note-articulation-trill-section"); }
       void oveTrillTest()              { oveReadTest("note-articulation-trill"); }
-      //void oveFermataRestTest()        { oveReadTest("note-articulation-with-rest"); }
+      void oveFermataRestTest()        { oveReadTest("note-articulation-with-rest"); }
       //void oveArticulationsTest()      { oveReadTest("note-articulation"); }
       void oveClefChangeTest()         { oveReadTest("note-clef"); }
-      //void oveCrossStaff2Test()        { oveReadTest("note-cross-staff 2"); }
+      void oveCrossStaff2Test()        { oveReadTest("note-cross-staff 2"); }
       //void oveCrossStaff3Test()        { oveReadTest("note-cross-staff 3"); }
-      //void oveCrossStaffTest()         { oveReadTest("note-cross-staff"); }
-      //void oveCueTest()                { oveReadTest("note-cue"); }
+      void oveCrossStaffTest()         { oveReadTest("note-cross-staff"); }
+      void oveCueTest()                { oveReadTest("note-cue"); }
       void oveNoteDotTest()            { oveReadTest("note-dot"); }
       //void oveGraceBeamTest()          { oveReadTest("note-grace-with-beam"); }
       //void oveGraceTest()              { oveReadTest("note-grace"); }
@@ -88,17 +88,17 @@ private slots:
       void oveScaleTest()              { oveReadTest("note-scale-c"); }
       //void oveScaleKeysTest()          { oveReadTest("note-scale-key"); }
       //void oveDurationTest()           { oveReadTest("note-type"); }
-      //void oveVoices5Test()            { oveReadTest("note-voices 5"); }
-      //void oveVoices2Test()            { oveReadTest("note-voices-2."); }
-      //void oveVoices3Test()            { oveReadTest("note-voices-3"); }
-      //void oveVoices4Test()            { oveReadTest("note-voices-4"); }
-      //void oveVoicesTest()             { oveReadTest("note-voices"); }
+      void oveVoices5Test()            { oveReadTest("note-voices 5"); }
+      //void oveVoices2Test()            { oveReadTest("note-voices-2"); }
+      void oveVoices3Test()            { oveReadTest("note-voices-3"); }
+      void oveVoices4Test()            { oveReadTest("note-voices-4"); }
+      void oveVoicesTest()             { oveReadTest("note-voices"); }
       void oveNoteTest()               { oveReadTest("note"); }
       //void oveOctaveTest()             { oveReadTest("octave-shift"); }
       //void ovePedal2Test()             { oveReadTest("pedal-half-pedal"); }
       //void ovePedal3Test()             { oveReadTest("pedal"); }
-      //void oveSlur2Test()              { oveReadTest("slur 2"); }
-      //void oveSlurTest()               { oveReadTest("slur"); }
+      void oveSlur2Test()              { oveReadTest("slur 2"); }
+      void oveSlurTest()               { oveReadTest("slur"); }
       //void oveTextLinesTest()          { oveReadTest("text-measure-text-lines"); }
       //void oveTextTest()               { oveReadTest("text-measure-text"); }
       //void oveRehearsalLinesTest()     { oveReadTest("text-rehearsal-lines"); }
@@ -106,13 +106,13 @@ private slots:
       //void oveSystemText2Test()        { oveReadTest("text-system-text-lines"); }
       //void oveSystemTextTest()         { oveReadTest("text-system-text"); }
       //void oveTie2Test()               { oveReadTest("tie-2"); }
-      //void oveTieTest()                { oveReadTest("tie"); }
-      //void oveTuplet2Test()            { oveReadTest("tuplet 2"); }
-      //void oveTuplet3Test()            { oveReadTest("tuplet-beam"); }
+      void oveTieTest()                { oveReadTest("tie"); }
+      void oveTuplet2Test()            { oveReadTest("tuplet 2"); }
+      void oveTuplet3Test()            { oveReadTest("tuplet-beam"); }
       //void oveTuplet4Test()            { oveReadTest("tuplet-in-second-staff"); }
-      //void oveTuplet5Test()            { oveReadTest("tuplet-rest-start 2"); }
+      void oveTuplet5Test()            { oveReadTest("tuplet-rest-start 2"); }
       //void oveTuplet6Test()            { oveReadTest("tuplet-rest-start 3"); }
-      //void oveTuplet7Test()            { oveReadTest("tuplet-rest-start"); }
+      void oveTuplet7Test()            { oveReadTest("tuplet-rest-start"); }
       //void oveTupletTest()             { oveReadTest("tuplet"); }
       //void oveWedge2Test()             { oveReadTest("wedge-2"); }
       //void oveWedgeTest()              { oveReadTest("wedge"); }
diff --git a/test/testoves/bdat/tuplet 2.ove b/mtest/testoves/bdat/tuplet 2.ove
similarity index 100%
rename from test/testoves/bdat/tuplet 2.ove
rename to mtest/testoves/bdat/tuplet 2.ove
diff --git a/mtest/testoves/bdat/tuplet 2.ove-ref.mscx b/mtest/testoves/bdat/tuplet 2.ove-ref.mscx
new file mode 100644
index 0000000..c3c18b4
--- /dev/null
+++ b/mtest/testoves/bdat/tuplet 2.ove-ref.mscx	
@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.78</page-height>
+        <page-width>1190.55</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">作者</metaTag>
+    <metaTag name="copyright">www.popiano.org</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle">标题</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          </StaffType>
+        </Staff>
+      <trackName></trackName>
+      <Instrument>
+        <trackName></trackName>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>标题</text>
+          </Text>
+        <Text>
+          <style>Lyricist</style>
+          <text>注解</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>作者</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Tempo>
+          <tempo>1.6</tempo>
+          <visible>0</visible>
+          <xoffset>0</xoffset>
+          <yoffset>-2</yoffset>
+          <text><sym>unicodeNoteQuarterUp</sym> = 96</text>
+          </Tempo>
+        <Tuplet id="1">
+          <direction>up</direction>
+          <normalNotes>2</normalNotes>
+          <actualNotes>3</actualNotes>
+          <baseNote></baseNote>
+          <Number>
+            <style>Tuplet</style>
+            <text>3</text>
+            </Number>
+          </Tuplet>
+        <Chord>
+          <Tuplet>1</Tuplet>
+          <BeamMode>no</BeamMode>
+          <durationType>eighth</durationType>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Rest>
+          <Tuplet>1</Tuplet>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <Tuplet>1</Tuplet>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/test/testoves/bdat/tuplet-beam.ove b/mtest/testoves/bdat/tuplet-beam.ove
similarity index 100%
rename from test/testoves/bdat/tuplet-beam.ove
rename to mtest/testoves/bdat/tuplet-beam.ove
diff --git a/mtest/testoves/bdat/tuplet-beam.ove-ref.mscx b/mtest/testoves/bdat/tuplet-beam.ove-ref.mscx
new file mode 100644
index 0000000..cb26f02
--- /dev/null
+++ b/mtest/testoves/bdat/tuplet-beam.ove-ref.mscx
@@ -0,0 +1,138 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.78</page-height>
+        <page-width>1190.55</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">作者</metaTag>
+    <metaTag name="copyright">www.popiano.org</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle">标题</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          </StaffType>
+        </Staff>
+      <trackName></trackName>
+      <Instrument>
+        <trackName></trackName>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>标题</text>
+          </Text>
+        <Text>
+          <style>Lyricist</style>
+          <text>注解</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>作者</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Tempo>
+          <tempo>1.6</tempo>
+          <visible>0</visible>
+          <xoffset>0</xoffset>
+          <yoffset>-2</yoffset>
+          <text><sym>unicodeNoteQuarterUp</sym> = 96</text>
+          </Tempo>
+        <Tuplet id="1">
+          <direction>up</direction>
+          <normalNotes>2</normalNotes>
+          <actualNotes>3</actualNotes>
+          <baseNote></baseNote>
+          <Number>
+            <style>Tuplet</style>
+            <text>3</text>
+            </Number>
+          </Tuplet>
+        <Rest>
+          <offset x="0" y="4"/>
+          <Tuplet>1</Tuplet>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <offset x="0" y="4"/>
+          <Tuplet>1</Tuplet>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <offset x="0" y="4"/>
+          <Tuplet>1</Tuplet>
+          <durationType>eighth</durationType>
+          </Rest>
+        <Rest>
+          <offset x="0" y="3"/>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Rest>
+          <offset x="0" y="3"/>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/test/testoves/bdat/tuplet-rest-start 2.ove b/mtest/testoves/bdat/tuplet-rest-start 2.ove
similarity index 100%
rename from test/testoves/bdat/tuplet-rest-start 2.ove
rename to mtest/testoves/bdat/tuplet-rest-start 2.ove
diff --git a/mtest/testoves/bdat/tuplet-rest-start 2.ove-ref.mscx b/mtest/testoves/bdat/tuplet-rest-start 2.ove-ref.mscx
new file mode 100644
index 0000000..b0a9a7e
--- /dev/null
+++ b/mtest/testoves/bdat/tuplet-rest-start 2.ove-ref.mscx	
@@ -0,0 +1,190 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.78</page-height>
+        <page-width>1190.55</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">作者</metaTag>
+    <metaTag name="copyright">www.popiano.org</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle">标题</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          </StaffType>
+        </Staff>
+      <trackName></trackName>
+      <Instrument>
+        <trackName></trackName>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>标题</text>
+          </Text>
+        <Text>
+          <style>Lyricist</style>
+          <text>注解</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>作者</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Tempo>
+          <tempo>1.6</tempo>
+          <visible>0</visible>
+          <xoffset>0</xoffset>
+          <yoffset>-2</yoffset>
+          <text><sym>unicodeNoteQuarterUp</sym> = 96</text>
+          </Tempo>
+        <Chord>
+          <BeamMode>no</BeamMode>
+          <durationType>quarter</durationType>
+          <StemDirection>down</StemDirection>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Tuplet id="1">
+          <direction>up</direction>
+          <normalNotes>2</normalNotes>
+          <actualNotes>3</actualNotes>
+          <baseNote></baseNote>
+          <Number>
+            <style>Tuplet</style>
+            <text>3</text>
+            </Number>
+          </Tuplet>
+        <Rest>
+          <offset x="0" y="-0.5"/>
+          <Tuplet>1</Tuplet>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <Tuplet>1</Tuplet>
+          <BeamMode>no</BeamMode>
+          <durationType>eighth</durationType>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <pitch>67</pitch>
+            <tpc>15</tpc>
+            <velocity>91</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Tuplet id="2">
+          <direction>up</direction>
+          <normalNotes>2</normalNotes>
+          <actualNotes>3</actualNotes>
+          <baseNote></baseNote>
+          <Number>
+            <style>Tuplet</style>
+            <text>3</text>
+            </Number>
+          </Tuplet>
+        <Chord>
+          <Tuplet>2</Tuplet>
+          <BeamMode>no</BeamMode>
+          <durationType>quarter</durationType>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <velocity>86</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>2</Tuplet>
+          <BeamMode>no</BeamMode>
+          <durationType>eighth</durationType>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <pitch>71</pitch>
+            <tpc>19</tpc>
+            <velocity>86</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <BarLine>
+          <subtype>normal</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      <Measure number="2">
+        <Rest>
+          <durationType>measure</durationType>
+          <duration z="4" n="4"/>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/test/testoves/bdat/tuplet-rest-start.ove b/mtest/testoves/bdat/tuplet-rest-start.ove
similarity index 100%
rename from test/testoves/bdat/tuplet-rest-start.ove
rename to mtest/testoves/bdat/tuplet-rest-start.ove
diff --git a/mtest/testoves/bdat/tuplet-rest-start.ove-ref.mscx b/mtest/testoves/bdat/tuplet-rest-start.ove-ref.mscx
new file mode 100644
index 0000000..781dbe2
--- /dev/null
+++ b/mtest/testoves/bdat/tuplet-rest-start.ove-ref.mscx
@@ -0,0 +1,146 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<museScore version="2.00">
+  <Score>
+    <LayerTag id="0" tag="default"></LayerTag>
+    <currentLayer>0</currentLayer>
+    <Division>480</Division>
+    <Style>
+      <page-layout>
+        <page-height>1683.78</page-height>
+        <page-width>1190.55</page-width>
+        <page-margins type="even">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        <page-margins type="odd">
+          <left-margin>56.6929</left-margin>
+          <right-margin>56.6929</right-margin>
+          <top-margin>56.6929</top-margin>
+          <bottom-margin>113.386</bottom-margin>
+          </page-margins>
+        </page-layout>
+      <Spatium>1.76389</Spatium>
+      </Style>
+    <showInvisible>1</showInvisible>
+    <showUnprintable>1</showUnprintable>
+    <showFrames>1</showFrames>
+    <showMargins>0</showMargins>
+    <metaTag name="arranger"></metaTag>
+    <metaTag name="composer">作者</metaTag>
+    <metaTag name="copyright">www.popiano.org</metaTag>
+    <metaTag name="lyricist"></metaTag>
+    <metaTag name="movementNumber"></metaTag>
+    <metaTag name="movementTitle">标题</metaTag>
+    <metaTag name="poet"></metaTag>
+    <metaTag name="source"></metaTag>
+    <metaTag name="translator"></metaTag>
+    <metaTag name="workNumber"></metaTag>
+    <metaTag name="workTitle"></metaTag>
+    <PageList>
+      <Page>
+        <System>
+          </System>
+        <System>
+          </System>
+        </Page>
+      </PageList>
+    <Part>
+      <Staff id="1">
+        <StaffType group="pitched">
+          </StaffType>
+        </Staff>
+      <trackName></trackName>
+      <Instrument>
+        <trackName></trackName>
+        <Channel>
+          <program value="0"/>
+          </Channel>
+        </Instrument>
+      </Part>
+    <Staff id="1">
+      <VBox>
+        <height>10</height>
+        <Text>
+          <style>Title</style>
+          <text>标题</text>
+          </Text>
+        <Text>
+          <style>Lyricist</style>
+          <text>注解</text>
+          </Text>
+        <Text>
+          <style>Composer</style>
+          <text>作者</text>
+          </Text>
+        </VBox>
+      <Measure number="1">
+        <Clef>
+          <concertClefType>G</concertClefType>
+          <transposingClefType>G</transposingClefType>
+          </Clef>
+        <KeySig>
+          <accidental>0</accidental>
+          </KeySig>
+        <TimeSig>
+          <sigN>4</sigN>
+          <sigD>4</sigD>
+          <showCourtesySig>1</showCourtesySig>
+          </TimeSig>
+        <Tempo>
+          <tempo>1.6</tempo>
+          <visible>0</visible>
+          <xoffset>0</xoffset>
+          <yoffset>-2</yoffset>
+          <text><sym>unicodeNoteQuarterUp</sym> = 96</text>
+          </Tempo>
+        <Tuplet id="1">
+          <direction>up</direction>
+          <normalNotes>2</normalNotes>
+          <actualNotes>3</actualNotes>
+          <baseNote></baseNote>
+          <Number>
+            <style>Tuplet</style>
+            <text>3</text>
+            </Number>
+          </Tuplet>
+        <Rest>
+          <Tuplet>1</Tuplet>
+          <durationType>quarter</durationType>
+          </Rest>
+        <Chord>
+          <Tuplet>1</Tuplet>
+          <BeamMode>no</BeamMode>
+          <durationType>quarter</durationType>
+          <StemDirection>down</StemDirection>
+          <Note>
+            <pitch>74</pitch>
+            <tpc>16</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Chord>
+          <Tuplet>1</Tuplet>
+          <BeamMode>no</BeamMode>
+          <durationType>quarter</durationType>
+          <StemDirection>up</StemDirection>
+          <Note>
+            <pitch>69</pitch>
+            <tpc>17</tpc>
+            <velocity>80</velocity>
+            <veloType>user</veloType>
+            </Note>
+          </Chord>
+        <Rest>
+          <durationType>half</durationType>
+          </Rest>
+        <BarLine>
+          <subtype>end</subtype>
+          <span>1</span>
+          </BarLine>
+        </Measure>
+      </Staff>
+    </Score>
+  </museScore>
diff --git a/mtest/testutils.cpp b/mtest/testutils.cpp
index 249a807..52c278d 100644
--- a/mtest/testutils.cpp
+++ b/mtest/testutils.cpp
@@ -323,7 +323,6 @@ void MTest::initMTest()
       MScore::DPMM = MScore::DPI / INCH;
       MScore::noGui = true;
 
-
       synti  = new MasterSynthesizer();
       mscore = new MScore;
       new MuseScoreCore;
diff --git a/share/instruments/generateTs.py b/share/instruments/generateTs.py
index 2c668be..5847e5b 100644
--- a/share/instruments/generateTs.py
+++ b/share/instruments/generateTs.py
@@ -29,18 +29,40 @@ for child in root:
         for instrument in instruments:
             longName = instrument.find("longName")
             if longName is not None:
-                print "longName " +longName.text
+                print "longName " + longName.text
                 addMessage(f, longName.text)
                 previousLongName = longName.text
+            
             shortName = instrument.find("shortName")
             if shortName is not None:
-                print "shortName " +shortName.text
+                print "shortName " + shortName.text
                 addMessage(f, shortName.text, previousLongName)
                 previousLongName = ""
+            
             trackName = instrument.find("trackName")
             if trackName is not None:
                 print "trackName " + trackName.text
                 addMessage(f, trackName.text)
                 previousLongName = ""
 
+            channels = instrument.findall("Channel")
+            for channel in channels:
+                channelName = channel.get("name")
+                if channelName is not None:
+                    print "Channel name :" + channelName
+                    addMessage(f, channelName)
+                cMidiActions = channel.findall("MidiAction")
+                for cma in cMidiActions:
+                    cmaName = cma.get("name")
+                    if cmaName is not None:
+                        print "Channel, MidiAction name :" + cmaName
+                        addMessage(f, cma)
+
+            iMidiActions = instrument.findall("MidiAction")
+            for ima in iMidiActions:
+                imaName = ima.get("name")
+                if imaName is not None:
+                    print "Instrument, MidiAction name :" + imaName
+                    addMessage(f, ima)
+
 f.close() 
diff --git a/share/instruments/instruments.xml b/share/instruments/instruments.xml
index 0ae64e8..3af38b0 100644
--- a/share/instruments/instruments.xml
+++ b/share/instruments/instruments.xml
@@ -1551,6 +1551,19 @@
                         <program value="71"/>
                   </Channel>
             </Instrument>
+            <Instrument id="c-clarinet">
+                  <longName>C Clarinet</longName>
+                  <shortName>C Cl.</shortName>
+                  <description>C Clarinet</description>
+                  <musicXMLid>wind.reed.clarinet</musicXMLid>
+                  <clef>G</clef>
+                  <barlineSpan>1</barlineSpan>
+                  <aPitchRange>52-89</aPitchRange>
+                  <pPitchRange>52-94</pPitchRange>
+                  <Channel>
+                        <program value="71"/>
+                  </Channel>
+            </Instrument>
             <Instrument id="d-clarinet">
                   <longName>D Clarinet</longName>
                   <shortName>D Cl.</shortName>
@@ -3666,7 +3679,7 @@
             </Instrument>
             <Instrument id="trombone">
                   <longName>Trombone</longName>
-                  <shortName>Trb.</shortName>
+                  <shortName>Tbn.</shortName>
                   <description>Trombone</description>
                   <musicXMLid>brass.trombone</musicXMLid>
                   <clef>F</clef>
@@ -3683,7 +3696,7 @@
             <Instrument id="trombone-treble">
                   <trackName>Trombone (Treble Clef)</trackName>
                   <longName>Trombone</longName>
-                  <shortName>Trb.</shortName>
+                  <shortName>Tbn.</shortName>
                   <description>Trombone</description>
                   <musicXMLid>brass.trombone</musicXMLid>
                   <transposingClef>G</transposingClef>
@@ -3699,7 +3712,7 @@
             </Instrument>
             <Instrument id="soprano-trombone">
                   <longName>Soprano Trombone</longName>
-                  <shortName>S. Trb.</shortName>
+                  <shortName>S. Tbn.</shortName>
                   <description>Soprano Trombone</description>
                   <musicXMLid>brass.trombone</musicXMLid>
                   <clef>G</clef>
@@ -3712,7 +3725,7 @@
             </Instrument>
             <Instrument id="alto-trombone">
                   <longName>Alto Trombone</longName>
-                  <shortName>A. Trb.</shortName>
+                  <shortName>A. Tbn.</shortName>
                   <description>Alto Trombone</description>
                   <musicXMLid>brass.trombone.alto</musicXMLid>
                   <clef>C3</clef>
@@ -3726,7 +3739,7 @@
             </Instrument>
             <Instrument id="tenor-trombone">
                   <longName>Tenor Trombone</longName>
-                  <shortName>T. Trb.</shortName>
+                  <shortName>T. Tbn.</shortName>
                   <description>Tenor Trombone</description>
                   <musicXMLid>brass.trombone.tenor</musicXMLid>
                   <clef>F</clef>
@@ -3741,7 +3754,7 @@
             </Instrument>
             <Instrument id="bass-trombone">
                   <longName>Bass Trombone</longName>
-                  <shortName>B. Trb.</shortName>
+                  <shortName>B. Tbn.</shortName>
                   <description>Bass Trombone</description>
                   <musicXMLid>brass.trombone.bass</musicXMLid>
                   <clef>F</clef>
@@ -3757,7 +3770,7 @@
             </Instrument>
             <Instrument id="contrabass-trombone">
                   <longName>Contrabass Trombone</longName>
-                  <shortName>Cb. Trb.</shortName>
+                  <shortName>Cb. Tbn.</shortName>
                   <description>Contrabass Trombone</description>
                   <musicXMLid>brass.trombone.contrabass</musicXMLid>
                   <clef>F</clef>
@@ -9196,7 +9209,7 @@
             </Instrument>
             <Instrument id="violoncello">
                   <longName>Violoncello</longName>
-                  <shortName>Vlc.</shortName>
+                  <shortName>Vc.</shortName>
                   <description>Violoncello</description>
                   <musicXMLid>strings.cello</musicXMLid>
                   <clef>F</clef>
@@ -9218,7 +9231,7 @@
             </Instrument>
             <Instrument id="violoncellos">
                   <longName>Violoncellos</longName>
-                  <shortName>Vlcs.</shortName>
+                  <shortName>Vcs.</shortName>
                   <description>Violoncellos</description>
                   <musicXMLid>strings.group</musicXMLid>
                   <clef>F</clef>
@@ -9298,6 +9311,12 @@
                   <Channel>
                         <program value="40"/>
                   </Channel>
+                  <Channel name="pizzicato">
+                        <program value="45"/>
+                  </Channel>
+                  <Channel name="tremolo">
+                        <program value="44"/>
+                  </Channel>
                   <genre>earlymusic</genre>
             </Instrument>
             <Instrument id="treble-viol">
@@ -9321,6 +9340,12 @@
                   <Channel>
                         <program value="40"/>
                   </Channel>
+                  <Channel name="pizzicato">
+                        <program value="45"/>
+                  </Channel>
+                  <Channel name="tremolo">
+                        <program value="44"/>
+                  </Channel>
                   <genre>earlymusic</genre>
             </Instrument>
             <Instrument id="alto-viol">
@@ -9344,6 +9369,12 @@
                   <Channel>
                         <program value="41"/>
                   </Channel>
+                  <Channel name="pizzicato">
+                        <program value="45"/>
+                  </Channel>
+                  <Channel name="tremolo">
+                        <program value="44"/>
+                  </Channel>
                   <genre>earlymusic</genre>
             </Instrument>
             <Instrument id="tenor-viol">
@@ -9367,6 +9398,12 @@
                   <Channel>
                         <program value="41"/>
                   </Channel>
+                  <Channel name="pizzicato">
+                        <program value="45"/>
+                  </Channel>
+                  <Channel name="tremolo">
+                        <program value="44"/>
+                  </Channel>
                   <genre>earlymusic</genre>
             </Instrument>
             <Instrument id="viola-da-gamba">
@@ -9390,6 +9427,12 @@
                   <Channel>
                         <program value="42"/>
                   </Channel>
+                  <Channel name="pizzicato">
+                        <program value="45"/>
+                  </Channel>
+                  <Channel name="tremolo">
+                        <program value="44"/>
+                  </Channel>
                   <genre>earlymusic</genre>
             </Instrument>
             <Instrument id="viola-da-gamba-tablature">
@@ -9424,6 +9467,12 @@
                   <Channel>
                         <program value="43"/>
                   </Channel>
+                  <Channel name="pizzicato">
+                        <program value="45"/>
+                  </Channel>
+                  <Channel name="tremolo">
+                        <program value="44"/>
+                  </Channel>
                   <genre>earlymusic</genre>
             </Instrument>
             <Instrument id="d-violone">
@@ -9447,6 +9496,12 @@
                   <Channel>
                         <program value="43"/>
                   </Channel>
+                  <Channel name="pizzicato">
+                        <program value="45"/>
+                  </Channel>
+                  <Channel name="tremolo">
+                        <program value="44"/>
+                  </Channel>
                   <genre>earlymusic</genre>
             </Instrument>
       </InstrumentGroup>
diff --git a/share/instruments/instrumentsxml.h b/share/instruments/instrumentsxml.h
index cbf4720..316384c 100644
--- a/share/instruments/instrumentsxml.h
+++ b/share/instruments/instrumentsxml.h
@@ -325,6 +325,9 @@ QT_TRANSLATE_NOOP("InstrumentsXML", "P. Cl."),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Soprano Clarinet"),
 //: Soprano Clarinet
 QT_TRANSLATE_NOOP("InstrumentsXML", "S. Cl."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "C Clarinet"),
+//: C Clarinet
+QT_TRANSLATE_NOOP("InstrumentsXML", "C Cl."),
 QT_TRANSLATE_NOOP("InstrumentsXML", "D Clarinet"),
 //: D Clarinet
 QT_TRANSLATE_NOOP("InstrumentsXML", "D Cl."),
@@ -582,9 +585,11 @@ QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™­ ba Hn."),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™­ Cornet"),
 //: Eâ™­ Cornet
 QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™­ Cnt."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™­ Cornet"),
 //: Bâ™­ Cornet
 QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™­ Cnt."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Saxhorn"),
 //: Saxhorn
 QT_TRANSLATE_NOOP("InstrumentsXML", "Saxhorn"),
@@ -610,48 +615,62 @@ QT_TRANSLATE_NOOP("InstrumentsXML", "AlpHn."),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Trumpet"),
 //: Trumpet
 QT_TRANSLATE_NOOP("InstrumentsXML", "Tpt."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Piccolo Trumpet"),
 //: Piccolo Trumpet
 QT_TRANSLATE_NOOP("InstrumentsXML", "P. Tpt."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Piccolo Trumpet in Bâ™­"),
 //: Piccolo Trumpet in Bâ™­
 QT_TRANSLATE_NOOP("InstrumentsXML", "P. Tpt. Bâ™­"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Piccolo Trumpet in A"),
 //: Piccolo Trumpet in A
 QT_TRANSLATE_NOOP("InstrumentsXML", "P. Tpt. A"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™­ Trumpet"),
 //: Eâ™­ Trumpet
 QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™­ Tpt."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "D Trumpet"),
 //: D Trumpet
 QT_TRANSLATE_NOOP("InstrumentsXML", "D Tpt."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "C Trumpet"),
 //: C Trumpet
 QT_TRANSLATE_NOOP("InstrumentsXML", "C Tpt."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™­ Trumpet"),
 //: Bâ™­ Trumpet
 QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™­ Tpt."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Pocket Trumpet"),
 //: Pocket Trumpet
 QT_TRANSLATE_NOOP("InstrumentsXML", "Pkt. Tpt."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Slide Trumpet"),
 //: Slide Trumpet
 QT_TRANSLATE_NOOP("InstrumentsXML", "Sl.Tpt."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Tenor Trumpet"),
 //: Tenor Trumpet
 QT_TRANSLATE_NOOP("InstrumentsXML", "Tnr. Tpt."),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Trumpet"),
 //: Bass Trumpet
 QT_TRANSLATE_NOOP("InstrumentsXML", "B. Tpt."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™­ Bass Trumpet"),
 //: Eâ™­ Bass Trumpet
 QT_TRANSLATE_NOOP("InstrumentsXML", "Eâ™­ B. Tpt."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Trumpet in C"),
 //: Bass Trumpet in C
 QT_TRANSLATE_NOOP("InstrumentsXML", "B. Tpt. C"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™­ Bass Trumpet"),
 //: Bâ™­ Bass Trumpet
 QT_TRANSLATE_NOOP("InstrumentsXML", "Bâ™­ B. Tpt."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "mute"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Baroque Trumpet"),
 //: Baroque Trumpet
 QT_TRANSLATE_NOOP("InstrumentsXML", "Bq. Tpt."),
@@ -1236,6 +1255,14 @@ QT_TRANSLATE_NOOP("InstrumentsXML", "Electronic Instruments"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Effect Synthesizer"),
 //: Effect Synthesizer
 QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "rain"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "soundtrack"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "crystal"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "atmosphere"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "brightness"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "goblins"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "echoes"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "scifi"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Atmosphere Synthesizer"),
 //: Atmosphere Synthesizer
 QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
@@ -1263,6 +1290,14 @@ QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Pad Synthesizer"),
 //: Pad Synthesizer
 QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "new age"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "warm"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "polysynth"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "choir"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "bowed"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "metallic"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "halo"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "sweep"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "New Age Synthesizer"),
 //: New Age Synthesizer
 QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
@@ -1305,12 +1340,18 @@ QT_TRANSLATE_NOOP("InstrumentsXML", "Mal. Syn."),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Synthesizer"),
 //: Bass Synthesizer
 QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "synth-bass-1"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "synth-bass-2"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Brass Synthesizer"),
 //: Brass Synthesizer
 QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "synth-brass-1"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "synth-brass-2"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "String Synthesizer"),
 //: String Synthesizer
 QT_TRANSLATE_NOOP("InstrumentsXML", "Synth."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "synth-string-1"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "synth-string-2"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Theremin"),
 //: Theremin
 QT_TRANSLATE_NOOP("InstrumentsXML", "Thmn."),
@@ -1474,6 +1515,8 @@ QT_TRANSLATE_NOOP("InstrumentsXML", "Bass Guitar [Tablature]"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Acoustic Bass"),
 //: Acoustic Bass
 QT_TRANSLATE_NOOP("InstrumentsXML", "Bass"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "arco"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Electric Bass"),
 //: Electric Bass
 QT_TRANSLATE_NOOP("InstrumentsXML", "El. B."),
@@ -1489,31 +1532,50 @@ QT_TRANSLATE_NOOP("InstrumentsXML", "Strings"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Erhu"),
 //: Erhu
 QT_TRANSLATE_NOOP("InstrumentsXML", "Eh."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Violin"),
 //: Violin
 QT_TRANSLATE_NOOP("InstrumentsXML", "Vln."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Violins"),
 //: Violins
 QT_TRANSLATE_NOOP("InstrumentsXML", "Vlns."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Viola"),
 //: Viola
 QT_TRANSLATE_NOOP("InstrumentsXML", "Vla."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Violas"),
 //: Violas
 QT_TRANSLATE_NOOP("InstrumentsXML", "Vlas."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Violoncello"),
 //: Violoncello
 QT_TRANSLATE_NOOP("InstrumentsXML", "Vlc."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Violoncellos"),
 //: Violoncellos
 QT_TRANSLATE_NOOP("InstrumentsXML", "Vlcs."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Contrabass"),
 //: Contrabass
 QT_TRANSLATE_NOOP("InstrumentsXML", "Cb."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Contrabasses"),
 //: Contrabasses
 QT_TRANSLATE_NOOP("InstrumentsXML", "Cbs."),
+QT_TRANSLATE_NOOP("InstrumentsXML", "pizzicato"),
+QT_TRANSLATE_NOOP("InstrumentsXML", "tremolo"),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Double Bass"),
+//: Double Bass
 QT_TRANSLATE_NOOP("InstrumentsXML", "Db."),
 QT_TRANSLATE_NOOP("InstrumentsXML", "Pardessus de viole"),
 //: Pardessus de viole
diff --git a/share/locale/CMakeLists.txt b/share/locale/CMakeLists.txt
index 552df68..d5842f6 100644
--- a/share/locale/CMakeLists.txt
+++ b/share/locale/CMakeLists.txt
@@ -27,6 +27,7 @@ install(FILES
       mscore_ca.qm
       mscore_ca at valencia.qm
       mscore_cs.qm
+      mscore_cy.qm
       mscore_da.qm
       mscore_de.qm
       mscore_el.qm
@@ -114,6 +115,7 @@ install(FILES
       instruments_ca.qm
       instruments_ca at valencia.qm
       instruments_cs.qm
+      instruments_cy.qm
       instruments_da.qm
       instruments_de.qm
       instruments_el.qm
diff --git a/share/locale/README.md b/share/locale/README.md
index ef2d7eb..5ab00d3 100644
--- a/share/locale/README.md
+++ b/share/locale/README.md
@@ -20,17 +20,20 @@ In MuseScore source
 * Add the language in share/locale/languages.xml
 
 * Add the language mscore_XX.qm in share/locale/CMakeLists.txt
-* Add the language in build/gen-qt-projectfile.bat and build/gen-qt-projectfile
-* Add the share/locale/mscore_XX.ts file, tx pull can help
-
-* Add the language instruments_XX.ts in share/instruments/lupdate.sh
 * Add the language instruments_XX.qm in share/locale/CMakeLists.txt
+
+* Add the language in build/gen-qt-projectfile.bat and build/gen-qt-projectfile
 * Add the language instruments_XX.ts to build/gen-qt-projectfile.bat and build/gen-qt-projectfile
 
+* Add the share/locale/mscore_XX.ts file, tx pull can help (`tx pull -t language_code)
+* Add the language instruments_XX.ts in share/locale
+
+
+
 
 
 On the update translation server
 ------
-* Modify languages.txt
+* Modify languages.json
 * rm share/locale/details.json
 
diff --git a/share/locale/instruments_af.ts b/share/locale/instruments_af.ts
index 5fae909..73b136e 100644
--- a/share/locale/instruments_af.ts
+++ b/share/locale/instruments_af.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bas Drom</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamboeryn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_ar.ts b/share/locale/instruments_ar.ts
index 4661f9e..7cd8eaa 100644
--- a/share/locale/instruments_ar.ts
+++ b/share/locale/instruments_ar.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>مجموعة الطبول</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_ast.ts b/share/locale/instruments_ast.ts
index 38b3294..cac3582 100644
--- a/share/locale/instruments_ast.ts
+++ b/share/locale/instruments_ast.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>set de percusión</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bombu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triángulu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Pandereta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_be.ts b/share/locale/instruments_be.ts
index f43fd13..62ec6cd 100644
--- a/share/locale/instruments_be.ts
+++ b/share/locale/instruments_be.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_bg.ts b/share/locale/instruments_bg.ts
index bc0e3d9..7095a62 100644
--- a/share/locale/instruments_bg.ts
+++ b/share/locale/instruments_bg.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Ударни</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Каса</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Триъгълник</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_ca.ts b/share/locale/instruments_ca.ts
index a70cbe9..75e7547 100644
--- a/share/locale/instruments_ca.ts
+++ b/share/locale/instruments_ca.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>Clarinet en Do</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>Cl. Do</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Clarinet en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>Cl. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Requint en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Cl. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Clarinet en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Cl. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>Clarinet en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>Cl. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Clarinet Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>Cl. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Clarinet di Bassetto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Cl. Ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Corno di bassetto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Corn. Ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Clarinet Baix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>Cl. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Clarinet contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Cl. Ca.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Clarinet contrabaix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cl. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Chalumeau Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Cha. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Chalumeau Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>Cha. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Chalumeau Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>Cha. Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Chalumeau Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>Cha. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Chalumeau Baix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>Cha. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octaví</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Contrafagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cfgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Contrabaix de canya</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Cb. cny.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Baixó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusòfon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sarrusòfon Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Sar. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sarrusòfon Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>Sar. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Sarrusòfon Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>Sar. Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Sarrusòfon Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>Sar. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Sarrusòfon Baríton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Sar. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Sarrusòfon Baix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>Sar. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Sarrusòfon Contrabaix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Sar. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxòfon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Saxòfon sopranissimo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sax. Sio.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Saxòfon Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Sax. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Saxòfon Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>Sax. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulochrome</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Saxòfon mezzosoprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>Sax. Ms.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Saxòfon Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>Sax. Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Saxòfon Melòdic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Sax. Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Saxòfon Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>Sax. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Saxòfon Baríton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Sax. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Saxòfon Baix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>Sax. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Saxòfon Contrabaix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Sax. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Saxòfon Subcontrabaix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Sax. Scb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Gaita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Gta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Llengüeta lliure</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Harmònica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>Harmònica cromàtica de 12 forats en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>Harmònica cromàtica de 14 forats en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>Harmònica cromàtica de 12 forats en Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>Harmònica cromàtica de 16 forats en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>Harmònica cromàtica tenor de 12 forats en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>Harmònica diatònica agut de 10 forats en Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>Harmònica diatònica de 10 forats en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>Harmònica diatònica de 10 forats en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>Harmònica diatònica de 10 forats en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>Harmònica diatònica de 10 forats en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>Harmònica diatònica de 10 forats en Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>Harmònica diatònica greu de 10 forats en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>Harmònica Chordet de 20 forats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Harmònica Baixa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Harm. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Harmònica Baixa Hohner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Harmònica Baixa Huang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Acordió</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Ac.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melòdica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sheng Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>She. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Sheng Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>She. Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Sheng Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>She. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Sheng Baix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>She. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Instruments de vent-metall</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>V-Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Trompa en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>Trmp. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Trompa Agut en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>Trmp. Ag. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Trompa en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Trmp. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Trompa en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>Trmp. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Trompa en Laâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Trmp. Aâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Trompa en Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>Trmp. G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Trompa en Mi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>Trmp. E</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Trompa en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Trmp. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Trompa en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Trmp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Trompa en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>Trmp. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Trompa Vienesa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>Trmp. V.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Trompa basso en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Trmp. ba Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Corneta en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Cnt. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Corneta en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Cont. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Trompa Alt en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>Trmp. Alt f</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Trompa Alt en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Trmp. Alt Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Trompa Baríton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Trmp. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Trompa Baríton (Clau de Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Corneta de posta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Cnta. Post.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Trompa dels Alps</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>Trmp. Alp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trompeta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Trompeta Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>Tpt. P.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Trompeta Piccolo en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>Tpt. P. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Trompeta Piccolo en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>Tpt. P. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Trompeta en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Tpt. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>Trompeta en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>Trompeta en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Trompeta en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Trompeta Pocket</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Tpt. Pkt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Trompeta de vares</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Tpt. Var.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Trompeta Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tpt. Tnr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Trompeta Baix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>Tpt. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Trompeta Baixa en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Tpt. B. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Trompeta Baixa en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>Tpt. B. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Trompeta Baixa en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Tpt. B. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Trompeta Barroca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Tpt. Barr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Trompeta Barroca en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Tpt. Barr. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Trompeta Barroca en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Tpt. Barr. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Trompeta Barroca en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Tpt. Barr. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Trompeta Barroca en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Tpt. Barr. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Trompeta Barroca en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Tpt. Barr. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Trompa tibetana</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Trmp. Tib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Bugle Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Bu. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Bugle Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Bu. Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Bugle Baríton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bu. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Fliscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flscn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlocorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klcn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Bugle Bombardí</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Bugle Melòfon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Bu. Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Bugle Contrabaix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Bu. Con.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Melòfon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Figle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Fig.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Figle Contralt en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>Fig. Contr. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Figle Contralt en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Fig. Contr. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>Figle Baix en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>Fig. B. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Figle Baix en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Fig. B. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Figle Contrabaix en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Fig. Cb. Eiâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Cornetto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Cornetto Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>Co. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Cornetto Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>Co. Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Cornetto Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>Co. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpentó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombó (Clau de Sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Trombó Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>Trb. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Trombó Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>Trb. Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Trombó Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>Trb. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Trombó Baix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>Trb. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Trombó Contrabaix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>TRb. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Bombardí</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Bombardí (Clau de Sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Tuba en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Música antiga</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Fifre en Siâ™­</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Bu. Bomb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombó (Clau de Sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Bomb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Bombardí (Clau de Sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Tuba en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Tu. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba en Miâ™­ (Clau de Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Tuba en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>Tu. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Tuba en SIâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Tu. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba en SIâ™­ (Clau de Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Tuba Baix en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Tu. B. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Tuba Baix en MIâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Tu. B. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Tuba Subcontrabaix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>Tu. SCb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helicon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousafó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Ssf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Tuba Wagner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Tu. Wag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Tuba Wagner en SIâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Tu. Wag. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>Tuba Wagner en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>Tu. Wag. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Corn marí</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Cn. M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didjeridú</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Ddj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Xofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Xo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Percussió de sons definits</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Timbales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Roto-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Glockenspiel Soprano Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>Glk. S. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Glockenspiel Contralt Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>Glk. Contr. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Cròtals</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Crò.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Almglocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibràfon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metal·lòfon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Metal·lòfon Soprano Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>Met. S. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Metal·lòfon Contralt Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>Met. Contr. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Metal·lòfon Baix Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>Met. B. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Campana tubular</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Camp. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Steel Drums Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>St. Dr. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Steel Drums Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>St. Dr. Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Steel Drums Guitarra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>St. Dr. Gtr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Steel Drums Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>St. Dr. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Steel Drums Cello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>St. Dr. Ce.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Steel Drums Baix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>St. Dr. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Campana de mà</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Camp. Mà</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Gongs afinats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Go. Af.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexató</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Xerrac</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Xer.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Arpa de vidre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Arp. Vid.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Harmònica de vidre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Har. Vid.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xilòfon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Xilòfon Soprano Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>Xil. S. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Xilòfon Contralt Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>Xil. Contr. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Xilòfon Baix Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>Xil. B. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xylòmarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Marimba Baixa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>Mrm. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Clàxons Afinats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Clx. Af.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Kalimba en Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Kal. Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Kalimba Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>Kal. Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Percussió de sons indefinits</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Grup de percussió</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Caixa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Cx.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bombo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>Bb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Caixa Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>Cx. P.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Tambor Militar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Tmb. Mil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom-tom</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Tom-toms Xinesos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>To. Xn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Congues</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbals</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Pandero</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Pa.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tablas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Cròtals</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Crò.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Xarleston</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Campanes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Camp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Cascavell</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Casc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Campanes de placa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Camp. Pl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Gongs Bowl</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Go. Bw.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tub</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Castanyoles de Metall</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Cst. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Fre de Cotxe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Fre Ctx.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Tubs de ferro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Tu. Fe.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Cadena</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Cdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Enclusa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Enc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Caixa xinesa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Cx. Xin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Temple Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Plat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Plt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Ride</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>R.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Plat Xinès</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Plt. Xin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Crash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Splash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Sp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Esquellot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Esq.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Castanyetes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Güiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maraques</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrqs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Slit Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Fuet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Fuet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Carrau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Car.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Thundersheet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Blocs Paper de vidre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Bl. P. V.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Fuurin de Fusta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Fuu. Fus.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Fuurin de Bambú</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Fuu. Bam.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Fuurin de Metall</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Fuu. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Fuurin de Vidre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Fuu. Vid.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Fuurin de Closca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Fuu. Clos.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Pedres</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Pdr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Espetec de dits</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Esp. D.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Aplaudiment</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Apl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Slap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Stamp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Pandereta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Pand.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Banda de Percussions</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>CX</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tambor Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TT</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Tambor Baix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>TB</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Plats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Pls.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Cant</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Veu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Ve.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Veus blanques</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>Ve. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzosoprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Contratenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Baríton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Baix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Mirlitó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Mir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Teclats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Piano de cua</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Piano Vertical</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Piano Honky Tonk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Pno. Hnk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Piano de joguina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Pno. Jog.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Clavicordi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Clc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Clavicèmbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Piano elèctric</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>Pno. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Orgue</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Orgue Percusiu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Org. Perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Orgue Hammond</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Orgue Rotary</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Org. Rot.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Orgue Pipe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmònium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Orgue Reed</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Org, Rd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Instruments Electrònics</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Sintetitzador Efectes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Sint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Sintetitzador Atmosfera</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Sintetitzador Brillant</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Sintetitzador Cristal·lí</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Sintetitzador Ecos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Sintetitzador Goblins</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Sintetitzador Pluja</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sintetitzador Ciència-ficció</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Sintetitzador Banda sonora</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Sintetitzador Pad</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>Sintetitzador New Age</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Sintetitzador Càlid</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Sintetitzador Polifonic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Sintetitzador Coral</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Sintetitzador Arcs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Sintetitzador Metàl·lic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Sintetitzador Halo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sintetitzador Sweep</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Sintetitzador Ona de Serra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sintetitzador Ona Sinusoide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Sintetitzador Ona Quadrada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ones Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Sintetitzador Baquetes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Sint. Baq.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Sintetitzador Baix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Sintetitzador Metalls</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>Sintetitzador Cordes</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Sintetitzador Metalls</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>Sintetitzador Cordes</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Sintetitzador de Percussió</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Sint. Perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Corda pinçada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Banjo Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>Bj. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Balalaica Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Bal. Pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Balalaica Prima</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Bal. Pr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Balalaika Secunda</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Bal. Sec.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Balalaica Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Bal. Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Balalaica Baixa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>Bal. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Balalaica Contrabaixa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>Bal. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Buzuki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Buz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Buzuki (3 ordres)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Buzuki (4 ordres)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Guitarra Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>Guit. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Guitarra Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>Guit. Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Guitarra clàssica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Guitarra clàssica [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Guitarra acústica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Guitarra acústica [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>Guitarra Contralt 11 cordes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>Guit. Contr. 11 c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>Guitarra 12 cordes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>Guit. 12 c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal Steel Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Guitarra elèctrica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>Guit. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Guitarra elèctrica [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Arpa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Arp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Llaüt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Llaüt [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Llaüt de 5 ordres</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Llaüt de 6 ordres</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Llaüt de 7 ordres</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Llaüt de 8 ordres</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Llaüt de 9 ordres</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Llaüt de 10 ordres</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Llaüt de 13 ordres</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>Lt. Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolina [Tabulatura]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>trèmolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>Baix elèctric 5 cordes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>Baix elèctric 5 cordes [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Violins</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Vlns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Violes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Vlas.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Violoncels</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Vlcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Contrabaixos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola de gamba (Tabulatura)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Arxillaüt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Música antiga</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Fifre en Siâ™­</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Tiorba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Tib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolina [Tabulatura]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Mandola Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Mandola Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandoloncel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Mandora d'Octava</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>M. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulele [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Ukulele Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Uk. Ten.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Ukulele Baríton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Uk. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Baix elèctroacústic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>Guit. EA.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Baix elèctroacústic [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Baix acústic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Baix elèctric</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>B. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Baix elèctric [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Baix Fretless</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>B. Frtl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Cordes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violí</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vio.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Contrabaix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Contrabaix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Viola Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Vl. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Viola Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>Vl. Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Viola Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>Vl. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola de gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola de gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vló.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>Violó en Re</translation>
     </message>
diff --git a/share/locale/instruments_ca at valencia.ts b/share/locale/instruments_ca at valencia.ts
index 7a70f9d..b0be7dd 100644
--- a/share/locale/instruments_ca at valencia.ts
+++ b/share/locale/instruments_ca at valencia.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>Clarinet Do</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>CL. Do</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Clarinet Sopranino Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>Cl. Sopn. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Requint - Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Req.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Clarinet Soprano Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Cl Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>Clarinet Soprano - La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>Cl. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Clarinet Alto - Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>Cl. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Clarinet de Basseto - La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Cl. Bass.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Corno di Basseto - Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Corn. Bass.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Clarinet Greu - Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>Cl. Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Clarinet Contralto - Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Cl. C-Alt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Clarinet contragreu - Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cl. CGr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Chalumeau Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Cha. Sopno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Chalumeau Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>Cha. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Chalumeau Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>Cha. Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Chalumeau Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>Cha. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Chalumeau Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>Cha. Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octaví</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
-        <translation>Fagot</translation>
+        <translation>Fogot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
-        <translation>Contrafagot</translation>
+        <translation>Contrafogot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cfgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Contragreu de canya</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>CGr. Cny.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Dulcian</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrussofó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sarr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sarrussofó Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Sarr. Sopno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sarrussofó Soparno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>Sarr. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Sarrussofó Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>Sarr. Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Sarrussofó Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>Sarr. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Sarrussofó Baríton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Sarr. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Sarrussofó Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>Sarr. Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Sarrussofó Contragreu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Sarr. CGr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxofó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Saxofó Soprillo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sax. Sllo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Saxofó sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Sax. Sopno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Saxofó Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>Sax. Sop</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Saxofó Aulo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Sax. Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Saxofó mezzosoprano Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>Sax. M.S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Saxofó Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>Sax. Alt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Saxofó Melòdic Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Sax. Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Saxofó Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>Sax. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Saxofó Baríton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Sax. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Saxofó Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>Sax. Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Saxofó Contragreu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Sax. CGr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Saxofó Sub-Contragreu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Sax. SCGr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Gaita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Gta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Llengüeta Lliure</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Armònica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Arm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>Armònica Cromàtica Do 12 Forats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>Armònica Cromàtica Do 14 Forats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>Armònica Cromàtica Sol 12 Forats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>Armònica Cromàtica Do 16 Forats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>Armònica Cromàtica Do 12 Forats Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>Armònica Diatònica Sol Agut 10 Forats </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>Armònica Diatònica Fa 10 Forats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>Armònica Diatònica Re 10 Forats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>Armònica Diatònica Do 10 Forats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>Armònica Diatònica La 10 Forats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>Armònica Diatònica Sol 10 Forats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>Armònica Diatònica Re Greu 10 Forats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>Armònica Cromàtica 20 Forats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Armònica Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Arm. Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Armónica Greu Hohner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Armònica Greu Huang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Acordeó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ben.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melódica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sheng Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>She. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Sheng Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>She. Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Sheng Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>She. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Sheng Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>She. Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Vent-Metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>V-Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Trompa Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>Trmp. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Trompa Do Agut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>Trmp. Ag. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Trompa Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Trmp. Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Trompa La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>Trmp. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Trompa Lab</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Trmp. Lab</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Trompa Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>Trmp. Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Trompa Mi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>Trmp. Mi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Trompa Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Trmp. Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Trompa Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Trmp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Trompa Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>Trmp. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Trompa Vienesa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>Trmp. Vi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Trompa greu Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Trmp. Gr. Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Corneta Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Cnta. Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>sordina</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Corneta Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Cnta Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxcorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Trompa Alt Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>Trmp. Alt Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Trompa Alt Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Trmp. Alt Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Trompa Baríton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Trmp. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Trompa Baríton (Clau de Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Corneta de posta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Cnta. Pos.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Trompa Alpina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>Trmp. Alp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trompeta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Trompeta Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>Tpt. Pic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Trompeta Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>Tpt. Pic. Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Trompeta Piccolo La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>Tpt. Pic. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Trompeta Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Trt Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>Trompeta Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>Tpt. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>Trompeta Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>Trp. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Trompeta Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Trp. Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Trompeta Boljaca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Trp. Blj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Trompeta de vares</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Trp. Var.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Trompeta Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Trp. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Trompeta Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>Trp. Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Trompeta Greu Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Trp. Gr. Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Trompeta Greu Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>Trp. Gr. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Trompeta Greu Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Trp. Gr. Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Trompeta Barroca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Trp. Barr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Trompeta Barroca en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Trp. Barr. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Trompeta Barroca Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Trp. Barroca Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Trompeta Barroca Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Trp. Barr. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Trompeta Barroca Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Trp. Barr. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Trompeta Barroca Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Trp. Barr. Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Trompeta Tibetana - Rag Dung</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Corneta natural</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Cnta. Nat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Corneta Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Cnta. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Corneta Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Cnta. Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Corneta Baríton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Cnta. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Fliscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Fiscorn Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Fsc. Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Bombardí de Marcha</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Mellófon de Marcha</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mell. Mch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Tuba de Marcha</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Tb. Mch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Mellófon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mell.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Figle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Fgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Figle Alto Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>Fgl. A. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Figle Alto Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Figle A. Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>Figle Baix Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>Fgl. B. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Figle Baix Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Figle B Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Figle Contrabaix Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Fgl. CB Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Cornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Cornett Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>So. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Cornett Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>Co. Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Cornett Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>Co. T</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpentó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Tbó.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombó (Clau de Sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Trombó Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>Tbó. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Trombó Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>Tbó. Alt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Trombó Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>Tbó. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Trombó Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>Tbó. Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Trombó Contragreu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Tbó. CGr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Bombardí</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Bombardí (Clau de Sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Tuba Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Musica antiga</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Pifre Sib</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Bodí. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombó (Clau de Sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Bodí.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Bombardí (Clau de Sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>Tb. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Tuba Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Tb. Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba Mi b (Clau de Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Tuba Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>Tb. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Tuba Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Tb Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba Si b (Clau de Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Tuba Baixa Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Tb. B. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Tuba Baixa Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Tb. B. Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Tuba Sub-Contrabaixa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>SCB. Tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Soufn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Tuba Wagner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Tu. Wag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Tuba Wagner Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Tu. Wag. Sib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>Tuba Wagner Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>Tu. Wag. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Corn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Corn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Percussió de to templat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Timbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Roto-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation> Glockenspiel Orff Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>Glk. o. sOP.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Glockenspiel Orff Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>Glk. O. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Cròtals</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Crò.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Lira de tubs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Lir. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Lira Sancerro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Lir. Sanc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibràfon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metalofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Metalofon Orff Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>Met. O. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Metalopon Soprano Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>Met. O. Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Metalopon Orf Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>Met. O. Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Carilló tubular</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Car. Tb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>Tamb. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Tambor Metalic Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>Tamb. Met. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Tambor Metalic Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>Tamb. Met. Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Tambor Metalic (Guitar)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Tamb. Met. Gui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Tambor Metalic Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>Tamb. Met. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Tambor Metalic (Cello)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Tamb. Met. Cell</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Tambor Metalic Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>Tamb. Met. Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Campana de mà</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Camp. Mà</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Gong Templats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Go. Tpl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexatone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flx.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Serruig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Serr. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Gots musicals</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Got. Mus.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Armònica vidre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Arm. Vid.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xilòfon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Xilòfon Orff Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>Xil. Orff. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Xilòfon Orff Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>Xil. Orff. Alt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Xilòfon Orff Greu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>Xil. Orff. Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xilomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XilMar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Marimba Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>Mrm. gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Salteri</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Salt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Bocines Templats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Bo.Tpl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Kalimba en Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Kal. Sol.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Kalimba Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>Kal. Alt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Percussió sense to definit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Percussio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Redoblant</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Red.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bombo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>Bb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Redoblant Picolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>Red. Pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Timbal marcha</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Tim. Mch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Tom-toms Chinencs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Tom Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongós</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Congas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbals</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Pandero</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Pa.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tablas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Cròtals</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Crot.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Hi-hat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Campanes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Camp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Cascavell</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Casc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Campana plana</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Camp. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Gong Tibetà</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Go. Tib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Postiça metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Posç. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Fre d'automovil</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Fre Aut.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Canons de ferro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Can. Fe.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Cadenes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Cad.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Encrusa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Enc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Caixa chinesa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Ca. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Temple Block</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Ferret</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Ferr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Platillo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Plat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Ride</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>Rid.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Platillo chinés</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Plat. Chin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Crash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Crsh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Splash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Spl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Cowbell</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Cwb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Postiça</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Pos.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Guiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maraques</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrqs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Tabal de llengües</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Tab. Ll.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Tralla</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Batzoles</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Batz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Tro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Tro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Blocs de paper d'escatar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Bl. Esc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Carilló vent de fusta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Car. fus.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Carilló vent de bambú</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Car. Bam.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Carilló vent de metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Car. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Carilló vent vidre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Car. vid.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Carilló vent Pechines</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Car. Pech.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Pedres</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Ped.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Garguirot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Gar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Aplauso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Apl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Slap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Matassagells</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Msag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tambourine</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Percussió de marcha</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Perc. Mar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tabal Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>Tab. Ten.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Tabal Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>Tab. Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Platillos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Plat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Veus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Veu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Ve.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Chiquet soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>Ch. sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzo-soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>Alt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Contralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>CAl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Contratenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>CTen.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Baritono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Teclats</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Piano coa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Piano paret</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Piano Honky Tonk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Pno. Hnk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Piano Joguet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Pi. Jog.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Clavicort</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Clc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Clavicémbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Piano electric</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>Pi. elec.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Orgue</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Orgue persussió</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Org. Perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Orgue Hammond</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Org. Ham.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Orgue de disc</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Org. dis.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Organ tubs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>harmònium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Orgue de llengüetes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Org. Lle,</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Instrument electrònic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Sintetisaor d'efectes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Sint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>pluja</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>banda sonora</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>cristal</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>ambient</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>brillantea</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>donyets</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>resò</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>sciencia ficcio</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
-        <translation>Sintetisaor atmòsfera</translation>
+        <translation>Sintetisaor ambient</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
-        <translation>Sintetisaor brillant</translation>
+        <translation>Sintetisaor brillantea</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
-        <translation>Sintetisaor Vidre</translation>
+        <translation>Sintetisaor cristal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Sintetisaor ecos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
-        <translation>Sintetisaor Goblins</translation>
+        <translation>Sintetisaor Donyets</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Sintetisaor Pluja</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
-        <translation>Sintetisaor ciencia ficcio</translation>
+        <translation>Sintetisaor Sciencia ficcio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Sintetisaor Banda sonora</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Sintetisaor Pad</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>nova era</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>càlit</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>poli</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>coral</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>corp</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>metàlic</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>gallufa</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>agranar</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
-        <translation>Sintetisaor New age</translation>
+        <translation>Sintetisaor Nova era</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
-        <translation>Sintetisaor Warm</translation>
+        <translation>Sintetisaor Càlit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Sintetisaor Polifónic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
-        <translation>Sintetisaor Choir</translation>
+        <translation>Sintetisaor Coral</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
-        <translation>Sintetisaor Bowed</translation>
+        <translation>Sintetisaor Corp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Sintetisaor Metàlic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
-        <translation>Sintetisaor Halo</translation>
+        <translation>Sintetisaor Gallufa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
-        <translation>Sintetisaor Sweep</translation>
+        <translation>Sintetisaor Agranar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
-        <translation>Sintetisaor Sax</translation>
+        <translation>Sintetisaor Serruig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sintetisaor ona senoidal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Sintetisaor ona quadrà</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ones Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Sintetisaor Baquetes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Sin. baq.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Sintetisaor Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Sintetisaor Vent metal</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>Sint-greu-1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>Sintetisaor Cordes</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>Sint-Greu-2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Sintetisaor Vent metal</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>Sint-VMetal-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>Sint-VMetal-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>Sintetisaor Cordes</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>Sint-Cordes-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>Sint-Cordes-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Them.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Sintetisaor Percussio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Sin. Perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Corda de pua</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Banjo Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>Bj. Ten.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Balalaica Picolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Bal. Pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Prima Balalaica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Segona Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Seg. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Contralto Balalaica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Calt. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Balalaica baixa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>Bal. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Balalaica Contrabaix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>Bal. CB.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Bouzouki (3-ordens)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Bouzouki (4-ordens)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Guitarra Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>Guit. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation> Guitarra alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>Guit. alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Guitarra classica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Guitarra clàssica [Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Guitarra acústica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Guitarra Acústica [Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>Guitarra Alt 11-cordes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>Gui. A. 11</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>Guitarra 12-cordes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>Gui. 12</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Guitarra d'acer en pedal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Gui. Ac. Ped.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Guitarra electrica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>Guit. Elec.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Guitarra electrica  [Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Arpa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Arp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Llaüt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>LLüt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Llaüt [Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Llaüt 5-ordens</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Llaüt 6-ordens</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Llaüt 7-ordens</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Llaüt 8-ordens</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Llaüt 9-ordens</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Llaüt 10-ordens</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Llaüt 13-ordens</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>LLüt. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolina [Tab]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arc</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>trémolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>Baix electric 5-cordes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>Baix electric 5-cordes [Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Violins</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Vlns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Violas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Vlas.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Violoncellos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Vlcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Contrabaixos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>CBaixs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Archillaüt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Musica antiga</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Pifre Sib</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Tiorba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Torb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolina [Tab]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Mandola Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Mandola Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandocello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Bandúrria</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukelele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukelele [Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Ukelele Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Uk. Ten.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Ukelele Baríton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Uk. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Guitarra Greu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>Gui. Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Guitarra Greu [Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Baix Acústic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Baix Electric</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>Ba. Elec.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Baix Electric [Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Baix Electric Sense trasts</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Ba. Ele. NTras.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Cordes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violí</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Contrabaix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>CBaix.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Contrabaix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Viola Pardessus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>V. Pard.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Viola Tiple</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Vl. Tp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Viola Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>Vl. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Viola Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>Vl. Ten.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vló.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>Violó en Re</translation>
     </message>
diff --git a/share/locale/instruments_cs.ts b/share/locale/instruments_cs.ts
index fc73b57..1bd4d5f 100644
--- a/share/locale/instruments_cs.ts
+++ b/share/locale/instruments_cs.ts
@@ -19,12 +19,12 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="5"/>
         <source>Ethnic instruments</source>
-        <translation>Národnostní nástroje</translation>
+        <translation>Etnické nástroje</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="6"/>
         <source>Woodwind</source>
-        <translation>Dřevěný dechový nástroj</translation>
+        <translation>Dřevěné dechové nástroje</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="7"/>
@@ -731,7 +731,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="208"/>
         <source>Sopranino Shawm</source>
-        <translation>Sopraninový šalmaj</translation>
+        <translation>Sopraninová šalmaj</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="210"/>
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>C klarinet</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>C kl.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>D klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>D kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Es klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Es kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>B klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>B kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>A kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Altový klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>A. kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Basetový klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Bst. kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Basetový roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Bst. roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Basový klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B. kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Kontraaltový klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Ka. kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Kontrabasový klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Kb. kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Sopraninové chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Si. cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Sopránové chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>S. cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Altové chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>A. cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Tenorové chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>T. cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Basové chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>B. cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Oktavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Okt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Kontrafagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Kfag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Plátkový kontrabas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Pl. Kontr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Dulcian</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Raket (středověký dechový nástroj)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
-        <translation>Sopranino Sarrusophon</translation>
+        <translation>Sopraninový sarusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Si. sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sopránový sarusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>S. sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Altový sarusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>A. sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Tenorový sarusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>T. sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Barytonový sarusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Bar. sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Basový sarusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>B. sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Kontrabasový sarusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Kb. sar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Sopranissimo saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sio. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Sopraninový saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Si. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Sopránový saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulochrom (dvojitý sopránový saxofon)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Mezzosopránový saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>Ms. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Altový saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Melodický saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Mel. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Tenorový saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Barytonový saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Basový saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Kontrabasový saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Kb. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Subkontrabasový saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Skb. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Dudy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>D.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
-        <translation>Volný plátek</translation>
+        <translation>Nástroje s kovovými jazýčky</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Foukací harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>Dvanáctidírková C chromatická harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>Čtrnáctidírková C chromatická harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>Dvanáctidírková G chromatická harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>Šestnáctidírková C chromatická harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>Dvanáctidírková tenorová C chromatická harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>Desetidírková vysoké G diatonická harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>Desetidírková F diatonická harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>Desetidírková D diatonická harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>Desetidírková C diatonická harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>Desetidírková A diatonická harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>Desetidírková G diatonická harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>Desetidírková hluboké D diatonická harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>Dvacetidírková Chordet harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Basová harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>B. harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Basová harmonika Hohner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Basová harmonika Huang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Akordeon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Ak.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Malá tahací harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>M. t. harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melodika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Å eng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sopránový šeng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>S. Å¡e.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Altový šeng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>A. Å¡e.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Tenorový šeng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>T. Å¡e.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Basový šeng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>B. Å¡e.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Žesťové nástroje</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Žesť.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
-        <translation>Lesní roh v F</translation>
+        <translation>F lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>F les. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
-        <translation>Vysoké C lesní roh</translation>
+        <translation>C diskantový lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
-        <translation>V. C les. r.</translation>
+        <translation>C disk. l. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
-        <translation>Lesní roh v B</translation>
+        <translation>B lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>B les. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
-        <translation>Lesní roh v A</translation>
+        <translation>A lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>A les. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
-        <translation>Lesní roh v As</translation>
+        <translation>As lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>As les. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
-        <translation>Lesní roh v G</translation>
+        <translation>G lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>G les. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>E lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>E les. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
-        <translation>Lesní roh v Es</translation>
+        <translation>Es lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Es les. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
-        <translation>Lesní roh v D</translation>
+        <translation>D lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Les. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
-        <translation>Lesní roh v C</translation>
+        <translation>C lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C les. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Vídeňský lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>Víd. les. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
-        <translation>Lesní roh v hlubokém B</translation>
+        <translation>B basový lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
-        <translation>B hl. les. r.</translation>
+        <translation>B. bas. les. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Es kornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Es knt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>Ztlumit</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>B kornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>B knt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxův roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>F altový lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>F a. les. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Es altový lesní roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Es a. les. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
-        <translation>Barytonový lesní roh</translation>
+        <translation>Barytonový roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
-        <translation>Bar. les. r.</translation>
+        <translation>Bar. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Barytonový roh (houslový klíč)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Poštovní trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Pošt. tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Alpský roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>Alp. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Pikolová trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P. trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Pikolová trubka v B</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>P. trub. B</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Pikolová trubka v A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>P. trub. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Es trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Es trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>D trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>D trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>C trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>C trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>B trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>B. trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Kapesní trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Kap. trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Posuvná trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Pos. trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Tenorová trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>T. trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Basová trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>B. trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Es basová trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Es b. trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Basová trubka v C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>B. trub. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>B basová trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>B. b. trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Barokní trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Bk. trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Barokní trubka v F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Bk. trub. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Barokní trubka v Es</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Bk. trub. Es</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Barokní trubka v D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Bk. trub. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Barokní trubka v C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Bk. trub. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Barokní trubka v B</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Bk. trub. B</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Tibetská chrámová trouba (Dung čen)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Tib. chr. tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Lovecký roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Lov. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Sopránový lovecký roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>S. lov. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Altový lovecký roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>A. lov. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Barytonový lovecký roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bar. lov. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Křídlovka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Křídl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiskorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlova křídlovka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Khl. křídl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Eufoniový lovecký roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Melafonový lovecký roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mlf. lov. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Kontrabasový lovecký roh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Kb. lov. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Melafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mlf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Ofikleida</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Ofk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>F altová ofikleida</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>F a. ofk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Es altová ofikleida</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Es a. ofk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>C basová ofikleida</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>C b. ofk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>B basová ofikleida</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>B b. ofk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Es kontrabasová ofikleida</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Es kb. ofk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Kornetino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1746 +2604,1734 @@ Congas</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Cink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Sopránový cink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>S. ci.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Altový cink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>A. ci.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Tenorový cink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>T. ci.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpent</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Pozoun</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Poz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Pozoun (trombón) (houslový klíč)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Sopránový pozoun</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>S. poz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Altový pozoun</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>A. poz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Tenorový pozoun</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>T. poz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Basový pozoun</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>B. poz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Kontrabasový pozoun</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Kb. poz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Eufonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Eufonium (houslový klíč)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>F tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Stará hudba</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>B píšťala (malá flétna)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Euf. lov.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Pozoun (trombón) (houslový klíč)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Euf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Eufonium (houslový klíč)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>F tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Es tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Es tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Es tuba (houslový klíč)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>C tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>C tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>B tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>B tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>B tuba (houslový klíč)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Basová tuba v F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>B. tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Basová tuba v Es</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>B. tu. Es</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Subkontrabasová tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>Skb. tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helikon (kontrabasová tuba)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Suzafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Suz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
-        <translation>Wágnerova tuba</translation>
+        <translation>Wagnerova tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Wag. tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
-        <translation>B Wágnerova tuba</translation>
+        <translation>B Wagnerova tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>B Wag. tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
-        <translation>F Wágnerova tuba</translation>
+        <translation>F Wagnerova tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>F Wag. tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Šnečí trubka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Å n. trub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Did.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Å ofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Å o.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
-        <translation>Naladěné bicí</translation>
+        <translation>Laděné bicí nástroje</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
-        <translation>Tympány, kotle</translation>
+        <translation>Tympány</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Tym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Rotační činely (tom)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt. č.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Zvonkohra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Zvh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Orffova sopránová zvonkohra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. s. zvh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Orffova altová zvonkohra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O. a. zvh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
-        <translation>Crotales</translation>
+        <translation>Krotály</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
-        <translation>Cro.</translation>
+        <translation>Kro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Almglocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibrafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metalofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Orffův sopránový metalofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O. s. met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Orffův altový metalofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. a. met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Orffův basový metalofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O. b. met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
-        <translation>Trubkové zvony</translation>
+        <translation>Trubicové zvony</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Tr. zv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Ocelové bubny</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>Oc. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Sopránové ocelové bubny</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>S. oc. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Altové ocelové bubny</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A. oc. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Kytarové ocelové bubny</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Kyt. oc. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Tenorové ocelové bubny</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T. oc. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Cellové ocelové bubny</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce. oc. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Basové ocelové bubny</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B. oc. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Ruční zvonky</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Ruč. zv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
-        <translation>Naladěné gongy</translation>
+        <translation>Laděné gongy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
-        <translation>Nld. go.</translation>
+        <translation>Lad. go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexaton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
-        <translation>Hrací pila</translation>
+        <translation>Hudební pila</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
-        <translation>Hr. pl.</translation>
+        <translation>Hud. pl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Hrací sklenice</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Hr. skl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Skleněná harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Skl. har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xylofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Orffův sopránový xylofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O. s. xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Orffův altový xylofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O. a. xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Orffův basový xylofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O. b. xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xylomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>Xymar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Basová marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>B. mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Cimbál</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
-        <translation>Naladěné houkačky</translation>
+        <translation>Laděné houkačky</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
-        <translation>Nld. houk.</translation>
+        <translation>Lad. houk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Sopránová kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>S. kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Altová kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A. kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
-        <translation>Nenaladěné bicí</translation>
+        <translation>Neladěné bicí nástroje</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Bubny</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Malý buben</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>M. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Velký buben</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>V. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Pikolový malý buben</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P. m. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Vojenský buben</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Voj. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom-tomy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Tomy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Čínské tom-tomy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Č. to.-to.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bonga</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Konga</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbály</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Rámový buben</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Rám. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tabla</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Kuíka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Ku.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Prstové činely</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Prst. čin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Hajtka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Zvonky</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Zv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Rolničky</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Rol.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Zvonkový plech</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Zv. pl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Miskové gongy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Mis. go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Kovové kastaněty</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Kov. kst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Automobilový brzdový buben</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut. brzd. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Železné píšťalky</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Žel. píšť.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Řetězy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Řeť.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Kovadlina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Kov.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Dřevěné špalíčky</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>DÅ™. Å¡p.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Chrámové špalíčky</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Chrám. šp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangl</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>ÄŒinel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>ÄŒin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>ÄŒinely ride</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>ÄŒin. ri.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Čínské činely</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Č. čin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>ÄŒinely crash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>ÄŒin. cr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>ÄŒinely splash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>ÄŒin. spl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Kravský zvonec</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Krav. zv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
-        <translation>Klaves</translation>
+        <translation>Dřívka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
-        <translation>Klv.</translation>
+        <translation>Dřv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Kastaněty</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Kst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Guiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Rumba koule</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>R. koule.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibsl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Štěrbinový buben</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Štěr. bub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Bič</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Bič</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Řehtačka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Řeh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Lastra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Las.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Balík skelného papíru</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Bal. skel. pap.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Dřevěná zvonkohra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>DÅ™. zv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Bambusová zvonkohra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam. zv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Kovová zvonkohra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Kov. zv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Skleněná zvonkohra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Skl. zv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Mušlová zvonkohra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Mušl. zv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Kameny</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Kam.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Lusknutí prsty</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Lusk. pr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Tleskání</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Tlesk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Plesknutí</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Plesk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Dupnutí</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Dup.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamburína</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Pochodové bicí nástroje</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>SB</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tenorové bubny</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TB</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Basové bubny</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BB</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>ÄŒinely</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>ÄŒin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Zpěv</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Hlas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Hl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Chlapecký soprán</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>Chl. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Soprán</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzosoprán</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Kontraalt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Ka.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Kontratenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Baryton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Klávesové nástroje</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
-        <translation>Piano</translation>
+        <translation>Klavír</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
 Grand Piano
 ----------
 Upright Piano</extracomment>
-        <translation>Pno.</translation>
+        <translation>Klv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Koncertní křídlo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Pianino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Honky Tonk piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Piano hračka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Pno. hrač.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
-        <translation>Clavichord</translation>
+        <translation>Klavichord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
-        <translation>Cch.</translation>
+        <translation>Kch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Cembalo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Cbl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
-        <translation>Elektrický klavír (piano)</translation>
+        <translation>Elektrický klavír</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
-        <translation>El. Pno.</translation>
+        <translation>El. klv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Varhany</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Varh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Perkusivní varhany</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perk. varh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Hammondovy varhany</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Ham. varh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Otáčivé varhany</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Ot. varh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Píšťalové varhany</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Harmonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Elektronické nástroje</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Efektový syntetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>déšť</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>zvukový záznam</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>křišťál</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>atmosféra</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>jas</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>skřítci</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>ozvěny</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>sci-fi</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Syntetizátor atmosféry</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Syntetizátor jasu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Syntetizátor křišťálu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Syntetizátor ozvěny</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Syntetizátor skřítků</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Syntetizátor deště</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Syntetizátor vědecké fantastiky</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Syntetizátor ozvučení</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Syntetizátor plochy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>fantazie</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>teplý zvuk</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>polyfonní syntetizér</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>sborový zvuk</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>skleněná harmonika</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>kovový zvuk</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>světelný kruh</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>sweep</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>Syntetizátor nového věku</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Syntetizátor teplé plochy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Polyfonní syntetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Syntetizátor sboru</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Syntetizátor skleněné plochy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Syntetizátor kovové plochy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Syntetizátor světelného kruhu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Syntetizátor pásové plochy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Syntetizátor pily</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sinusový syntetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Obdélníkový syntetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondes martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O. m.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Paličkový syntetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Pal. synt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Basový syntetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Žesťový syntetizátor</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>Syntetizátorová baskytara 1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>Syntetizátorová baskytara 2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Žesťový syntetizátor</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>Syntetické žestě 1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>Syntetické žestě 2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
         <translation>Smyčcový syntetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>Syntetické smyčce 1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>Syntetické smyčce 2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Ther.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Perkusivní syntetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Perk. synt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
-        <translation>Drnkací hudební nástroje</translation>
+        <translation>Drnkací nástroje</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Bendžo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bž.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Bendžo [tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Tenorové bendžo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T. Bž.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Piccolo balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pic. bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Prima balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Sekunda balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sek. bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Altová balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al. bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Basová balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>B. bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Kontrabasová balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>Kb. bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Buzuki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bzk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Buzuki (třístrunná)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Buzuki (čtyřstrunná)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Sopránová kytara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>S. kyt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Altová kytara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A. kyt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Klasická kytara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Kyt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Klasická kytara [tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Akustická kytara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Akustická kytara [tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>Jedenáctistrunná altová kytara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-str. a. kyt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>Dvanáctistrunná kytara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-str. kyt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedálová ocelová kytara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. oc. kyt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Elektrická kytara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El. kyt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Elektrická kytara [tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harfa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto (japonská citera)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Loutna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lout.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Loutna [tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Pětistrunná loutna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Šestistrunná loutna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Sedmistrunná loutna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Osmistrunná loutna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Devítistrunná loutna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Desítistrunná loutna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Třináctistrunná loutna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A. lout.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolína [tabulatura]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>tremolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>Pětistrunná elektrická basová kytara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>Pětistrunná elektrická basová kytara [tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Housle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Hsl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Violy, brače</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Vly.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Violoncella</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Kontrabasy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>Kby.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola da gamba  (tabulatura)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Arciloutna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Stará hudba</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>B píšťala (malá flétna)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Theorba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolína</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mand.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolína [tabulatura]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Altová mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Tenorová mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandoloncello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Oktávová mandolína</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>Ok. man.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Å amisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Å .</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitár</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulele [tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Tenorové ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten. uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Barytonové ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar. uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Basová kytara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B. kyt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Basová kytara [tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Akustická basová kytara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Elektrická basová kytara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>El .b. kyt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Elektrická basová kytara [tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Elektrická basová kytara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Bezpr. el. b. kyt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Smyčcové nástroje</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Housle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Hsl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
-        <translation>Viola, brač</translation>
+        <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Kontrabas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Kb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Kontrabas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Sopránová viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>S. vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Altová viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A. vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Tenorová viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T. vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola da gamba [tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>D Violon (basová viola)</translation>
     </message>
diff --git a/share/locale/instruments_nn.ts b/share/locale/instruments_cy.ts
similarity index 95%
copy from share/locale/instruments_nn.ts
copy to share/locale/instruments_cy.ts
index 1632f3f..a727a53 100644
--- a/share/locale/instruments_nn.ts
+++ b/share/locale/instruments_cy.ts
@@ -1,4 +1,4 @@
-<?xml version="1.0" ?><!DOCTYPE TS><TS language="nn" version="2.1">
+<?xml version="1.0" ?><!DOCTYPE TS><TS language="cy" version="2.1">
 <context>
     <name>InstrumentsXML</name>
     <message>
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
-        <translation type="unfinished"/>
+        <translation>Triongl</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Tsieineaidd Symbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Sblash Symbol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
-        <translation type="unfinished"/>
+        <translation>Clychau Gwartheg</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
-        <translation type="unfinished"/>
+        <translation>Clafiau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
-        <translation type="unfinished"/>
+        <translation>Castanedau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
-        <translation type="unfinished"/>
+        <translation>Curo Dwylo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
-        <translation type="unfinished"/>
+        <translation>Slap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
-        <translation type="unfinished"/>
+        <translation>Tambwrîn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_da.ts b/share/locale/instruments_da.ts
index c9bb8c4..530890d 100644
--- a/share/locale/instruments_da.ts
+++ b/share/locale/instruments_da.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>C klarinet</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>C klar.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>D klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>D. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Eâ™­  klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Eâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Bâ™­ klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Bâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>A. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Alt klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>A. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Basset klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Ba. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Bassethorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Ba. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Bas klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Kontra-alt klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>C-a. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Kontrabas klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cb. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Sopranino Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Si. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Sopran Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>S. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Alt Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>A. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Tenor Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>T. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Bas Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>B. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Basun</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Bsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Kontrabasun</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cbsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Reed Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Rd. Cbs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Dulcian</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sopranino sarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Si. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sopran sarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>S. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Alt Sarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>A. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Tenor Sarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>T. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Barytonsarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Bar. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Bas sarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>B. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Kontrabas sarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Cb. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Soprillo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sio. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Sopranino saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Si. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Sopran saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S. Sax</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulokrom</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Mezzo-sopran saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>M.S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Alt Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A.sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Tenorsaxofon i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>T.sax i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Tenor saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Barytonsaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Bassaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Kontrabassaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Cb. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Subkontrabas saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Scb. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Sækkepipe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Sækp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Free Reed</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12 huls kromatisk mundharmonika i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14 huls kromatisk mundharmonika i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12 huls kromatisk mundharmonika i G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16 huls kromatisk mundharmonika i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>12 huls kromatisk tenor mundharmonika i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>10 huls diatonisk mundharmonika i højt G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>10 huls diatonisk mundharmonika i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>10 huls diatonisk mundharmonika i D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>10 huls diatonisk mundharmonika i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>10 huls diatonisk mundharmonika i A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>10 huls diatonisk mundharmonika i G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>10 huls diatonisk mundharmonika i dybt D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>20 hullet akkordharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Bas harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Bs. harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Bas Hohner harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Bas Huang Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Accordion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melodika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sopran Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>S She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Alt sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>A. she.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Tenor sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>T. she.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Bas Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>B. she.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Messingblæsere</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Horn i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>F. hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Horn i højt C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>Hn i h. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Horn i Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation> Bâ™­ hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Horn i A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>A hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Horn i Aâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Aâ™­ hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Horn i G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>G hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Horn i E</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>E hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Horn i Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Eâ™­ hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Horn i D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Horn i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Wienerhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>W. horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Bashorn i Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Bâ™­ bhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Kornet i Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Eâ™­ Cor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>stum</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Bâ™­ kornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Bâ™­  korn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Alt horn i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>A. hn. i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Althorn i Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>A. hn i Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Barytonhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Bar. hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Barytonhorn (diskant nøgle)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Posthorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>P. horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Alpehorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>Alp.hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trompet </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Piccolo trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P. tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Piccolo trompet i Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>P. tpt. i Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Piccolo trompet i A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>P. tpt. i A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Eâ™­ trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Eâ™­ tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>D trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>D tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>C trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>C tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Bâ™­ trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Bâ™­ tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Lommetrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Lom.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Træktrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>tr.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Tenor trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tnr. tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Bastrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>B. tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Eâ™­ bastrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Eâ™­ b. tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Bastrompet i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>B. tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Bâ™­ Bas trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Bâ™­ b. tpt..</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Baroktrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>bk. tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Baroktrompet i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Bk. tpt. i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Baroktrompet i Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Bk. tpt. i Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Baroktrompet i D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Bk. tpt. i D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Baroktrompet i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Bk. tpt. i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Baroktrompet i Bâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Bk. tpt. i Bâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Tipetansk trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Tip. tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Signalhorn (bugle)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Sign. hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Sopran Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Sop. Sign. hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Alt signalhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Alt sign.hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Barytonhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bar. Sign.hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Flygelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Fly.hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Basflygelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Bas fly.hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Kuh.hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Euphoniumhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Mellofonhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mel. hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Kontrabas Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Con. Sig.hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Mellofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Melf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Alt Ophicleide i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>Alt oph. i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Alt Ophicleide i Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Alt oph. i Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>C Bas Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>B. oph. i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Bâ™­ Bas Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>B. oph i Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Eâ™­ kontrabas Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Cb. Oph. i Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Kornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Sopran kornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>S. Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Alt kornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>A. ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Tenorkornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>T. ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpent</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombone (diskant-nøgle)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Sopran Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>S. trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Alt trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>A. trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Tenor trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>T. trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Bastrombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>B. trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Kontrabas trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Cb. trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Euphonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Euphonium (diskantnøgle)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Tubs i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Tidlig musik</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Fife i Bâ™­</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Euphonium horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombone (diskant-nøgle)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Euph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Euphonium (diskantnøgle)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Tuba i Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Tu. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba i E♭ (diskantnøgle)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Tuba i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>Tu. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Tuba i Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Tu. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba i B♭ (diskantnøgle)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Bastuba i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Ba. Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Bastuba i Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Ba. tu. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Sub-kontrabas tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>SCB. tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helicon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Wagnertuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Wgn. tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Wagnertuba i Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Wgn. tu. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>Wagnertuba i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>Wgn. tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Conch</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Stemt percussion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Timpani</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Roto-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Klokkespil</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Klok.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Orff sopran klokkespil</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. S. klk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Orff Altklokkespil</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O.A. klk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crotales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tbf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Almglocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Akl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibrafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metalofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Orff sopran metallofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O.S.met</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Orff Altmetalofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. A. met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Orff bas metalofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O.B. met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Tubular Bells</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Tu. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Oljetønder</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>Olj.td.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Sopran oljetønder</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>S. Olj.td.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Alt oljetønder</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A. olj.td.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Guitar oljetønder</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr. Olj. td.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Tenor oljetønder</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T. olj.td.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Cello øljetønder</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce. olj.td.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Basoljetønder</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B. olj.td.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Klokker</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Klk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Stemte gongs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>ST. go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexatone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flx.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Sav</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Sav</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Glas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Glas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Glasharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gls. Har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xylofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xyl</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Orff sopran Xylofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O.S. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Orff Altxylofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O.A.xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Orff bas xylofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O.B.xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xylomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>Xmrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Bas marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>B.mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Stemt båthorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Stm. BÃ¥t.hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Diskantkalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>ds.kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Altkalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A.kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Ustemt percussion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>trommesæt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Drs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Lilletromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>ll. trm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Stortromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>B. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Piccolo lilletromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P. ll.trm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Militærtromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Mil. trm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tamtam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Tamtam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Kinesisk tamtam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Kin. Tam.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongotrommer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.trm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Congas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>HÃ¥ndtromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Hnd. trm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tablas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Fingerbækken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Fi.bk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Hi-hat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Klokker</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Bjælder</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Bjld.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Klokketræ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Kl.træ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Grydegongs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Gr.gongs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Metalcastanetter</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Met.Cast.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Automobile Brake trommer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut.Br. trm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Jernrør</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>j.rør</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Kæder</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Kæ.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Ambolt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Amb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Træblokke</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Tr.blk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Temple Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Trekant</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Bækken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Bæk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Ridebækken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>R.bæk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Kinesisk bækken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Ch.bæk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Crash-bækken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cr.bæk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Splash-bækken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>sp. bæk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Koklokke</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Cwb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Civ.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Castanetter</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Guiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibsip.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Slit Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>slt. dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Pisk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Pisk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Skralde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Skrld.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Torden percussion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>tor.per.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Sandpapir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sandp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Træ vind buler</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Tr. vnd. bul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Bambus vind buler</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam. vnd. bul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Metal vind buler</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Met. vnd. bul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Glas vind buler</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Gl. vnd. bul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Skal vind buler</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Sk. vnd. bul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Sten</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Stn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Fingerknips</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>fing. knps.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>HÃ¥ndklap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>H. klp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Slap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Tramp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Trmp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamborin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Marching Percussion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>SD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tenortrummer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Bastrommer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Bækkener</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Cy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Stemmer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Stemme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Drengesopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>B. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Sopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzosopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Kontraalt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Kontr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Kontratenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Baryton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Tangentinstrumenter</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Klaver</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Klav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Flygel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Opretstående klaver</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Honky Tonk klaver</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk. klaver</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Legtøjsklaver</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Leg. klaver.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Clavichord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Cch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Cembalo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Cem.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celeste</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Elektrisk klaver</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>El. klaver</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Orgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Percusivt orgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perc. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Hammondorgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm. org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Leslieorgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Les. org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Pibeorgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Reed Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Rd. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Elektroniske instrumenter</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Effect Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synth.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>regn</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>lydspor</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>krystal</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>atmosfære</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>klarhed</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>goblins</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>ekkoer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>scifi</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Atmosphere Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Brightness Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Crystal Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Echoes Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Goblins Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Rain Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sci-fi Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Soundtrack Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Pad Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>new age</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>varm</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>polysynth</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>kor</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>buet</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>metallisk</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>halo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>sweep</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>New Age Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Warm Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Poly Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Choir Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Bowed Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Metallic Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Halo Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sweep Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Saw Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sine Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Square Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondes Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Mallet Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Mal. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Bas synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Messingblæser synthesizer</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>synth-bass-1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>String Synthesizer</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>synth-bass-2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Messingblæser synthesizer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>synth-brass-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>synth-brass-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>String Synthesizer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>synth-string-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>synth-string-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Percussion Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Perc. syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Strengeinstrumenter</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Tenorbanjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T.bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Piccolobalalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>pic. bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Prima Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Secunda Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sec. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Altbalalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al. bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Bas balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>B. bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Kontrabas balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>CB. bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>6-strengs Bouzouki </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>8-strengs Bouzouki </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Sopran guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>S. guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Altguitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A. guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Klassisk guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Klassisk guitar [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Akustisk guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Akustisk guitar [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11-strengs alt guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-str. a. guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12-strengs guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-str. guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal Steel Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Elektrisk guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El-guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Elekstrisk guitar [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harpe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Lut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Lut [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>10-strengs lut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>12-strengs lut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>14-strengs lut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>16-strengs lut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>18-strengs lut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>20-strengs lut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>26-strengs lut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolin [Tablature]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>tremolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>5-str. elektrisk bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>5-str. elektrisk bas  [Tablatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Violiner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Vlnr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Violaer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Celloer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Kontrabasser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>Kbs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola da gamba (Tablature)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Archlute</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Tidlig musik</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Fife i Bâ™­</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Theorbo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolin [Tablature]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Alt mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Tenor mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandocello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Oktavmandolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>st.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulele [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Tenor Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten. uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Baryton Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar. uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Basguitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B. guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Basguitar [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Akustisk bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>El-bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Elektrisk bas [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Båndløs elektrisk bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Bndls.. El. bas.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Strygere</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Cello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Kontrabas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Kb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Dobbeltbas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Diskant viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Ds. vi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Alt viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A. v.d. gam.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Tenor viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T. v.d.gam.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>V.d.gam.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Viln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>D Violone</translation>
     </message>
diff --git a/share/locale/instruments_de.ts b/share/locale/instruments_de.ts
index 8b9016c..04b673f 100644
--- a/share/locale/instruments_de.ts
+++ b/share/locale/instruments_de.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>C Klarinette</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>C Kl.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>D Klarinette</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>D Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Es Klarinette</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Es Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>B Klarinette</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>B Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A Klarinette</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>A Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Alt Klarinette</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>A. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Bassetklarinette</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Ba. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Bassethorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Ba. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Bass Klarinette</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Kontra-Alt Klarinette</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>K-A. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Kontrabass Klarinette</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Kb. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Sopranino Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Si. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Sopran Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>S. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Alt Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>A. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Tenor Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>T. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Bass Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>B. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Taragot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Oktavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Okt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagott</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Kontrafagott</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Kfgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Reed Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Rd. Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Dulzian</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sopranino Sarrusophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Si. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sopran Sarrusophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>S. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Alt Sarrusophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>A. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Tenor Sarrusophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>T. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Bariton Sarrusophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Bar. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Bass Sarrusophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>B. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Kontrabass Sarrusophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Kb. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Sopranissimo Saxophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sio. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Sopranino Saxophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Si. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Sopran Saxophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulochrome</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Mezzo-Sopran Saxophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>M.S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Alt Saxophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Melodie Saxophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Mel. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Tenor Saxophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Bariton Saxophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Bass Saxophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Kontrabass Saxophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Kb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Subkontrabass Saxophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Skb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Dudelsack</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Ddls.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Instrumente mit durchschlagender Zunge</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12 Loch C chromatische Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14 Loch C chromatische Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12 Loch G chromatische Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16 Loch C chromatische Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>12 Loch Tenor C chromatische Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>10 Loch hohes G diatonische Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>10 Loch F diatonische Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>10 Loch D diatonische Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>10 Loch C diatonische Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>10 Loch A diatonische Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>10 Loch G diatonische Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>10 Loch Tiefes D diatonische Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>20 Loch Chordet Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Bass Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Bs. Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Bass Hohner Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Bass Huang Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Akkordeon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Akk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Konzertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Konz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melodika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sopran Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>S She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Alt Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>A She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Tenor Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>T She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Bass Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>B She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Blechblasinstrumente</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Horn in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>F Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Hohes C Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>H. C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Horn in B</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>B Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Horn in A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>A Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Horn in As</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>As Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Horn in G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>G Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>E Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>E Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Horn in Es</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Es Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Horn in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Horn in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Wiener Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>W. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Horn in tiefem B</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>B ba Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Es Kornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Es Knt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>Dämpfer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>B Kornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>B Knt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>F Alt Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>F A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Es Alt Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Es A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Bariton Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Bar. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Bariton Horn (Violinschlüssel)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Posthorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Psthn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Alphorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>AlpHn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Piccolo Trompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Piccolo Trompete in B</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>P. Tpt. B</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Piccolo Trompete in A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>P. Tpt. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Es Trompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Es Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>D Trompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>D Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>C Trompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>C Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>B Trompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>B Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Taschentrompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Tsch.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Zugtrompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Zg.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Tenor Trompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tnr. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Bass Trompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Es Bass Trompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Es B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Bass Trompete in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>B. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>B Bass Trompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>B B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Barock Trompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Bk. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Barock Trompete in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Bk. Tpt. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Barock Trompete in Es</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Bk. Tpt. Es</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Barock Trompete in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Bk. Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Barock Trompete in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Bk. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Barock Trompete in B</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Bk. Tpt. B</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Dungchen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Dngch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Sopran Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Sop. hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Alt Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Alt. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Bariton Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bar. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Flügelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flghn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Euphonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Mellophonhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mel.hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Kontrabass Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Hon. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Mellophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Ophikleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>F Alt Ophikleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>F A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Es Alt Ophikleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Es A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>C Bass Ophikleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>C B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>B Bass Ophikleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>B B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Es Kontrabass Ophikleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Es Kb. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1746 +2604,1734 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Zink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Sopran Zink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>S. Zn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Alt Zink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>A. Zn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Tenor Zink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>T. Zn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpent</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Posaune</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Pos.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Posaune (Violinschlüssel)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Sopran Posaune</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>S. Pos.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Alt Posaune</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>A. Pos.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Tenor Posaune</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>T. Pos.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Bass Posaune</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>B. Pos.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Kontrabass Posaune</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Kb. Pos.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Euphonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Euphonium (Violinschlüssel)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>F Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Alte Musik</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>B Schwegel</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Euph. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Posaune (Violinschlüssel)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Euph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Euphonium (Violinschlüssel)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>F Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Es Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Es Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Es Tuba (Violinschlüssel)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>C Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>C Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>B Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>B Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>B Tuba (Violinschlüssel)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Bass Tuba in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Ba. Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Bass Tuba in Es</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Ba. Tu. Es</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Subkontrabass Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>Skb. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helikontuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousaphon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Wagner Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>B Wagner Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>B Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>F Wagner Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>F Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Schneckenhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Sn. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Schofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Scho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Gestimmtes Schlagwerk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Pauke</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Pk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Rototoms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Orff Sopran Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. S. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Orff Alt Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O. A. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crotales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubaphon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Almglocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibraphon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metallophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Orff Sopran Metallophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O. S. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Orff Alt Metallophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. A. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Orff Bass Metallophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O. B. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Röhrenglocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>R. Gl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Sopran Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>S. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Alt Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Guitar Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Tenor Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Cello Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Bass Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Handglocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Ha. Gl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Gestimmte Gongs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Td. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexaton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Singende Säge</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Si. Sä.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Glasharfe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Gl. Hf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Glassharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gla. Har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xylophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Orff Sopran Xylophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O. S. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Orff Alt Xylophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O. A. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Orff Bass Xylophon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O. B. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xylomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Bass Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>B. Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Hackbrett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Hkb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Gestimmte Klaxon Hörner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Tn. Klx. Hns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Treble Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Tr. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Alt Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Ungestimmtes Schlagwerk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Schlagzeug</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Slzg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Snare Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bass Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>B. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Piccolo Snare Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P. Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Military Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Mil. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tomtoms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Chinesische Tomtoms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Ch. To.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Congas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Rahmentrommel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Rm. Tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tablas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuíca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Fingerbecken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Fi. Bkn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Hi-Hat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-Tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Glocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Gl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Glockenstab</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Sle. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Glockenplatte</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Be. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Klangschalen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Kl.sch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Metall-Kastagnetten</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Met.-Kst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Automobil-Bremsen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut.-Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Eisenrohre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>E.rhr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Ketten</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Ktn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Amboss</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Amb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Holzblock</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Hlz.bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Templeblocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp.bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Becken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Bkn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Ride-Becken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>R. Bkn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Chinesisches Becken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Ch. Bkn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Crash-Becken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cr. Bkn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Splash-Becken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Sp. Bkn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Kuhglocke</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Kgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Klanghölzer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Kastagnetten</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Kst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Güiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Schlitztrommel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Peitsche</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Ptsch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Ratsche</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Rat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Donnerblech</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Sandpaper Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sa. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Holz-Windspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Hlz. Wn.sp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Bambus-Windspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam.-Wn.sp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Metall-Windspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Met.-Wn.sp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Glass-Windspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Gl.-Wn.sp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Muschel-Windspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Ms.-Wn.sp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Steine</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Ste.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Fingerschnippen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Fi.snp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Klatschen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Klt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Slap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Stampfen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamburin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Marching Percussion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>SD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tenor Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Bass Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Becken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Bkn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Gesang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Stimme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>St.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Knabensopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>Ks.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Sopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzosopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>CA</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Countertenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Count.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Bariton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Tasteninstrumente</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Klavier</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
 Grand Piano
 ----------
 Upright Piano</extracomment>
-        <translation>Pno.</translation>
+        <translation>Klav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Flügel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Pianino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Honky Tonk Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Spielzeugpiano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Splzg. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Clavichord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Cch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Cembalo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Cbl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Elektrisches Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>El. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Orgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Percussive Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perc. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Hammond Orgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Rotary Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Rot. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Pipe Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Harmonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Hrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Elektronische Instrumente</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Effekt Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synth.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>Regen</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>Soundtrack</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>Kristall</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>Atmosphäre</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>Helligkeit</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>Kobolde</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>Echos</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>Sci-fi</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Atmosphere Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Brightness Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Crystal Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Echoes Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Goblins Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Rain Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sci-fi Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Soundtrack Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Pad Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>New Age</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>warm</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>Polysynth</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>Chor</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>Bogen</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>metallisch</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>Halo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>Schwung</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>New Age Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Warm Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Poly Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Choir Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Bowed Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Metallic Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Halo Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sweep Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Saw Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sine Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Square Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondes Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Mallet Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Mal. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Bass Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Brass Synthesizer</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>Synth-Bass-1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>String Synthesizer</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>Synth-Bass-2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Brass Synthesizer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>Synth-Blechbläser-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>Synth-Blechbläser-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>String Synthesizer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>Synth-Streicher-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>Synth-Streicher-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Percussion Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Perc. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Zupfinstrumente</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tablatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Tenor Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T. Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Piccolo Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pic. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Prima Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Secunda Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sec. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Alt Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Bass Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>B. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Kontrabass Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>KB. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Bouzouki (3-chörig)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Bouzouki (4-chörig)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Sopran Gitarre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>S. Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Alt Gitarre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A. Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Klassische Gitarre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Klassische Gitarre [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Akustische Gitarre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Akustische Gitarre [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11-saitige Alt Gitarre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-stg. A. Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12-saitige Gitarre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-stg. Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal-Steel-Gitarre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Elektrische Gitarre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El. Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Elektrische Gitarre [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harfe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Laute</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Laute [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Laute 5-chörig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Laute 6-chörig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Laute 7-chörig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Laute 8-chörig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Laute 9-chörig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Laute 10-chörig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Laute 13-chörig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>E.lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandoline [Tablatur]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>Arco</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>Tremolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>5-stg. elektrischer Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>5-stg. elektrischer Bass [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>Pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Violinen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Vlns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Violas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Vlas.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Violoncellos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Vlcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Kontrabasse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>Kbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Kb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Gambe (Tabulatur)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Erzlaute</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Alte Musik</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>B Schwegel</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Theorbe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandoline</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mand.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandoline [Tablatur]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Alt Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Tenor Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandoloncello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Oktav-Mandoline</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulele [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Tenor Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Bariton Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Bass Gitarre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B. Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Bass Gitarre [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Akustischer Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Elektrischer Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Elektrischer Bass [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Stegloser Elektrischer Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Stgl. El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Streichinstrumente</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violine</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Bratsche</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Kontrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Kb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Kontrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Diskantgambe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>D.ga.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Altgambe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A.ga.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Tenorgambe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T.ga.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Gambe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>G.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Gambe (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>D Violone</translation>
     </message>
diff --git a/share/locale/instruments_el.ts b/share/locale/instruments_el.ts
index acb5245..50423f6 100644
--- a/share/locale/instruments_el.ts
+++ b/share/locale/instruments_el.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>Ντο Κλαρινέτο</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>Ντο Κλ.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Ρε Κλαρινέτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>D Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Μι♭ Κλαρινέτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Eâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Σι♭ Κλαρινέτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Bâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>Λα Κλαρινέτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>A Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Άλτο Κλαρινέτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>A. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Μπασσέτ Κλαρινέτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Ba. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Μπασσέτ Κόρνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Ba. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Μπάσο Κλαρινέτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Κοντράλτο Κλαρινέτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>C-a. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Κοντραμπάσο Κλαρινέτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cb. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Σαλουμιάου</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Σοπρανίνο Σαλουμιάου</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Si. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Σοπράνο Σαλουμιάου</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>S. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Άλτο Σαλουμιάου</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>A. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Τενόρο Σαλουμιάου</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>T. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Μπάσο Σαλουμιάου</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>B. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Ταρογάτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Οκταβίν</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Φαγκότο </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Bsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Κοντραφαγκότο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cbsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Κοντραφαγκότο με καλάμι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Rd. Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Ντουλτσιάν</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Ράκεττ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Σαρρουσόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Σοπρανίνο Σαρρουσόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Si. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Σοπράνο Σαρρουσόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>S. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Άλτο Σαρρουσόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>A. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Τενόρο Σαρρουσόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>T. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Βαρύτονο Σαρρουσόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Bar. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Μπάσο Σαρρουσόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>B. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Κοντραμπάσο Σαρρουσόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Cb. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Σαξόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Σοπρανίσιμο Σαξόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sio. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Σοπρανίνο Σαξόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Si. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Σοπράνο Σαξόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Αουλοχρόμ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Μέτζο-Σοπράνο Σαξόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>M.S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Άλτο Σαξόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Μελοδικό Σαξόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Mel. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Τενόρο Σαξόφωνο </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Βαρύτονο Σαξόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Μπάσο Σαξόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Κοντραμπάσο Σαξόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Cb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Υποκοντραμπάσο Σαξόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Scb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Γκάιντα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Bagp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Ελεύθερο Καλάμι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12τρυπη Ντο Χρωματική Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14τρυπη Ντο Χρωματική Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12τρυπη Σολ Χρωματική Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16τρυπη Ντο Χρωματική Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>12τρυπη Τενόρο Ντο Χρωματική Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>10τρυπη υψηλό Σολ Διατονική Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>10τρυπη Φα Διατονική Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>10τρυπη Ρε Διατονική Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>10τρυπη Ντο Διατονική Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>10τρυπη Λα Διατονική Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>10τρυπη Σολ Διατονική Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>10τρυπη χαμηλό Ρε Διατονική Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>20τρυπη Κορντέτ Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Μπάσο Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Bs. Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Μπάσο Hohner Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Μπάσο Huang Φυσαρμόνικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Ακορντεόν</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Μπαντονεόν</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Κοντσερτίνα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Μελόντικα </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Σενγκ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Σοπράνο Σενγκ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>S She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Άλτο Σενγκ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>A She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Τενόρο Σενγκ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>T She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Μπάσο Σενγκ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>B She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Χάλκινα Πνευστά</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Κόρνο σε Φα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>F Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Κόρνο σε υψ. Ντο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>H. C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Κόρνο σε Σι♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Bâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Κόρνο σε Λα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>A Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Κόρνο σε Λα♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Aâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Κόρνο σε Σολ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>G Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Μι Κόρνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>E Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Κόρνο σε Μι♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Eâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Κόρνο σε Ρε</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Κόρνο σε Ντο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Βιενέζικο Κόρνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>V. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Μπάσο Κόρνο σε Σι♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Bâ™­ ba Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Μι♭ Κορνέτα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Eâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>Σίγαση</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Σι♭ Κορνέτα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Bâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Σάξχορν</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Φα Άλτο Κόρνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>F A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Μι♭ Άλτο Κόρνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Eâ™­ A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Βαρύτονο Κόρνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Bar. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Βαρύτονο Κόρνο (Κλειδί Σολ)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Ταχυδρομικό Κόρνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Psthn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Κόρνο των Άλπεων</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>AlpHn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Τρομπέτα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Πίκολο Τρομπέτα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Πίκολο Τρομπέτα σε Σι♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>P. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Πίκολο Τρομπέτα σε Λα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>P. Tpt. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Μι♭ Τρομπέτα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Eâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>Ρε Τρομπέτα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>D Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>Ντο Τρομπέτα </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>C Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Σι♭ Τρομπέτα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Bâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Τρομπέτα Τσέπης</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Pkt. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Πλαγιαστή Τρομπέτα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Sl.Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Τενόρο Τρομπέτα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tnr. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Μπάσο Τρομπέτα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Μι♭ Μπάσο Τρομπέτα </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Eâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Μπάσο Τρομπέτα σε Ντο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>B. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Σι♭ Μπάσο Τρομπέτα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Bâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Μπαρόκ Τρομπέτα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Bq. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Μπαρόκ Τρομπέτα σε Φα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Bq. Tpt. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Μπαρόκ Τρομπέτα σε Μι♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Bq. Tpt. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Μπαρόκ Τρομπέτα σε Ρε</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Bq. Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Μπαρόκ Τρομπέτα σε Ντο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Μπκ. Τρτ. σε Ντο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Μπαρόκ Τρομπέτα σε Σι♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Bq. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Ράγκ Ντάνγκ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Μπάγλ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Σοπράνο Μπάγλ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Sop. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Άλτο Μπάγλ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Alt. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Βαρύτονο Μπάγλ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bar. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Φλικόρνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flghn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Φισκόρνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Κουχλοκόρνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Ευφώνιο Μπάγκλ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Μελόφωνο Μπάγκλ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mel. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Κοντραμπάσο Μπάγκλ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Con. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Μελόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Όφικλαϊντ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Φα Άλτο Όφικλαϊντ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>F A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Μι♭ Άλτο Όφικλαϊντ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Eâ™­ A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>Ντο Μπάσο Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>C B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Σι♭ Μπάσο Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Bâ™­ B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Μι♭ Κοντραμπάσο Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Eâ™­ Cb. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Κορνεττίνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Κορνέττα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Σοπράνο Κορνέττα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>S. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Άλτο Κορνέττα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>A. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Τενόρο Κορνέττα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>T. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Σέρπεντ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Τρομπόνι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Τρομπόνι. (Κλειδί του Σολ)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Σοπράνο Τρομπόνι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>S. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Άλτο Τρομπόνι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>A. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Τενόρο Τρομπόνι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>T. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Μπάσο Τρομπόνι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>B. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Κοντραμπάσο Τρομπόνι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Cb. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Κιμπάσο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Ευφώνιο </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Ευφώνιο (Κλειδί του Σολ)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Τούμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Φα Τούμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Παλαιά μουσική</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Bâ™­ Fife</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Τρομπόνι. (Κλειδί του Σολ)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Ευφώνιο (Κλειδί του Σολ)</translation>
+        <translation>Ευφ.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Τμπα.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>F Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Μι♭ Τούμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Eâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Μι♭ Τούμπα (Κλειδί του Σολ)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Ντο Τούμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>C Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Σι♭  Τούμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Bâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Σι♭ Τούμπα (Κλειδί του Σολ)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Μπάσο Τούμπα σε Φα </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Ba. Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Μπάσο Τούμπα σε Μι♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Ba. Tu. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Υποκοντραμπάσο Τούμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>SCB. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Έλικας</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Σουζάφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Βάγκνερ Τούμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Σι♭ Βάγκνερ Τούμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Bâ™­ Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>Φα Βάγκνερ Τούμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>F Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Βούκινο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Ντιτζεριντού</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Χοραγκάι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Σοφάρ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Βουβουζέλα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Κρουστά με τονικό ύψος</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Τιμπάνι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Ρότο-Τομ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Μεταλλόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Όρφ Σοπράνο Μεταλλόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. S. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Όρφ Άλτο Μεταλλόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O. A. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Κροτάλες</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Τουμπάφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Διατονική Κουδούνα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Βιμπράφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Μεταλλόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Όρφ Σοπράνο Μεταλλόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O. S. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Όρφ Άλτο Μεταλλόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. A. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Όρφ Μπάσο Μεταλλόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O. B. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Σωληνοτές Καμπάνες  </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Tu. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Σοπράνο Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>S. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Άλτο Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Guitar Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Τενόρο Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Cello Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Μπάσο Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Καμπάνες Χειρός</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Ha. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Κουρδισμένα Γκόνγκ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Td. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Φλεξάτονο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Μουσικό Πριόνι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Mu. Sw.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Μουσικά Ποτήρια</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Mu. Gla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Glass Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gla. Har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Ξυλόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Όρφ Σοπράνο Ξυλόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O. S. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Όρφ Άλτο Ξυλόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O. A. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Όρφ Μπάσο Ξυλόφωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O. B. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Ξυλομαρίμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Μαρίμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Μπάσο Μαρίμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>B. Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Ντούλτσιμερ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Κουρδισμένες Κόρνες</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Tn. Klx. Hns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Καλίμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Τρέμπλ Καλίμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Tr. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Άλτο Καλίμπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Κρουστά χωρίς τονικό ύψος</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Ντράμς</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Drs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Snare Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bass Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>B. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Πίκολο Snare Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P. Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Στρατιωτικό Τύμπανο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Mil. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Τομ-Τομς</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Κινέζικα Τομ-Τομς</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Ch. To.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Μπόνγκος</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Κόνγκας</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Τιμπάλες</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Μπεντίρ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Fr. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Τάμπλας</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Ζίλια</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Fi. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Χάι-Χατ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Ταμ-Ταμ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Καμπάνες</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Κουδουνίστρα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Sle. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Πιάτο Καμπάνας</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Be. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Μπόουλ Γκόνγκ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Bw. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Σωλήνας</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Μεταλλικές Καστανιέτες</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Met. Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Τύμπανο από Φρένα Αυτοκινήτου</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut. Brk. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Σιδερένοι Σωλήνες</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Ir. Pi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Αλυσίδες </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Chn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Αμόνι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Anv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Γούντ Μπλόκ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Wd. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Τέμπλ Μπλόκ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Τρίγωνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Κύμβαλο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Ράιντ Κύμβαλο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>R. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Κινέζικο Κύμβαλο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Ch. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Κράς Κύμβαλο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cr. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Σπλάς Κύμβαλο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Sp. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Κουδούνα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Cwb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Κλάβες</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Καστανιέτες</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Γκουίρο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Μαράκες</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Καμπάσα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Κιχάντα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Βίμπρασλαπ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Τύμπανο Σλίτ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Μαστίγιο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Wh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Ροκάνα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Rat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Βροντόφυλλο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Σάντπειπερ Μπλοκ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sa. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Ξύλινα Ανεμοκούδουνα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Wd. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Μπαμπού Ανεμοκούδουνα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Μεταλικά Ανεμοκούδουνα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Met. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Γυάλινα Ανεμοκούδουνα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Gl. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Κοχυλιένια Ανεμοκούδουνα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Sh. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Πέτρες</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Sto.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Χτύπημα Δαχτύλων</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Fi. Sna.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Παλαμάκι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Hd. Clp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Χαστούκι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Σφραγίδα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Ταμπουρίνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Κρουστά Παρέλασης</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>SD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Τενόρο Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Μπάσο Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Κύμβαλα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Cy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Φωνητικά</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Φωνή</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Αγόρι Σοπράνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>B. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Σοπράνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Μέτζο-Σοπράνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Άλτο </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Κοντράλτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Κόντρα-Τενόρος</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Τενόρος</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Βαρύτονο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Μπάσο </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Καζού</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Πληκτρόφορα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Πιάνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Πιάνο με Ουρά</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Όρθιο Πιάνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Χόνκυ Τόνκ Πιάνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Παιχνίδι Πιάνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Toy Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Κλάβικορντ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Cch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Τσέμπαλο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Hch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Βίρτζιναλ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Τσελέστα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Ηλεκτρικό Πιάνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>El. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Κλάβινετ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Εκκλησιαστικό Όργανο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Κρουστό Όργανο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perc. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Χάμοντ Όργανο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Rotary Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Rot. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Εκκλησιαστικό Όργανο με Αυλούς</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Αρμόνιο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Καλαμένιο Εκκλησιαστικό Όργανο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Rd. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Ηλεκτρονικά Όργανα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Εφφέ Συνθεσάιζερ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synth.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>βροχή</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>ατμόσφαιρα</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Atmosphere Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Brightness Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Crystal Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Echoes Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Goblins Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Rain Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sci-fi Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Soundtrack Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Pad Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>χορωδία</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>New Age Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Warm Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Poly Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Choir Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Bowed Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Metallic Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Halo Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sweep Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Saw Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sine Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Square Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondes Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Mallet Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Mal. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Bass Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
         <source>Brass Synthesizer</source>
         <translation>Brass Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
         <translation>String Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Percussion Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Perc. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Νυκτά Όργανα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Μπάντζο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Μπάντζο [Ταμπλατούρα]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Τενόρο Μπάντζο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T. Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Μπαλαλάικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Πίκολο Μπαλαλάικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pic. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Πρώτη Μπαλαλάικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Δεύτερη Μπαλαλάικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sec. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Άλτο Μπαλαλάικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Μπάσο Μπαλαλάικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>B. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Κοντραμπάσο Μπαλαλάικα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>CB. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Μπουζούκι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Μπουζούκι (3χορδο)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Μπουζούκι (4χορδο)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Σοπράνο Κιθάρα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>S. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Alto Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Κλασσική Κιθάρα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Κλασσική Κιθάρα [Ταμπλατούρα]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Ακουστική Κιθάρα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Ακουστική Κιθάρα [Ταμπλατούρα]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11χορδη Άλτο Κιθάρα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-str. A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12χορδη Κιθάρα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-str. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal Steel Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Ηλεκτρική Κιθάρα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Ηλεκτρική Κιθάρα [Ταμπλατούρα]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Άρπα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Κότο </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Λαούτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Λαούτο [Ταμπλατούρα]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>5χορδο Λαούτο </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>6χορδο Λαούτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>7χορδο Λαούτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>8χορδο Λαούτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>9χορδο Λαούτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>10χορδο Λαούτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>13χορδο Λαούτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A. Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Μαντολίνο [Ταμπλατούρα]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>5χορδο Ηλεκτρικό Μπάσο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>5χορδο Ηλεκτρικό Μπάσο [Ταμπλατούρα]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>Πιτσικάτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
-        <translation type="unfinished"/>
+        <translation>Βιολιά</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
-        <translation type="unfinished"/>
+        <translation>Βιόλες</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
-        <translation type="unfinished"/>
+        <translation>Βιολοντσέλλα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
-        <translation type="unfinished"/>
+        <translation>Κοντραμπάσσα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Βιόλα ντα γκάμπα [Ταμπλατούρα]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Archlute</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Παλαιά μουσική</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Bâ™­ Fife</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Θεόρβη</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Μαντολίνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Μαντολίνο [Ταμπλατούρα]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Μαντόλα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Άλτο Μαντόλα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Τενόρο Μαντόλα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Μαντολοτσέλο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Μαντολίνο Οκτάβα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Σιτάρ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Γιουκαλίλι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Γιουκαλίλι [Ταμπλατούρα]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Τενόρο Γιουκαλίλι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Βαρύτονο Γιουκαλίλι</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Μπάσο Κιθάρα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Μπάσο Κιθάρα [Ταμπλατούρα]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Ακουστικό Μπάσο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Ηλεκτρικό Μπάσο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Ηλεκτρικό Μπάσο [Ταμπλατούρα]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Ηλεκτρικό Μπάσο Άταστο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Frtl. El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Έγχορδα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Βιολί</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Βιόλα</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Βιολοντσέλο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Κοντραμπάσο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Κοντραμπάσο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Βιόλα ντα γκάμπα Pardessus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Βιόλα ντα γκάμπα Σοπράνο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Tr. vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Βιόλα ντα γκάμπα Άλτο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Βιόλα ντα γκάμπα Τενόρο</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Βιόλα ντα γκάμπα </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Βιόλα ντα γκάμπα (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Βιολόνε</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>Ρε Βιολόνε</translation>
     </message>
diff --git a/share/locale/instruments_en_GB.ts b/share/locale/instruments_en_GB.ts
index 41b7624..3707df0 100644
--- a/share/locale/instruments_en_GB.ts
+++ b/share/locale/instruments_en_GB.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>C Clarinet</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>C Cl.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>D Clarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>D Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Eâ™­ Clarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Eâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Bâ™­ Clarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Bâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A Clarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>A Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Alto Clarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>A. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Basset Clarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Ba. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Basset Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Ba. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Bass Clarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Contra-alto Clarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>C-a. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Contrabass Clarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cb. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Sopranino Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Si. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Soprano Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>S. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Alto Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>A. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Tenor Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>T. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Bass Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>B. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Bassoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Bsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Contrabassoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cbsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Reed Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Rd. Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Dulcian</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sopranino Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Si. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Soprano Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>S. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Alto Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>A. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Tenor Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>T. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Baritone Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Bar. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Bass Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>B. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Contrabass Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Cb. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Sopranissimo Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sio. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Sopranino Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Si. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Soprano Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulochrome</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Mezzo-Soprano Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>M.S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Alto Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Melody Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Mel. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Tenor Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Baritone Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Bass Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Contrabass Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Cb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Subcontrabass Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Scb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Bagpipe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Bagp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Free Reed</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12 Hole C Chromatic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14 Hole C Chromatic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12 Hole G Chromatic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16 Hole C Chromatic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>12 Hole Tenor C Chromatic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>10 Hole High G Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>10 Hole F Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>10 Hole D Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>10 Hole C Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>10 Hole A Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>10 Hole G Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>10 Hole Low D Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>20 Hole Chordet Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Bass Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Bs. Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Bass Hohner Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Bass Huang Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Accordion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melodica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Soprano Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>S She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Alto Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>A She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Tenor Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>T She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Bass Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>B She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Brass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Horn in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>F Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>High C Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>H. C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Horn in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Bâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Horn in A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>A Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Horn in Aâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Aâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Horn in G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>G Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>E Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>E Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Horn in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Eâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Horn in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Horn in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Vienna Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>V. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Horn in Bâ™­ basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Bâ™­ ba Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Eâ™­ Cornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Eâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>mute</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Bâ™­ Cornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Bâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>F Alto Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>F A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Eâ™­ Alto Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Eâ™­ A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Baritone Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Bar. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Baritone Horn (Treble Clef)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Posthorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Psthn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Alphorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>AlpHn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Piccolo Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Piccolo Trumpet in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>P. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Piccolo Trumpet in A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>P. Tpt. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Eâ™­ Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Eâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>D Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>D Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>C Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>C Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Bâ™­ Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Bâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Pocket Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Pkt. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Slide Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Sl.Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Tenor Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tnr. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Bass Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Eâ™­ Bass Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Eâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Bass Trumpet in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>B. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Bâ™­ Bass Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Bâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Baroque Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Bq. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Baroque Trumpet in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Bq. Tpt. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Baroque Trumpet in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Bq. Tpt. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Baroque Trumpet in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Bq. Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Baroque Trumpet in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Bq. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Baroque Trumpet in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Bq. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Rag Dung</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Soprano Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Sop. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Alto Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Alt. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Baritone Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bar. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Flugelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flghn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Euphonium Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Mellophone Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mel. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Contrabass Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Con. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Mellophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>F Alto Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>F A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Eâ™­ Alto Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Eâ™­ A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>C Bass Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>C B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Bâ™­ Bass Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Bâ™­ B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Eâ™­ Contrabass Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Eâ™­ Cb. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Cornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Soprano Cornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>S. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Alto Cornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>A. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Tenor Cornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>T. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpent</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombone (Treble Clef)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Soprano Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>S. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Alto Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>A. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Tenor Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>T. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Bass Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>B. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Contrabass Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Cb. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Euphonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Euphonium (Treble Clef)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>F Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Early music</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Bâ™­ Fife</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Euph. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombone (Treble Clef)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Euph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Euphonium (Treble Clef)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>F Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Eâ™­ Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Eâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Eâ™­ Tuba (Treble Clef)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>C Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>C Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Bâ™­ Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Bâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Bâ™­ Tuba (Treble Clef)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Bass Tuba in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Ba. Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Bass Tuba in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Ba. Tu. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Sub-Contrabass Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>SCB. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helicon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousaphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Wagner Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Bâ™­ Wagner Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Bâ™­ Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>F Wagner Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>F Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Conch</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Pitched Percussion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Timpani</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Roto-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Orff Soprano Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. S. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Orff Alto Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O. A. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crotales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubaphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Almglocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibraphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metallophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Orff Soprano Metallophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O. S. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Orff Alto Metallophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. A. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Orff Bass Metallophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O. B. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Tubular Bells</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Tu. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Soprano Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>S. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Alto Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Guitar Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Tenor Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Cello Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Bass Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Hand Bells</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Ha. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Tuned Gongs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Td. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexatone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Musical Saw</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Mu. Sw.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Musical Glasses</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Mu. Gla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Glass Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gla. Har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xylophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Orff Soprano Xylophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O. S. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Orff Alto Xylophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O. A. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Orff Bass Xylophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O. B. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xylomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Bass Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>B. Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Tuned Klaxon Horns</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Tn. Klx. Hns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Treble Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Tr. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Alto Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Unpitched Percussion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Drumset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Drs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Snare Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bass Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>B. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Piccolo Snare Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P. Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Military Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Mil. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Chinese Tom-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Ch. To.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Congas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Frame Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Fr. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tablas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Finger Cymbals</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Fi. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Hi-hat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Bells</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Sleigh Bells</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Sle. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Bell Plate</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Be. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Bowl Gongs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Bw. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Metal Castanets</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Met. Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Automobile Brake Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut. Brk. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Iron Pipes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Ir. Pi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Chains</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Chn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Anvil</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Anv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Wood Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Wd. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Temple Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Ride Cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>R. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Chinese Cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Ch. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Crash Cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cr. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Splash Cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Sp. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Cowbell</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Cwb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Castanets</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Guiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Slit Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Whip</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Wh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Ratchet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Rat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Thundersheet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Sandpaper Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sa. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Wooden Wind Chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Wd. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Bamboo Wind Chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Metal Wind Chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Met. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Glass Wind Chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Gl. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Shell Wind Chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Sh. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Stones</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Sto.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Finger Snap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Fi. Sna.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Hand Clap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Hd. Clp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Slap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Stamp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tambourine</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Marching Percussion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>SD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tenor Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Bass Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Cymbals</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Cy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Vocals</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Voice</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Boy Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>B. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzo-soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Countertenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Baritone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Keyboards</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Grand Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Upright Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Honky Tonk Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Toy Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Toy Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Clavichord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Cch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Harpsichord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Hch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Electric Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>El. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Percussive Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perc. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Hammond Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Rotary Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Rot. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Pipe Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Reed Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Rd. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Electronic Instruments</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Effect Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synth.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>rain</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>soundtrack</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>crystal</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>atmosphere</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>brightness</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>goblins</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>echoes</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>scifi</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Atmosphere Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Brightness Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Crystal Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Echoes Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Goblins Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Rain Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sci-fi Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Soundtrack Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Pad Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>new age</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>warm</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>polysynth</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>choir</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>bowed</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>metallic</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>halo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>sweep</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>New Age Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Warm Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Poly Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Choir Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Bowed Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Metallic Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Halo Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sweep Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Saw Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sine Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Square Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondes Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Mallet Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Mal. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Bass Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Brass Synthesiser</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>synth-bass-1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>String Synthesiser</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>synth-bass-2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Brass Synthesiser</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>synth-brass-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>synth-brass-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>String Synthesiser</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>synth-string-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>synth-string-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Percussion Synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Perc. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Plucked Strings</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Tenor Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T. Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Piccolo Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pic. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Prima Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Secunda Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sec. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Alto Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Bass Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>B. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Contrabass Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>CB. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Bouzouki (3-course)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Bouzouki (4-course)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Soprano Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>S. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Alto Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Classical Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Classical Guitar [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Acoustic Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Acoustic Guitar [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11-string Alto Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-str. A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12-string Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-str. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal Steel Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Electric Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Electric Guitar [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Lute</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Lute [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Lute 5-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Lute 6-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Lute 7-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Lute 8-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Lute 9-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Lute 10-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Lute 13-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A. Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolin [Tablature]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>tremolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>5-str. Electric Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>5-str. Electric Bass [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Violins</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Vlns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Violas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Vlas.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Violoncellos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Vlcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Contrabasses</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola da gamba (Tablature)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Archlute</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Early music</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Bâ™­ Fife</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Theorbo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolin [Tablature]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Alto Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Tenor Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandocello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Octave Mandolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulele [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Tenor Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Baritone Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Bass Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Bass Guitar [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Acoustic Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Electric Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Electric Bass [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Fretless Electric Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Frtl. El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Strings</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Double Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Treble Viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Tr. vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Alto Viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Tenor Viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>D Violone</translation>
     </message>
diff --git a/share/locale/instruments_en_US.ts b/share/locale/instruments_en_US.ts
index 6a4a79a..d232b90 100644
--- a/share/locale/instruments_en_US.ts
+++ b/share/locale/instruments_en_US.ts
@@ -19,11 +19,6 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early Music</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../instruments/instrumentsxml.h" line="5"/>
         <source>Ethnic instruments</source>
         <translation type="unfinished"></translation>
@@ -229,13 +224,6 @@ F Dizi</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Fife</source>
-        <extracomment>Fife</extracomment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../instruments/instrumentsxml.h" line="64"/>
         <source>Flageolet</source>
         <translation type="unfinished"></translation>
@@ -1693,7 +1681,7 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1211"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -2108,475 +2096,482 @@ Bass Huang Harmonica</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="597"/>
+        <location filename="../instruments/instrumentsxml.h" line="600"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="599"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <source>Baritone Horn (Treble Clef)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
         <source>Posthorn</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="606"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Alphorn</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="605"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="610"/>
         <source>Trumpet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="608"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="613"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="611"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="616"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="614"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="617"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="620"/>
+        <location filename="../instruments/instrumentsxml.h" line="624"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>D Trumpet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="623"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="628"/>
         <source>C Trumpet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="629"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="632"/>
+        <location filename="../instruments/instrumentsxml.h" line="636"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="635"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="640"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="641"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="644"/>
+        <location filename="../instruments/instrumentsxml.h" line="648"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="647"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="652"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="653"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="656"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="659"/>
+        <location filename="../instruments/instrumentsxml.h" line="663"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="662"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="667"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="668"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
         <source>Rag Dung</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="671"/>
+        <location filename="../instruments/instrumentsxml.h" line="675"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bugle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="674"/>
+        <location filename="../instruments/instrumentsxml.h" line="678"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="677"/>
+        <location filename="../instruments/instrumentsxml.h" line="681"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="680"/>
+        <location filename="../instruments/instrumentsxml.h" line="684"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="683"/>
+        <location filename="../instruments/instrumentsxml.h" line="687"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="686"/>
+        <location filename="../instruments/instrumentsxml.h" line="690"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Fiscorn</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="689"/>
+        <location filename="../instruments/instrumentsxml.h" line="693"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="692"/>
+        <location filename="../instruments/instrumentsxml.h" line="696"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="695"/>
+        <location filename="../instruments/instrumentsxml.h" line="699"/>
         <source>Eu. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="698"/>
+        <location filename="../instruments/instrumentsxml.h" line="702"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="701"/>
+        <location filename="../instruments/instrumentsxml.h" line="705"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Mellophone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="704"/>
+        <location filename="../instruments/instrumentsxml.h" line="708"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Ophicleide</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="707"/>
+        <location filename="../instruments/instrumentsxml.h" line="711"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="710"/>
+        <location filename="../instruments/instrumentsxml.h" line="714"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="713"/>
+        <location filename="../instruments/instrumentsxml.h" line="717"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="716"/>
+        <location filename="../instruments/instrumentsxml.h" line="720"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="719"/>
+        <location filename="../instruments/instrumentsxml.h" line="723"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="722"/>
+        <location filename="../instruments/instrumentsxml.h" line="726"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Cornettino</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="725"/>
-        <location filename="../instruments/instrumentsxml.h" line="728"/>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="729"/>
+        <location filename="../instruments/instrumentsxml.h" line="732"/>
+        <location filename="../instruments/instrumentsxml.h" line="984"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2586,150 +2581,164 @@ Congas</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Cornett</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="731"/>
+        <location filename="../instruments/instrumentsxml.h" line="735"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="734"/>
+        <location filename="../instruments/instrumentsxml.h" line="738"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="737"/>
+        <location filename="../instruments/instrumentsxml.h" line="741"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Serpent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="740"/>
+        <location filename="../instruments/instrumentsxml.h" line="744"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
         <source>Trombone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="743"/>
+        <location filename="../instruments/instrumentsxml.h" line="747"/>
+        <location filename="../instruments/instrumentsxml.h" line="750"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="746"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="749"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="753"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="756"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="759"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Cimbasso</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="762"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>Euphonium</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="772"/>
+        <location filename="../instruments/instrumentsxml.h" line="775"/>
         <source>Eu.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="765"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tuba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="1020"/>
         <source>Tu.</source>
         <extracomment>Tuba
 ----------
@@ -2737,1432 +2746,1446 @@ Tubo</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="768"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>F Tuba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="771"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="774"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <source>Eâ™­ Tuba (Treble Clef)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="790"/>
         <source>C Tuba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="793"/>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <source>Bâ™­ Tuba (Treble Clef)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="800"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
+        <location filename="../instruments/instrumentsxml.h" line="803"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="806"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
-        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
         <source>Sousaphone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="794"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="797"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="820"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="801"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="823"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Conch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="826"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="807"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
+        <location filename="../instruments/instrumentsxml.h" line="829"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="810"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Horagai</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="832"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="813"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Shofar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="835"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="816"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="838"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="819"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>Timpani</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="822"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Roto-toms</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="825"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="831"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="834"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Crotales</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="837"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Tubaphone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="860"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="841"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Almglocken</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="863"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="844"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Vibraphone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="866"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="847"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Metallophone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="869"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="850"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="872"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="853"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="875"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="856"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="878"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="859"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="881"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="862"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Steel Drums</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="884"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="865"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="887"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="868"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="890"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="871"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="893"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="874"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="896"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="877"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="899"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="880"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="902"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="883"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>Hand Bells</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="905"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="886"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="908"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="889"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>Flexatone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="911"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="892"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Musical Saw</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="914"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="895"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="917"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="898"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="920"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="901"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>Xylophone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="923"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="904"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="926"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="907"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="929"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="910"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="932"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="913"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="935"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="916"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Marimba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="938"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="919"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="941"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="922"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Dulcimer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="944"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="925"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="947"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="928"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>Kalimba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="950"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="931"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="953"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="934"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="956"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="937"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Drumset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="940"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Snare Drum</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="943"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Bass Drum</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="946"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="949"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Military Drum</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="952"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Tom Toms</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="955"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="978"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="959"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Bongos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
+        <location filename="../instruments/instrumentsxml.h" line="981"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="962"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Congas</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="965"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>Timbales</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="987"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="968"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>Frame Drum</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="990"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="971"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Tablas</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="993"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="974"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Cuica</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="996"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="977"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="999"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="980"/>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
+        <location filename="../instruments/instrumentsxml.h" line="1002"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="983"/>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
+        <location filename="../instruments/instrumentsxml.h" line="1005"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="986"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Bells</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1008"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="989"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1011"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="992"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Bell Plate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1014"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="995"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1017"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="998"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Tubo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1001"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
+        <location filename="../instruments/instrumentsxml.h" line="1023"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1004"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1026"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1007"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1029"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1010"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Chains</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1032"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1013"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Anvil</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1035"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1016"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1038"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1041"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Triangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1044"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1025"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Cymbal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1047"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1028"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1050"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1031"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1053"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1034"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1056"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1037"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1059"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1040"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Cowbell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1062"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1043"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Claves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1065"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1046"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Castanets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1068"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1049"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>Guiro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1071"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1052"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Maracas</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1074"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1055"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cabasa</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1077"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1058"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Quijada</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1080"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1061"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Vibraslap</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1083"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1064"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Slit Drum</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1086"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1067"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Whip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1089"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1070"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Ratchet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1092"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1073"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Thundersheet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1095"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1076"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1098"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1079"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1101"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1082"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1104"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1085"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1107"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1088"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1110"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1091"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1113"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1094"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Stones</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1116"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1097"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Finger Snap</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1119"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1100"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Hand Clap</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1122"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1103"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Slap</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1125"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1106"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Stamp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1128"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1109"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Tambourine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1131"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1112"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1115"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1118"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Bass Drums</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1121"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Cymbals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1124"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Vocals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1146"/>
         <source>Voice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1149"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Soprano</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1134"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1137"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Alto</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1140"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Contralto</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1143"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Countertenor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1166"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1147"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Tenor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1169"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1150"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>Baritone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1172"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1153"/>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1175"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1156"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Kazoo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1178"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1159"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>Keyboards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Piano</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1162"/>
-        <location filename="../instruments/instrumentsxml.h" line="1165"/>
-        <location filename="../instruments/instrumentsxml.h" line="1168"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4172,111 +4195,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Grand Piano</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Upright Piano</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1171"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
         <source>Toy Piano</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1174"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Clavichord</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1177"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Harpsichord</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1200"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1181"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
         <source>Virginal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1203"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1184"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
         <source>Celesta</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1206"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1187"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Electric Piano</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1209"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1190"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Clavinet</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1212"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1193"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Organ</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1215"/>
+        <location filename="../instruments/instrumentsxml.h" line="1227"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4284,95 +4307,95 @@ Pipe Organ</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1196"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1218"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1199"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1221"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1202"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1224"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1205"/>
-        <location filename="../instruments/instrumentsxml.h" line="1208"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Harmonium</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Reed Organ</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1214"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1236"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
-        <location filename="../instruments/instrumentsxml.h" line="1230"/>
-        <location filename="../instruments/instrumentsxml.h" line="1233"/>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
+        <location filename="../instruments/instrumentsxml.h" line="1256"/>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1268"/>
+        <location filename="../instruments/instrumentsxml.h" line="1271"/>
+        <location filename="../instruments/instrumentsxml.h" line="1274"/>
+        <location filename="../instruments/instrumentsxml.h" line="1277"/>
+        <location filename="../instruments/instrumentsxml.h" line="1280"/>
+        <location filename="../instruments/instrumentsxml.h" line="1283"/>
+        <location filename="../instruments/instrumentsxml.h" line="1286"/>
+        <location filename="../instruments/instrumentsxml.h" line="1289"/>
+        <location filename="../instruments/instrumentsxml.h" line="1292"/>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4424,332 +4447,333 @@ String Synthesizer</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1239"/>
         <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1242"/>
         <source>Brightness Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
+        <location filename="../instruments/instrumentsxml.h" line="1245"/>
         <source>Crystal Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Echoes Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Goblins Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Rain Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1237"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1240"/>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
         <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1243"/>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
         <source>Pad Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1246"/>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>New Age Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1249"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Warm Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1252"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Poly Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1255"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Choir Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Bowed Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Metallic Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Halo Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1267"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Sweep Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1270"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Saw Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1273"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
         <source>Sine Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1276"/>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
         <source>Square Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1279"/>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
         <source>Ondes Martenot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1282"/>
+        <location filename="../instruments/instrumentsxml.h" line="1302"/>
         <source>Mallet Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1285"/>
+        <location filename="../instruments/instrumentsxml.h" line="1305"/>
         <source>Bass Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1288"/>
+        <location filename="../instruments/instrumentsxml.h" line="1308"/>
         <source>Brass Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1291"/>
+        <location filename="../instruments/instrumentsxml.h" line="1311"/>
         <source>String Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <location filename="../instruments/instrumentsxml.h" line="1314"/>
         <source>Theremin</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <location filename="../instruments/instrumentsxml.h" line="1317"/>
         <source>Percussion Synthesizer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <location filename="../instruments/instrumentsxml.h" line="1320"/>
         <source>Plucked Strings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
         <source>Banjo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1323"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <source>Banjo [Tablature]</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Balalaika</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <source> Balalaika</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1332"/>
+        <location filename="../instruments/instrumentsxml.h" line="1335"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1315"/>
-        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1338"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <location filename="../instruments/instrumentsxml.h" line="1326"/>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1346"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <location filename="../instruments/instrumentsxml.h" line="1351"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1329"/>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1356"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Bouzouki</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1337"/>
-        <location filename="../instruments/instrumentsxml.h" line="1341"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1359"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1363"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1367"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <location filename="../instruments/instrumentsxml.h" line="1370"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4757,213 +4781,230 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <location filename="../instruments/instrumentsxml.h" line="1374"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <location filename="../instruments/instrumentsxml.h" line="1378"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1365"/>
+        <location filename="../instruments/instrumentsxml.h" line="1386"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1368"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1390"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>Harp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1394"/>
         <source>Koto</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1375"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
-        <location filename="../instruments/instrumentsxml.h" line="1388"/>
-        <location filename="../instruments/instrumentsxml.h" line="1392"/>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
+        <location filename="../instruments/instrumentsxml.h" line="1409"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Lute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
-        <location filename="../instruments/instrumentsxml.h" line="1382"/>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
-        <location filename="../instruments/instrumentsxml.h" line="1398"/>
-        <location filename="../instruments/instrumentsxml.h" line="1402"/>
-        <location filename="../instruments/instrumentsxml.h" line="1406"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
+        <location filename="../instruments/instrumentsxml.h" line="1423"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1379"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1412"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1395"/>
+        <location filename="../instruments/instrumentsxml.h" line="1416"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1420"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1410"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1484"/>
         <source>5-str. Electric Bass</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1465"/>
+        <location filename="../instruments/instrumentsxml.h" line="1487"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1502"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1429"/>
         <source>Archlute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Theorbo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1414"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Mandolin</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1439"/>
         <source>Mandola</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1422"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1447"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -4973,126 +5014,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1426"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
         <source>Mandocello</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1451"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
         <source>Shamisen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Sitar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1459"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
         <source>Ukulele</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
+        <location filename="../instruments/instrumentsxml.h" line="1463"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1467"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1474"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1455"/>
+        <location filename="../instruments/instrumentsxml.h" line="1477"/>
         <source>Electric Bass</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5100,139 +5141,150 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1481"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1461"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Strings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
+        <source>Erhu</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>String Section</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>Str.</source>
         <extracomment>String Section</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1471"/>
+        <location filename="../instruments/instrumentsxml.h" line="1496"/>
         <source>Violin</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1499"/>
         <source>Viola</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1502"/>
         <source>Violoncello</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Contrabass</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Double Bass</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1509"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1512"/>
         <source>Treble Viol</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1490"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Alto Viol</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1493"/>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1496"/>
+        <location filename="../instruments/instrumentsxml.h" line="1521"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5240,18 +5292,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1499"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1528"/>
         <source>Violone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1533"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5259,7 +5311,7 @@ D Violone</extracomment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>D Violone</source>
         <translation type="unfinished"></translation>
     </message>
diff --git a/share/locale/instruments_eo.ts b/share/locale/instruments_eo.ts
index 7fc2808..8b37236 100644
--- a/share/locale/instruments_eo.ts
+++ b/share/locale/instruments_eo.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -945,79 +945,79 @@ Dulcian</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="265"/>
         <source>F Duduk</source>
-        <translation type="unfinished"/>
+        <translation>F-Duduko</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="267"/>
         <source>F Du.</source>
         <extracomment>F Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>F-Du</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="268"/>
         <source>E Duduk</source>
-        <translation type="unfinished"/>
+        <translation>E-Duduko</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="270"/>
         <source>E Du.</source>
         <extracomment>E Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>E-Du</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="274"/>
         <source>C Duduk</source>
-        <translation type="unfinished"/>
+        <translation>C-Duduko</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="276"/>
         <source>C Du.</source>
         <extracomment>C Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>C-Du</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="277"/>
         <source>B Duduk</source>
-        <translation type="unfinished"/>
+        <translation>B-Duduko</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="279"/>
         <source>B Du.</source>
         <extracomment>B Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>B-Du</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="280"/>
         <source>Bâ™­ Duduk</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­-Duduko</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="282"/>
         <source>Bâ™­ Du.</source>
         <extracomment>Bâ™­ Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bâ™­-Du</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="283"/>
         <source>A Duduk</source>
-        <translation type="unfinished"/>
+        <translation>A-Duduko</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="285"/>
         <source>A Du.</source>
         <extracomment>A Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>A-Du</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="286"/>
         <source>G Duduk</source>
-        <translation type="unfinished"/>
+        <translation>G-Duduko</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="288"/>
         <source>G Du.</source>
         <extracomment>G Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>G-Du</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="289"/>
@@ -1033,35 +1033,35 @@ Dulcian</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="292"/>
         <source>Soprano Kelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Soprana Keliŝeka korno</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="294"/>
         <source>S. Kh.</source>
         <extracomment>Soprano Kelhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sop Kl-k</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="295"/>
         <source>Alto Kelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Alda Keliŝeka korno</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="297"/>
         <source>A. Kh.</source>
         <extracomment>Alto Kelhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>A Kl-k</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="298"/>
         <source>Tenor Kelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Tenora Keliŝeka korno</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="300"/>
         <source>T. Kh.</source>
         <extracomment>Tenor Kelhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>T Kl-k</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="301"/>
@@ -1072,7 +1072,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="303"/>
         <source>B. Kh.</source>
         <extracomment>Bass Kelhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>B Kl-k</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="304"/>
@@ -1083,40 +1083,40 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="306"/>
         <source>Gb. Kh.</source>
         <extracomment>Greatbass Kelhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>B-ega Kl-k</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="307"/>
         <source>Rauschpfeife</source>
-        <translation type="unfinished"/>
+        <translation>Raŭŝfajfilo</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="309"/>
         <source>Rpf.</source>
         <extracomment>Rauschpfeife</extracomment>
-        <translation type="unfinished"/>
+        <translation>Rf</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="310"/>
         <source>Sopranino Rauschpfeife</source>
-        <translation type="unfinished"/>
+        <translation>Sopraneta raŭŝfajfilo</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="312"/>
         <source>Si. Rpf.</source>
         <extracomment>Sopranino Rauschpfeife</extracomment>
-        <translation type="unfinished"/>
+        <translation>S-eta Rf</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="313"/>
         <source>Soprano Rauschpfeife</source>
-        <translation type="unfinished"/>
+        <translation>Soprana raŭŝfajfilo</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="315"/>
         <source>S. Rpf.</source>
         <extracomment>Soprano Rauschpfeife</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sop Rf</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="316"/>
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1135,7 +1135,7 @@ Sheng</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="319"/>
         <source>Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Klarneto</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="321"/>
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>A-Klarneto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Alda klarneto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Baseta klarneto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Baseta korno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Basa klarneto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Kontrabasa klarneto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Åœaljumo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>Åœj</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Sopraneta ŝaljumo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>S-eta Åœj</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Soprana ŝaljumo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sop Åœj</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Alda ŝaljumo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>A Åœj</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Tenora ŝaljumo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>T Åœj</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
-        <translation>Basa ĉalumo</translation>
+        <translation>Basa ŝaljumo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>B Åœj</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagoto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Kontrafagoto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Anĉa kontrabaso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopraneta sarusofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>S-eta Sar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Basa sarusofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Kontrabasa sarusofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopraneta saksofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>S-eta Saks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Basa saksofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Kontrabasa saksofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Subkontrabasa saksofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
-        <translation type="unfinished"/>
+        <translation>G-klea Kalimbo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Tamburaro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Tamburego</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangulo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamburino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <source>choir</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <source>halo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
         <source>Brass Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banĝo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
-        <translation type="unfinished"/>
+        <translation>S-eta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vln</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Violo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vlo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
-        <translation type="unfinished"/>
+        <translation>Violonĉelo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vlĉ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabaso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
-        <translation type="unfinished"/>
+        <translation>Duobla Baso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
-        <translation type="unfinished"/>
+        <translation>G-klea Vjolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
-        <translation type="unfinished"/>
+        <translation>Alda Vjolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
-        <translation type="unfinished"/>
+        <translation>A Vl</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
-        <translation type="unfinished"/>
+        <translation>Tenora Vjolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
-        <translation type="unfinished"/>
+        <translation>T Vl</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Gamboviolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_es.ts b/share/locale/instruments_es.ts
index 7682c6b..c695bdd 100644
--- a/share/locale/instruments_es.ts
+++ b/share/locale/instruments_es.ts
@@ -613,13 +613,13 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="172"/>
         <source>Bâ™­ Tin Whistle</source>
-        <translation>Tin Whistle Sib</translation>
+        <translation>Tin Whistle Siâ™­</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="174"/>
         <source>Bâ™­ Tin. Wh.</source>
         <extracomment>Bâ™­ Tin Whistle</extracomment>
-        <translation>Tin. Wish. Sib</translation>
+        <translation>Tin. Wish. Siâ™­</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="178"/>
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -989,13 +989,13 @@ Dulcian</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="280"/>
         <source>Bâ™­ Duduk</source>
-        <translation>Duduk en Si bemol</translation>
+        <translation>Duduk en Siâ™­</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="282"/>
         <source>Bâ™­ Du.</source>
         <extracomment>Bâ™­ Duduk</extracomment>
-        <translation>Du. Sib</translation>
+        <translation>Du. Siâ™­</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="283"/>
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>Clarinete en Do</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>Cl. Do</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Clarinete en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>Cl. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Clarinete en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Cl. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Clarinete en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Cl. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>Clarinete en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>Cl. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Clarinete alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>Cl. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Clarinete di bassetto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Cl. bass.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Corno di bassetto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Corn. bass.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Clarinete bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>Cl. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Clarinete contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Cl. Ctrl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Clarinete contrabajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cl. Ctb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Salmoé</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Salm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Salmoé sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Sal. Sio.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Salmoé soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>Cha. S. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Salmoé alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>Sal. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Salmoé tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>Cha. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Salmoé bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>Sal. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octavín</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Contrafagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cfag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Contrabajo de lengueta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Ctb. Leng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Bajón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusofón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sarr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sarrusofón sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Sarr. Sio.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sarrusofón soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>Sarr. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Sarrusofón contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>Sarr. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Sarrusofón tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>Sarr. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Sarrusofón barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Sar. bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Sarrusofón bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>Sarr. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Sarrusofón contrabajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Sarr. cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxofón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Saxofón Sopranissimo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sax. Sio.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Saxofón sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Sax. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Saxofón soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>Sax. sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulos Comático</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul. Crom.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Saxofón mezzo-soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>Sax. M-sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Saxofón contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>Sax. Ctrl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Saxofón tenor en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Sax. Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Saxofón tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>Sax. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Saxofón barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Sax. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Saxofón bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>Sax. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Saxofón contrabajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Sax. Ctb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Saxofón subcontrabajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Sax. S-ctb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Gaita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Gai.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Lengüeta libre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Armónica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Arm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>Armónica cromática de 12 huecos en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>Armónica cromática de 14 huecos en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>Armónica cromática de 12 huecos en Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>Armónica cromática de 16 huecos en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>Armónica cromática tenor de 12 huecos en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>Armónica diatónica de 10 huecos en Sol agudo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>Armónica diatónica de 10 huecos en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>Armónica diatónica de 10 huecos en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>Armónica diatónica de 10 huecos en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>Armónica diatónica de 10 huecos en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>Armónica diatónica de 10 huecos en Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>Armónica diatónica de 10 huecos en Re grave</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>Armónica cromática de 20 agujeros</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Armónica bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Arm. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Armónica bajo Hohner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Armónica bajo Huang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Acordeón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acord.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melódica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sheng soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>She. S</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Sheng contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>She. A. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Sheng tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>She. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Sheng bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>She. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Vientos (Metales)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Trompa en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>Trmp. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Trompa en Do agudo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>Trmp. Do agudo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Trompa en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Trmp. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Trompa en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>Trmp. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Trompa en Laâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Trmp. Laâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Trompa en Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>Trmp. Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Trompa en Mi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>Trmp. Mi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Trompa en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Trmp. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Trompa en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Trmp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Trompa en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>Trmp. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Trompa vienesa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>Trmp. Vie.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Trompa bajo en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
-        <translation>Trmp. B. Sib</translation>
+        <translation>Trmp. B. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Corneta en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
-        <translation>Cnta. Mib</translation>
+        <translation>Cnta. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>Silenciar</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Corneta en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Cnta. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxhorno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Trompa alto en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>Trmp. A. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Trompa alto en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
-        <translation>Trmp. A. Mib</translation>
+        <translation>Trmp. A. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Trompa barítona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Trmpa. Bari.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Trompa Barítona (Clave de Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Corneta de posta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Cnta. Post.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Trompa Alpina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>Tmpa. Alp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trompeta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Trompeta piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>Tpt. picc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Trompeta piccolo en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>Tpt. picc. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Trompeta piccolo en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>Tpt. picc. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Trompeta en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Tpt. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>Trompeta en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>Tpt. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>Trompeta en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>Tpt. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Trompeta en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Tpt. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Trompeta de bolsillo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Tpt. Bols.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Trompeta de varas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Tpt. vars.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Trompeta tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tpt. ten.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Trompeta bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>Tpt. bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Trompeta bajo en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Tpt. bajo Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Trompeta bajo en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>Tpt. bajo Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Trompeta bajo en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Tpt. bajo Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Trompeta barroca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Tpt. Barr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Trompeta barroca en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Tpt. Barr. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Trompeta barroca en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
-        <translation>Tpt. Barr. Mib</translation>
+        <translation>Tpt. Barr. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Trompeta barroca en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Tpt. Barr. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Trompeta barroca en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Tpt. Barr. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Trompeta barroca en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
-        <translation>Tpt. Barr. Sib</translation>
+        <translation>Tpt. Barr. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Rag Dung</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Corneta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Cnta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Corneta soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Cnta. S. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Corneta contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Cnta. C-alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Corneta barítona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Cnta. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Fliscorno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flisc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation> Fiscornio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Flisc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Fliscorno Kuhlo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Fliscorno Bombardino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Fliscorno Melófono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Flisc. Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Corneta natural contrabajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Flisc. Con.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Melófono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Metf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Figle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Fgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Figle Alto en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>Fgl. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Figle Alto en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
-        <translation>Fgl. A. Mib</translation>
+        <translation>Fgl. A. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>Figle Bajo en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>Fgl. B. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Figle bajo en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
-        <translation>Fgl. B. Sib</translation>
+        <translation>Fgl. B. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Figle contrabajo en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
-        <translation>Fgl. Ctbs Mib</translation>
+        <translation>Fgl. Ctbs Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Cio.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Cornetto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Cornetto soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>Co. S. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Cornetto contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>Co. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Cornetto tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>Co. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpentón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
-        <translation>Spt.</translation>
+        <translation>Serp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Tbn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombón (Clave de Sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Trombón soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>Tbn. sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Trombón contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>Tbn. ctrl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Trombón tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>Tbn. ten.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Trombón bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>Tbn. bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Trombón contrabajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Tbn. cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
-        <translation>Cim.</translation>
+        <translation>Cimb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Bombardino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Bombardino (Clave de Sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Tuba en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Música antigua</translation>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <source>Euph. Bu.</source>
+        <extracomment>Euphonium Bugle</extracomment>
+        <translation>Flisc. Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Pífano en B♭</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
-        <source>Euph. Bu.</source>
-        <extracomment>Euphonium Bugle</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombón (Clave de Sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Bombardino (Clave de Sol)</translation>
+        <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>Tba. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Tuba en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Tba. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
-        <translation>Tuba en Eâ™­ (Clave de Sol)</translation>
+        <translation>Tuba en Miâ™­ (Clave de Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Tuba en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>Tba. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Tuba en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Tba. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
-        <translation>Tuba en Bâ™­ (Clave de Sol)</translation>
+        <translation>Tuba en Siâ™­ (Clave de Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Tuba bajo en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Tba. B. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Tuba bajo en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
-        <translation>Tba. B. Mib</translation>
+        <translation>Tba. B. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Tuba sub-contrabajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>Tba. SCb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helicón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousafón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
-        <translation>Sfón. </translation>
+        <translation>Sousa. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Tuba Wagner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Tba. Wag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Tuba Wagner en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
-        <translation>Tba. Wag, Sib</translation>
+        <translation>Tba. Wag, Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
-        <translation>Tuba Wagner en FA</translation>
+        <translation>Tuba Wagner en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>Tba. Wag. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Caracola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Percusión con afinación</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Timbal de concierto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Roto-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Glockenspiel Orff soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>Glk. S. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Glockenspiel Orff contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>Glk. A. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crótalos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubaphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Cencerro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Cenc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibráfono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metalofón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Metalófono Soprano Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>Met. S. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Metalófono Alto Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>Met. A. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Metalófono Bajo Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>Met. B. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Campanas tubulares</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Camp. tub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Tambores Metálicos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>Tamb. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Tambores Metálicos Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>Tamb. Met. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Tambores Metálicos Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>Tamb. Met. A,</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Tambores Metálicos Guitarra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Tamb. Met. G.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Tambores Metálicos Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>Tamb. Met. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Tambores Metálicos Cello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Tamb. Met. Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Tambores Metálicos Bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>Tamb. Met. B. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Campanillas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Camp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Gongs Afinados</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Go. Af.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexatono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Sierra Musical</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Sierr. Mus.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Vasos Musicales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Vas. Mus.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Armónica de Cristal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Arm. Crist.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xilófono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Xilófono Soprano Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>Xil. S. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Xilófono Alto Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>Xil. A. O. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Xilófono Bajo Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>Xil. B. O. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xilomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Marimba Bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>Mrm. B. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Dulcémele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dulc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Bocinas Afinadas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Boc. Af.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Kalimba Tiple</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Kal. Tip.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Kalimba Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>Kal. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Percusión sin afinación</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Set de percusión</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Caja clara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>C. clara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bombo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>Bmb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Caja Clara Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>C. clara Picc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Tambor Militar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Tamb. mil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Tom Toms Chinos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Tom. Ch. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Congas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Pandero</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Pand.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tablas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Crótalos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Crót.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Charles</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Campanas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Camp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Cascabeles</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Casc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Campanas de placa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Cmp. Plac.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Gongs de tazo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Go. taz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Castañuelas de metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Cst. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Tambor de freno de automóvil</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Tamb. fren. auto.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Tubos de hierro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Tub. Hierr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Cadenas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Cad.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Yunque</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Yunq.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Bloques de madera</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Cl. Ma.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Temple Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triángulo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Tria.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Platillos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Plat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Platillo Ride</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>Plat. Rid.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Platillo chino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Plat. Chin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Platillo crash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Plat. Crsh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Splash en Plato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Plati. Spsh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Cencerro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Cenc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Castañuelas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Güiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Sonaja</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Tambor de madera</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Tamb. mad.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Látigo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Lat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Carraca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Carr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Trueno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Trno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Bloques de lija</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Bl. Lij.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Campanas de viento de madera</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Cmp. Vient. Mad.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Campanas de viento de Bambú</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Cmp. Vient. Bamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Campanas de viento de metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Cmp. Vient. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Campanas de viento de Cristal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Cmp. Vient. Crist.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Campanas de viento de conchas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Cmp. Vient. Ccha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Piedras</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Pied.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Chasquido de dedos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Chas. ded.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Palmada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Palm. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Slap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Sello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sell.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Pandereta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Pdta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Percusión de banda</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Caj. Cla. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tambores tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>Tamb. T. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Bombos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>Bmb. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Címbalos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Ci.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Voces</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Voz</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Niño soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>Niño S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzo-soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>C.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Contratenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Teclados</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Piano de cola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Piano vertical</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Piano desafinado</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Piano dfndo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Piano de juguete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Pno. juguete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Clavicordio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Ccord.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Clavicémbalo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Clavm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Piano eléctrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>Pno. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Órgano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Órgano percusivo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Órg. perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Órgano Hammond</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Órg. Hamm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Órgano de discos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Órg. disc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Órgano de tubos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmonio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Órgano de legueta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Órg. Len.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Instrumentos electrónicos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Sintetizadord e efectos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Sint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>banda sonora</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>ambiente</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>brillo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>ecos</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>scifi</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Sintetizador de Atmósferas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Sintetizador Brillante</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Sintetizador Cristalino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Sintatizador de Ecos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Sintetizador de Globbins</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Sintetizador de Lluvia</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sintetizador de Ciencia Ficción</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Sintetizador Banda sonora</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Sintetizador Pad</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>new age</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>coro</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>metálico</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>halo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>Sintetizador New Age</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Sintetizador Cálido</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Sintetizador Polifónico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Sintetizador de Coro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Sintetizador de Arcos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Sintetizador Metálico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Sintetizador de Halo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sintetizador de Barrido</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Sintetizador de Onda de Sierra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sintetizador de Onda Senoidal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Sintetizador de Onda cuadrada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondas Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Sintetizador de Mazos o baquetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Sint. Maz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Sintetizador Bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>synth-bass-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>synth-bass-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
         <source>Brass Synthesizer</source>
         <translation>Sintetizador de Metales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>synth-brass-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>synth-brass-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
         <translation>Sintetizador de Cuerdas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>synth-string-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>synth-string-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremín</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Sintetizador de Percusión</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Sint. Perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Cuerda pulsada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Banjo Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>Bj. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Balalaika Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Bal. Pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Balalaika Prima</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Bal. Pr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Balalaika Secunda</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Bal. Sec.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Balalaika Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Bal. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Balalaika Bajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>Bal. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Balalaika Contrabajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>Bal. Ctb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Buzuki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Buz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Buzuki (3-órdenes)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Buzuki (4-órdenes)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Guitarra soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>Guit. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Guitarra Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>Guit. A. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Guitarra clásica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Guitarra clásica [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Guitarra acústica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Guitarra acústica [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>Guitarra Alto de 11 cuerdas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>Guit. A. 11-cuerd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>Guitarra de 12 cuerdas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>Guit. 12-cuerd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Guitarra Pedal Steel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Guit. Ped. St.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Guitarra eléctrica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>Guit. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Guitarra eléctrica [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Arpa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Arp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Laúd</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Ld.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Laúd [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Laúd de 5 órdenes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Laúd de 6 órdenes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Laúd de 7 órdenes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Laúd de 8 órdenes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Laúd de 9 órdenes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Laúd de 10 órdenes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Laúd de 13 órdenes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>Ald.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolina [Tablatura]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>tremolo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>Bajo eléctrico de 5 cuerdas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>Bajo eléctrico de 5 cuerdas [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Er.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Violines</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vlns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Violas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vlas.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Violonchelos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vlcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Contrabajos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
-        <translation type="unfinished"/>
+        <extracomment>Double Bass</extracomment>
+        <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola da gamba (Tablatura)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Archilaud</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Música antigua</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Pífano en Si♭</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Tiorba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Tiba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolina [Tablatura]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Mandola Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Mandola Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandocello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mdcl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Bandurria</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>band.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukelele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukelele [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Ukelele tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Uk. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Ukelele barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Uk. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Bajo eléctrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>Guit. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Bajo eléctrico [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Bajo acústico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Bajo eléctrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>Baj. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Bajo eléctrico [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Bajo Eléctico sin trastes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Baj. El. ST.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Cuerdas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Er.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violín</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violonchelo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Contrabajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Contrabajo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Viola soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Vl. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Viola Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>Vl. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Viola Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>Vl. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola da gamba (Tablatura)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>Violón en Re</translation>
     </message>
diff --git a/share/locale/instruments_et.ts b/share/locale/instruments_et.ts
index 392b43e..2faa72a 100644
--- a/share/locale/instruments_et.ts
+++ b/share/locale/instruments_et.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Drumset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Kolmnurk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_eu.ts b/share/locale/instruments_eu.ts
index 5530a83..914e3ea 100644
--- a/share/locale/instruments_eu.ts
+++ b/share/locale/instruments_eu.ts
@@ -9,17 +9,17 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="2"/>
         <source>Jazz instruments</source>
-        <translation type="unfinished"/>
+        <translation>Jazz instrumentuak</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="3"/>
         <source>Orchestral instruments</source>
-        <translation type="unfinished"/>
+        <translation>Orkestrako instrumentuak</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="5"/>
         <source>Ethnic instruments</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentu etnikoak</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="6"/>
@@ -40,7 +40,7 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="10"/>
         <source>Flute</source>
-        <translation type="unfinished"/>
+        <translation>Zeharkako txirula</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="12"/>
@@ -257,7 +257,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="73"/>
         <source>Irish Flute</source>
-        <translation type="unfinished"/>
+        <translation>Txirula Irlandarra</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="75"/>
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1135,7 +1135,7 @@ Sheng</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="319"/>
         <source>Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Klarinetea</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="321"/>
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation>D Klarinetea</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Klarinetea</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Klarinetea</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>A Klarinetea</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Tronpeta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Tronpeta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>D Tronpeta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>C Tronpeta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Tronpeta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
-        <translation type="unfinished"/>
+        <translation>Perkusio Afinatua</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
-        <translation type="unfinished"/>
+        <translation>Perkusio Ez Afinatua</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
-        <translation>bateria</translation>
+        <translation>Bateria</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bonboa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Hirukia</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Panderoa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
-        <translation type="unfinished"/>
+        <translation>Teklatuak</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
-        <translation type="unfinished"/>
+        <translation>Pianoa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
-        <translation type="unfinished"/>
+        <translation>Jostailuzko Pianoa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
-        <translation type="unfinished"/>
+        <translation>Piano Elektrikoa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
-        <translation type="unfinished"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
-        <translation type="unfinished"/>
+        <translation>Biolinak</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
-        <translation type="unfinished"/>
+        <translation>Biolak</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
-        <source>Violin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <source>Violin</source>
+        <translation>Biolina</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
-        <translation type="unfinished"/>
+        <translation>Biola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_fa.ts b/share/locale/instruments_fa.ts
index eb5781b..c8480fb 100644
--- a/share/locale/instruments_fa.ts
+++ b/share/locale/instruments_fa.ts
@@ -9,7 +9,7 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="2"/>
         <source>Jazz instruments</source>
-        <translation>سازهای سبک جز</translation>
+        <translation>سازهای جز</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="3"/>
@@ -19,7 +19,7 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="5"/>
         <source>Ethnic instruments</source>
-        <translation type="unfinished"/>
+        <translation>سازهای محلی</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="6"/>
@@ -29,161 +29,161 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="7"/>
         <source>Piccolo</source>
-        <translation>Piccolo</translation>
+        <translation>پیکولو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="9"/>
         <source>Picc.</source>
         <extracomment>Piccolo</extracomment>
-        <translation>Picc.</translation>
+        <translation>پیکولو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="10"/>
         <source>Flute</source>
-        <translation>Flute</translation>
+        <translation>فلوت</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="12"/>
         <source>Fl.</source>
         <extracomment>Flute</extracomment>
-        <translation>FL.</translation>
+        <translation>فلوت</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="13"/>
         <source>Treble Flute</source>
-        <translation type="unfinished"/>
+        <translation>فلوت تریبل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="15"/>
         <source>Tr. Fl.</source>
         <extracomment>Treble Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>فلوت تریبل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="16"/>
         <source>Soprano Flute</source>
-        <translation type="unfinished"/>
+        <translation>فلوت سوپرانو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="18"/>
         <source>Sop. Fl.</source>
         <extracomment>Soprano Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>فلوت سوپرانو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="19"/>
         <source>Sub Contra-alto Flute</source>
-        <translation type="unfinished"/>
+        <translation>فلوت آلتو ساب کنترا</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="21"/>
         <source>Sc-a. Fl.</source>
         <extracomment>Sub Contra-alto Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>فلوت آلتو ساب کنترا</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="22"/>
         <source>Alto Flute</source>
-        <translation type="unfinished"/>
+        <translation>فلوت آلتو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="24"/>
         <source>A. Fl.</source>
         <extracomment>Alto Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>فلوت آلتو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="25"/>
         <source>Bass Flute</source>
-        <translation type="unfinished"/>
+        <translation>فلوت باس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="27"/>
         <source>B. Fl.</source>
         <extracomment>Bass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>فلوت باس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="28"/>
         <source>Contra-alto Flute</source>
-        <translation type="unfinished"/>
+        <translation>فلوت آلتو کنترا</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="30"/>
         <source>C-a. Fl.</source>
         <extracomment>Contra-alto Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>فلوت آلتو کنترا</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="31"/>
         <source>Contrabass Flute</source>
-        <translation type="unfinished"/>
+        <translation>فلوت کنترا باس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="33"/>
         <source>Cb. Fl.</source>
         <extracomment>Contrabass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>فلوت کنترا باس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="34"/>
         <source>Double Contrabass Flute</source>
-        <translation type="unfinished"/>
+        <translation>فلوت دابل کنترا باس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="36"/>
         <source>D. Cb. Fl.</source>
         <extracomment>Double Contrabass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>فلوت دابل کنترا باس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="37"/>
         <source>Hyperbass Flute</source>
-        <translation type="unfinished"/>
+        <translation>فلوت هایپرباس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="39"/>
         <source>Hb. Fl.</source>
         <extracomment>Hyperbass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>فلوت هایپرباس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="40"/>
         <source>Danso</source>
-        <translation type="unfinished"/>
+        <translation>دانسو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="42"/>
         <source>Da.</source>
         <extracomment>Danso</extracomment>
-        <translation type="unfinished"/>
+        <translation>دانسو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="43"/>
         <source>Dizi</source>
-        <translation type="unfinished"/>
+        <translation>دیزی</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="45"/>
         <source>Di.</source>
         <extracomment>Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>دیزی</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="46"/>
         <source>C Dizi</source>
-        <translation type="unfinished"/>
+        <translation>دیزی دو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="48"/>
         <source>C Di.</source>
         <extracomment>C Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>دیزی دو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="49"/>
         <source>A Dizi</source>
-        <translation type="unfinished"/>
+        <translation>دیزی لا</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="51"/>
@@ -192,522 +192,522 @@
         <extracomment>A Dizi
 ----------
 F Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>دیزی لا</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="52"/>
         <source>G Dizi</source>
-        <translation type="unfinished"/>
+        <translation>دیزی سل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="54"/>
         <source>G Di.</source>
         <extracomment>G Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>دیزی سل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="55"/>
         <source>F Dizi</source>
-        <translation type="unfinished"/>
+        <translation>دیزی فا</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="58"/>
         <source>E Dizi</source>
-        <translation type="unfinished"/>
+        <translation>دیزی می</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="60"/>
         <source>E Di.</source>
         <extracomment>E Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>دیزی می</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="64"/>
         <source>Flageolet</source>
-        <translation type="unfinished"/>
+        <translation>Flageolet</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="66"/>
         <source>Fla.</source>
         <extracomment>Flageolet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Flageolet</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="67"/>
         <source>French Flageolet</source>
-        <translation type="unfinished"/>
+        <translation>Flageolet فرانسوی</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="69"/>
         <source>Fr. Fla.</source>
         <extracomment>French Flageolet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Flageolet فرانسوی</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="70"/>
         <source>English Flageolet</source>
-        <translation type="unfinished"/>
+        <translation>Flageolet انگلیسی</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="72"/>
         <source>Eng. Fla.</source>
         <extracomment>English Flageolet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Flageolet انگلیسی</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="73"/>
         <source>Irish Flute</source>
-        <translation type="unfinished"/>
+        <translation>فلوت ایرلندی</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="75"/>
         <source>Ir. Fl.</source>
         <extracomment>Irish Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>فلوت ایرلندی</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="76"/>
         <source>Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Gemshorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="78"/>
         <source>Gh.</source>
         <extracomment>Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gemshorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="79"/>
         <source>Soprano Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Gemshorn سوپرانو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="81"/>
         <source>S. Gh.</source>
         <extracomment>Soprano Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gemshorn سوپرانو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="82"/>
         <source>Alto Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Gemshorn آلتو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="84"/>
         <source>A. Gh.</source>
         <extracomment>Alto Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gemshorn آلتو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="85"/>
         <source>Tenor Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Gemshorn تنور</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="87"/>
         <source>T. Gh.</source>
         <extracomment>Tenor Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gemshorn تنور</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="88"/>
         <source>Bass Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Gemshorn باس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="90"/>
         <source>B. Gh.</source>
         <extracomment>Bass Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gemshorn باس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="91"/>
         <source>Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Ocarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="93"/>
         <source>Oc.</source>
         <extracomment>Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ocarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="94"/>
         <source>G Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Ocarina سوپرانو سل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="96"/>
         <source>G S. Oc.</source>
         <extracomment>G Soprano Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ocarina سوپرانو سل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="97"/>
         <source>F Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Ocarina سوپرانو فا</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="99"/>
         <source>F S. Oc.</source>
         <extracomment>F Soprano Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ocarina سوپرانو فا</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="100"/>
         <source>C Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Ocarina سوپرانو دو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="102"/>
         <source>C S. Oc.</source>
         <extracomment>C Soprano Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ocarina سوپرانو دو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="103"/>
         <source>Bâ™­ Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Ocarina سوپرانو سی بمل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="105"/>
         <source>B♭­ S. Oc.</source>
         <extracomment>Bâ™­ Soprano Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ocarina سوپرانو سی بمل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="106"/>
         <source>G Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Ocarina آلتو سل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="108"/>
         <source>G A. Oc.</source>
         <extracomment>G Alto Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ocarina آلتو سل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="109"/>
         <source>F Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Ocarina آلتو فا</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="111"/>
         <source>F A. Oc.</source>
         <extracomment>F Alto Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ocarina آلتو فا</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="112"/>
         <source>C Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Ocarina آلتو دو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="114"/>
         <source>C A. Oc.</source>
         <extracomment>C Alto Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ocarina آلتو دو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="115"/>
         <source>B♭­ Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Ocarina آلتو سی بمل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="117"/>
         <source>B♭­ A. Oc.</source>
         <extracomment>B♭­ Alto Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ocarina آلتو سی بمل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="118"/>
         <source>C Bass Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Ocarina دو باس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="120"/>
         <source>C B. Oc.</source>
         <extracomment>C Bass Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ocarina دو باس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="121"/>
         <source>Pan Flute</source>
-        <translation type="unfinished"/>
+        <translation>پان فلوت</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="123"/>
         <source>Pn. Fl.</source>
         <extracomment>Pan Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>پان فلوت</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="124"/>
         <location filename="../instruments/instrumentsxml.h" line="136"/>
         <source>Quena</source>
-        <translation type="unfinished"/>
+        <translation>Quena</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="126"/>
         <location filename="../instruments/instrumentsxml.h" line="138"/>
         <source>Qn.</source>
         <extracomment>Quena</extracomment>
-        <translation type="unfinished"/>
+        <translation>Quena</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="127"/>
         <source>C Quena</source>
-        <translation type="unfinished"/>
+        <translation>Quena دو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="129"/>
         <source>C Qn.</source>
         <extracomment>C Quena</extracomment>
-        <translation type="unfinished"/>
+        <translation>Quena دو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="130"/>
         <source>G Quena</source>
-        <translation type="unfinished"/>
+        <translation>Quena سل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="132"/>
         <source>G Qn.</source>
         <extracomment>G Quena</extracomment>
-        <translation type="unfinished"/>
+        <translation>Quena سل</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="133"/>
         <source>F Quena</source>
-        <translation type="unfinished"/>
+        <translation>Quena فا</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="135"/>
         <source>F Qn.</source>
         <extracomment>F Quena</extracomment>
-        <translation type="unfinished"/>
+        <translation>Quena فا</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="139"/>
         <source>Recorder</source>
-        <translation type="unfinished"/>
+        <translation>ریکوردر</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="141"/>
         <source>Rec.</source>
         <extracomment>Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>ریکوردر</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="142"/>
         <source>Garklein Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Garklein ریکوردر</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="144"/>
         <source>Gk. Rec.</source>
         <extracomment>Garklein Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>Garklein ریکوردر</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="145"/>
         <source>Sopranino Recorder</source>
-        <translation type="unfinished"/>
+        <translation>ریکوردر سوپرانینو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="147"/>
         <source>Si. Rec.</source>
         <extracomment>Sopranino Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>ریکوردر سوپرانینو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="148"/>
         <source>Soprano Recorder</source>
-        <translation type="unfinished"/>
+        <translation>ریکوردر سوپرانو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="150"/>
         <source>S. Rec.</source>
         <extracomment>Soprano Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>ریکوردر سوپرانو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="151"/>
         <source>Alto Recorder</source>
-        <translation type="unfinished"/>
+        <translation>ریکوردر آلتو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="153"/>
         <source>A. Rec.</source>
         <extracomment>Alto Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>ریکوردر آلتو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="154"/>
         <source>Tenor Recorder</source>
-        <translation type="unfinished"/>
+        <translation>ریکوردر تنور</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="156"/>
         <source>T. Rec.</source>
         <extracomment>Tenor Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>ریکوردر تنور</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="157"/>
         <source>Bass Recorder</source>
-        <translation type="unfinished"/>
+        <translation>ریکوردر باس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="159"/>
         <source>B. Rec.</source>
         <extracomment>Bass Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>ریکوردر باس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="160"/>
         <source>Contrabass Recorder</source>
-        <translation type="unfinished"/>
+        <translation>ریکوردر کنتراباس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="162"/>
         <source>Cb. Rec.</source>
         <extracomment>Contrabass Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>ریکوردر کنتراباس</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="163"/>
         <source>Greatbass Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Greatbass ریکوردر</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="165"/>
         <source>Gb. Rec.</source>
         <extracomment>Greatbass Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>Greatbass ریکوردر</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="166"/>
         <source>Slide Whistle</source>
-        <translation type="unfinished"/>
+        <translation>Slide Whistle</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="168"/>
         <source>Sl. Wh.</source>
         <extracomment>Slide Whistle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Slide Whistle</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="169"/>
         <location filename="../instruments/instrumentsxml.h" line="175"/>
         <source>Tin Whistle</source>
-        <translation type="unfinished"/>
+        <translation>Tin Whistle</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="171"/>
         <location filename="../instruments/instrumentsxml.h" line="177"/>
         <source>Tin. Wh.</source>
         <extracomment>Tin Whistle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tin Whistle</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="172"/>
         <source>Bâ™­ Tin Whistle</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Tin Whistle</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="174"/>
         <source>Bâ™­ Tin. Wh.</source>
         <extracomment>Bâ™­ Tin Whistle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Tin. Wh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="178"/>
         <source>Piccolo Oboe</source>
-        <translation type="unfinished"/>
+        <translation>پیکولو ابو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="180"/>
         <source>P. Ob.</source>
         <extracomment>Piccolo Oboe</extracomment>
-        <translation type="unfinished"/>
+        <translation>پیکولو ابو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="181"/>
         <source>Oboe</source>
-        <translation type="unfinished"/>
+        <translation>ابو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="183"/>
         <source>Ob.</source>
         <extracomment>Oboe</extracomment>
-        <translation type="unfinished"/>
+        <translation>ابو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="184"/>
         <source>Baroque Oboe</source>
-        <translation type="unfinished"/>
+        <translation>ابو باروک</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="186"/>
         <source>Bq. Ob.</source>
         <extracomment>Baroque Oboe</extracomment>
-        <translation type="unfinished"/>
+        <translation>ابو باروک</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="187"/>
         <source>Oboe d'amore</source>
-        <translation type="unfinished"/>
+        <translation>d'amore ابو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="189"/>
         <source>Ob. d'a.</source>
         <extracomment>Oboe d'amore</extracomment>
-        <translation type="unfinished"/>
+        <translation>d'amore</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="190"/>
         <source>Oboe da caccia</source>
-        <translation type="unfinished"/>
+        <translation>da caccia ابو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="192"/>
         <source>Ob. d. ca.</source>
         <extracomment>Oboe da caccia</extracomment>
-        <translation type="unfinished"/>
+        <translation>da caccia ابو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="193"/>
         <source>English Horn</source>
-        <translation type="unfinished"/>
+        <translation>کر آنگله</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="195"/>
         <source>E. Hn.</source>
         <extracomment>English Horn</extracomment>
-        <translation type="unfinished"/>
+        <translation>کر آنگله</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="196"/>
         <source>Baritone Oboe</source>
-        <translation type="unfinished"/>
+        <translation>Baritone Oboe</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="198"/>
         <source>Bar. Ob.</source>
         <extracomment>Baritone Oboe</extracomment>
-        <translation type="unfinished"/>
+        <translation>Baritone Oboe</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="199"/>
         <source>Piccolo Heckelphone</source>
-        <translation type="unfinished"/>
+        <translation>Heckelphone پیوکولو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="201"/>
         <source>P. Hph.</source>
         <extracomment>Piccolo Heckelphone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Heckelphone پیوکولو</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="202"/>
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>درام ست</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>باس درام</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tambourine</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>سازهای الکترونیک</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>افکت های سینتی سایزر</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
         <source>Brass Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>زهی ها</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>ویولن</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>ویولا</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_fi.ts b/share/locale/instruments_fi.ts
index f75dba7..2957e6a 100644
--- a/share/locale/instruments_fi.ts
+++ b/share/locale/instruments_fi.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>D-klarinetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>D Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Eâ™­-klarinetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Eâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Bâ™­-klarinetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Bâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A-klarinetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>A Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Alttoklarinetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>A. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Bassetklarinetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Ba. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Bassettorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Ba. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Bassoklarinetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Kontra-alttoklarinetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>C-a. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Kontrabassoklarinetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cb. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Sopraninochalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Si. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Sopraanochalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>S. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Alttochalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>A. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Tenorichalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>T. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Bassokhalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>B. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagotti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Bsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Kontrafagotti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cbsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Lehdykkäkontrabasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Rd. Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Dulzian</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sopraninosarrusofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Si. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sopraanosarrusofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>S. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Alttosarrusofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>A. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Tenorisarrusofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>T. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Baritonisarrusofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Bar. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Bassosarrusofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>B. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Kontrabassosarrusofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Cb. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saksofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Sopranissimosaksofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sio. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Sopraninosaksofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Si. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Sopraanosaksofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulochrome</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Mezzosopraanosaksofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>M.S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Alttosaksofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Melodiasaksofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Mel. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Tenorisaksofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Baritonisaksofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Bassosaksofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Kontrabassosaksofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Cb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Alikontrabassosaksofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Scb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Säkkipilli</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Bagp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Vapaalehdykkäsoitin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Huuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12-reikäinen C-kromaattinen huuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14-reikäinen C-kromaattinen huuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12-reikäinen G-kromaattinen huuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16-reikäinen C-kromaattinen huuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>12-reikäinen C-kromaattinen tenorihuuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>10-reikäinen G-diatoninen korkea huuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>10-reikäinen F-diatoninen huuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>10-reikäinen D-diatoninen huuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>10-reikäinen C-diatoninen huuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>10-reikäinen A-diatoninen huuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>10-reikäinen G-diatoninen huuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>10-reikäinen D-diatoninen matala huuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>20-reikäinen avosointuhuuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Bassohuuliharppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Bs. Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Bassohuuliharppu, Hohner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Bassohuuliharppu, Huang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Harmonikka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Käsiharmonikka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melodika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Suu-urut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sopraanosuu-urut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>S She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Alttosuu-urut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>A She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Tenorisuu-urut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>T She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Bassosuu-urut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>B. She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Vaskipuhaltimet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>F-torvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>F Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Korkea C-torvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>H. C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Bâ™­-torvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Bâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>A-torvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>A Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Aâ™­-torvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Aâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>G-torvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>G Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>E-torvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>E Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Eâ™­-torvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Eâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>D-torvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>C-torvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Wienintorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>V. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Bâ™­-bassotorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Bâ™­ ba Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Eâ™­-kornetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Eâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Bâ™­-kornetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Bâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>F-alttotorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>F A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Eâ™­-alttotorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Eâ™­ A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Baritonitorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Bar. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Baritonitorvi (Diskanttiavain)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Postitorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Psthn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Alppitorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>AlpHn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Pikkolotrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Bâ™­-pikkolotrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>P. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>A-pikkolotrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>P. Tpt. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Eâ™­-trumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Eâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>D-trumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>D Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>C-trumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>C Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Bâ™­-trumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Bâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Taskutrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Pkt. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Liukutrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Sl. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Tenoritrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tnr. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Bassotrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Eâ™­-bassotrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Eâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>C-bassotrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>B. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Bâ™­-bassotrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Bâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Barokkitrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Bq. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>F-barokkitrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Bq. Tpt. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Eâ™­-barokkitrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Bq. Tpt. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>D-barokkitrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Bq. Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>C-barokkitrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Bq. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Bâ™­-barokkitrumpetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Bq. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Rag-dung</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Merkkitorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Sopraanomerkkitorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Sop. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Alttomerkkitorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Alt. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Baritonimerkkitorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bar. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Flyygelitorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flghn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Baritonimerkkitorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Mellofonimerkkitorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mel. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Kontrabassomerkitorvi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Con. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Mellofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Ofikleidi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>F-alttoofikleidi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>F A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Eâ™­-altto-ofikleidi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Eâ™­ A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>C-basso-ofikleidi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>C B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Bâ™­-basso-ofikleidi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Bâ™­ B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Eâ™­-kontrabasso-ofikleidi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Eâ™­ Cb. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Kornetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Sopraanokornetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>S. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Alttokornetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>A. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Tenorikornetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>T. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpentti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Pasuuna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Pasuuna (Diskanttiavain)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Sopraanopasuuna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>S. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Alttopasuuna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>A. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Tenoripasuuna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>T. Trb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Bassopasuuna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>B. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Kontrabassopasuuna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Cb. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Euphonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Euphonium (Diskanttiavain)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>F-tuuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Varhainen musiikki</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Bâ™­-fife</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Pasuuna (Diskanttiavain)</translation>
+        <translation>Euph. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Euphonium (Diskanttiavain)</translation>
+        <translation>Euph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>F Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Eâ™­-tuuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Eâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Eâ™­-tuuba (diskanttiavain)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>C-tuuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>C Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Bâ™­-tuuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Bâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Bâ™­-tuuba (diskanttiavain)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>F-bassotuuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Ba. Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Eâ™­-bassotuuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Ba. Tu. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Alikontrabassotuuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>SCB. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helicon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousafoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Wagnertuuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Bâ™­-wagnertuuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Bâ™­ Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>F-wagnertuuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>F Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Kotilo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Melodiset lyömäsoittimet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Patarummut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Roto-tomit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Kellopeli</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Orff sopraanokellopeli</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. S. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Orff alttokellopeli</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O A. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crotales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubafoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Lehmänkellot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibrafoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metallofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Orff sopraanometallofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O S. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Orff alttometallofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. A. met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Orff bassometallofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O. B. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Putkikellot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Tu. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Steel pan</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Steel pan, sopraano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>S. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Steel pan, altto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Steel pan, kitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Steel pan, tenori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Steel pan, sello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Steel pan, basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Käsikellot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Ha. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Gongit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Td. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Fleksatoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Saha</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Mu. Sw.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Lasit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Mu. Gla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Lasiharmonikka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gla. Har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Ksylofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Orff sopraanoksylofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O. S. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Orff alttoksylofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O. A. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Orff bassoksylofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O. B. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Ksylomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Bassomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>B. Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Äänitorvet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Tn. Klx. Hns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Diskanttikalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Tr. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Alttokalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Rytmilyömäsoittimet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Rumpusetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Drs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Virveli</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bassorumpu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>B. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Pikkolovirveli</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Marssirumpu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Mil. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom-tomit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Tomit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Kiinalaiset tom-tomit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Ch. To.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Kongat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbalet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Runkorumpu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Fr. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tablat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Sormisymbaalit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Fi. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Hi-hat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Kellot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Rekikellot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Sle. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Levykello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Be. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Kulhokongot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Bw. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Metallikastanjetit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Met. Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Autonjarrurummut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut. Brk. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Rautaputket</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Ir. Pi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Ketjut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Chn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Alasin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Anv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Puupalikat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Wd. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Temppelipalikat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangeli</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Symbaali</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Ridesymbaali</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>R. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Kiinalainen symbaali</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Ch. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Crashsymbaali</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cr. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Splashsymbaali</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Sp. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Lehmänkello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Cwb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Rytmikapulat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Kastanjetit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Guiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Marakassit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Cibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Rakorumpu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Ruoska</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Wh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Räikkä</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Rat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Thundersheet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Hiekkapaperipalikat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sa. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Puiset tuulikellot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Wd. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Bambutuulikellot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Metallituulikellot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Met. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Lasituulikellot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Gl. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Kotilotuulikellot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Sh. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Kivet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Sto.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Sormien napsautus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Fi. Sna.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Taputus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Hd. Clp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Läpsäytys</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Potku</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamburiini</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Marssiperkussio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>SD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tenorirummut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Bassorummut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Symbaalit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Cy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Laulu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Ääni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Poikasopraano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>B. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Sopraano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzosopraano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Altto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Kontra-altto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Vastatenori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Baritoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Kosketinsoittimet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Flyygeli</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Pystypiano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Honky-tonk-piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Lelupiano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Toy Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Klavikordi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Cch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Cembalo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Hch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginaali</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Sähköpiano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>El. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Klavinetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Urut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Perkussiourut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perc. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Hammondurut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Hammondurut (Leslie-efekti)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Rot. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Pilliurut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Urkuharmoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Rd. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Elektroniset soittimet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Efektisyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synth.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Tunnelmasyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Kirkas syntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Kristallisyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Kaikusyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Peikkosyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Sadesyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sci-fi-syntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Ääniraitasyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Pad-syntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>New Age -syntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Lämmin syntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Moniääninen syntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Kuorosyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Jousisyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Metallinen syntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Halosyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Liukusyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Sahasyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Siniaaltosyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Kanttiaaltosyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondes Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O. M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Nuijasyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Mal. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Bassosyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
         <source>Brass Synthesizer</source>
         <translation>Vaskisyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
         <translation>Jousisyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Perkussiosyntetisaattori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Perc. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Kielisoittimet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tabulatuuri]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Tenoribanjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T. Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaikka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Pikkolobalalaikka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pic. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Priimabalalaikka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Sekundabalalaikka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sec. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Alttobalalaikka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Bassobalalaikka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>B. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Kontrabassobalalaikka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>CB. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Busuki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Busuki (3-kuoroinen)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Busuki (4-kuoroinen)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Sopraanokitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>S. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Alttokitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Klassinen kitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Klassinen kitara [Tabulatuuri]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Akustinen kitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Akustinen kitara [Tabulatuuri]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11-kielinen alttokitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-str. A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12-kielinen kitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-str. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal steel guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Sähkökitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Sähkökitara [Tabulatuuri]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harppu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Luuttu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Luuttu [Tabulatuuri]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Luuttu, 5-kuoroinen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Luuttu, 6-kuoroinen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Luuttu, 7-kuoroinen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Luuttu, 8-kuoroinen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Luuttu, 9-kuoroinen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Luuttu, 10-kuoroinen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Luuttu, 13-kuoroinen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A. Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandoliini [Tabulatuuri]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>5-kielinen sähköbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>5-kielinen sähköbasso [Tabulatuuri]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
-        <translation type="unfinished"/>
+        <translation>Viulut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vlns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
-        <translation type="unfinished"/>
+        <translation>Alttoviulut</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vlas.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
-        <translation type="unfinished"/>
+        <translation>Sellot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vlcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabassot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
-        <translation type="unfinished"/>
+        <extracomment>Double Bass</extracomment>
+        <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola da gamba (Tabulatuuri)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Arkkiluuttu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Varhainen musiikki</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Bâ™­-fife</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Teorbi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandoliini</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandoliini [Tabulatuuri]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Alttomandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Tenorimandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandosello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Oktaavimandoliini</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulele [Tabulatuuri]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Tenoriukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Baritoniukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Bassokitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Bassokitara [Tabulatuuri]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Akustinen basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Sähköbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Sähköbasso [Tabulatuuri]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Nauhaton sähköbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Frtl. El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
-        <translation type="unfinished"/>
+        <translation>Jouset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Viulu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Viulusello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Kontrabasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Kontrabasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Diskanttiviulu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Tr. vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Alttoviulu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Tenoriviulu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>D-violone</translation>
     </message>
diff --git a/share/locale/instruments_fo.ts b/share/locale/instruments_fo.ts
index 8b716e1..8a874ec 100644
--- a/share/locale/instruments_fo.ts
+++ b/share/locale/instruments_fo.ts
@@ -4,186 +4,186 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1"/>
         <source>Common instruments</source>
-        <translation type="unfinished"/>
+        <translation>Vanlig ljóðføri</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="2"/>
         <source>Jazz instruments</source>
-        <translation type="unfinished"/>
+        <translation>Jazz ljóðføri</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="3"/>
         <source>Orchestral instruments</source>
-        <translation type="unfinished"/>
+        <translation>Orkestur ljóðføri</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="5"/>
         <source>Ethnic instruments</source>
-        <translation type="unfinished"/>
+        <translation>Etnisk ljóðføri</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="6"/>
         <source>Woodwind</source>
-        <translation type="unfinished"/>
+        <translation>Træblásarar</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="7"/>
         <source>Piccolo</source>
-        <translation type="unfinished"/>
+        <translation>Pikkolo</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="9"/>
         <source>Picc.</source>
         <extracomment>Piccolo</extracomment>
-        <translation type="unfinished"/>
+        <translation>Pikk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="10"/>
         <source>Flute</source>
-        <translation type="unfinished"/>
+        <translation>Floyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="12"/>
         <source>Fl.</source>
         <extracomment>Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="13"/>
         <source>Treble Flute</source>
-        <translation type="unfinished"/>
+        <translation>Diskant floyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="15"/>
         <source>Tr. Fl.</source>
         <extracomment>Treble Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Disk. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="16"/>
         <source>Soprano Flute</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Floyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="18"/>
         <source>Sop. Fl.</source>
         <extracomment>Soprano Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sop. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="19"/>
         <source>Sub Contra-alto Flute</source>
-        <translation type="unfinished"/>
+        <translation>Lág Kontra-alt Floyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="21"/>
         <source>Sc-a. Fl.</source>
         <extracomment>Sub Contra-alto Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Lk-a. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="22"/>
         <source>Alto Flute</source>
-        <translation type="unfinished"/>
+        <translation>Alt Floyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="24"/>
         <source>A. Fl.</source>
         <extracomment>Alto Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="25"/>
         <source>Bass Flute</source>
-        <translation type="unfinished"/>
+        <translation>Bass Floyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="27"/>
         <source>B. Fl.</source>
         <extracomment>Bass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="28"/>
         <source>Contra-alto Flute</source>
-        <translation type="unfinished"/>
+        <translation>Kontra-alt Floyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="30"/>
         <source>C-a. Fl.</source>
         <extracomment>Contra-alto Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>K-a. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="31"/>
         <source>Contrabass Flute</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabass Floyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="33"/>
         <source>Cb. Fl.</source>
         <extracomment>Contrabass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="34"/>
         <source>Double Contrabass Flute</source>
-        <translation type="unfinished"/>
+        <translation>Dupul Kontrabass Floyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="36"/>
         <source>D. Cb. Fl.</source>
         <extracomment>Double Contrabass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>D. Cb. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="37"/>
         <source>Hyperbass Flute</source>
-        <translation type="unfinished"/>
+        <translation>Ovur-Bass Floyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="39"/>
         <source>Hb. Fl.</source>
         <extracomment>Hyperbass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ob. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="40"/>
         <source>Danso</source>
-        <translation type="unfinished"/>
+        <translation>Danso</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="42"/>
         <source>Da.</source>
         <extracomment>Danso</extracomment>
-        <translation type="unfinished"/>
+        <translation>Da.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="43"/>
         <source>Dizi</source>
-        <translation type="unfinished"/>
+        <translation>Dizi</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="45"/>
         <source>Di.</source>
         <extracomment>Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="46"/>
         <source>C Dizi</source>
-        <translation type="unfinished"/>
+        <translation>C Dizi</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="48"/>
         <source>C Di.</source>
         <extracomment>C Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>C Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="49"/>
         <source>A Dizi</source>
-        <translation type="unfinished"/>
+        <translation>A Dizi</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="51"/>
@@ -192,527 +192,527 @@
         <extracomment>A Dizi
 ----------
 F Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>A Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="52"/>
         <source>G Dizi</source>
-        <translation type="unfinished"/>
+        <translation>G Dizi</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="54"/>
         <source>G Di.</source>
         <extracomment>G Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>G Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="55"/>
         <source>F Dizi</source>
-        <translation type="unfinished"/>
+        <translation>F Dizi</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="58"/>
         <source>E Dizi</source>
-        <translation type="unfinished"/>
+        <translation>E Dizi</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="60"/>
         <source>E Di.</source>
         <extracomment>E Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>E Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="64"/>
         <source>Flageolet</source>
-        <translation type="unfinished"/>
+        <translation>Flageolet</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="66"/>
         <source>Fla.</source>
         <extracomment>Flageolet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Fla.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="67"/>
         <source>French Flageolet</source>
-        <translation type="unfinished"/>
+        <translation>Fronsk Flageolet</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="69"/>
         <source>Fr. Fla.</source>
         <extracomment>French Flageolet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Fr. Fla.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="70"/>
         <source>English Flageolet</source>
-        <translation type="unfinished"/>
+        <translation>Ensk Flageolet</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="72"/>
         <source>Eng. Fla.</source>
         <extracomment>English Flageolet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Eng. Fla.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="73"/>
         <source>Irish Flute</source>
-        <translation type="unfinished"/>
+        <translation>Írsk Floyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="75"/>
         <source>Ir. Fl.</source>
         <extracomment>Irish Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ir. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="76"/>
         <source>Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Gemshorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="78"/>
         <source>Gh.</source>
         <extracomment>Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="79"/>
         <source>Soprano Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Gemshorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="81"/>
         <source>S. Gh.</source>
         <extracomment>Soprano Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Gh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="82"/>
         <source>Alto Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Alt Gemshorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="84"/>
         <source>A. Gh.</source>
         <extracomment>Alto Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Gh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="85"/>
         <source>Tenor Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Gemshorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="87"/>
         <source>T. Gh.</source>
         <extracomment>Tenor Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Gh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="88"/>
         <source>Bass Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Bass Gemshorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="90"/>
         <source>B. Gh.</source>
         <extracomment>Bass Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Gh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="91"/>
         <source>Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="93"/>
         <source>Oc.</source>
         <extracomment>Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ok.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="94"/>
         <source>G Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>G Soprano Ocarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="96"/>
         <source>G S. Oc.</source>
         <extracomment>G Soprano Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>G S. Ok.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="97"/>
         <source>F Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>F Sopran Okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="99"/>
         <source>F S. Oc.</source>
         <extracomment>F Soprano Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>F S. Ok.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="100"/>
         <source>C Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>C Sopran Okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="102"/>
         <source>C S. Oc.</source>
         <extracomment>C Soprano Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>C S. Ok.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="103"/>
         <source>Bâ™­ Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Sopran Okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="105"/>
         <source>B♭­ S. Oc.</source>
         <extracomment>Bâ™­ Soprano Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>B♭­ S. Ok.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="106"/>
         <source>G Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>G Alt Okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="108"/>
         <source>G A. Oc.</source>
         <extracomment>G Alto Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>G A. Ok.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="109"/>
         <source>F Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>F Alt Okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="111"/>
         <source>F A. Oc.</source>
         <extracomment>F Alto Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>F A. Ok.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="112"/>
         <source>C Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>C Alt Okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="114"/>
         <source>C A. Oc.</source>
         <extracomment>C Alto Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>C A. Ok.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="115"/>
         <source>B♭­ Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>B♭­ Alt Okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="117"/>
         <source>B♭­ A. Oc.</source>
         <extracomment>B♭­ Alto Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>B♭­ A. Ok.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="118"/>
         <source>C Bass Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>C Bass Okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="120"/>
         <source>C B. Oc.</source>
         <extracomment>C Bass Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>C B. Ok.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="121"/>
         <source>Pan Flute</source>
-        <translation type="unfinished"/>
+        <translation>Pan Floyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="123"/>
         <source>Pn. Fl.</source>
         <extracomment>Pan Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Pn. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="124"/>
         <location filename="../instruments/instrumentsxml.h" line="136"/>
         <source>Quena</source>
-        <translation type="unfinished"/>
+        <translation>Quena</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="126"/>
         <location filename="../instruments/instrumentsxml.h" line="138"/>
         <source>Qn.</source>
         <extracomment>Quena</extracomment>
-        <translation type="unfinished"/>
+        <translation>Qn.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="127"/>
         <source>C Quena</source>
-        <translation type="unfinished"/>
+        <translation>C Quena</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="129"/>
         <source>C Qn.</source>
         <extracomment>C Quena</extracomment>
-        <translation type="unfinished"/>
+        <translation>C Qn.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="130"/>
         <source>G Quena</source>
-        <translation type="unfinished"/>
+        <translation>G Quena</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="132"/>
         <source>G Qn.</source>
         <extracomment>G Quena</extracomment>
-        <translation type="unfinished"/>
+        <translation>G Qn.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="133"/>
         <source>F Quena</source>
-        <translation type="unfinished"/>
+        <translation>F Quena</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="135"/>
         <source>F Qn.</source>
         <extracomment>F Quena</extracomment>
-        <translation type="unfinished"/>
+        <translation>F Qn.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="139"/>
         <source>Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Blokkfloyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="141"/>
         <source>Rec.</source>
         <extracomment>Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>Blk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="142"/>
         <source>Garklein Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Garklein Blokkfloyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="144"/>
         <source>Gk. Rec.</source>
         <extracomment>Garklein Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gk. Blk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="145"/>
         <source>Sopranino Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Sopranino Blokkfloyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="147"/>
         <source>Si. Rec.</source>
         <extracomment>Sopranino Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>Si. Blk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="148"/>
         <source>Soprano Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Blokkfloyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="150"/>
         <source>S. Rec.</source>
         <extracomment>Soprano Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Blk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="151"/>
         <source>Alto Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Alt Blokkfloyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="153"/>
         <source>A. Rec.</source>
         <extracomment>Alto Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Blk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="154"/>
         <source>Tenor Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Blokkfloyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="156"/>
         <source>T. Rec.</source>
         <extracomment>Tenor Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Blk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="157"/>
         <source>Bass Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Bass Blokkfloyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="159"/>
         <source>B. Rec.</source>
         <extracomment>Bass Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Blk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="160"/>
         <source>Contrabass Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabass Blokkfloyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="162"/>
         <source>Cb. Rec.</source>
         <extracomment>Contrabass Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb. Blk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="163"/>
         <source>Greatbass Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Stórbass Blokkfloyta</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="165"/>
         <source>Gb. Rec.</source>
         <extracomment>Greatbass Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sb. Blk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="166"/>
         <source>Slide Whistle</source>
-        <translation type="unfinished"/>
+        <translation>Slide Whistle</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="168"/>
         <source>Sl. Wh.</source>
         <extracomment>Slide Whistle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sl. Wh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="169"/>
         <location filename="../instruments/instrumentsxml.h" line="175"/>
         <source>Tin Whistle</source>
-        <translation type="unfinished"/>
+        <translation>Tin Whistle</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="171"/>
         <location filename="../instruments/instrumentsxml.h" line="177"/>
         <source>Tin. Wh.</source>
         <extracomment>Tin Whistle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tin. Wh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="172"/>
         <source>Bâ™­ Tin Whistle</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Tin Whistle</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="174"/>
         <source>Bâ™­ Tin. Wh.</source>
         <extracomment>Bâ™­ Tin Whistle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Tin. Wh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="178"/>
         <source>Piccolo Oboe</source>
-        <translation type="unfinished"/>
+        <translation>Piccolo Obo</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="180"/>
         <source>P. Ob.</source>
         <extracomment>Piccolo Oboe</extracomment>
-        <translation type="unfinished"/>
+        <translation>P. Ob.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="181"/>
         <source>Oboe</source>
-        <translation type="unfinished"/>
+        <translation>Obo</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="183"/>
         <source>Ob.</source>
         <extracomment>Oboe</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ob.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="184"/>
         <source>Baroque Oboe</source>
-        <translation type="unfinished"/>
+        <translation>Barokk Obo</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="186"/>
         <source>Bq. Ob.</source>
         <extracomment>Baroque Oboe</extracomment>
-        <translation type="unfinished"/>
+        <translation>Br. Ob.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="187"/>
         <source>Oboe d'amore</source>
-        <translation type="unfinished"/>
+        <translation>Obo d'amore</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="189"/>
         <source>Ob. d'a.</source>
         <extracomment>Oboe d'amore</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ob. d'a.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="190"/>
         <source>Oboe da caccia</source>
-        <translation type="unfinished"/>
+        <translation>Obo da caccia</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="192"/>
         <source>Ob. d. ca.</source>
         <extracomment>Oboe da caccia</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ob. d. ca.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="193"/>
         <source>English Horn</source>
-        <translation type="unfinished"/>
+        <translation>Enskt Horn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="195"/>
         <source>E. Hn.</source>
         <extracomment>English Horn</extracomment>
-        <translation type="unfinished"/>
+        <translation>E. Hn.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="196"/>
         <source>Baritone Oboe</source>
-        <translation type="unfinished"/>
+        <translation>Bariton Obo</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="198"/>
         <source>Bar. Ob.</source>
         <extracomment>Baritone Oboe</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bar. Ob.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="199"/>
         <source>Piccolo Heckelphone</source>
-        <translation type="unfinished"/>
+        <translation>Piccolo Heckelfon</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="201"/>
         <source>P. Hph.</source>
         <extracomment>Piccolo Heckelphone</extracomment>
-        <translation type="unfinished"/>
+        <translation>P. Hfo.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="202"/>
         <source>Heckelphone</source>
-        <translation type="unfinished"/>
+        <translation>Heckelfon</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="204"/>
@@ -721,951 +721,961 @@ F Dizi</extracomment>
         <extracomment>Heckelphone
 ----------
 Heckelphone-clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Hfo.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="205"/>
         <source>Heckelphone-clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Heckelfon-klarinett</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="208"/>
         <source>Sopranino Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Sopranino Shawm</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="210"/>
         <source>Si. Sh.</source>
         <extracomment>Sopranino Shawm</extracomment>
-        <translation type="unfinished"/>
+        <translation>Si. Sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="211"/>
         <source>Soprano Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Soprano Shawm</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="213"/>
         <source>S. Sh.</source>
         <extracomment>Soprano Shawm</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="214"/>
         <source>Alto Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Alto Shawm</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="216"/>
         <source>A. Sh.</source>
         <extracomment>Alto Shawm</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="217"/>
         <source>Tenor Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Shawm</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="219"/>
         <source>T. Sh.</source>
         <extracomment>Tenor Shawm</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="220"/>
         <source>Bass Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Bass Shawm</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="222"/>
         <source>B. Sh.</source>
         <extracomment>Bass Shawm</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="223"/>
         <source>Great Bass Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Stór- Bass Shawm</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="225"/>
         <source>G.B. Sh.</source>
         <extracomment>Great Bass Shawm</extracomment>
-        <translation type="unfinished"/>
+        <translation>S.B. Sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="226"/>
         <source>Cromorne</source>
-        <translation type="unfinished"/>
+        <translation>Cromorne</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="228"/>
         <source>Cr.</source>
         <extracomment>Cromorne</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cr.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="229"/>
         <source>Crumhorn</source>
-        <translation type="unfinished"/>
+        <translation>Crumhorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="231"/>
         <source>Crh.</source>
         <extracomment>Crumhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Crh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="232"/>
         <source>Soprano Crumhorn</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Crumhorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="234"/>
         <source>S. Crh.</source>
         <extracomment>Soprano Crumhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Crh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="235"/>
         <source>Alto Crumhorn</source>
-        <translation type="unfinished"/>
+        <translation>Alt Crumhorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="237"/>
         <source>A. Crh.</source>
         <extracomment>Alto Crumhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Crh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="238"/>
         <source>Tenor Crumhorn</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Crumhorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="240"/>
         <source>T. Crh.</source>
         <extracomment>Tenor Crumhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Crh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="241"/>
         <source>Bass Crumhorn</source>
-        <translation type="unfinished"/>
+        <translation>Bass Crumhorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="243"/>
         <source>B. Crh.</source>
         <extracomment>Bass Crumhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Crh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="244"/>
         <source>Greatbass Crumhorn</source>
-        <translation type="unfinished"/>
+        <translation>Stór- bass Crumhorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="246"/>
         <source>Gb. Crh.</source>
         <extracomment>Greatbass Crumhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sb. Crh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="247"/>
         <source>Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Cornamuse</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="249"/>
         <source>Cm.</source>
         <extracomment>Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="250"/>
         <source>Soprano Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Cornamuse</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="252"/>
         <source>S. Cm.</source>
         <extracomment>Soprano Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Cm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="253"/>
         <source>Alto Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Alt Cornamuse</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="255"/>
         <source>A. Cm.</source>
         <extracomment>Alto Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Cm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="256"/>
         <source>Tenor Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Cornamuse</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="258"/>
         <source>T. Cm.</source>
         <extracomment>Tenor Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Cm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="259"/>
         <source>Bass Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Bass Cornamuse</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="261"/>
         <source>B. Cm.</source>
         <extracomment>Bass Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Cm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="262"/>
         <location filename="../instruments/instrumentsxml.h" line="271"/>
         <source>Duduk</source>
-        <translation type="unfinished"/>
+        <translation>Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
 Dulcian</extracomment>
-        <translation type="unfinished"/>
+        <translation>Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="265"/>
         <source>F Duduk</source>
-        <translation type="unfinished"/>
+        <translation>F Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="267"/>
         <source>F Du.</source>
         <extracomment>F Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>F Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="268"/>
         <source>E Duduk</source>
-        <translation type="unfinished"/>
+        <translation>E Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="270"/>
         <source>E Du.</source>
         <extracomment>E Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>E Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="274"/>
         <source>C Duduk</source>
-        <translation type="unfinished"/>
+        <translation>C Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="276"/>
         <source>C Du.</source>
         <extracomment>C Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>C Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="277"/>
         <source>B Duduk</source>
-        <translation type="unfinished"/>
+        <translation>B Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="279"/>
         <source>B Du.</source>
         <extracomment>B Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>B Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="280"/>
         <source>Bâ™­ Duduk</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="282"/>
         <source>Bâ™­ Du.</source>
         <extracomment>Bâ™­ Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="283"/>
         <source>A Duduk</source>
-        <translation type="unfinished"/>
+        <translation>A Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="285"/>
         <source>A Du.</source>
         <extracomment>A Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>A Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="286"/>
         <source>G Duduk</source>
-        <translation type="unfinished"/>
+        <translation>G Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="288"/>
         <source>G Du.</source>
         <extracomment>G Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>G Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="289"/>
         <source>A Bass Duduk</source>
-        <translation type="unfinished"/>
+        <translation>A Bass Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="291"/>
         <source>A B. Du.</source>
         <extracomment>A Bass Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>A B. Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="292"/>
         <source>Soprano Kelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Kelhorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="294"/>
         <source>S. Kh.</source>
         <extracomment>Soprano Kelhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Kh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="295"/>
         <source>Alto Kelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Alt Kelhorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="297"/>
         <source>A. Kh.</source>
         <extracomment>Alto Kelhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Kh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="298"/>
         <source>Tenor Kelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Kelhorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="300"/>
         <source>T. Kh.</source>
         <extracomment>Tenor Kelhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Kh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="301"/>
         <source>Bass Kelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Bass Kelhorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="303"/>
         <source>B. Kh.</source>
         <extracomment>Bass Kelhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Kh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="304"/>
         <source>Greatbass Kelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Stór- bass Kelhorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="306"/>
         <source>Gb. Kh.</source>
         <extracomment>Greatbass Kelhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gb. Kh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="307"/>
         <source>Rauschpfeife</source>
-        <translation type="unfinished"/>
+        <translation>Rauschpfeife</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="309"/>
         <source>Rpf.</source>
         <extracomment>Rauschpfeife</extracomment>
-        <translation type="unfinished"/>
+        <translation>Rpf.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="310"/>
         <source>Sopranino Rauschpfeife</source>
-        <translation type="unfinished"/>
+        <translation>Sopranino Rauschpfeife</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="312"/>
         <source>Si. Rpf.</source>
         <extracomment>Sopranino Rauschpfeife</extracomment>
-        <translation type="unfinished"/>
+        <translation>Si. Rpf.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="313"/>
         <source>Soprano Rauschpfeife</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Rauschpfeife</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="315"/>
         <source>S. Rpf.</source>
         <extracomment>Soprano Rauschpfeife</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Rpf.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="316"/>
         <source>Shenai</source>
-        <translation type="unfinished"/>
+        <translation>Shenai</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
 Sheng</extracomment>
-        <translation type="unfinished"/>
+        <translation>She.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="319"/>
         <source>Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Klarinett</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="321"/>
         <source>Cl.</source>
         <extracomment>Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="322"/>
         <source>Piccolo Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Piccolo Klarinett</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="324"/>
         <source>P. Cl.</source>
         <extracomment>Piccolo Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>P. Kl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="325"/>
         <source>Soprano Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Klarinett</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="327"/>
         <source>S. Cl.</source>
         <extracomment>Soprano Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Kl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
-        <translation type="unfinished"/>
+        <source>C Clarinet</source>
+        <translation>C Klarinett</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>C Kl.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation>D Klarinett</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>D Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>A Klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>A Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Alt Klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Basset Klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ba. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
-        <translation type="unfinished"/>
+        <translation>Basset Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ba. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Bass Klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Kontra-alt Klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>K-a. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabass Klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Sopranino Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>Si. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Alt Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Bass Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
-        <translation type="unfinished"/>
+        <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
-        <translation type="unfinished"/>
+        <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
-        <translation type="unfinished"/>
+        <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
-        <translation type="unfinished"/>
+        <translation>Fagott</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
-        <translation type="unfinished"/>
+        <translation>Fgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
-        <translation type="unfinished"/>
+        <translation>Kontrafagott</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kfgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
-        <translation type="unfinished"/>
+        <translation>Reed Kontrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
-        <translation type="unfinished"/>
+        <translation>Rd. Kbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
-        <translation type="unfinished"/>
+        <translation>Dulcian</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
-        <translation type="unfinished"/>
+        <translation>Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopranino Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Si. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Alt Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Baritone Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bar. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Bass Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabass Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cb. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopranissimo Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sio. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopranino Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Si. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
-        <translation type="unfinished"/>
+        <translation>Aulochrome</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
-        <translation type="unfinished"/>
+        <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Mezzo-Sopran Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>M.S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Alt Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Melody Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mel. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Baritone Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bar. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Bass Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabass Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Subkontrabass Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Scb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
-        <translation type="unfinished"/>
+        <translation>Sekkjapípa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sekj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
-        <translation type="unfinished"/>
+        <translation>Free Reed</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1710,2691 +1721,2690 @@ Sheng</extracomment>
 20 Hole Chordet Harmonica
 ----------
 Harmonium</extracomment>
-        <translation type="unfinished"/>
+        <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>12 Hol C kromatisk harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>14 Hol C kromatisk harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>12 Hol G kromatisk harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>16 Hol C kromatisk harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>12 Hol tenor C kromatisk harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>10 Hol høg G diatonisk harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>10 Hol F diatonisk harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>10 Hol D diatonisk harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>10 Hol C diatonisk harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>10 Hol A diatonisk harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>10 Hol G diatonisk harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>10 Hol lág D diatonisk harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>20 Hol Kordett harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>Bass harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
 Bass Hohner Harmonica
 ----------
 Bass Huang Harmonica</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bs. Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>Bass Hohner Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>Bass Huang Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
-        <translation type="unfinished"/>
+        <translation>Akkordion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
-        <translation type="unfinished"/>
+        <translation>Akk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
-        <translation type="unfinished"/>
+        <translation>Bandoneon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
-        <translation type="unfinished"/>
+        <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
-        <translation type="unfinished"/>
+        <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
-        <translation type="unfinished"/>
+        <translation>Melodica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
-        <translation type="unfinished"/>
+        <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
-        <translation type="unfinished"/>
+        <translation>S She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
-        <translation type="unfinished"/>
+        <translation>Alt Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
-        <translation type="unfinished"/>
+        <translation>A She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
-        <translation type="unfinished"/>
+        <translation>T She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
-        <translation type="unfinished"/>
+        <translation>Bass Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
-        <translation type="unfinished"/>
+        <translation>B She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
-        <translation type="unfinished"/>
+        <translation>Messing</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mes.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
-        <translation type="unfinished"/>
+        <translation>Horn í F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
-        <translation type="unfinished"/>
+        <translation>F Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
-        <translation type="unfinished"/>
+        <translation>Høgt C Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
-        <translation type="unfinished"/>
+        <translation>H. C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Horn í B♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
-        <translation type="unfinished"/>
+        <translation>Horn í A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
-        <translation type="unfinished"/>
+        <translation>A Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Horn í A♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
-        <translation type="unfinished"/>
+        <translation>Horn í G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
-        <translation type="unfinished"/>
+        <translation>G Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
-        <translation type="unfinished"/>
+        <translation>E Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
-        <translation type="unfinished"/>
+        <translation>E Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Horn í E♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
-        <translation type="unfinished"/>
+        <translation>Horn í D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
-        <translation type="unfinished"/>
+        <translation>Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
-        <translation type="unfinished"/>
+        <translation>Horn í C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
-        <translation type="unfinished"/>
+        <translation>C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
-        <translation type="unfinished"/>
+        <translation>Wien Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
-        <translation type="unfinished"/>
+        <translation>W. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
-        <translation type="unfinished"/>
+        <translation>Horn í B♭ basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ ba Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Kornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Knt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>mute</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Kornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Knt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Saxhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
-        <translation type="unfinished"/>
+        <translation>F Alt Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
-        <translation type="unfinished"/>
+        <translation>F A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Alt Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
-        <translation type="unfinished"/>
+        <translation>Baritone Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bar. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
-        <translation type="unfinished"/>
+        <translation>Baritone Horn (G lykil)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
-        <translation type="unfinished"/>
+        <translation>Posthorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Psthn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
-        <translation type="unfinished"/>
+        <translation>Alpuhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>AlpHn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Piccolo Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
-        <translation type="unfinished"/>
+        <translation>P. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Piccolo Trompet í B♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
-        <translation type="unfinished"/>
+        <translation>P. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
-        <translation type="unfinished"/>
+        <translation>Piccolo Trompet í A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
-        <translation type="unfinished"/>
+        <translation>P. Tpt. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>D Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
-        <translation type="unfinished"/>
+        <translation>D Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>C Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
-        <translation type="unfinished"/>
+        <translation>C Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Pocket Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Pkt. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Slide Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sl.Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tnr. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Bass Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Bass Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
-        <translation type="unfinished"/>
+        <translation>Bass Trompet í C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Bass Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Barokk Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bk. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
-        <translation type="unfinished"/>
+        <translation>Barokk Trompet í F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bk. Tpt. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Barokk Trompet í E♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bk. Tpt. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
-        <translation type="unfinished"/>
+        <translation>Barokk Trompet í D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bk. Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
-        <translation type="unfinished"/>
+        <translation>Barokk Trompet í C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bk. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Barokk Trompet í B♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bk. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
-        <translation type="unfinished"/>
+        <translation>Rag Dung</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
-        <translation type="unfinished"/>
+        <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
-        <translation type="unfinished"/>
+        <translation>Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
-        <translation type="unfinished"/>
+        <translation>Soprano Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sop. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
-        <translation type="unfinished"/>
+        <translation>Alt Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Alt. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
-        <translation type="unfinished"/>
+        <translation>Baritone Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bar. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Flugelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Flghn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
-        <translation type="unfinished"/>
+        <translation>Fiscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
-        <translation type="unfinished"/>
+        <translation>Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
-        <translation type="unfinished"/>
+        <translation>Euphonium Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
-        <translation type="unfinished"/>
+        <translation>Mellophone Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mel. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabass Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kon. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
-        <translation type="unfinished"/>
+        <translation>Mellophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
-        <translation type="unfinished"/>
+        <translation>Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
-        <translation type="unfinished"/>
+        <translation>Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
-        <translation type="unfinished"/>
+        <translation>F Alt Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
-        <translation type="unfinished"/>
+        <translation>F A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Alt Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
-        <translation type="unfinished"/>
+        <translation>C Bass Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
-        <translation type="unfinished"/>
+        <translation>C B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Bass Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Kontrabass Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Kb. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
-        <translation type="unfinished"/>
+        <translation>Kornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
 Cornett
 ----------
 Congas</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
-        <translation type="unfinished"/>
+        <translation>Kornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Kornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
-        <translation type="unfinished"/>
+        <translation>Alt Kornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Kornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
-        <translation type="unfinished"/>
+        <translation>Serpent</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
-        <translation type="unfinished"/>
+        <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombone (G lykil)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Alt Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Bass Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabass Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
-        <translation type="unfinished"/>
+        <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
-        <translation type="unfinished"/>
+        <translation>Euphonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Euphonium (G lykil)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
-        <translation type="unfinished"/>
+        <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
-        <translation type="unfinished"/>
+        <translation>F Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <source>Euph. Bu.</source>
+        <extracomment>Euphonium Bugle</extracomment>
+        <translation>Euph. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
-        <source>Euph. Bu.</source>
-        <extracomment>Euphonium Bugle</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
+        <translation>Euph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>F Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ Tuba (G lykil)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
-        <translation type="unfinished"/>
+        <translation>C Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>C Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Tuba (G lykil)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
-        <translation type="unfinished"/>
+        <translation>Bass Tuba í F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ba. Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Bass Tuba í E♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ba. Tu. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
-        <translation type="unfinished"/>
+        <translation>Sub-Kontrabass Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>SKB. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
-        <translation type="unfinished"/>
+        <translation>Helicon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
-        <translation type="unfinished"/>
+        <translation>Sousaphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
-        <translation type="unfinished"/>
+        <translation>Wagner Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Wagner Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
-        <translation type="unfinished"/>
+        <translation>F Wagner Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>F Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
-        <translation type="unfinished"/>
+        <translation>Conch</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
-        <translation type="unfinished"/>
+        <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
-        <translation type="unfinished"/>
+        <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
-        <translation type="unfinished"/>
+        <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
-        <translation type="unfinished"/>
+        <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
-        <translation type="unfinished"/>
+        <translation>Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
-        <translation type="unfinished"/>
+        <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
-        <translation type="unfinished"/>
+        <translation>Tóna Percussion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
-        <translation type="unfinished"/>
+        <translation>Timpani</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
-        <translation type="unfinished"/>
+        <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
-        <translation type="unfinished"/>
+        <translation>Roto-tommur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
-        <translation type="unfinished"/>
+        <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
-        <translation type="unfinished"/>
+        <translation>Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
-        <translation type="unfinished"/>
+        <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
-        <translation type="unfinished"/>
+        <translation>Orff Sopran Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
-        <translation type="unfinished"/>
+        <translation>O. S. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
-        <translation type="unfinished"/>
+        <translation>Orff Alt Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
-        <translation type="unfinished"/>
+        <translation>O. A. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
-        <translation type="unfinished"/>
+        <translation>Krotales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
-        <translation type="unfinished"/>
+        <translation>Tubaphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
-        <translation type="unfinished"/>
+        <translation>Almglocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
-        <translation type="unfinished"/>
+        <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
-        <translation type="unfinished"/>
+        <translation>Vibraphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
-        <translation type="unfinished"/>
+        <translation>Metallophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
-        <translation type="unfinished"/>
+        <translation>Orff Sopran Metallophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>O. S. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
-        <translation type="unfinished"/>
+        <translation>Orff Alt Metallophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>O. A. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
-        <translation type="unfinished"/>
+        <translation>Orff Bass Metallophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>O. B. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
-        <translation type="unfinished"/>
+        <translation>Rør Klokkur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
-        <translation type="unfinished"/>
+        <translation>Rø. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
-        <translation type="unfinished"/>
+        <translation>Stál Trummur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
-        <translation type="unfinished"/>
+        <translation>St. Tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Stál Trummur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
-        <translation type="unfinished"/>
+        <translation>Alt Stál Trummur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
-        <translation type="unfinished"/>
+        <translation>Guitar Stál Trummur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gtr. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Stál Trummur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
-        <translation type="unfinished"/>
+        <translation>Sello Stál Trummur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
-        <translation type="unfinished"/>
+        <translation>Se. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
-        <translation type="unfinished"/>
+        <translation>Bass Stál Trummur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
-        <translation type="unfinished"/>
+        <translation>Hand Bells</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ha. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
-        <translation type="unfinished"/>
+        <translation>Stilla Gong</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
-        <translation type="unfinished"/>
+        <translation>St. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
-        <translation type="unfinished"/>
+        <translation>Flexatone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
-        <translation type="unfinished"/>
+        <translation>Tóna sað</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tó. Sg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
-        <translation type="unfinished"/>
+        <translation>Tóna Gløs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tó. Gl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>Glas Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gla. Har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
-        <translation type="unfinished"/>
+        <translation>Xylophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
-        <translation type="unfinished"/>
+        <translation>Orff Sopran Xylophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>O. S. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
-        <translation type="unfinished"/>
+        <translation>Orff Alt Xylophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>O. A. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
-        <translation type="unfinished"/>
+        <translation>Orff Bass Xylophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>O. B. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
-        <translation type="unfinished"/>
+        <translation>Xylomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
-        <translation type="unfinished"/>
+        <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
-        <translation type="unfinished"/>
+        <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
-        <translation type="unfinished"/>
+        <translation>Bass Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
-        <translation type="unfinished"/>
+        <translation>Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
-        <translation type="unfinished"/>
+        <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
-        <translation type="unfinished"/>
+        <translation>Stilla Klaxon Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
-        <translation type="unfinished"/>
+        <translation>St. Klx. Hns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
-        <translation type="unfinished"/>
+        <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
-        <translation type="unfinished"/>
+        <translation>Diskant Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Dis. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
-        <translation type="unfinished"/>
+        <translation>Alt Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
-        <translation type="unfinished"/>
+        <translation>nóta Percussion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>drumset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
-        <translation type="unfinished"/>
+        <translation>Trs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
-        <translation type="unfinished"/>
+        <translation>Snare Trumma</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sn. Tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bass Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
-        <translation type="unfinished"/>
+        <translation>Piccolo Snare Trumma</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
-        <translation type="unfinished"/>
+        <translation>P. Sn. Tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
-        <translation type="unfinished"/>
+        <translation>Militer Trumma</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mil. Tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
-        <translation type="unfinished"/>
+        <translation>Tom Tommur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tommur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
-        <translation type="unfinished"/>
+        <translation>Kina Tom-tommur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ki. To.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
-        <translation type="unfinished"/>
+        <translation>Bongur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
-        <translation type="unfinished"/>
+        <translation>Kongas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
-        <translation type="unfinished"/>
+        <translation>Timbales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
-        <translation type="unfinished"/>
+        <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
-        <translation type="unfinished"/>
+        <translation>Rammu Trumma</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ra. Tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
-        <translation type="unfinished"/>
+        <translation>Tablas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
-        <translation type="unfinished"/>
+        <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
-        <translation type="unfinished"/>
+        <translation>Fingur Symbals</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
-        <translation type="unfinished"/>
+        <translation>Fi. Sym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
-        <translation type="unfinished"/>
+        <translation>Hi-hattur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tam-tammir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
-        <translation type="unfinished"/>
+        <translation>Klokkur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
-        <translation type="unfinished"/>
+        <translation>Sledu klokkur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sle. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
-        <translation type="unfinished"/>
+        <translation>Klokku Pláta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kl. Plá.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
-        <translation type="unfinished"/>
+        <translation>Bukkaðar Gongur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bu. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
-        <translation type="unfinished"/>
+        <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
-        <translation type="unfinished"/>
+        <translation>Metall kastanettur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
-        <translation type="unfinished"/>
+        <translation>Met. Kst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
-        <translation type="unfinished"/>
+        <translation>Automobile Brake Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
-        <translation type="unfinished"/>
+        <translation>Aut. Brk. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
-        <translation type="unfinished"/>
+        <translation>Jarn Rør</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
-        <translation type="unfinished"/>
+        <translation>Jr. Rø.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
-        <translation type="unfinished"/>
+        <translation>Ketur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ket.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
-        <translation type="unfinished"/>
+        <translation>Anvil</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
-        <translation type="unfinished"/>
+        <translation>Anv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
-        <translation type="unfinished"/>
+        <translation>Wood Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
-        <translation type="unfinished"/>
+        <translation>Wd. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
-        <translation type="unfinished"/>
+        <translation>Temple Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Symbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Ride Symbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
-        <translation type="unfinished"/>
+        <translation>R. Sym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Kina bekkari</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ki. Sym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Krasj Symbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kr. Sym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Splash Bekkari</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sp. Sym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
-        <translation type="unfinished"/>
+        <translation>Kúklokkar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kúk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
-        <translation type="unfinished"/>
+        <translation>Klaves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
-        <translation type="unfinished"/>
+        <translation>Klv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
-        <translation type="unfinished"/>
+        <translation>Kastanettir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
-        <translation type="unfinished"/>
+        <translation>Guiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
-        <translation type="unfinished"/>
+        <translation>Marakas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
-        <translation type="unfinished"/>
+        <translation>Kabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
-        <translation type="unfinished"/>
+        <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
-        <translation type="unfinished"/>
+        <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
-        <translation type="unfinished"/>
+        <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
-        <translation type="unfinished"/>
+        <translation>Slit Trumma</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
-        <translation type="unfinished"/>
+        <translation>Slt. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
-        <translation type="unfinished"/>
+        <translation>Pískur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
-        <translation type="unfinished"/>
+        <translation>Pí.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
-        <translation type="unfinished"/>
+        <translation>Ratchet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Rat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
-        <translation type="unfinished"/>
+        <translation>Thundersheet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
-        <translation type="unfinished"/>
+        <translation>Sandpaper Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sa. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
-        <translation type="unfinished"/>
+        <translation>Wooden Wind Chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
-        <translation type="unfinished"/>
+        <translation>Wd. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
-        <translation type="unfinished"/>
+        <translation>Bamboo Wind Chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bam. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
-        <translation type="unfinished"/>
+        <translation>Metal Wind Chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
-        <translation type="unfinished"/>
+        <translation>Met. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
-        <translation type="unfinished"/>
+        <translation>Glass Wind Chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gl. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
-        <translation type="unfinished"/>
+        <translation>Shell Wind Chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sh. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
-        <translation type="unfinished"/>
+        <translation>Steinar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
-        <translation type="unfinished"/>
+        <translation>Stei.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
-        <translation type="unfinished"/>
+        <translation>Finger Snap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
-        <translation type="unfinished"/>
+        <translation>Fi. Sna.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
-        <translation type="unfinished"/>
+        <translation>Hond klapp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
-        <translation type="unfinished"/>
+        <translation>Hd. Clp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
-        <translation type="unfinished"/>
+        <translation>Slag</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
-        <translation type="unfinished"/>
+        <translation>Stamp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tambourine</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
-        <translation type="unfinished"/>
+        <translation>Marching Percussion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
-        <translation type="unfinished"/>
+        <translation>SD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Trummur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
-        <translation type="unfinished"/>
+        <translation>TT</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
-        <translation type="unfinished"/>
+        <translation>Bass Trummur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
-        <translation type="unfinished"/>
+        <translation>BT</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
-        <translation type="unfinished"/>
+        <translation>Symbalir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
-        <translation type="unfinished"/>
+        <translation>Røddir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
-        <translation type="unfinished"/>
+        <translation>Rødd</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
-        <translation type="unfinished"/>
+        <translation>Rø.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
-        <translation type="unfinished"/>
+        <translation>Dreingja Sopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
-        <translation type="unfinished"/>
+        <translation>D. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
-        <translation type="unfinished"/>
+        <translation>Sopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
-        <translation type="unfinished"/>
+        <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
-        <translation type="unfinished"/>
+        <translation>Mezzo-sopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
-        <translation type="unfinished"/>
+        <translation>Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
-        <translation type="unfinished"/>
+        <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
-        <translation type="unfinished"/>
+        <translation>Kontralt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kontr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
-        <translation type="unfinished"/>
+        <translation>Kontratenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
-        <translation type="unfinished"/>
+        <translation>kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
-        <translation type="unfinished"/>
+        <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
-        <translation type="unfinished"/>
+        <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
-        <translation type="unfinished"/>
+        <translation>Baritone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
-        <translation type="unfinished"/>
+        <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
-        <translation type="unfinished"/>
+        <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
-        <translation type="unfinished"/>
+        <translation>Keyboard</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
-        <translation type="unfinished"/>
+        <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
 Grand Piano
 ----------
 Upright Piano</extracomment>
-        <translation type="unfinished"/>
+        <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
-        <translation type="unfinished"/>
+        <translation>Flygil</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
-        <translation type="unfinished"/>
+        <translation>Vanligt Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
-        <translation type="unfinished"/>
+        <translation>Honky Tonk Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
-        <translation type="unfinished"/>
+        <translation>Hnk. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
-        <translation type="unfinished"/>
+        <translation>Leikitoys Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
-        <translation type="unfinished"/>
+        <translation>Lei Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
-        <translation type="unfinished"/>
+        <translation>Klavichord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
-        <translation type="unfinished"/>
+        <translation>Harpsichord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
-        <translation type="unfinished"/>
+        <translation>Hch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
-        <translation type="unfinished"/>
+        <translation>Virginal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
-        <translation type="unfinished"/>
+        <translation>Selesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
-        <translation type="unfinished"/>
+        <translation>Elektriskt Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
-        <translation type="unfinished"/>
+        <translation>El. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
-        <translation type="unfinished"/>
+        <translation>Klavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Klav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
-        <translation type="unfinished"/>
+        <translation>Orgul</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
 Pipe Organ</extracomment>
-        <translation type="unfinished"/>
+        <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
-        <translation type="unfinished"/>
+        <translation>Percussivt Orgul</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
-        <translation type="unfinished"/>
+        <translation>Perc. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
-        <translation type="unfinished"/>
+        <translation>Hammond Orgul</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
-        <translation type="unfinished"/>
+        <translation>Hm. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
-        <translation type="unfinished"/>
+        <translation>Rotary Orgul</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
-        <translation type="unfinished"/>
+        <translation>Rot. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
-        <translation type="unfinished"/>
+        <translation>Pípu Orgul</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
-        <translation type="unfinished"/>
+        <translation>Harmonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
-        <translation type="unfinished"/>
+        <translation>Reed Orgul</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
-        <translation type="unfinished"/>
+        <translation>Rd. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
-        <translation type="unfinished"/>
+        <translation>Elektronisk ljóðføri</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Effect Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4457,901 +4476,1056 @@ Bass Synthesizer
 Brass Synthesizer
 ----------
 String Synthesizer</extracomment>
-        <translation type="unfinished"/>
+        <translation>Synth.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>rain</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>soundtrack</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>crystal</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>atmosphere</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>brightness</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>goblins</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>echoes</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>scifi</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Atmosphere Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Brightness Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Crystal Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Echoes Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Goblins Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Rain Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Sci-fi Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Soundtrack Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Pad Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>new age</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>warm</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>polysynth</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>choir</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>bowed</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>metallic</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>halo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>sweep</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>New Age Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Warm Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Poly Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Choir Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Bowed Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Metallic Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Halo Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Sweep Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Saw Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Sine Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Square Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
-        <translation type="unfinished"/>
+        <translation>Ondes Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
-        <translation type="unfinished"/>
+        <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Mallet Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mal. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Bass Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>synth-bass-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>synth-bass-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
         <source>Brass Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Brass Synthesizer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>synth-brass-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>synth-brass-2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>String Synthesizer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>synth-string-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>synth-string-2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
-        <translation type="unfinished"/>
+        <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
-        <translation type="unfinished"/>
+        <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Percussion Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
-        <translation type="unfinished"/>
+        <translation>Perc. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
-        <translation type="unfinished"/>
+        <translation>Plucked Strings</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
-        <translation type="unfinished"/>
+        <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Banjo [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>Piccolo Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
-        <translation type="unfinished"/>
+        <translation>Pic. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>Prima Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
-        <translation type="unfinished"/>
+        <translation>Pr. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>Secunda Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sec. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>Alto Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
-        <translation type="unfinished"/>
+        <translation>Al. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>Bass Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>Contrabass Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
-        <translation type="unfinished"/>
+        <translation>CB. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
-        <translation type="unfinished"/>
+        <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
-        <translation type="unfinished"/>
+        <translation>Bouzouki (3-course)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
-        <translation type="unfinished"/>
+        <translation>Bouzouki (4-course)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
-        <translation type="unfinished"/>
+        <translation>Sopran Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
-        <translation type="unfinished"/>
+        <translation>Alt Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
-        <translation type="unfinished"/>
+        <translation>Klassiskur Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
 Acoustic Guitar</extracomment>
-        <translation type="unfinished"/>
+        <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Klassiskur Guitar [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
-        <translation type="unfinished"/>
+        <translation>Akkustiskur Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Akkustiskur Guitar [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
-        <translation type="unfinished"/>
+        <translation>11-strong Alt Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
-        <translation type="unfinished"/>
+        <translation>11-str. A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
-        <translation type="unfinished"/>
+        <translation>12-strong Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
-        <translation type="unfinished"/>
+        <translation>12-str. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
-        <translation type="unfinished"/>
+        <translation>Pedal Steel Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
-        <translation type="unfinished"/>
+        <translation>Elektriskur Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
-        <translation type="unfinished"/>
+        <translation>El. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Elektriskur Guitar [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
-        <translation type="unfinished"/>
+        <translation>Harpa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
-        <translation type="unfinished"/>
+        <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
-        <translation type="unfinished"/>
+        <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
-        <translation type="unfinished"/>
+        <translation>Lutt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Lutt [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
-        <translation type="unfinished"/>
+        <translation>Lutt 5-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
-        <translation type="unfinished"/>
+        <translation>Lutt 6-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
-        <translation type="unfinished"/>
+        <translation>Lutt 7-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
-        <translation type="unfinished"/>
+        <translation>Lutt 8-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
-        <translation type="unfinished"/>
+        <translation>Lutt 9-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
-        <translation type="unfinished"/>
+        <translation>Lutt 10-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
-        <translation type="unfinished"/>
+        <translation>Lutt 13-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation type="unfinished"/>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
-        <translation type="unfinished"/>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>tremolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
-        <translation type="unfinished"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
+        <translation>5-str. Elektrisk Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation type="unfinished"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
+        <translation>5-str. Elektrisk Bass [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation type="unfinished"/>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
-        <translation type="unfinished"/>
+        <translation>Violinir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vlnr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
-        <translation type="unfinished"/>
+        <translation>Bratsjir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
-        <translation type="unfinished"/>
+        <translation>Braj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
-        <translation type="unfinished"/>
+        <translation>Sello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sell.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabassar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
-        <translation type="unfinished"/>
+        <extracomment>Double Bass</extracomment>
+        <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
-        <translation type="unfinished"/>
+        <translation>Viola da gamba (Tablature)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
-        <translation type="unfinished"/>
+        <translation>Archlute</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Gamal tónleikur</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Bâ™­ Fife</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
-        <translation type="unfinished"/>
+        <translation>Theorbo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
-        <translation type="unfinished"/>
+        <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
-        <translation type="unfinished"/>
+        <translation>Mandolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mdn.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolin [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
-        <translation type="unfinished"/>
+        <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
 Alto Mandola
 ----------
 Tenor Mandola</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
-        <translation type="unfinished"/>
+        <translation>Alt Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
-        <translation type="unfinished"/>
+        <translation>Mandocello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
-        <translation type="unfinished"/>
+        <translation>Octave Mandolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
-        <translation type="unfinished"/>
+        <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
-        <translation type="unfinished"/>
+        <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
-        <translation type="unfinished"/>
+        <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
-        <translation type="unfinished"/>
+        <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
-        <translation type="unfinished"/>
+        <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
-        <translation type="unfinished"/>
+        <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Ukulele [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ten. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
-        <translation type="unfinished"/>
+        <translation>Baritone Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bar. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
-        <translation type="unfinished"/>
+        <translation>Bass Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Bass Guitar [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
-        <translation type="unfinished"/>
+        <translation>Akkustiskur Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
-        <translation type="unfinished"/>
+        <translation>Elektriskur Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
 5-str. Electric Bass</extracomment>
-        <translation type="unfinished"/>
+        <translation>El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Elektriskur Bass [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
-        <translation type="unfinished"/>
+        <translation>Bandleysur Elektriskur Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
-        <translation type="unfinished"/>
+        <translation>Badl. El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
-        <translation type="unfinished"/>
+        <translation>Strings</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
-        <translation type="unfinished"/>
+        <translation>Violin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
-        <translation type="unfinished"/>
+        <translation>Bratsj</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
-        <translation type="unfinished"/>
+        <translation>Brj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
-        <translation type="unfinished"/>
+        <translation>Sello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
-        <translation type="unfinished"/>
+        <translation>Double Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
-        <translation type="unfinished"/>
+        <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
-        <translation type="unfinished"/>
+        <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
-        <translation type="unfinished"/>
+        <translation>Diskant Viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ds. vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
-        <translation type="unfinished"/>
+        <translation>Alt Viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
-        <translation type="unfinished"/>
+        <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
 Viola da gamba (Tab)</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
-        <translation type="unfinished"/>
+        <translation>Viola da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
-        <translation type="unfinished"/>
+        <translation>Violone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
 D Violone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
-        <translation type="unfinished"/>
+        <translation>D Violone</translation>
     </message>
 </context>
 </TS>
\ No newline at end of file
diff --git a/share/locale/instruments_fr.ts b/share/locale/instruments_fr.ts
index 05cf51a..4ad4ef9 100644
--- a/share/locale/instruments_fr.ts
+++ b/share/locale/instruments_fr.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>Clarinette en Do</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>Cl. Do</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Clarinette en Ré</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>Clar. Ré</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Clarinette en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Clar. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Clarinette en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Clar. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>Clarinette en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>Clar. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Clarinette Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>Clar. alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Clarinette de basset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Clar. de ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Cor de basset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Cor de ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Clarinette Basse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>Cl. basse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Clarinette Contre-Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Clar. c-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Clarinette Contrebasse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Clar. Ctbasse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Chalumeau Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Cha. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Chalumeau Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>Cha. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Chalumeau Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>Cha. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Chalumeau Ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>Cha. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Chalumeau Basse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>Cha. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Taragote</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Basson</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Bsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Contrebasson</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cbsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Contrebasse à anche</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Cbs. à anche</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Douçaine</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Cervelas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Cer.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrussophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sarrussophone Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Sar. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sarrussophone Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>Sar. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Sarrussophone Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>Sar. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Sarrussophone Ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>Sar. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Sarrussophone Baryton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Sar. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Sarrussophone Basse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>Sar. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Sarrussophone Contrebasse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Sar. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Saxophone Sopranissimo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sax. Sio.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Saxophone Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Sax. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Saxophone Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>Sax. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulochrome</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Saxophone mezzo-soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>Sax. M.S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Saxophone Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>Sax. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Saxophone C-Melody</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Sax. Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Saxophone Ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>Sax. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Saxophone Baryton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Sax. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Saxophone basse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>Sax. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Saxophone Contrebasse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Sax. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Saxophone Sub-Contrabasse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Sax. Scb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Cornemuse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Cnm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Anche libre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>Harmonica chromatique en Do 12 trous</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>Harmonica chromatique en Do 14 trous</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>Harmonica chromatique en Sol 12 trous</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>Harmonica chromatique en Sol 16 trous</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>Harmonica chromatique en Do Ténor 12 trous</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>Harmonica diatonique en Sol aigu 10 trous</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>Harmonica diatonique en Fa 10 trous</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>Harmonica diatonique en Ré 10 trous</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>Harmonica diatonique en Do 10 trous</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>Harmonica diatonique en La 10 trous</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>Harmonica diatonique en Sol 10 trous</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>Harmonica diatonique en Ré grave 10 trous</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>Harmonica Chordet 20 trous</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Harmonica Basse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Harm. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Harmonica Basse Hohner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Harmonica Basse Huang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Accordéon </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandonéon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Mélodica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mél.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sheng Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>She. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Sheng Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>She. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Sheng Ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>She. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Sheng Basse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>She. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Cuivres</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Cui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Cor en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>Cor Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Cor en Do aigu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>Cor Do aigu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Cor en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Cor Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Cor en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>Cor La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Cor en Laâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Cor Laâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Cor en Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>Cor Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Cor en Mi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>Cor Mi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Cor en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Cor Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Cor en Ré</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Cor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Cor en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>Cor Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Cor viennois</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>Cor vie.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Cor en Siâ™­ grave</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Cor Siâ™­ g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Cornet en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Cnt. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>muet</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Cornet en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Cnt. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Saxhorn alto en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>Saxh. A. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Saxhorn alto en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Saxh. A. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Cor baryton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Cor Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Cor baryton (clé de Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Cor postal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Cor po.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Cor des Alpes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>Cor Alp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trompette</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tromp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Trompette piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>Tromp. pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Trompette piccolo en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>Tromp. pic Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Trompette piccolo en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>Tromp. pic La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Trompette en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Tromp. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>Trompette en Ré</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>Tromp. Ré</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>Trompette en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>Tromp. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Trompette en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Tromp. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Trompette de poche</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Tromp. po.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Trompette à coulisse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Tromp. coul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Trompette ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tromp. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Trompette basse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>Tromp. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Trompette basse en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Tromp. B. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Trompette basse en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>Tromp. B. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Trompette basse en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Tromp. B. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Trompette baroque</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Tromp. bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Trompette baroque en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Tromp. bar. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Trompette baroque en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Tromp. bar. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Trompette baroque en Ré</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Tromp. bar. Ré</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Trompette baroque en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Tromp. bar. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Trompette baroque en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Tromp. bar. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Dungchen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Dgc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Clairon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Clairon Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Cl. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Clairon Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Cl. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Clairon Baryton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Cl. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Clairon Euphonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Clairon Mellophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Cl. Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Clairon Contrebasse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Cl. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Mellophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Ophicléide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Ophicléide Alto en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>Oph. A. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Ophicléide Alto en Mi♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Oph. A. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>Ophicléide Basse en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>Oph. B. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Ophicléide Alto en Si♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Oph. B. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Ophicléide Contrebasse en Mi♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Oph. Cb. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Cio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Cornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Cornet Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>Co. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Cornet Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>Co. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Cornet Ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>Co. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpent</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombone (clé de Sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Trombone soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>Trb. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Trombone alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>Trb. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Trombone ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>Trb. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Trombone basse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>Trb. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Trombone contrebasse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Trb. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Euphonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Euphonium (clé de Sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Tuba en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Musique ancienne</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Fifre en Siâ™­</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Bu. Euph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombone (clé de Sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Euph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Euphonium (clé de Sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>Tu. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Tuba en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Tu. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba en Mi♭ (clé de Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Tuba en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>Tu. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Tuba en Siâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Tu. Siâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba en Si♭ (clé de Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Tuba Basse en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Tu. B. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Tuba Basse en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Tu. B. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Tuba sous-contrebasse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>Tu. SCb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Hélicon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousaphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Tuba wagnérien</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Tu. wa.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Tuba wagnérien en Si♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Tu. wa. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>Tuba wagnérien en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>Tu. wa. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Conque</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Conq.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Chofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Cho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Percussion à son déterminé</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Timbales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Roto-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Glockenspiel </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Glockenspiel Soprano Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>Glk. S. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Glockenspiel Alto Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>Glk. A. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crotales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubaphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Almglocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibraphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Métallophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Mét.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Métallophone Soprano Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>Mét. S. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Métallophone Alto Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>Mét. A. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Métallophone Basse ORff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>Mét. B. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Cloches tubulaires</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Cl. tub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Steeldrum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St.dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Steeldrum Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>St.dr. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Steeldrum Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>St.dr. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Steeldrum Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>St.dr Gtr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Steeldrum Ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>St.dr. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Steeldrum Cello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>St.dr. C.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Steeldrum Basse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>St.dr. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Cloches à mains</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Cl. ma.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Gongs accordés</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Go. acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexatone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Scie musicale</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Scie</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Verres musicaux</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Vrs. Mcx.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Harmonica de verre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Harm. ver.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xylophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Xylophone Soprano Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>Xyl. S. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Xylophone Alto Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>Xyl. A. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Xylophone Basse Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>Xyl. B. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xylomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Marimba basse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>Mrm. B</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Klaxon accordés. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Klx. acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Kalimba aigue</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Kal. Aig.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Kalimba Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>Kal. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Percussion à son indéterminé</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Batterie</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Batt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Caisse claire</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>C.Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Grosse caisse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>Gr. C.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Caisse claire piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>C. Cl. P.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Tambour militaire</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Tbr. mil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Toms-toms chinois</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>To. ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Congas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbales latines</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Tambour sur cadre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>T. cad.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tablas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Cymbales à doigts</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Cymb. dgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Charleston</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Cloches</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Clochettes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Clo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Cloche plaque</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Cl. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Bols chantants</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Bo. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Castagnettes métalliques</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Cst. mét.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Tambour de freins automobiles.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Tbr. fr. aut.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Tubes d'acier</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Tub. ac.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Chaînes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Chn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Enclume</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Encl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Wood Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Wd. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Temple Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Cymbale</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Cymbale ride</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>Cym. r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Cymbale chinoise</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Cym. ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Cymbale crash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cym. cr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Cymbale splash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Cym. sp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Cloche</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Clo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Castagnettes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Guiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mcrs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibspl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Tambour à fente</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Tbr. fe.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Fouet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Fou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Crécelle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Cré.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Tonnerre </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Ton.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Papiers sablés</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Pap. sab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Carillon en bois</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Car. bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Carillon en bambou</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Car. bam.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Carillon en métal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Car. mét.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Carillon en verre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Car. ver.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Carillon en coquillages.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Car. coq.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Pierres</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Pie.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Claquer des doigts</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Claq. dgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Frapper dans les mains</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Frap. ma.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Slap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Timbre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Tim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tambourin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Percussion de fanfare</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>CC</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tambours ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TT</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Grosses caisses</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>GC</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Cymbales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Cy.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Chœurs </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Voix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vx.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Soprano de garçon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>S. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzo-soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Contre-alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Contre-ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Baryton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Claviers</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pia.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Piano à queue</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Piano droit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Piano Honky Tonk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Pia. Hnk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Piano jouet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Piano jouet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Clavicorde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Clavecin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Cla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Célesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cél.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Piano électrique</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>Pia. él.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Orgue</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Orgue percussif</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Org. perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Orgue Hammond</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Org. Hm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Orgue rotatif</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Org. rot.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Orgue à tuyaux</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Orgue à anches</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Org. à anche</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Instruments électroniques </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Synthétiseur d'effets</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synth.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>pluie</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>bande sonore</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>cristal</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>atmosphère</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>luminosité</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>échos</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>sci-fi</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Synthétiseur d'atmosphère</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Synthétiseur brillant</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Synthétiseur cristalin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Synthétiseur d'´échos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Synthétiseur Goblins</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Synthétiseur de pluie</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Synthétiseur Sci-fi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Synthétiseur de bande-son</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Synthétiseur Pad</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>new age</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>chaud</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>polysynth</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation> Chœurs</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>courbé</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>métallique</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>halo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>sweep</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>Synthétiseur New Age</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Synthétiseur chand</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Synthétiseur Polyphonique</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Synthétiseur de chœurs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Synthétiseur de cordes frottées</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Synthétiseur métallique</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Synthétiseur de halo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Synthétiseur de Sweep</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Synthétiseur de triangles</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Synthétiseur de sinusoïdes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Synthétiseur de créneaux</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondes Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Synthétiseur de maillets</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Synth. Mai.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Synthétiseur de basses</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Synthétiseur de cuivres</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>synth-basse-1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>Synthétiseur d'instruments à cordes</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>synth-basse-2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Synthétiseur de cuivres</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>synth-cuivre-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>synth-cuivre-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>Synthétiseur d'instruments à cordes</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>synth-corde-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>synth-corde-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Thérémine</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Synthétiseur de percussions</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Syn. perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Cordes pincées</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Banjo ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>Bj. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaïka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Balalaïka Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Bal. Pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Balalaïka Prima</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Bal. Pr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Balalaïka Secunda</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Bal. Sec.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Balalaïka Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Bal. Al.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Balalaïka Basse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>Bal. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Balalaïka Contrebasse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>Bal. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Bouzouki (3 chœurs)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Bouzouki (4 chœurs)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Guitare Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>Guit. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Guitare Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>Guit. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Guitare classique</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Guitare classique [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Guitare acoustique</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Guitare acoustique [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>Guitare Alto à 11 cordes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>Guit. A. 11 crds.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>Guitare 12 cordes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>Guit. 12 crds.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal steel guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Guitare électrique</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>Guit. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Guitare électrique [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harpe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Luth</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Luth [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Luth à 5 chœurs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Luth à 6 chœurs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Luth à 7 chœurs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Luth à 8 chœurs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Luth à 9 chœurs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Luth à 10 chœurs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Luth à 13 chœurs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>Lt. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandoline [Tablature]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>trémolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>Basse électrique à 5 cordes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>Basse électrique à 5 cordes [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Violons</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Vlns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Altos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Alt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Violoncelles</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Vlcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Contrebasses</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viole de gambe (Tablature)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Archiluth</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Musique ancienne</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Fifre en Siâ™­</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Théorbe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandoline</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandoline [Tablature]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mde.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Mandole Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Mandole Ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandoloncelle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Mandoline Octave</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulélé</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulélé [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Ukulélé ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Uk. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Ukulélé baryton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Uk. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Guitare basse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>Guit. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Guitare Basse [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Basse acoustique</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Basse électrique</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>B. él.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Basse électrique [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Basse électrique fretless</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>B. él. Frtl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Cordes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Alt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncelle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Contrebasse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Contrebasse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. Vle.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Dessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Des. Vle.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Viole de gambe alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>Vle. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Viole de gambe ténor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>Vle T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viole de gambe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vle. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viole de gambe (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>Violone en Ré</translation>
     </message>
diff --git a/share/locale/instruments_gl.ts b/share/locale/instruments_gl.ts
index 5a328e7..90040ae 100644
--- a/share/locale/instruments_gl.ts
+++ b/share/locale/instruments_gl.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>Clarinete en dó</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>Cl. dó</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Clarinete en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>Cl. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Clarinete en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Cl. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Clarinete en Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Cl. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>Clarinete en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>Cl. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Clarinete alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>Cl. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Clarinete de basset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Cl. ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Corno de basset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Crn. ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Clarinete baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>Cl. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Clarinete contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Cl. c-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Clarinete contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cl. cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Chalumeau sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Cha. si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Chalumeau soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>Cha. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Chalumeau alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>Cha. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Chalumeau tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>Ch. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Chalumeau baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>Cha. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Contrafagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cfgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Contrabaixo de palleta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Cba. pa.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Baixón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rackett (cervellato)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusofón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sarrusofón sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Sar. si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sarrusofón soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>Sar. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Sarrusofón alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>Sar. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Sarrusofón tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>Sar. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Sarrusofón barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Sar. bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Sarrusofón baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>Sar. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Sarrusofón contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Sar. cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxofón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Sasofón sopraníssimo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Saxo sio.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Saxofón sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Saxo si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Saxofón soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>Saxo s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulocromo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Saxofón mezzo-soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>Saxo m.s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Saxofón alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>Saxo a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Saxofón melódico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Saxo mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Saxofón tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>Saxo t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Saxofón barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Saxo bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Saxofón baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>Saxo b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Saxofón contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Saxo cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Saxofón subcontrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Saxo scb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Gaita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Gai.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Palleta libre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Harmónica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>Harmónica cromática en Do de 12 buratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>Harmónica cromática en Do de 14 buratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>Harmónica cromática en Sol de 12 buratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>Harmónica cromática en Do de 16 buratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>Harmónica cromática tenor en Do de 12 buratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>Harmónica cromática en Sol alto de 10 buratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>Harmónica diatónica en Fa de 10 furados</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>Harmónica diatónica en Re de 10 buratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>Harmónica diatónica en Do de 10 buratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>Harmónica diatónica en La de 10 buratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>Harmónica diatónica en Sol de 10 buratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>Harmónica diatónica en Re baixo de 10 buratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>Harmónica de 20 furados de Chordet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Harmónica baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Harm. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Harmónica baixo de Hohner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Harmónica baixo de Huang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Acordeón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melódica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sheng soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>She. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Sheng alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>She. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Sheng tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>She. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Sheng baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>She. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Vento-metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Trompa en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>Trpa. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Trompa en Do alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>Trpa. Do a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Trompa en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Trpa. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Trompa en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>Trpa. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Trompa en Laâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Trpa. Laâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Trompa en Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>Trpa. Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Trompa en Mi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>Trpa. Mi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Trompa en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Trpa. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Trompa en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Trpa.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Trompa en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>Trpa. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Trompa vienesa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>Trpa. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Trompa en Siâ™­ basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Trpa. Siâ™­ ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Corneta en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Cnt. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>Silencio</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Corneta en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Cnt. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxotrompa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Trompa alto en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>Trpa. a. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Trompa alto en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Trpa. a. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Trompa barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Trpa. bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Trompa barítona(Clave de sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Corneta de posta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Cnrt. p.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Trompa alpina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>Trmp. al.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trompeta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Trompeta píccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>Tpt. p.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Trompeta píccolo en Si♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>Tpt. p. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Trompeta píccolo en La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>Tpt. p. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Trompeta en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Tpt. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>Trompeta en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>Tpt. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>Trompeta en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>Tpt. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Trompeta en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Tpt. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Trompeta de bolso (pocket)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Tpt. pkt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Trompeta de varas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Tpt. va.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Trompeta tenor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tpt. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Trompeta baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>Tpt. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Trompeta baixo en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Tpt. b. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Trompeta baixo en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>Tpt. b. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Trompeta baixo en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Tpt. b. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Trompeta barroca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Tpt. bc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Trompeta barroca en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Tpt. bc. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Trompeta barroca en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Tpt. bc. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Trompeta barroca en Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Tpt. bc. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Trompeta barroca en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Tpt. bc. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Trompeta barroca en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Tpt. bc. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Trompeta tibetana (rag dung, dungchen)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Corneta natural</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Crnta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Corneta natural soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Cnta. nat. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Corneta natural alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Cnta. na. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Corneta natural barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Cnta. na. bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Fliscorno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flis.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiscornio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Corneta natural eufónica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Corneta natural melófona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Cnta. na. mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Corneta natural contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Cnta. na. con.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Melófono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Oficleide (figle)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Of.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Oficleide alto en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>Of. a. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Oficleide alto en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Of. a. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>Oficleide baixo en Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>Of b. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Oficleide baixo en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Of. b. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Oficleide contrabaixo en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Of. cb. Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Cornetto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Cornetto soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>Co. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Cornetto alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>Co. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Cornetto tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>Co. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpentón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombón (Clave de sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Trombón soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>Trb. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Trombón alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>Trb. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Trombón tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>Trb. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Trombón baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>Trb. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Trombón contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Trb. cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Eufonio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Bombardino (Clave de sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Tuba en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Música antiga</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Pífano en Si bemol</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Bdno. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombón (Clave de sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Bdno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Bombardino (Clave de sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>Tu. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Tuba en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Tu. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba en Mi bemol (clave de sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Tuba en C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>Tu. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Tuba en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Tu. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba en si bemol (clave de sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Tuba baixo en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Tu. ba. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Tuba baixo en Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Tu. ba. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Tuba subcontrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>Tu. scb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helicón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousafón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sfn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Tuba wagneriana</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Tu. wag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Tuba wagneriana en Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Tu. wag. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>Tuba wagneriana en Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>Tu. wag. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Caracola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Crc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Percusión de altura indeterminada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Timbais</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Rototom</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rtt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Glockenspiel de Orff soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>Glk. Or. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Glockenspiel de Orff alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>Glk. Or. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crótalos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubáfono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tbf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Chocallo (Almglocken)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibráfono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metalófono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Metalófono de Orff soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>Met. Or. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Metalófono de Orff alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>Met. or. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Metalófono de Orff baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>Met. or. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Carrillón de orquestra (Campás tubulares)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Car. orq.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Tambores de aceiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>Tmb. ac.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Tambores de aceiro soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>Tmb. ac. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Tambores de aceiro alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>Tmb. ac. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Tambores de aceiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Tmb. ac.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Tambores de aceiro tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>Tmb. ac. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Triple caixa de metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Tr. Cai. Mt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Tambores de aceiro baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>Tmb. ac. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Campaíña</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Cpi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Gongs afinados</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Go. af.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexatón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Serrón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Ser.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Vasos musicais</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Va. mu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Harpa de vidro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Har. vid.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xilófono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Xilófono de Orff soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>Xil. Or. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Xilófono de Orff alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>Xil. Or. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Xilófono de Orff baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>Xil. Or. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xilomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Marimba baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>Mrm. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Salterio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Slt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Bucinas afinadas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Buc. af.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba (Mbira, piano de man)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Kalimba sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Kal. si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Kalimba alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>Kal. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Percusión de altura determinada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Batería</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Bat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Caixa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Cai.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bombo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>Bmb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Caixa piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>Cai. pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Tambor militar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Tmb. mil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom-Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>To.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Tom-toms chineses</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>To. ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bogós</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Congas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbais</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Tambor de marco</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Tmb. ma.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tablas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuíca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Crótalos (zill)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Cr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Hi-hat (prato de choque, chimbal)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam (chau gong)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Campás</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Cmp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Axóuxeres</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Ax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Placa campá</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Pl. Ca.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Cunca tibetana (cunca do Himalaia)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Cu. ti.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Castañolas (castañetas) de metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Cst. met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Freos de tambor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Fr. tmb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Tubos de ferro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Tb. fe.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Cadeas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Cad.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Bigornia</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Big.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Caixas chinas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Cai. ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Bloques de templo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Bl. tmp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triángulo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Prato (címbalo)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Ride</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>Rd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Prato chinés</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Pr. ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Crash (prato de ataque)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Splash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Sp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Choca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Chc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Castañolas (castañetas)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Güiro (reco-reco, dikanza)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa (afoxé)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Queixada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Quei.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Tambor de troncos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Tmb. tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Chicote</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Matraca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Mat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Placa de metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Pl. mt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Tacos de papel lixa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Tc. pa. lx.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Carrillóns de vento de madeira</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Car. ven. mad.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Carrillóns de vento de bambú</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Car. ven. bam.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Carrillóns de vento de metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Car. ven. met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Carrillóns de vento de vidro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Car. ven. vid.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Carrillóns de vento de cuncha</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Car. ven. cun.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Pedras</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Pdr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Estalo de dedos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Est. d.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Palmada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Pal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Palmada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Pal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Pateada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Pat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Pandeireta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Pndr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Percusión marcial</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>PM</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tambores tenores</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TT</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Tambores baixos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>TB</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Pratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Pr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Canto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Voz</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>V.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Rapaz soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>R. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzo-soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Contratenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Teclados</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Piano de cola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Piano vertical (ou de parede)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Piano Honky Tonk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Pno. Hnk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Piano de xoguete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Pno. xo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Clavicordio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Clvi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Clavicémbalo (clave)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Clve.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virxinal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Piano eléctrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>Pno. el.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet (clavinete)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clvt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Órgano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Órgano percutivo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Org. per.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Órgano Hammond</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Or.g Hm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Órgano Hammond</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Órg. Ham.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Órgano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmonio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Órgano de palleta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Org. Pal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Instrumentos electrónicos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Sintetizador de efectos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Sint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>chuvia</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>pista</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>cristal</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>atmósfera</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>brillo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>efecto goblin</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>ecos</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>ciencia ficción</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Sintetizador de atmosfera</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Sintetizador de brillo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Sintetizador de cristal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Sintetizador de ecos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Sintetizador Goblins</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Sintetizador de choiva</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sintetizador de ciencia ficción</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Sintetizador de pistas sonoras</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Sintetizador suave</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>new age</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>cálido</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>poli-sintetizador</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>coro</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>inclinado</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>metálico</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>halo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>varrer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>Sintetizador New Age</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Sintetizador cálido</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Sintetizador polifónico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Sintetizador de coro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Sintetizador friccionado</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Sintetizador metálico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Sintetizador Halo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sintetizador efecto cofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Sintetizador de serra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sintetizador sinusoidal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Sintetizador cadrado</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondas Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Sintetizador de baquetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Sin. ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Sintetizador de baixos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Sintetizador de metais</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>sintonizador-baixo-1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>Sintetizador de cordas</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>sintonizador-baixo-2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Sintetizador de metais</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>sintonizador-vento-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>sintonizador-vento-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>Sintetizador de cordas</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>sintonizador-corda-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>sintonizador-corda-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Teremín (theremín)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Sintetizador de percusión</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Sin. per.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Cordas pulsadas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Banjo tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>Bj. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Balalaika píccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Bal. pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Balalaika prima</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Bal. pr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Balalaika secunda</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Bal. sec.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Balalaika alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Bal. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Balalaika baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>Bal. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Balalaika contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>Bal. cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki (buzuki)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Bouzouki (tricordo)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Bouzouki (tetracordo)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Guitarra soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>Guit. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Guitarra alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>Guit. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Guitarra clásica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Guitarra clásica [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Guitarra acústica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Guitarra acústica [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>Guitarra alto de once cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>Guit. a. 11</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>Guitarra alto de doce cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>Guit. 12</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal steel guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. st. guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Guitarra eléctrica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>Guit. el.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Guitarra eléctrica [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harpa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Laúde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Ld.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Laúde [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Laúde de 5 cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Laúde de 6 cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Laúde de 7 cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Laúde de 8 cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Laúde de 9 cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Laúde de 10 cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Laúde de 13 cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>Ald.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolina [tabulatura]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>trémolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>Baixo eléctrico de 5 cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>Baixo eléctrico de 5 cordas [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Violins</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Vlns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Violas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Vlas.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Violoncellos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Vlcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Contrabaixos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola da gamba [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Arquilaúde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Música antiga</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Pífano en Si bemol</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Tiorba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Tio.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolina [tabulatura]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Mandola alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Mandola tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandoloncello (mandocello)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Mandolina de oitava</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>Mdn. o.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen (sangen)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukelele (ukulele)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukelele [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Ukelele tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Uk. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Ukulele barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Uk. bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Guitarra baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>Guit. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Guitarra baixo [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Baixo acústico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Baixo eléctrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>B. el.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Baixo eléctrico [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Baixo eléctrico sen trastes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>B. el. st.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violín</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Contrabaixo [rexistro]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Violín sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Vl. si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Violín alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>Vl. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Violín tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>Vl. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violón (violone)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>Violón en Re</translation>
     </message>
diff --git a/share/locale/instruments_he.ts b/share/locale/instruments_he.ts
index 5fe15b7..5e097ef 100644
--- a/share/locale/instruments_he.ts
+++ b/share/locale/instruments_he.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>מערכת תופים</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>משולש</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>מצילת צ'יינה</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>מצילת ספלאש</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
-        <translation type="unfinished"/>
+        <translation>קאו-בל</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
-        <translation type="unfinished"/>
+        <translation>קלאווה</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
-        <translation type="unfinished"/>
+        <translation>קסטנייטות</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
-        <translation type="unfinished"/>
+        <translation>מראקאס</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
-        <translation type="unfinished"/>
+        <translation>קבאסה</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
-        <translation type="unfinished"/>
+        <translation>מחיאת כף</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
-        <translation type="unfinished"/>
+        <translation>תוף-מרים</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>פסנתר</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>נבל</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>כינור</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_hi_IN.ts b/share/locale/instruments_hi_IN.ts
index 2fc6cba..0d33b6e 100644
--- a/share/locale/instruments_hi_IN.ts
+++ b/share/locale/instruments_hi_IN.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_hr.ts b/share/locale/instruments_hr.ts
index 72a22bd..c002bee 100644
--- a/share/locale/instruments_hr.ts
+++ b/share/locale/instruments_hr.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>drumset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Acoustic Bass Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tambourine</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Klavir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Koncertni glasovir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>ÄŒembalo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Dječji klavir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Električni klavir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Orgulje</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_hu.ts b/share/locale/instruments_hu.ts
index af0643c..a6491e1 100644
--- a/share/locale/instruments_hu.ts
+++ b/share/locale/instruments_hu.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>D klarinét</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>D kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Esz klarinét</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Esz kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>B-klarinét</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>B kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A-klarinét</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>A kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Altklarinét</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>A.kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Basszetklarinét</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Ba.kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Basszetkürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Ba.kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Basszusklarinét</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B.kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Kontraalt klarinét</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Ka.kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Kontrabasszus klarinét</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Kb.kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Szopranino chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Szno.cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Szoprán chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>Sz.cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Alt chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>A.cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Tenor chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>T.cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Basszus chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>B.cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Tárogató</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tár.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagott</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Kontrafagott</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Kfgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Nyelves kontrabasszus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Ny.kbsz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Dulcian</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Szarruszofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Szr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Szopranino szarruszofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Szno.szr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Szoprán szarruszofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>Sz.szr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Alt szarruszofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>A.szr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Tenor szarruszofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>T.szr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Bariton szarruszofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>B.szr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Basszus szarruszofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>B.szr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Kontrabasszus szarruszofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Kb.szr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Szaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Szax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Szopranisszimo szaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sznmo.szax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Szopranino szaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Szno.szax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Szopránszaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>Sz.szax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulochrome</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Mezzoszoprán szaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>M.szaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Altszaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A.szax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Dallamszaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Dal.szax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Tenorszaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T.szax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Baritonszaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar.szax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Basszusszaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B.szax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Kontrabasszus-szaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Kb.szax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Subkontrabasszus-szaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Szkb.szax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Skótduda</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Duda</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Szabad nyelv</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12 lyukú C kromatikus szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14 lyukú C kromatikus szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12 lyukú G kromatikus szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16 lyukú C kromatikus szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>12 lyukú tenor C kromatikus szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>10 lyukú magas G diatonikus szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>10 lyukú F diatonikus szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>10 lyukú D diatonikus szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>10 lyukú C diatonikus szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>10 lyukú A diatonikus szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>10 lyukú G diatonikus szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>10 lyukú alsó D diatonikus szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>20 lyukú Chordet szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Basszus szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Bsz.szjh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Basszus Hohner szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Basszus Huang szájharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melodika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Szoprán sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>Sz.she.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Alt sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>A.she.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Tenor sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>T.she.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Basszus sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>B.she.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Rézfúvós</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Rézf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>F kürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>F kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Magas C kürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>M.C kt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>B kürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>B kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>A kürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>A kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Asz kürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Asz kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>G kürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>G kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>E kürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation> E kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Esz kürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Esz kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>D kürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>C kürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Bécsi kürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>B.kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>B basszus kürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>B ba.kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Esz kornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Esz knt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>B kornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>B knt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Baritonkürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>F altkürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>F a.kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Esz altkürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Esz a.kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Tenorkürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>T.kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Tenorkürt (violinkulcs)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Postakürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Pstkt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Fakürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>Fakt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Piccolo trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>B pikkolo trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>B p.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>A piccolo trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>A p.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Esz trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Esz tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>D trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>D tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>C trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>C tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>B trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>B tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Zsebtrombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Zsebtb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Tolótrombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Tol.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Tenor trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>T.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Basszus trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>B.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Esz basszus trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Esz b.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>C basszus trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>C b.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>B basszus trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>B b.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Barokk trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Bk.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>F barokk trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>F bk.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Esz barokk trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Esz bk.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>D barokk trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>D bk.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>C barokk trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>C bk.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>B barokk trombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>B bk.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Rag-dung</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg.dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Natúrtrombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>N.tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Szoprán natúrtrombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Sz.ntb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Alt natúrtrombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>A.ntb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Bariton natúrtrombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bar.ntb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Szárnykürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Sznykt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Eufónium natúrtrombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Mellophone natúrtrombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mel.ntb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Kontrabasszus natúrtrombita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Ktb.ntb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Mellophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Ophikleid</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>F alt ophikleid</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>F a.oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Esz alt ophikleid</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Esz a.oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>C basszus ophikleid</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>C b.oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>B basszus ophikleid</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>B b.oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Esz kontrabasszus ophikleid</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Esz kb.oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Kvartcink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Kvc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Cink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Szoprán cink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>Sz.ck.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Altcink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>A.ck.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Tenorcink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>T.ck.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Szerpent</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Szpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Harsona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Hrs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Harsona (violinkulcs)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Szopránharsona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>Sz.hrs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Altharsona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>A.hrs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Tenorharsona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>T.hrs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Basszusharsona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>B.hrs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Kontrabasszus-harsona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Kb.hrs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Eufónium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Eufónium (violinkulcs)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>F tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Régizene</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>B fife</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Eu.ntb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Harsona (violinkulcs)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Euph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Eufónium (violinkulcs)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>F tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Esz tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Esz tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Esz tuba (violinkulcs)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>C tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>C tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>B tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>B tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>B tuba (violinkulcs)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>F basszustuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>F ba.tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Esz basszustuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Esz ba.tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Szubkontrabasszus-tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>Szkb.tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helikon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousaphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Wagner-tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Wag.tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>B Wagner-tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>B Wag.tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>F Wagner-tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>F Wag.tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Conch</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Hangolt ütőhangszer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Ãœstdob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Ãœstd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Roto-tam szett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Harangjáték</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Hgj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Orff szoprán harangjáték</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O.sz.hgj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Orff alt harangjáték</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O.a.hgj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crotales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubaphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Almglocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibrafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metallofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Orff szoprán metallofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O.sz.met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Orff alt metallofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O.a.met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Orff basszus metallofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O.b.met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Csőharang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Csőhg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Acéldob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>Ac.dob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Szoprán acéldob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>Sz.ac.dob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Alt acéldob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A.ac.dob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Gitár-acéldob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Git.ac.dob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Tenor acéldob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T.ac.dob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Cselló-acéldob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Cs.ac.dob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Basszus-acéldob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B.ac.db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Csengettyű</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Cseng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Hangolt gong</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Hn.gn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexatone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Éneklő fűrész</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Én.fűr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Éneklő poharak</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Én.poh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Pohárharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Poh.har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xilofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Orff szoprán xilofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O.sz.xil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Orff alt xilofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O.a.xil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Orff basszus xilofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O.b.xil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xilomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>Xmrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Basszusmarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>B.mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Cimbalom</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Hangolt klaxon-kürt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Hn.kx.kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Szoprán kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Sz.kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Alt kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A.kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Hangolatlan ütőhangszer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>dobkészlet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Dobf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Pergődob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>P.db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Basszusdob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>Lábd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Piccolo pergődob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P.p.db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Katonai dob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Kat.dob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tamtam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Kinai tamtam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Kín.tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongók</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Kongák</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbalék</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Frame Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Fr.dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tablák</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Ujj cintányér</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Ujjcn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Lábcin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tamtam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Csengők</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Cs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Száncsengők</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Száncs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Csengőlap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Cs.lap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Hangtál gongok</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Hgt.gk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Fém kasztanyett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Fém kszt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Gépkocsi-fékhenger-dob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Gk.fkh.d.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Vascsövek</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Vascs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Láncok</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Lánc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Üllő</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Ãœl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Fapálcikák</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Fap.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Békák</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Bék.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Háromszög</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Cintányér</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Kísérő cintányér</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>K.cint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Kínai cintányér</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Kí.ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Beütő cintányér</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Beüt.ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Splash cintányér</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Sp.ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Kolomp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Kol.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Tikfa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Tf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Kasztanyetta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Kszt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Guiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Slit Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Ostor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Ost.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Ratchet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Rat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Villámlap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Vil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Csiszolópapír</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Csp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Fa szélhárfa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Fa szh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Bambusz szélhárfa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam.sz.hf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Fém szélhárfa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Fém szh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Üveg szélhárfa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Ãœv.szh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Kagyló szélhárfa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>K.szélh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Kövek</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Köv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Csettintés</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Cset.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Taps</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Taps</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Ütés</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Ãœt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Dobbantás</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Dobb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Csörgődob</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Csör.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Menetelő ütőhangszer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>SZD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tenor dobok</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Basszus dobok</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Cintányérok</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Ci</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Énekhang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Ének</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Én.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Fiú szoprán</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>F.sz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Szoprán</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>Sz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzoszoprán</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Kontraalt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Kontr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Kontratenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Bariton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Basszus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Billentyűk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Zongora</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Zon.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Hangversenyzongora</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Pianínó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Honky-tonk zongora</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk.zon.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Játékzongora</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Ját.zon.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Klavikord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Kkd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Csembaló</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Csem.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginál</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Cseleszta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Csel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Elektromos zongora</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>El.zon.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Orgona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Perkusszív orgona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perk.org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Hammond-orgona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm.org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Forgattyús orgona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Forg.org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Sípos orgona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmónium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Nyelvsípos orgona</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Nys.org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Elektronikus hangszerek</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Effektszintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Szint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Atmoszféra szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Fényesség szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Kristály szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Visszhangok szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Manók szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Eső szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sci-fi szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Filmzene szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Szőnyeg szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>New age szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Meleg szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Poli szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Kórus szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Vonós szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Fémes szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Halo szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sweep szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Fűrészfog szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Szinuszjel szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Négyszögjel szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondes Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Mallet szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Mal.szin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Basszus szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Rézfúvós szintetizátor</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>Vonóskar szintetizátor</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Rézfúvós szintetizátor</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>Vonóskar szintetizátor</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Ütös szintetizátor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Ãœt.szint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Húros hangszerek</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Bendzsó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bdzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Bendzsó (tabulatúra)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Tenor bendzsó</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T.bdzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Piccolo balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pic.bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Első balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>E.bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Második balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>M.bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Alt balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>A.bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Basszus balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>B.bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Kontrabasszus balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>Kb.bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Buzuki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Buzuki (3 húrpáros)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Buzuki (4 húrpáros)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Szoprán gitár</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>Sz.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Alt gitár</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Klasszikus gitár</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Klasszikus gitár [Tabulatúra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Akusztikus gitár</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Akusztikus gitár [Tabulatúra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11-húros alt gitár</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-h.a.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12 húros gitár</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-h.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal steel gitár</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Pd.st.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Elektromos gitár</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Elektromos gitár [Tabulatúra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Hárfa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Lant</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Lant [tabulatúra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Lant (5 kórusos)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Lant (6 kórusos)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Lant (7 kórusos)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Lant (8 kórusos)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Lant (8 kórusos)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Lant (10 kórusos)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Lant (13 kórusos)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A.lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolin [Tabulatúra]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>5-húros elektromos basszusgitár</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>5-húros elektromos basszusgitár [Tabulatúra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Hegedűk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Heg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Brácsák</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Gordonkák</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Gord.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Nagybőgők</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>Nb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola da gamba (Tabulatúra)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Archiliuto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Régizene</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>B fife</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Theorba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolin [Tabulatúra]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Altmandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Tenormandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandocello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Oktávmandolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>Om.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Szitár</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Szi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulele [Tabulatúra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Tenorukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten.uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Bariton ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar.uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Basszusgitár</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Basszusgitár [Tabulatúra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Akusztikus basszus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Elektromos basszus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>El.bg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Elektromos basszusgitár [Tabulatúra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Bundozatlan basszusgitár</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Bdn.el.bg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Vonósok</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Hegedű</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Heg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Brácsa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Gordonka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Gor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Bőgő</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Nagybőgő</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds.v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Szoprán viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Sz.vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Alt viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A.vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Tenor viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T.vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla.d.g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>D violone</translation>
     </message>
diff --git a/share/locale/instruments_id.ts b/share/locale/instruments_id.ts
index f0e0d95..817e4dd 100644
--- a/share/locale/instruments_id.ts
+++ b/share/locale/instruments_id.ts
@@ -24,29 +24,29 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="6"/>
         <source>Woodwind</source>
-        <translation type="unfinished"/>
+        <translation>Instrumen Tiup</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="7"/>
         <source>Piccolo</source>
-        <translation type="unfinished"/>
+        <translation>Piccolo</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="9"/>
         <source>Picc.</source>
         <extracomment>Piccolo</extracomment>
-        <translation type="unfinished"/>
+        <translation>Picc.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="10"/>
         <source>Flute</source>
-        <translation type="unfinished"/>
+        <translation>Flute</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="12"/>
         <source>Fl.</source>
         <extracomment>Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="13"/>
@@ -62,13 +62,13 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="16"/>
         <source>Soprano Flute</source>
-        <translation type="unfinished"/>
+        <translation>Flute Sopran</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="18"/>
         <source>Sop. Fl.</source>
         <extracomment>Soprano Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Fl. Sop.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="19"/>
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
-        <source>Tuba</source>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
-        <source>Tu.</source>
-        <extracomment>Tubo</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
-        <source>F Tuba</source>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <source>Tu.</source>
+        <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Segitiga</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_it.ts b/share/locale/instruments_it.ts
index 74c9e96..aef6733 100644
--- a/share/locale/instruments_it.ts
+++ b/share/locale/instruments_it.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>Clarinetto in Do</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>Cl. Do</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Clarinetto in Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>Cl. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Clarinetto in Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Cl. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Clarinetto in Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Cl. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>Clarinetto in La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>Cl. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Clarinetto contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>Cl. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Clarinetto bassetto in La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Cl. Ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Corno di bassetto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Cor. ba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Clarinetto basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>Cl. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Clarinetto octocontralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Cl. C-a. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Clarinetto contrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cl. cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Chalumeau sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Cha. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Chalumeau soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>Cha. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Chalumeau contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>Cha. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Chalumeau tenore </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>Cha. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Chalumeau basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>Cha. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagotto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Controfagotto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cfag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Contrabbasso ad ancia</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Cb. an.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Dulciana</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Cervellato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ce.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sarrusofono sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Sar. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sarrusofono soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>Sar. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Sarrusofono contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>Sar. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Sarrusofono tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>Sar. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Sarrusofono baritono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Sar. br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Sarrusofono basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>Sar. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Sarrusofono contrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Sar. cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Sassofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Sassofono sopranissimo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sax. Sio.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Sassofono sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Sax. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Sassofono soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>Sax. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulochrome</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Sassofono mezzo soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>Sax. mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Sassofono contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>Sax. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Sassofono in do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Sax. do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Sassofono tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>Sax. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Sassofono baritono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Sax. br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Sassofono basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>Sax. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Sassofono contrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Sax. cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Sassofono subcontrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Sax. scb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Cornamusa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>muset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Ancia libera</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Armonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Arm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>Armonica cromatica in Do 12 fori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>Armonica cromatica in Do 14 fori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>Armonica cromatica in Sol 12 fori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>Armonica cromatica in Do 16 fori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>Armonica tenore cromatica in Do 12 fori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>Armonica diatonica in Sol 10 fori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>Armonica diatonica in Fa 10 fori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>Armonica diatonica in Re 10 fori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>Armonica diatonica in Do 10 fori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>Armonica diatonica in La 10 fori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>Armonica diatonica in Sol 10 fori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>Armonica diatonica bassa in Re 10 fori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>Armonica Chordet 20 fori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Armonica basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Arm. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Armonica basso Hohner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Armonica basso Huang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Fisarmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Fis.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melodica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sheng soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>She. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Sheng contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>She. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Sheng tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>She. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Sheng basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>She. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Ottoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Ott.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Corno in Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>Cor. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Corno alto in Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>Cor. H. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Corno in Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Cor. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Corno in La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>Cor. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Corno in Laâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Cor. Laâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Corno in Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>Cor. Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Corno in Mi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>Cor. Mi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Corno in Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Cor. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Corno in Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Cor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Corno in Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>Cor. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Corno viennese</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>Cor. V.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Corno basso in Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Cor. ba Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Cornetta in Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Cor. Miâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>Muto</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Cornetta in Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Cor. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Flicorno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Corno contralto in Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>Cor. a. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Corno contralto in Mib</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Cor. a. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Corno baritono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Cor. br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Corno Baritono (Chiave di violino)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Corno postale</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Cor.pt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Corno alpino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>Cor. Alp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Tromba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Tromba piccola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>Tr. pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Tromba piccola in Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>Tr. pic. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Tromba piccola in La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>Tr. pic. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Tromba in Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Tr. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>Tromba in Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>Tr. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>Tromba in Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>Tr. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Tromba in Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Tr. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Tromba pocket</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Tr. Pkt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Tromba a coulisse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Tpt. Sl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Tromba tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tr. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Tromba basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>Tr. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Tromba basso in  Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Tr. b. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Tromba basso in Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>Tr. b. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Tromba basso in Mi â™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Tr. b. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Tromba barocca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Tr. bcc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Tromba barocca in Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Tr. bcc. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Tromba barocca in Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Tr. bcc. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Tromba barocca in Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Tr. bcc. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Tromba barocca in Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Tr. bcc. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Tromba barocca in Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Tr. bcc. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Rag Dung</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Bugle soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Bu. s. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Bugle contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Bu. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Bugle baritono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bu. br. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Flicorno soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flic. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fliscorno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Bombardino Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Mellofono Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mel. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Bugle contrabasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Bu. Con.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Mellofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mll.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Oficleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Ofi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Oficleide contralto in Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>Ofi a. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Oficleide in Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Ofi a. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>Oficleide basso in Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>Ofi b. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Oficleide basso in Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Ofi B. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Oficleide contrabbasso Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Ofi cb. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Cornetta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Cornetta soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>Cnta s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Cornetta contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>Cnta a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Cornetta tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>Cnta t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpentone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombone (Chiave di violino)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Trombone soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>Trb. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Trombone contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>Trb. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Trombone tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>Trb. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Trombone basso </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>Trb. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Trombone contrabasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Trb. cb. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Bombardino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Euphonium (Chiave di violino)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Tuba in Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Musica antica (Early music)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Piffero Siâ™­</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Euf. Bomb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombone (Chiave di violino)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Euf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Euphonium (Chiave di violino)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>Tba. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Tuba in Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Tba. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba Miâ™­ (Chiave di violino)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Tuba in Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>Tba. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Tuba in Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Tba. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba Siâ™­(Chiave di violino)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Bassotuba in Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>B. Tba. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Bassotuba in Miâ™­  </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>B. Tba. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Tuba subcontrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>Tba. scb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Elicone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousafone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation> Tuba Wagner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Tba. Wag. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Tuba Wagner in Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Tba. Wag. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>Tuba Wagner in Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>Tba. Wag. Fa </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Conchiglia</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Percussioni a suono determinato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Timpani</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Roto-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Glockenspiel soprano Orff </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>Glk. s. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Glockenspiel contralto Orff </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>Glk. a. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crotali</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tbf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Campanaccio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibrafono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metallofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Metallofono soprano Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>Met. S. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Metallofono contralto Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>Met. a. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Metallofono basso Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>Met. b. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Campane Tubolari</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Camp. tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Steel Drums soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>St. Dr. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Steel Drums contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>St. Dr. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Guitar Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Steel Drums tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>St. Dr. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Cello Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Steel Drums basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>St. Dr. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Campane a mano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Camp. m.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Gong intonati</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Go. Td.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexatone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Sega cantante</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Sg. can.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Bicchieri musicali</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Mu. Gla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Glassarmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gla. Har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xilofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Xilofono soprano Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>Xil. s. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Xilofono contralto Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>Xil. a. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Xilofono basso Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>Xil. b. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xylomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Marimba basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>Mrm. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Salterio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Slt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Clacson intonati</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Tn. Klx. Hns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Treble kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Tr. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Kalimba contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>Kal. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Percussioni a suono indeterminato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Batteria</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Batt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Rullante</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Rull.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Grancassa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>Gc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Snare Drum piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>Sn. Dr. P.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Tamburo Militare</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Tamb. mil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Chinese Tom-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Ch. To.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Conga</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Tamburo a cornice</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Fr. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tabla</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuìca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Cimbali da dita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Fi. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Hi-hat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Campane</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Camp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Campanelle slitta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Sle. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Bell Plate</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Be. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Bowl Gongs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Bw. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Nacchere metalliche</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Met. Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Automobile Brake Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut. Brk. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Iron Pipes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Ir. Pi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Chains</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Chn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Anvil</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Anv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Wood Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Wd. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Temple Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Triang.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Cimbali</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Piatto Ride </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>Pts. R.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Piatto  China</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Pts. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Piatto Crash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Pts. Cr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Piatto Splash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Pts. Sp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Campanaccio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Cwb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Legnetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Leg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Nacchere</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Nac.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Guiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabassa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Slit Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Whip</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Wh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Raganella</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Rag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Lastra del tuono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Sandpaper Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sa. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Campane Eoliche Legno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Wd. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Campane eoliche bamboo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Campane eoliche metallo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Met. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Campane eoliche vetro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Gl. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Campane eoliche conchiglia</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Sh. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Pietre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Sto.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Finger Snap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Fi. Sna.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Hand Clap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Hd. Clp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Slap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Stamp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamburello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tambl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Marching Percussion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>SD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tamburi tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Grancasse</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Cimbali</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Voci</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Voce</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Voce bianca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>V. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzosoprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>M. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>C.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Controtenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Baritono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Tastiere</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Pianoforte a coda</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Pianoforte verticale</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Piano Honky Tonk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk. Pf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Pianoforte giocattolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Pf. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Clavicordo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Clavc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Clavicembalo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginale</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Piano elettrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>Pf. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Organo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Percussione organo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perc. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Organo Hammond</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Org. Hm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Organo Rotary</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Org. Rot.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Organo a canne</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Armonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Organo ad ancia</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Org. an.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Strumenti Elettronici</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Sintetizzatore effetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Sint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>pioggia</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>colonna sonora</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>cristallo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>atmosfera</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>luminosità</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>folletti</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>echi</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>fantascienza</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Sintetizzatore atmosphere</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Sintetizzatore brightness</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Sintetizzatore Crystal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Sintetizzatore Echoes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Sintetizzatore Goblins</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Sintetizzatore Rain</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sintetizzatore Sci-fi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Sintetizzatore Soundtrack</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Sintetizzatore Pad</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>new age</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>caldo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>polysynth</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>coro</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>bowed</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>metallico</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>aura</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>spazzolata</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>Sintetizzatore New Age</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Sintetizzatore Warm</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Sintetizzatore Poly</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Sintetizzatore Coro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Sintetizzatore Bowed</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Sintetizzatore Metallic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Sintetizzatore Halo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sintetizzatore Sweep</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Sintetizzatore Saw</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sintetizzatore Sine</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Sintetizzatore Square</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Onde Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Sintetizzatore Mallet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Sin. Mal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Sintetizzatore basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Sintetizzatore ottoni</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>synth-basso-1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>Sintetizzatore archi</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>synth-basso-2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Sintetizzatore ottoni</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>synth-ottone-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>synth-ottone-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>Sintetizzatore archi</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>synth-archi-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>synth-archi-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Sintetizzatore percussioni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Sin. Perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Cordofoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Banjo tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>Bj. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Piccolo balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pic. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Prima balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Secunda balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sec. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Alto balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Balalaika basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>Bal. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Balalaika contrabasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>Bal. cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Bouzouki (tricordo)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Bouzouki (tetracordo)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Chitarra soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>Chit. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Chitarra contralto </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>Chit. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Chitarra classica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Chit. cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Chitarra classica [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Chitarra acustica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Chitarra acustica [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>Chitarra contralto 11 corde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>Chit. a. 11-co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>Chitarra 12 corde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>Chit. 12-co. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal Steel Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Chitarra elettrica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>Chit. el.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Chitarra elettrica [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Arpa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Arp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Liuto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Liuto [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Liuto 5-ordini</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Liuto 6-ordini </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Liuto 7-ordini </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Liuto 8-ordini </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Liuto 9-ordini </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Liuto 10-ordini </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Liuto 13-ordini </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>Lt. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolino [Tablatura]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>tremolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>Basso elettrico 5- co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>Basso Elettrico 5- c. [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Violini</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Violoncelli</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Contrabbassi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Reb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola da gamba (Tablatura)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Arciliuto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Musica antica (Early music)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Piffero Siâ™­</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Tiorba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mnd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolino [Tablatura]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Mandola contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Mandola tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandoloncello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Mandolino ottavo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulele [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Ukulele tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Uk. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Ukulele baritono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Uk. br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Basso elettrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B. el.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Basso elettrico [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Basso acustico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Basso elettrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>B. el.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Basso elettrico [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Basso elettrico senza tasti (Fretless)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Frtl. El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Archi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Contrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Double Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Treble Viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Tr. vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Viola contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>Vla. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Viola tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>Vla. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>Violone in Re</translation>
     </message>
diff --git a/share/locale/instruments_ja.ts b/share/locale/instruments_ja.ts
index 7979701..f8adc9e 100644
--- a/share/locale/instruments_ja.ts
+++ b/share/locale/instruments_ja.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>C クラリネット</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>C Cl.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>D クラリネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>D Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>E♭ クラリネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Eâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>B♭ クラリネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Bâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A クラリネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>A Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>アルトクラリネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>A. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>バセットクラリネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Ba. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>バセットホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Ba. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>バスクラリネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>コントラアルトクラリネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>C-a. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>コントラバスクラリネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cb. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>シャルモー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>ソプラニーノシャルモー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Si. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>ソプラノシャルモー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>S. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>アルトシャルモー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>A. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>テナーシャルモー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>T. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>バスシャルモー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>B. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>ターロガトー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>オクタヴィン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>ファゴット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Bsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>コントラファゴット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cbsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>リードコントラバス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Rd. Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>ドゥルシアン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>ラケット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>サリュソフォーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>ソプラニーノサリュソフォーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Si. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>ソプラノサリュソフォーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>S. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>アルトサリュソフォーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>A. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>テナーサリュソフォーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>T. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>バリトンサリュソフォーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Bar. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>バスサリュソフォーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>B. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>コントラバスサリュソフォーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Cb. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>サックス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>ソプラニミッシモサックス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sio. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>ソプラニーノサックス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Si. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>ソプラノサックス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>オーロクローム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>メゾソプラノサックス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>M.S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>アルトサックス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>メロディサックス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Mel. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>テナーサックス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>バリトンサックス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>バスサックス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>コントラバスサックス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Cb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>サブコントラバスサックス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Scb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>バグパイプ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Bagp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>フリーリード</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>ハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12穴Cクロマティックハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14穴Cクロマティックハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12穴Gクロマティックハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16穴Cクロマティックハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>12穴テナーCクロマティックハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>10穴High Gダイアトニックハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>10穴Fダイアトニックハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>10穴Dダイアトニックハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>10穴Cダイアトニックハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>10穴Aダイアトニックハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>10穴Gダイアトニックハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>10穴Low Dダイアトニックハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>20穴 コードハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>バスハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Bs. Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>HOHNER バスハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>HUANG バスハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>アコーディオン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>バンドネオン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>コンサーティナ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>メロディカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>ソプラノ笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>S She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>アルト笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>A She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>テナー笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>T She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>バス笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>B She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>金管楽器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>F ホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>F Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>High C ホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>H. C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>B♭ ホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Bâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>A ホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>A Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>A♭ ホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Aâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>G ホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>G Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>E ホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>E Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>E♭ ホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Eâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>D ホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>C ホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>ウィーンホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>V. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>B♭バスホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Bâ™­ ba Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>E♭ コルネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Eâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>B♭ コルネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Bâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>サクソルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>F アルトホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>F A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>E♭ アルトホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Eâ™­ A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>バリトンホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Bar. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>バリトン ホルン (ト音記号)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>ポストホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Psthn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>アルフォン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>AlpHn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>トランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>ピッコロトランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>B♭ ピッコロトランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>P. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>A ピッコロトランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>P. Tpt. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>E♭ トランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Eâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>D トランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>D Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>C トランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>C Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>B♭ トランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Bâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>ポケットトランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Pkt. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>スライドトランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Sl.Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>テナートランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tnr. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>バストランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>E♭ バストランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Eâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>C バストランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>B. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>B♭ バストランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Bâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>バロックトランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Bq. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>F バロックトランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Bq. Tpt. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>E♭ バロックトランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Bq. Tpt. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>D バロックトランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Bq. Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>C バロックトランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Bq. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>B♭ バロックトランペット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Bq. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>ラグドゥン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>ビューグル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>ソプラノビューグル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Sop. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>アルトビューグル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Alt. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>バリトンビューグル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bar. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>フリューゲルホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flghn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>フィスコーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>キュールホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>ユーフォニウム ビューグル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>メロフォン ビューグル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mel. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>コトラバスビューグル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Con. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>メロフォン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>オフィクレイド</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>F アルトオフィクレイド</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>F A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>E♭ アルトオフィクレイド</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Eâ™­ A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>C バスオフィクレイド</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>C B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>B♭ バスオフィクレイド</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Bâ™­ B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>E♭ コントラバスオフィクレイド</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Eâ™­ Cb. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>コルネッティーノ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>コルネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>ソプラノコルネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>S. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>アルトコルネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>A. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>テナーコルネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>T. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>セルパン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>トロンボーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>トロンボーン(ト音記号)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>ソプラノトロンボーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>S. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>アルトトロンボーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>A. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>テナートロンボーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>T. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>バストロンボーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>B. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>コントラバストロンボーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Cb. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>チンバッソ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>ユーフォニウム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>ユーフォニウム(ト音記号)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>テューバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>F テューバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>初期音楽</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>B♭ ファイフ</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Euph. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>トロンボーン(ト音記号)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Euph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>ユーフォニウム(ト音記号)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>F Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>E♭ テューバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Eâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>E♭ テューバ (ト音記号)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>C テューバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>C Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>B♭ テューバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Bâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>B♭ テューバ(ト音記号)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>F バステューバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Ba. Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>E♭ バステューバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Ba. Tu. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>サブコントラバステューバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>SCB. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>ヘリコン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>スーザフォン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>ワグナーテューバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>B♭ ワグナーテューバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Bâ™­ Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>F ワグナーテューバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>F Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>貝笛</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>ディジュリドゥ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>法螺貝</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>ショファル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>ブブゼラ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>クロマティック パーカッション</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>ティンパニ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>ロート・タム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>グロッケンシュピール</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>ORFF ソプラノグロッケンシュピール</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. S. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>ORFF アルトグロッケンシュピール</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O. A. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>アンティークシンバル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>テューバフォン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>カウベル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>ビブラフォン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>メタルフォン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>ORFF ソプラノメタルフォン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O. S. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>ORFF アルトメタルフォン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. A. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>ORFF バスメタルフォン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O. B. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>チャイム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Tu. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>スティールパン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>ソプラノスティールパン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>S. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>アルトスティールパン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>ギター・スティールパン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>テナースティールパン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>チェロスティールパン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>バススティールパン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>ハンドベル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Ha. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>チューンドゴング</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Td. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>フレクサトーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>ミュージックソー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Mu. Sw.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>グラスハープ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Mu. Gla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>グラスハーモニカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gla. Har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>シロフォン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>ORFF ソプラノシロフォン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O. S. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>ORFF アルトシロフォン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O. A. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>ORFF バスシロフォン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O. B. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>シロリンバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>マリンバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>バスマリンバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>B. Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>ダルシマー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>チューンド クラクション ホルン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Tn. Klx. Hns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>カリンバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>ソプラノカリンバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Tr. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>アルトカリンバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>パーカッション</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>ドラムセット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Drs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>スネアドラム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>バスドラム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>B. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>ピッコロスネアドラム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P. Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>ミリタリードラム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Mil. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>タムタム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>タム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>チャイニーズタムタム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Ch. To.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>ボンゴ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>コンガ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>ティンバレス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>フレームドラム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Fr. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>タブラ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>クイーカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>フィンガーシンバル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Fi. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>ハイハット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>タムタム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>ベル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>スレイベル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Sle. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>ベルプレート</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Be. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>お鈴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Bw. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>ウドゥ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>メタルカスタネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Met. Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>自動車ブレーキドラム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut. Brk. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>鉄パイプ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Ir. Pi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>チェーン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Chn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>アンヴィル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Anv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>ウッドブロック</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Wd. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>木魚</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>トライアングル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>シンバル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>ライドシンバル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>R. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>チャイニーズシンバル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Ch. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>クラッシュシンバル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cr. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>スプラッシュシンバル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Sp. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>カウベル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Cwb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>クラベス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>カスタネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>ギロ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>マラカス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>カバサ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>キハーダ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>ビブラスラップ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>スリットドラム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>ウィップ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Wh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>ラチェット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Rat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>サンダーシート</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>サンドペーパーブロック</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sa. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>木製ウィンドチャイム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Wd. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>バンブーウィンドチャイム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>メタルウィンドチャイム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Met. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>グラスウィンドチャイム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Gl. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>シェルウィンドチャイム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Sh. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>石</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Sto.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>フィンガースナップ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Fi. Sna.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>ハンドクラップ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Hd. Clp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>スラップ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>スタンプ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>タンバリン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>マーチングパーカッション</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>SD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>テナードラム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>バスドラム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>シンバル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Cy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>ボーカル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>ボーカル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>ボーイソプラノ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>B. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>ソプラノ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>メゾソプラノ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>アルト</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>コントラルト</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>カウンターテナー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>テナー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>バリトン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>バス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>カズー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>鍵盤楽器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>ピアノ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>グランドピアノ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>アップライトピアノ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>ホンキートンクピアノ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>トイピアノ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Toy Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>クラヴィコード</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Cch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>ハープシーコード</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Hch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>ヴァージナル</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>チェレスタ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>エレクトリックピアノ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>El. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>クラビネット</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>オルガン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>パーカッシブオルガン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perc. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>ハモンドオルガン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>ロータリーオルガン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Rot. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>パイプオルガン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>ハーモニウム</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>リードオルガン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Rd. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>電子楽器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>エフェクト シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synth.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>アトムスフィア シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>ブライトネス シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>クリスタル シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>エコー シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>ゴブリン シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>レイン シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sci-fi シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>サウンドトラック シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>パッド シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>ニューエイジ シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>ウォーム シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>ポリ シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>クワイア シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>ボウ シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>メタリック シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>ハロ シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>スイープ シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>ノコギリ波</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>正弦波</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>矩形波</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>オンド・マルトノ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>マレット シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Mal. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>ベース+リード シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>シンセブラス</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>シンセストリングス</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>シンセブラス</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>シンセストリングス</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>テルミン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>パーカッション シンセサイザー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Perc. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>撥弦楽器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>バンジョー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>バンジョー[TAB譜]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>テナー バンジョー</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T. Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>バラライカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>ピッコロバラライカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pic. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>プリマ バラライカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>セカンダ バラライカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sec. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>アルトバラライカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>バスバラライカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>B. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>コントラバスバラライカ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>CB. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>ブズーキ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>ブズーキ(3コース)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>ブズーキ(4コース)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>ソプラノギター</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>S. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>アルトギター</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>クラシックギター</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>クラシックギター[TAB譜]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>アコースティックギター</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>アコースティックギター[TAB譜]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11弦アルトギター</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-str. A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12弦ギター</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-str. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>ペダル スティールギター</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>エレキギター</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>エレキギター[TAB譜]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>ハープ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>リュート</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>リュート[TAB譜]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>リュート 5コース</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>リュート 6コース</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>リュート 7コース</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>リュート 8コース</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>リュート 9コース</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>リュート 10コース</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>リュート 13コース</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A. Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>マンドリン[TAB譜]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>5弦エレキベース</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>5弦エレキベース[TAB譜]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>二胡</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>ピチカート</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>ヴァイオリンズ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Vlns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>ヴィオラズ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Vlas.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>チェロズ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Vlcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>コントラバスズ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>ヴィオラ ダ ガンバ (TAB譜)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>アーチリュート</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>初期音楽</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>B♭ ファイフ</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>テオルボ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>マンドリン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>マンドリン[TAB譜]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>マンドラ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>アルトマンドラ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>マンドラ・コントラルト</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>マンドチェロ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>マンドラ・テノーレ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>三味線</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>シタール</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>ウクレレ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>ウクレレ[TAB譜]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>テナーウクレレ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>バリトンウクレレ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>ベース</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>ベース[TAB譜]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>アコースティックベース</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>エレキベース</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>エレキベース[TAB譜]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>フレットレスエレキベース</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Frtl. El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>弦楽器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>二胡</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>ヴァイオリン</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>ヴィオラ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>チェロ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>コントラバス</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>ダブルベース</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>パルドゥシュ ド ヴィオール</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>ソプラノ ヴィオール</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Tr. vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>アルト ヴィオール</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>テノール ヴィオール</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>ヴィオラ ダ ガンバ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>ヴィオラ ダ ガンバ(TAB)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>ヴィオローネ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>D ヴィオローネ</translation>
     </message>
diff --git a/share/locale/instruments_ka.ts b/share/locale/instruments_ka.ts
index 20edf9b..865c20f 100644
--- a/share/locale/instruments_ka.ts
+++ b/share/locale/instruments_ka.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>პიანინო</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_ko.ts b/share/locale/instruments_ko.ts
index 79107fe..163821b 100644
--- a/share/locale/instruments_ko.ts
+++ b/share/locale/instruments_ko.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>드럼세트</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>카우벨</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_lt.ts b/share/locale/instruments_lt.ts
index 7c145a2..1bedbe6 100644
--- a/share/locale/instruments_lt.ts
+++ b/share/locale/instruments_lt.ts
@@ -4,148 +4,148 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1"/>
         <source>Common instruments</source>
-        <translation type="unfinished"/>
+        <translation>Tradiciniai instrumentai</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="2"/>
         <source>Jazz instruments</source>
-        <translation type="unfinished"/>
+        <translation>Džiazo instrumentai</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="3"/>
         <source>Orchestral instruments</source>
-        <translation type="unfinished"/>
+        <translation>Orkestro instrumentai</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="5"/>
         <source>Ethnic instruments</source>
-        <translation type="unfinished"/>
+        <translation>Tautiniai instrumentai</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="6"/>
         <source>Woodwind</source>
-        <translation type="unfinished"/>
+        <translation>Mediniai pučiamieji</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="7"/>
         <source>Piccolo</source>
-        <translation type="unfinished"/>
+        <translation>Pikolo fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="9"/>
         <source>Picc.</source>
         <extracomment>Piccolo</extracomment>
-        <translation type="unfinished"/>
+        <translation>Picc.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="10"/>
         <source>Flute</source>
-        <translation type="unfinished"/>
+        <translation>Fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="12"/>
         <source>Fl.</source>
         <extracomment>Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="13"/>
         <source>Treble Flute</source>
-        <translation type="unfinished"/>
+        <translation>Aukštasis fleitos registras</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="15"/>
         <source>Tr. Fl.</source>
         <extracomment>Treble Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Aukšt. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="16"/>
         <source>Soprano Flute</source>
-        <translation type="unfinished"/>
+        <translation>SopraninÄ— fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="18"/>
         <source>Sop. Fl.</source>
         <extracomment>Soprano Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sop. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="19"/>
         <source>Sub Contra-alto Flute</source>
-        <translation type="unfinished"/>
+        <translation>SubkontraltinÄ— fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="21"/>
         <source>Sc-a. Fl.</source>
         <extracomment>Sub Contra-alto Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sub. k. a. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="22"/>
         <source>Alto Flute</source>
-        <translation type="unfinished"/>
+        <translation>AltinÄ— fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="24"/>
         <source>A. Fl.</source>
         <extracomment>Alto Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Alt. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="25"/>
         <source>Bass Flute</source>
-        <translation type="unfinished"/>
+        <translation>BosinÄ— fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="27"/>
         <source>B. Fl.</source>
         <extracomment>Bass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="28"/>
         <source>Contra-alto Flute</source>
-        <translation type="unfinished"/>
+        <translation>KontraltinÄ— fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="30"/>
         <source>C-a. Fl.</source>
         <extracomment>Contra-alto Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>K. a. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="31"/>
         <source>Contrabass Flute</source>
-        <translation type="unfinished"/>
+        <translation>KontrabosinÄ— fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="33"/>
         <source>Cb. Fl.</source>
         <extracomment>Contrabass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="34"/>
         <source>Double Contrabass Flute</source>
-        <translation type="unfinished"/>
+        <translation>SubkontrabosinÄ— fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="36"/>
         <source>D. Cb. Fl.</source>
         <extracomment>Double Contrabass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sub. kb. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="37"/>
         <source>Hyperbass Flute</source>
-        <translation type="unfinished"/>
+        <translation>HiperbosinÄ— fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="39"/>
         <source>Hb. Fl.</source>
         <extracomment>Hyperbass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Hip. b. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="40"/>
@@ -224,46 +224,46 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="64"/>
         <source>Flageolet</source>
-        <translation type="unfinished"/>
+        <translation>Flažoletas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="66"/>
         <source>Fla.</source>
         <extracomment>Flageolet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Flaž.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="67"/>
         <source>French Flageolet</source>
-        <translation type="unfinished"/>
+        <translation>Prancūziškas flažoletas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="69"/>
         <source>Fr. Fla.</source>
         <extracomment>French Flageolet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Pranc. flaž.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="70"/>
         <source>English Flageolet</source>
-        <translation type="unfinished"/>
+        <translation>Angliškas flažoletas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="72"/>
         <source>Eng. Fla.</source>
         <extracomment>English Flageolet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Angl. flaž.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="73"/>
         <source>Irish Flute</source>
-        <translation type="unfinished"/>
+        <translation>Airiška fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="75"/>
         <source>Ir. Fl.</source>
         <extracomment>Irish Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Air. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="76"/>
@@ -323,7 +323,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="91"/>
         <source>Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="93"/>
@@ -334,7 +334,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="94"/>
         <source>G Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>G sopraninÄ— okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="96"/>
@@ -345,7 +345,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="97"/>
         <source>F Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>F sopraninÄ— okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="99"/>
@@ -356,7 +356,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="100"/>
         <source>C Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>C sopraninÄ— okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="102"/>
@@ -367,7 +367,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="103"/>
         <source>Bâ™­ Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>B sopraninÄ— okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="105"/>
@@ -378,7 +378,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="106"/>
         <source>G Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>G altinÄ— okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="108"/>
@@ -389,7 +389,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="109"/>
         <source>F Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>F altinÄ— okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="111"/>
@@ -400,7 +400,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="112"/>
         <source>C Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>C altinÄ— okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="114"/>
@@ -411,7 +411,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="115"/>
         <source>B♭­ Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>B altinÄ— okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="117"/>
@@ -422,7 +422,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="118"/>
         <source>C Bass Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>C bosinÄ— okarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="120"/>
@@ -433,7 +433,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="121"/>
         <source>Pan Flute</source>
-        <translation type="unfinished"/>
+        <translation>Pano fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="123"/>
@@ -490,13 +490,13 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="139"/>
         <source>Recorder</source>
-        <translation type="unfinished"/>
+        <translation>IÅ¡ilginÄ— fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="141"/>
         <source>Rec.</source>
         <extracomment>Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>IÅ¡ilg. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="142"/>
@@ -512,7 +512,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="145"/>
         <source>Sopranino Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Sopranininė išlginė fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="147"/>
@@ -523,7 +523,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="148"/>
         <source>Soprano Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninė išilginė fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="150"/>
@@ -534,7 +534,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="151"/>
         <source>Alto Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Altinė išilginė fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="153"/>
@@ -545,7 +545,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="154"/>
         <source>Tenor Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Tenorinė išilginė fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="156"/>
@@ -556,7 +556,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="157"/>
         <source>Bass Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Bosinė išilginė fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="159"/>
@@ -567,7 +567,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="160"/>
         <source>Contrabass Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabosinė išilginė fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="162"/>
@@ -578,7 +578,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="163"/>
         <source>Greatbass Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Didžioji bosinė išilginė fleita</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="165"/>
@@ -589,7 +589,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="166"/>
         <source>Slide Whistle</source>
-        <translation type="unfinished"/>
+        <translation>Slankiklinis Å¡vilpukas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="168"/>
@@ -601,7 +601,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="169"/>
         <location filename="../instruments/instrumentsxml.h" line="175"/>
         <source>Tin Whistle</source>
-        <translation type="unfinished"/>
+        <translation>Alavo Å¡vilpukas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="171"/>
@@ -613,7 +613,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="172"/>
         <source>Bâ™­ Tin Whistle</source>
-        <translation type="unfinished"/>
+        <translation>B alavo Å¡vilpukas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="174"/>
@@ -624,7 +624,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="178"/>
         <source>Piccolo Oboe</source>
-        <translation type="unfinished"/>
+        <translation>Pikolo obojus</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="180"/>
@@ -635,7 +635,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="181"/>
         <source>Oboe</source>
-        <translation type="unfinished"/>
+        <translation>Obojus</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="183"/>
@@ -646,7 +646,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="184"/>
         <source>Baroque Oboe</source>
-        <translation type="unfinished"/>
+        <translation>Barokinis obojus</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="186"/>
@@ -657,7 +657,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="187"/>
         <source>Oboe d'amore</source>
-        <translation type="unfinished"/>
+        <translation>MeilÄ—s obojus</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="189"/>
@@ -668,7 +668,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="190"/>
         <source>Oboe da caccia</source>
-        <translation type="unfinished"/>
+        <translation>Medžioklės obojus</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="192"/>
@@ -679,7 +679,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="193"/>
         <source>English Horn</source>
-        <translation type="unfinished"/>
+        <translation>Anglų ragas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="195"/>
@@ -690,7 +690,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="196"/>
         <source>Baritone Oboe</source>
-        <translation type="unfinished"/>
+        <translation>Baritoninis obojus</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="198"/>
@@ -701,7 +701,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="199"/>
         <source>Piccolo Heckelphone</source>
-        <translation type="unfinished"/>
+        <translation>Pikolo hekelfonas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="201"/>
@@ -712,7 +712,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="202"/>
         <source>Heckelphone</source>
-        <translation type="unfinished"/>
+        <translation>Hekelfonas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="204"/>
@@ -726,12 +726,12 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="205"/>
         <source>Heckelphone-clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Hekelfonas klarnetas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="208"/>
         <source>Sopranino Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Sopranininis Å¡almÄ—jus</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="210"/>
@@ -742,7 +742,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="211"/>
         <source>Soprano Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninis Å¡almÄ—jus</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="213"/>
@@ -753,7 +753,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="214"/>
         <source>Alto Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Altinis Å¡almÄ—jus</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="216"/>
@@ -764,7 +764,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="217"/>
         <source>Tenor Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Tenorinis Å¡almÄ—jus</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="219"/>
@@ -775,7 +775,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="220"/>
         <source>Bass Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis Å¡almÄ—jus</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="222"/>
@@ -786,7 +786,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="223"/>
         <source>Great Bass Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Didysis bosinis Å¡almÄ—jus</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="225"/>
@@ -808,7 +808,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="229"/>
         <source>Crumhorn</source>
-        <translation type="unfinished"/>
+        <translation>Krumhornas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="231"/>
@@ -819,7 +819,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="232"/>
         <source>Soprano Crumhorn</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninis krumhornas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="234"/>
@@ -830,7 +830,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="235"/>
         <source>Alto Crumhorn</source>
-        <translation type="unfinished"/>
+        <translation>Altinis krumhornas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="237"/>
@@ -841,7 +841,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="238"/>
         <source>Tenor Crumhorn</source>
-        <translation type="unfinished"/>
+        <translation>Tenorinis krumhornas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="240"/>
@@ -852,7 +852,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="241"/>
         <source>Bass Crumhorn</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis krumhornas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="243"/>
@@ -863,7 +863,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="244"/>
         <source>Greatbass Crumhorn</source>
-        <translation type="unfinished"/>
+        <translation>Didysis bosinis krumhornas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="246"/>
@@ -874,166 +874,166 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="247"/>
         <source>Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Dūdmaišis</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="249"/>
         <source>Cm.</source>
         <extracomment>Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>DÅ«dm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="250"/>
         <source>Soprano Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninis dūdmaišis</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="252"/>
         <source>S. Cm.</source>
         <extracomment>Soprano Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. dūdm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="253"/>
         <source>Alto Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Altinis dūdmaišis</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="255"/>
         <source>A. Cm.</source>
         <extracomment>Alto Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. dūdm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="256"/>
         <source>Tenor Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Tenorinis dūdmaišis</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="258"/>
         <source>T. Cm.</source>
         <extracomment>Tenor Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. dūdm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="259"/>
         <source>Bass Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis dūdmaišis</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="261"/>
         <source>B. Cm.</source>
         <extracomment>Bass Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. dūdm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="262"/>
         <location filename="../instruments/instrumentsxml.h" line="271"/>
         <source>Duduk</source>
-        <translation type="unfinished"/>
+        <translation>Dudukas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
 Dulcian</extracomment>
-        <translation type="unfinished"/>
+        <translation>Dudk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="265"/>
         <source>F Duduk</source>
-        <translation type="unfinished"/>
+        <translation>F dudukas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="267"/>
         <source>F Du.</source>
         <extracomment>F Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>F dudk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="268"/>
         <source>E Duduk</source>
-        <translation type="unfinished"/>
+        <translation>E dudukas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="270"/>
         <source>E Du.</source>
         <extracomment>E Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>E dudk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="274"/>
         <source>C Duduk</source>
-        <translation type="unfinished"/>
+        <translation>C dudukas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="276"/>
         <source>C Du.</source>
         <extracomment>C Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>C dudk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="277"/>
         <source>B Duduk</source>
-        <translation type="unfinished"/>
+        <translation>B dudukas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="279"/>
         <source>B Du.</source>
         <extracomment>B Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>B dudk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="280"/>
         <source>Bâ™­ Duduk</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ dudukas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="282"/>
         <source>Bâ™­ Du.</source>
         <extracomment>Bâ™­ Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>BBâ™­ dudk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="283"/>
         <source>A Duduk</source>
-        <translation type="unfinished"/>
+        <translation>A dudukas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="285"/>
         <source>A Du.</source>
         <extracomment>A Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>A dudk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="286"/>
         <source>G Duduk</source>
-        <translation type="unfinished"/>
+        <translation>G dudukas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="288"/>
         <source>G Du.</source>
         <extracomment>G Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>G dudk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="289"/>
         <source>A Bass Duduk</source>
-        <translation type="unfinished"/>
+        <translation>A bosinis dudukas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="291"/>
         <source>A B. Du.</source>
         <extracomment>A Bass Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>A b. dudk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="292"/>
         <source>Soprano Kelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninis kelhornas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="294"/>
@@ -1044,7 +1044,7 @@ Dulcian</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="295"/>
         <source>Alto Kelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Altinis kelhornas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="297"/>
@@ -1055,7 +1055,7 @@ Dulcian</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="298"/>
         <source>Tenor Kelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Tenorinis kelhornas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="300"/>
@@ -1066,7 +1066,7 @@ Dulcian</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="301"/>
         <source>Bass Kelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis kelhornas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="303"/>
@@ -1077,7 +1077,7 @@ Dulcian</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="304"/>
         <source>Greatbass Kelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Didysis bosinis kelhornas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="306"/>
@@ -1121,11 +1121,11 @@ Dulcian</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="316"/>
         <source>Shenai</source>
-        <translation type="unfinished"/>
+        <translation>Å anai</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1135,7 +1135,7 @@ Sheng</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="319"/>
         <source>Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Klarnetas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="321"/>
@@ -1146,7 +1146,7 @@ Sheng</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="322"/>
         <source>Piccolo Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Pikolo klarnetas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="324"/>
@@ -1157,7 +1157,7 @@ Sheng</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="325"/>
         <source>Soprano Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninis klarnetas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="327"/>
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
-        <translation type="unfinished"/>
+        <source>C Clarinet</source>
+        <translation>C klarnetas</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation>D klarnetas</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ klarinetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ klarinetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>A klarnetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Altinis klarnetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Basetinis klarnetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
-        <translation type="unfinished"/>
+        <translation>F altinis klarnetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis klarnetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Kontraltinis klarnetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabosinis klarnetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Å almÄ—jus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Sopranininis Å¡almÄ—jus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninis Å¡almÄ—jus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Altinis Å¡almÄ—jus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Tenorinis Å¡almÄ—jus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis Å¡almÄ—jus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
-        <translation type="unfinished"/>
+        <translation>Fagotas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
-        <translation type="unfinished"/>
+        <translation>Kontrafagotas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
-        <translation type="unfinished"/>
+        <translation>Liežuvėlinis kontrabosas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Sariuzofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopranininis sariuzofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninis sariuzofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Altinis sariuzofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Tenorinis sariuzofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Baritoninis sariuzofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis sariuzofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabosinis sariuzofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Saksofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopranisinis saksofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>a</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopranininis saksofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninis saksofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Mecosopraninis saksofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Altinis saksofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Melodinis saksofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Tenorinis saksofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Baritoninis saksofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis saksofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabosinis saksofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Subkontrabosinis saksofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
-        <translation type="unfinished"/>
+        <translation>Dūdmaišis</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>LÅ«pinÄ— armonikÄ—lÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
-        <translation type="unfinished"/>
+        <translation>Akordeonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
-        <translation type="unfinished"/>
+        <translation>Bandoneonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
-        <translation type="unfinished"/>
+        <translation>Koncertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
-        <translation type="unfinished"/>
+        <translation>Melodika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
-        <translation type="unfinished"/>
+        <translation>Variniai pučiamieji</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
-        <translation type="unfinished"/>
+        <translation>F valtornÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
-        <translation type="unfinished"/>
+        <translation>Aukštoji C valtornė</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ valtornÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
-        <translation type="unfinished"/>
+        <translation>A valtornÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
-        <translation type="unfinished"/>
+        <translation>As valtornÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
-        <translation type="unfinished"/>
+        <translation>G valtornÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
-        <translation type="unfinished"/>
+        <translation>E valtornÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Es valtornÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
-        <translation type="unfinished"/>
+        <translation>D valtornÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
-        <translation type="unfinished"/>
+        <translation>C valtornÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ bosinÄ— valtornÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
-        <translation type="unfinished"/>
+        <translation>Es kornetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>Su surdina (dulsikliu)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
-        <translation type="unfinished"/>
+        <translation>B kornetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sakshornas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
-        <translation type="unfinished"/>
+        <translation>F altinÄ— valtornÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
-        <translation type="unfinished"/>
+        <translation>Es altinÄ— valtornÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
-        <translation type="unfinished"/>
+        <translation>BaritoninÄ— valtornÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
-        <translation type="unfinished"/>
+        <translation>BaritoninÄ— valtornÄ— (smuiko rakte)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
-        <translation type="unfinished"/>
+        <translation>Pašto ragas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
-        <translation type="unfinished"/>
+        <translation>Alpių ragas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Pikolo trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ pikolo trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
-        <translation type="unfinished"/>
+        <translation>A pikolo trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Es trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>D trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>C trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Kišeninis trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Slankiklinis trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Tenorinis trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Es bosinis trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
-        <translation type="unfinished"/>
+        <translation>C bosinis trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ bosinis trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
-        <translation type="unfinished"/>
+        <translation>Barokinis trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
-        <translation type="unfinished"/>
+        <translation>F barokinis trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Es barokinis trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
-        <translation type="unfinished"/>
+        <translation>D barokinis trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
-        <translation type="unfinished"/>
+        <translation>C barokinis trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ barokinis trimitas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
-        <translation type="unfinished"/>
+        <translation>Fliugelhornas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
-        <translation type="unfinished"/>
+        <translation>Melofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
-        <translation type="unfinished"/>
+        <translation>Ofikledas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
-        <translation type="unfinished"/>
+        <translation>F altinis ofikledas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
-        <translation type="unfinished"/>
+        <translation>Es altinis ofikledas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
-        <translation type="unfinished"/>
+        <translation>C bosinis ofikledas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ bosinis ofikledas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
-        <translation type="unfinished"/>
+        <translation>Es kontrabosinis ofikledas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
-        <translation type="unfinished"/>
+        <translation>Kornetinas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
-        <translation type="unfinished"/>
+        <translation>Kornetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninis kornetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
-        <translation type="unfinished"/>
+        <translation>Altinis kornetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
-        <translation type="unfinished"/>
+        <translation>Tenorinis kornetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
-        <translation type="unfinished"/>
+        <translation>Serpentinas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Trombonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombonas (smuiko rakte)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninis trombonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Altinis trombonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Tenorinis trombonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis trombonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabosinis trombonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
-        <translation type="unfinished"/>
+        <translation>Eufoniumas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Eufoniumas (smuiko rakte)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
-        <translation type="unfinished"/>
+        <translation>TÅ«ba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
+        <translation>F tūba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
-        <translation type="unfinished"/>
+        <translation>Es tūba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
-        <translation type="unfinished"/>
+        <translation>Es tūba (smuiko rakte)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
-        <translation type="unfinished"/>
+        <translation>C tūba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
-        <translation type="unfinished"/>
+        <translation>B♭ tūba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
-        <translation type="unfinished"/>
+        <translation>B♭ tūba (smuiko rakte)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
-        <translation type="unfinished"/>
+        <translation>F bosinė tūba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Es bosinė tūba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
-        <translation type="unfinished"/>
+        <translation>Subkontrabosinė tūba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
-        <translation type="unfinished"/>
+        <translation>Helikonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
-        <translation type="unfinished"/>
+        <translation>Siuzafonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
-        <translation type="unfinished"/>
+        <translation>Vagnerio tūba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
-        <translation type="unfinished"/>
+        <translation>B♭ Vagnerio tūba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
-        <translation type="unfinished"/>
+        <translation>F Vagnerio tūba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
-        <translation type="unfinished"/>
+        <translation>Didžeridu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
-        <translation type="unfinished"/>
+        <translation>Vuvezela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
-        <translation type="unfinished"/>
+        <translation>ToninÄ— perkusija</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
-        <translation type="unfinished"/>
+        <translation>Timpanai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
-        <translation type="unfinished"/>
+        <translation>Varpeliai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
-        <translation type="unfinished"/>
+        <translation>Antikinės lėkštelės</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
-        <translation type="unfinished"/>
+        <translation>Tubafonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
-        <translation type="unfinished"/>
+        <translation>Kleketai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
-        <translation type="unfinished"/>
+        <translation>Vibrafonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
-        <translation type="unfinished"/>
+        <translation>Metalofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninis Orfo metalofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
-        <translation type="unfinished"/>
+        <translation>Altinis Orfo metalofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis Orfo metalofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
-        <translation type="unfinished"/>
+        <translation>Orkestriniai varpai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
-        <translation type="unfinished"/>
+        <translation>Plieniniai būgnai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninis plieninis būgnas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
-        <translation type="unfinished"/>
+        <translation>Altinis plieninis būgnas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
-        <translation type="unfinished"/>
+        <translation>Tenorinis plieninis būgnas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis plieninis būgnas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
-        <translation type="unfinished"/>
+        <translation>Rankiniai varpai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
-        <translation type="unfinished"/>
+        <translation>Toniniai gongai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
-        <translation type="unfinished"/>
+        <translation>Fleksatonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
-        <translation type="unfinished"/>
+        <translation>Muzikinis pjūklas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
-        <translation type="unfinished"/>
+        <translation>MuzikinÄ—s taurÄ—s</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>Stiklo armonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
-        <translation type="unfinished"/>
+        <translation>Ksilofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninis Orfo ksilofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
-        <translation type="unfinished"/>
+        <translation>Altinis Orfo ksilofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis Orfo ksilofonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
-        <translation type="unfinished"/>
+        <translation>Ksilorimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
-        <translation type="unfinished"/>
+        <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
-        <translation type="unfinished"/>
+        <translation>BosinÄ— marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
-        <translation type="unfinished"/>
+        <translation>Dulcimeras</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
-        <translation type="unfinished"/>
+        <translation>Toniniai klaksonai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
-        <translation type="unfinished"/>
+        <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
-        <translation type="unfinished"/>
+        <translation>Aukšta kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
-        <translation type="unfinished"/>
+        <translation>AltinÄ— kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
-        <translation type="unfinished"/>
+        <translation>NetoninÄ— perkusija</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
-        <translation>Mušamieji</translation>
+        <translation>Mušamųjų komplektas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
-        <translation type="unfinished"/>
+        <translation>Mažasis būgnas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bosinis būgnas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
-        <translation type="unfinished"/>
+        <translation>Pikolo mažasis būgnas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
-        <translation type="unfinished"/>
+        <translation>Kariškas būgnelis</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
-        <translation type="unfinished"/>
+        <translation>Tomtomai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tomai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
-        <translation type="unfinished"/>
+        <translation>Kiniški tomtomai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
-        <translation type="unfinished"/>
+        <translation>Bongai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
-        <translation type="unfinished"/>
+        <translation>Kongos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
-        <translation type="unfinished"/>
+        <translation>Timbalai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
-        <translation type="unfinished"/>
+        <translation>BÅ«gnelis</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
-        <translation type="unfinished"/>
+        <translation>Tabla</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
-        <translation type="unfinished"/>
+        <translation>Kuika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
-        <translation type="unfinished"/>
+        <translation>Pirštinės lėkštelės</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
-        <translation type="unfinished"/>
+        <translation>Haihetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tamtamas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
-        <translation type="unfinished"/>
+        <translation>Varpai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
-        <translation type="unfinished"/>
+        <translation>Metalo lakštas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
-        <translation type="unfinished"/>
+        <translation>Dubeniniai gongai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
-        <translation type="unfinished"/>
+        <translation>MetalinÄ—s kastanjetÄ—s</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
-        <translation type="unfinished"/>
+        <translation>Stabdžių būgnai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
-        <translation type="unfinished"/>
+        <translation>Metalo vamzdžiai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
-        <translation type="unfinished"/>
+        <translation>GrandinÄ—s</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
-        <translation type="unfinished"/>
+        <translation>Priekalas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
-        <translation type="unfinished"/>
+        <translation>Trinkos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Trikampis</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Lėkštė</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Pakabinta lėkštė</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Kiniška lėkštė</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Žema lėkštė</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Aukšta lėkštė</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
-        <translation type="unfinished"/>
+        <translation>Kleketas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
-        <translation type="unfinished"/>
+        <translation>Strypeliai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
-        <translation type="unfinished"/>
+        <translation>KastanjetÄ—s</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
-        <translation type="unfinished"/>
+        <translation>Guira</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
-        <translation type="unfinished"/>
+        <translation>Marakos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
-        <translation type="unfinished"/>
+        <translation>Kabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
-        <translation type="unfinished"/>
+        <translation>Griaustinis</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
-        <translation type="unfinished"/>
+        <translation>Å vitrinio popieriaus blokai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
-        <translation type="unfinished"/>
+        <translation>Mediniai vÄ—jo varpeliai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
-        <translation type="unfinished"/>
+        <translation>Bambukiniai vÄ—jo varpeliai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
-        <translation type="unfinished"/>
+        <translation>Metaliniai vÄ—jo varpeliai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
-        <translation type="unfinished"/>
+        <translation>Stikliniai vÄ—jo varpeliai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
-        <translation type="unfinished"/>
+        <translation>Kriaukliniai vÄ—jo varpeliai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
-        <translation type="unfinished"/>
+        <translation>Akmenys</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
-        <translation type="unfinished"/>
+        <translation>Spragtukas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
-        <translation type="unfinished"/>
+        <translation>Pliaukštelėjimas delnais</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
-        <translation type="unfinished"/>
+        <translation>Pliaukštelėjimas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
-        <translation type="unfinished"/>
+        <translation>treptelÄ—jimas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamburinas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
-        <translation type="unfinished"/>
+        <translation>Žygiavimo perkusija</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
-        <translation type="unfinished"/>
+        <translation>Tenoriniai būgnai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
-        <translation type="unfinished"/>
+        <translation>Bosiniai būgnai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
-        <translation type="unfinished"/>
+        <translation>Lėkštės</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
-        <translation type="unfinished"/>
+        <translation>Vokalas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
-        <translation type="unfinished"/>
+        <translation>Balsas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
-        <translation type="unfinished"/>
+        <translation>Berniuko sopranas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
-        <translation type="unfinished"/>
+        <translation>Sopranas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
-        <translation type="unfinished"/>
+        <translation>Mecosopranas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
-        <translation type="unfinished"/>
+        <translation>Altas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
-        <translation type="unfinished"/>
+        <translation>Kontraltas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
-        <translation type="unfinished"/>
+        <translation>Kantratenoras</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
-        <translation type="unfinished"/>
+        <translation>TEnoras</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
-        <translation type="unfinished"/>
+        <translation>Baritonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bosas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
-        <translation type="unfinished"/>
+        <translation>Klavišiniai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
-        <translation type="unfinished"/>
+        <translation>Pianinas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
-        <translation type="unfinished"/>
+        <translation>Fortepijonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
-        <translation type="unfinished"/>
+        <translation>Pianinas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
-        <translation type="unfinished"/>
+        <translation>Baro pianinas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
-        <translation type="unfinished"/>
+        <translation>Žaislinis pianinas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
-        <translation type="unfinished"/>
+        <translation>Klavikordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
-        <translation type="unfinished"/>
+        <translation>Klavesinas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
-        <translation type="unfinished"/>
+        <translation>Virdžinalas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
-        <translation type="unfinished"/>
+        <translation>ÄŒelesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
-        <translation type="unfinished"/>
+        <translation>Elektrinis pianinas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
-        <translation type="unfinished"/>
+        <translation>Klavinetas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
-        <translation type="unfinished"/>
+        <translation>Vargonai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
-        <translation type="unfinished"/>
+        <translation>Stuksintys vargonai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
-        <translation type="unfinished"/>
+        <translation>Hamondo vargonai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
-        <translation type="unfinished"/>
+        <translation>Vargonai sukamais garsiakalbiais</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
-        <translation type="unfinished"/>
+        <translation>Vamzdiniai vargonai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
-        <translation type="unfinished"/>
+        <translation>Liežuvėliniai vargonai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
-        <translation type="unfinished"/>
+        <translation>Elektroniniai instrumentai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Efektų sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>lietus</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>Garso takelis</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>Kristalinis</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>atmosfera</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>vaiskumas</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>kaukai</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>aidai</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>mokslinÄ— fantastika</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Atmosferos sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Vaiskumo sitezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Skaidrumo sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Aidų sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Kaukų sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Lietaus sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Mokslo fantastikos sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Garso takelio sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Fono sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>naujasis amžius</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>Å¡iltas</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>daugiabalsis sintezatorius</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>choras</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>strykinis</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>metalinis</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>alio</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>išpūtimas</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Naujojo amžiaus sitezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Å iltas sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Daugiabalsis sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Choro sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Strikinis sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Metalinis sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Alio sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Išpūtimo sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Pjūklinių virpesių sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Sinusinių virpesių sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Stačiakampių virpesių sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
-        <translation type="unfinished"/>
+        <translation>Marteno bangos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>KÅ«lÄ—s sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Bosinis sintezatorius</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>sintetinis bosas 1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>sintetinis bosas 2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
         <source>Brass Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Varinių pučiamųjų sintezatorius</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>Sintetiniai var. puč. 1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>Sintetiniai var. puč. 2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Styginių sintezatorius</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>Sintetiniai styginiai 1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>Sintetiniai styginiai 2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
-        <translation type="unfinished"/>
+        <translation>Tereminas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
-        <translation type="unfinished"/>
+        <translation>Perkusijos sintezatorius</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
-        <translation type="unfinished"/>
+        <translation>Styginiai gnaibomieji</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
-        <translation type="unfinished"/>
+        <translation>Bandža</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Bandža [tabulatūra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
-        <translation type="unfinished"/>
+        <translation>Tenorinė bandža</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>Pikolo balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>Prima balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>Sekunda balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>AltinÄ— balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>BosinÄ— balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
-        <translation type="unfinished"/>
+        <translation>KontrabosinÄ— balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
-        <translation type="unfinished"/>
+        <translation>Buzukis</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
-        <translation type="unfinished"/>
+        <translation>Buzukis (3)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
-        <translation type="unfinished"/>
+        <translation>Buzukis (4)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
-        <translation type="unfinished"/>
+        <translation>SopraninÄ— gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
-        <translation type="unfinished"/>
+        <translation>AltinÄ— gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
-        <translation type="unfinished"/>
+        <translation>KlasikinÄ— gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Klasikinė gitara [tabulatūra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
-        <translation type="unfinished"/>
+        <translation>AkustinÄ— gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Akustinė gitara [tabulatūra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
-        <translation type="unfinished"/>
+        <translation>11-stygÄ— altinÄ— gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
-        <translation type="unfinished"/>
+        <translation>12-stygÄ— altinÄ— gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
-        <translation type="unfinished"/>
+        <translation>Havajų gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
-        <translation type="unfinished"/>
+        <translation>ElektrinÄ— gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Elektrinė gitara [tabulatūra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
-        <translation type="unfinished"/>
+        <translation>Arfa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
-        <translation type="unfinished"/>
+        <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
-        <translation type="unfinished"/>
+        <translation>Liutnia</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Liutnia [tabulatūra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
-        <translation type="unfinished"/>
+        <translation>Liutnia 5</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
-        <translation type="unfinished"/>
+        <translation>Liutnia 6</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
-        <translation type="unfinished"/>
+        <translation>Liutnia 7</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
-        <translation type="unfinished"/>
+        <translation>Liutnia 8</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
-        <translation type="unfinished"/>
+        <translation>Liutnia 9</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
-        <translation type="unfinished"/>
+        <translation>Liutnia 10</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
-        <translation type="unfinished"/>
+        <translation>Liutnia 13</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation type="unfinished"/>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
-        <translation type="unfinished"/>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>tremolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
-        <translation type="unfinished"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
+        <translation>5-stygÄ— bosinÄ— el. gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation type="unfinished"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
+        <translation>5-stygė bosinė el. gitara [tabulatūra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation type="unfinished"/>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
-        <translation type="unfinished"/>
+        <translation>Smuikai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
-        <translation type="unfinished"/>
+        <translation>Altai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
-        <translation type="unfinished"/>
+        <translation>Violončelės</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabosai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
-        <translation type="unfinished"/>
+        <translation>Viola da gamba (tabulatūra)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
+        <translation>Archliutnia</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>SenovinÄ— muzika</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
-        <translation type="unfinished"/>
+        <translation>Teorba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
-        <translation type="unfinished"/>
+        <translation>Mandolina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
-        <source>Mandola</source>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <source>Mandola</source>
+        <translation>Mandolina [tabulatūra]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
-        <translation type="unfinished"/>
+        <translation>AltinÄ— mandolina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
-        <translation type="unfinished"/>
+        <translation>TenorinÄ— mandolina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
-        <translation type="unfinished"/>
+        <translation>Mandočelė</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
-        <translation type="unfinished"/>
+        <translation>Å iamisenas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
-        <translation type="unfinished"/>
+        <translation>Sitaras</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
-        <translation type="unfinished"/>
+        <translation>UkulelÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Ukulelė [tabulatūra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
-        <translation type="unfinished"/>
+        <translation>TenorinÄ— ukulelÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
-        <translation type="unfinished"/>
+        <translation>BaritoninÄ— ukulelÄ—</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
-        <translation type="unfinished"/>
+        <translation>BosinÄ— gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Bosinė gitara [tabulatūra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
-        <translation type="unfinished"/>
+        <translation>Akustinis bosas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
-        <translation type="unfinished"/>
+        <translation>Elektrinis bosas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Elektrinis bosas [tabulatūra]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
-        <translation type="unfinished"/>
+        <translation>Beskirsnis el. bosas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
-        <source>Violin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <source>Violin</source>
+        <translation>Smuikas</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
-        <translation type="unfinished"/>
+        <translation>Altas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
-        <translation type="unfinished"/>
+        <translation>Violončelė</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabosas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
-        <translation type="unfinished"/>
+        <translation>Violonas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,9 +5523,9 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
-        <translation type="unfinished"/>
+        <translation>D violonas</translation>
     </message>
 </context>
 </TS>
\ No newline at end of file
diff --git a/share/locale/instruments_lv.ts b/share/locale/instruments_lv.ts
index 9e189a2..d7449be 100644
--- a/share/locale/instruments_lv.ts
+++ b/share/locale/instruments_lv.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_mn_MN.ts b/share/locale/instruments_mn_MN.ts
index ce3d929..cb19a68 100644
--- a/share/locale/instruments_mn_MN.ts
+++ b/share/locale/instruments_mn_MN.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Гурвалжин</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_nb.ts b/share/locale/instruments_nb.ts
index 98e71de..1403480 100644
--- a/share/locale/instruments_nb.ts
+++ b/share/locale/instruments_nb.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>D-klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>D Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Eâ™­-klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Eâ™­-kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Bâ™­-klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Bâ™­-kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A-klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>A-kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Altklarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>A. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Bassettklarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Ba. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Bassetthorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Ba. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Bassklarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Kontraaltklarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Ka. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Kontrabassklarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Kb. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Sopranino chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Si. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Sopran chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>S. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Alt chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>A. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Tenor chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>T. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Bass chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>B. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagott</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Kontrafagott</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Kfag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Rør Kontrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>R. Kbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Dulcian</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sopraninosarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Si. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sopransarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>S. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Altsarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>A. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Tenorsarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>T. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Baritonsarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Bar. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Bassarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>B. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Kontrabassarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Kb. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Pikkolosaksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Pi. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Sopraninosaksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Si.sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Sopransaksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S.sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulokrom</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Mezzosopransaksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>M.S. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Altsaksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A.sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Melodisk saksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Mel. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Tenorsaksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T.sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Barytonsaksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar.sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Bassaksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Kontrabass-saksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Kb.-sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Subkontrabass-saksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Skb.-sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Sekkepipe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Skp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Free Reed</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Munnspill</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Mns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12-hulls kromatisk munnspill i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14-hulls kromatisk munnspill i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12-hulls kromatisk munnspill i G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16-hulls kromatisk munnspill i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>12-hulls kromatisk tenormunnspill i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>10-hulls diatonisk munnspill i høy G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>10-hulls diatonisk munnspill i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>10-hulls diatonisk munnspill i D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>10-hulls diatonsik munnspill i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>10-hulls diatonisk munnspill i A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>10-hulls diatonisk munnspill i G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>10-hulls diatonisk munnspill i lav D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>20-hulls akkordmunnspill</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Bassmunnspill</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>B. mns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Hohner bassmunnspill</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Huang bassmunnspill</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Trekkspill</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Tsp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Konsertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Kons.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melodika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sopransheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>S. she.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Altsheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>A. she.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Tenorsheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>T. she.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Bassheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>B. she.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Messing</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Mes.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>F-horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>F hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Høy C-horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>H. C hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Bâ™­-horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Bâ™­ hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>A-horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>A hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Aâ™­-horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Aâ™­ hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>G-horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>G hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>E-horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>E hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Eâ™­-horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Eâ™­ hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>D-horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>D hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>C-horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Wienerhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>W. hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Basshorn i Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Bâ™­ ba hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Eâ™­-kornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Eâ™­-knt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>demp</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Bâ™­-kornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Bâ™­-knt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>F-althorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>F A. hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Eâ™­-althorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Eâ™­ A. hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Baritonhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Bar. hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Baritonhorn (G-nøkkel)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Posthorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Psthn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Alpehorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>Alphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Pikkolotrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Pikkolotrompet i Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>P.tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Pikkolotrompet i A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>P.tpt. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Eâ™­-trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Eâ™­-tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>D-trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>D-tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>C-trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>C-tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Bâ™­-trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Bâ™­-tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Lommetrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Lm.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Slidetrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Sl. tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Tenortrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tnr.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Basstrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>B.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Eâ™­-basstrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Eâ™­-b.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Basstrompet i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>B.tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Bâ™­-basstrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Bâ™­-b.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Barokktrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Bq.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>F-barokktrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>F-bq.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Eâ™­-barokktrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Eâ™­-bq.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>D-barokktrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>D-bq.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>C-barokktrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>C-bq.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Bâ™­-barokktrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Bâ™­-bq.tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Rag Dung</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Bygelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>By.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Sopranbygelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Sop. By.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Altbygelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Alt. By.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Barytonbygelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bar. By.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Flygelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flghn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Eufoniumbygelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Mellofonbygelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mel. By.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Kontrabassbygelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Kon. By.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Mellofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mfn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Ofikleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Of.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>F-altofikleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>F-a.of.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Eâ™­-altofikleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Eâ™­-a.of.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>C-bassofikleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>C-b.of.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Bâ™­-bassofikleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Bâ™­-b.of.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Eâ™­-kontrabassofikleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Eâ™­-kb.of.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Diskantzink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>D. zi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Zink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Sopranzink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>S. zi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Altzink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>A. zi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Tenorzink</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>T. zi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpent</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombone (G-nøkkel)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Soprantrombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>S. trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Alttrombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>A. trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Tenortrombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>T. trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Basstrombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>B. trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Kontrabasstrombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Kb. trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Euphonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Euphonium (G-nøkkel)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>F-tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Tidlig musikk</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Bâ™­ Fife</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Euph. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombone (G-nøkkel)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Euph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Euphonium (G-nøkkel)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>F tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Eâ™­-tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Eâ™­ tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>E♭-tuba (G-nøkkel)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>C-tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>C tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Bâ™­-tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Bâ™­ tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>B♭-tuba (G-nøkkel)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>F-basstuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>F-ba.tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Eâ™­-basstuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Eâ™­-ba.tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Subkontrabasstuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>Skb.tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helikon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sfn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Wagnertuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Wag.tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Bâ™­ Wagnertuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Bâ™­ Wag.tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>F Wagnertuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>F Wag.tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Konkylie</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Kon.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Sjofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sjo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Stemt slagverk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Pauker</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Pauk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Rototom</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt.t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Klokkespill</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Klk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Orff sopranklokkespill</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. S.klk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Orff altklokkespill</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O. A.klk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crotaler</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tbf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Kubjeller</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Kub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibrafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metallofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Orff sopranmetallofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O. s.met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Orff altmetallofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. a.met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Orff bassmetallofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O. b.met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Rørklokker</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Rør.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Oljefat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>Olj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Sopranoljefat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>S.olj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Altoljefat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A.olj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Gitaroljefat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr.olj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Tenoroljefat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T.olj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Cellooljefat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce.olj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Bassoljefat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B.olj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>HÃ¥ndbjeller</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Ha.bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Stemte gonger</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>St.go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexatone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Sag</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>sag</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Glass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>gla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Glassharmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gla.har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xylofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Orff sopranxylofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O. s.xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Orff altxylofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O. a.xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Orff bassxylofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O. b.xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xylomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>Xmrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Bassmarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>B.mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Stemte Klaxon horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>St. Klx. Hrn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Soprankalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>S.kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Altkalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A.kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Ustemt slagverk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Trommesett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Trms.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Skarptromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Sk.tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Basstromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>B.tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Pikkoloskarptromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P.sk.tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Tamburtromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Tmb.tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom-tom-tromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Kinesisk tom-tom-tromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Kin.tom.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongotrommer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Conga</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbale</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Rammetromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Rm.tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tabla</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Fingercymbaler</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Fi.cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Hi-hat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Bjeller</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Dombjeller</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Dombj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Ringeplate</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Ri. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Syngende boller</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Sng. Bol.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Metallkastanjetter</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Met. kst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Bil brems tromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Bil. Brs. Tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Jern rør</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Je. Rø.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Kjetting</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Kjt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Ambolt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Amb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Wood blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Wd. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Temple blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Ride-cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>R. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Kinesisk cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Kn. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Krasj cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Kr. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Splash cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Sp. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Kubjelle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Kbj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Kastanjetter</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Kst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Guiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Slit tromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Pisk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Pi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Skralle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Skr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Tordenplate</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Trdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Sandpapir blokker</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sa. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Vindspill tre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Vsp. tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Vindspill bambus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Vsp. bamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Vindspill metall</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Vsp. mtl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Vindspill glass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Vsp. gl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Vindspill skjell</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Vsp. skj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Steiner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Ste.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Knips</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Knp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>HÃ¥ndklapp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Hnd. klp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Klapp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Klp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Stomp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sto.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamburin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Marsjtrommer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Mt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tenortromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>Tt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Basstromme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>Bt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Cymbaler</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Cy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Vokal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Stemme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>St.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Guttesopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>Gs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Sopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzosopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Kontraalt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>K.alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Kontratenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>K.t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Baryton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Klaviatur</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Flygel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Stående piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Honky-tonk piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk.pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Lekepiano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>L.pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Klavikord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Klav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Cembalo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Cem.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Elektrisk piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>El.pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Orgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Percussive-orgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perc.-org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Hammond-orgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm.-org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Rotary-orgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Rot.-org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Pipeorgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Melodeon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Elektroniske instrumenter</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Effekt synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synth.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>lydspor</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Atmosphere synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Brightness  synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Krystall synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Ekko synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Troll synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Regn synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sci-fi synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Lydspor synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Pad synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>New Age Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Warm synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Poly synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Kor synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Bowed synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Metallisk synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Halo synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sweep synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Saw synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sine synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Square synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondes Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O. M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Melodisk synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Mel. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Bass synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Brass synthesizer</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>Streng synthesizer</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Brass synthesizer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>Streng synthesizer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Perkusjons synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Perk. Synn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Strengeinstrumenter</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tablatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Tenorbanjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T.bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Pikkolobalalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pi.bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Primabalalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr.bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Sekundabalalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sek.bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Altbalalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al.bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Bassbalalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>B.bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Kontrabassbalalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>Kb.bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Bouzouki (3 kor)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Bouzouki (4 kor)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Soprangitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>S.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Altgitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Klassisk gitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Klassisk gitar [Tablatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Akustisk gitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Akustisk gitar [Tablatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11-strengs altgitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-str.a.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12-strengsgitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-str.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal steelgitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. st.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Elektrisk gitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Elektrisk gitar [Tablatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harpe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Lutt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Lutt [Tablatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Lutt, 5 kor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Lutt, 6 kor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Lutt, 7 kor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Lutt, 8 kor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Lutt, 9 kor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Lutt, 10 kor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Lutt, 13 kor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A.lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolin [Tablatur]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>tremolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>5-strengs elektrisk bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>5-strengs elektrisk bass [Tablatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Fioliner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Fior.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Bratsjer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Bratr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Celloer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Celr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Kontrabasser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>Kbr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Gambe (Tablatur)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Erkelutt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Tidlig musikk</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Bâ™­ Fife</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Teorbe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Teo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolin [Tablatur]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Altmandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Tenormandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandocello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Oktavmandolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulele [Tablatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Tenor-ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten.-uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Baryton-ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar.-uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Bassgitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B.git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Bassgitar [Tablatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Akustisk bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Elektrisk bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>El. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Elektrisk bass [Tablatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Fretless elektrisk bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Frtl. El. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Strykere</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Fiolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Fio.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Bratsj</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Cello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Kontrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Kb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Kontrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pikkologambe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pi.ga.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Soprangambe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>S.ga.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Altgambe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A.ga.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Tenorgambe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T.ga.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Gambe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Ga.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Gambe (Tablatur)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Bassgambe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>B.ga.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>D-gambe</translation>
     </message>
diff --git a/share/locale/instruments_nl.ts b/share/locale/instruments_nl.ts
index 45616da..3225d5a 100644
--- a/share/locale/instruments_nl.ts
+++ b/share/locale/instruments_nl.ts
@@ -4,7 +4,7 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1"/>
         <source>Common instruments</source>
-        <translation>Algemene instrumenten</translation>
+        <translation>Gewone instrumenten</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="2"/>
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>Klarinet in C</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>Klarinet in C</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>D klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>D kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Eâ™­ klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Eâ™­ Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Bâ™­ klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Bâ™­ Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>A Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Alt klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>Al. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Bassetklarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Ba. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Bassethoorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Ba. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Basklarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Contra-alt Clarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>C-a. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Contrabasklarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cb. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Sopranino chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Si. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Sopraan Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>S. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Alt Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>A. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Tenor Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>T. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Bas Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>B. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Taragot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Contrafagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cfgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Contrabassaxofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>C.Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Dulciaan</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sopranino sarrusofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Si. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sopraan sarrusofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>S. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Altsarrusofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>A. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Tenor Sarrusofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>T. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Bariton Sarrusofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Bar. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Bas Sarrusofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>B. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Contrabas Sarrusofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Cb. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
-        <translation>Sopranissimo saxofoon</translation>
+        <translation>Sopranissimosaxofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sio. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
-        <translation>Sopranino saxofoon</translation>
+        <translation>Sopraninosaxofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Si. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
-        <translation>Sopraan saxofoon</translation>
+        <translation>Sopraansaxofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulochrome</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
-        <translation>Mezzo-Sopraan Saxofoon</translation>
+        <translation>Mezzo-Sopraansaxofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>M.S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Altsaxofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
-        <translation>Melodie Saxofoon </translation>
+        <translation>Melody Saxofoon </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Mel. Sax</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
-        <translation>Tenor saxofoon</translation>
+        <translation>Tenorsaxofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
-        <translation>Bariton Saxofoon</translation>
+        <translation>Baritonsaxofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar. Sax</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Bassaxofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
-        <translation>Contrabas Saxofoon</translation>
+        <translation>Contrabassaxofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Cb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
-        <translation>Subcontrabas Saxofoon</translation>
+        <translation>Subcontrabassaxofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Scb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Doedelzak</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Doed.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Vrij riet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>M Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12 gaats C chromatic mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14 gaats C chromatic mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12 gaats G chromatic mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16 gaats C chromatic mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>12 gaats tenor C chromatic mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>10 gaats hoge G diatonic mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>10 gaats F diatonic mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>10 gaats D diatonic mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>10 gaats C diatonic mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>10 gaats A diatonic mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>10 gaats G diatonic mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>10 gaats lage D diatonic mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>20 gaats chordet mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Bas mondharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Bs. Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Bas Hohner harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Bas Huang harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Accordion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melodica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sopraan Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>S She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Alt Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>A She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Tenor Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>T She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Bas Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>B She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Koper</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Hoorn in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>F Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Hoge C Hoorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>H. C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Hoorn in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Bâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Hoorn in A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>A Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Hoorn in Aâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Aâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Hoorn in G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>G Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Hoorn in E</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>E Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Hoorn in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Eâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Hoorn in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Hoorn in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Weense hoorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>W. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Hoorn in Bâ™­ basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Bâ™­ ba Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Eâ™­ Cornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Eâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>Dempen</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Bâ™­ Cornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Bâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxhoorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>F Alt Hoorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>F A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Eâ™­ Alt Hoorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Eâ™­ A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Baritonhoorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Bar. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Baritonhoorn (G-sleutel)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Posthoorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Psthn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Alphoorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>AlpHn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Piccolotrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Piccolo Trompet in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>P. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Piccolotrompet in A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>P. Tpt. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Eâ™­ Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Eâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>D Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>D Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>C Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>C Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Bâ™­ Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Bâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Pockettrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Pkt.Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Schuiftrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>STpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Tenor Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tnr. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
-        <translation>Bas Trompet</translation>
+        <translation>Bastrompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
-        <translation>Eâ™­ Bas Trompet</translation>
+        <translation>Bastrompet in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Eâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Bas Trompet in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>B. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Bâ™­ Bas Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Bâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Barok Trompet </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Bq. Tpt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Barok trompet in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Bq. Tpt. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Barok Trompet in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Bq. Tpt. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Barok Trompet in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Bq. Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Barok Trompet in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Bq. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Barok Trompet in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Bq. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Dungchen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Bugel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Sopraanbugel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Sop. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Altbugel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Alt. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Baritonbugel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bar. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Bugel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Eufonium Bugel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Mellofoonbugel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mel. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Contrabasbugel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Con. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Mellofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Ophicleïde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>F Alt Ophicleïde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>F A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>E♭ Alt Ophicleïde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Eâ™­ A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
-        <translation>C Bas Ophicleïde</translation>
+        <translation>Ophicleïde in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
-        <translation>C B. Oph.</translation>
+        <translation>Oph. (C)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
-        <translation>B♭ Bas Ophicleïde</translation>
+        <translation>Ophicleïde in B♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
-        <translation>Bâ™­ B. Oph.</translation>
+        <translation>Oph. (Bâ™­)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>E♭ Contrabas Ophicleïde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Eâ™­ Cb. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Cornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Sopraan Cornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>S. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Alt Cornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>A. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Tenor Cornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>T. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpent</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombone (G-sleutel)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Sopraan Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>S. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Alt Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>A. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Tenor Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>T. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Bastrombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>B. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Contrabastrombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Cb. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Eufonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Eufonium (G-sleutel)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>F tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Oude muziek</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Bâ™­ Fife</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Euf. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombone (G-sleutel)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Eufonium (G-sleutel)</translation>
+        <translation>Euf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>F Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Eâ™­ tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Eâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
-        <translation>Eâ™­ Tuba (G-sleutel)</translation>
+        <translation>Tuba in Eâ™­ (G-sleutel)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
-        <translation>C tuba</translation>
+        <translation>C-Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>C Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
-        <translation>Bâ™­ tuba</translation>
+        <translation>Tuba in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Bâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
-        <translation>Bâ™­ Tuba (G-sleutel)</translation>
+        <translation>Bâ™­-Tuba (G-sleutel)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
-        <translation>Bas Tuba in F</translation>
+        <translation>Bastuba in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
-        <translation>Ba. Tu. F</translation>
+        <translation>Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
-        <translation>Bas Tuba in Eâ™­</translation>
+        <translation>Bastuba in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
-        <translation>Ba. Tu. Eâ™­</translation>
+        <translation>Tu. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Sub-Contrabas Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>SCB. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helicon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousaphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Wagner tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Bâ™­ Wagner tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Bâ™­ Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>F Wagner tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>F Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Conch</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Gestemde percussie</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Pauken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Pauken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Roto-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Roto-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Klokkenspel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Klk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Orff Sopraan Klokkenspel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. S. Klk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Orff Alt Klokkenspel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O. A. Klk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crotales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubafoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tbf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Almglocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibrafoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
-        <translation>Vibrafoon</translation>
+        <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metallofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Orff Sopraan Metallofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O. S. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Orff Alt Metallofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. A. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Orff Bas Metallofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O. B. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Buisklokken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Buisklokken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Steeldrums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Sopraan Steeldrums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>S. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Alt Steeldrums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Gitaar Steeldrums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Tenor Steeldrums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Cello Steeldrums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Bas Steeldrums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Handbel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Handbel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Gestemde gongs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Gestemde gongs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexatoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Zingende zaag</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Zng. Zg</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Zingende Glazen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Zng. Glz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Glasharmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gla. Har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xylofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xylofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Orff Sopraan Xylofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O. S. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Orff Alt Xylofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O. A. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Orff Bas Xylofoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O. B. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xylomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>Xylomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Basmarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>Basmarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Gestemde Claxon Hoorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Gst. Clx. Hrn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Sopraan kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>S. Kal. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Alt Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Ongestemde percussie</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Drumset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Drumset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Snare drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Snare drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bassdrum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>Bassdrum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Piccolo Snare Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P. Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Militaire drum </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Mil. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Chinese Tom-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Chinese Tom-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongo's</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bongo's</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Conga's</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbalen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timbalen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Frame drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Fr. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tablas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Vingerbekkens</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Vingerbekkens</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Hi-hat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Gong</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Klokkenspel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Klokkenspel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
-        <translation>Jingle bel</translation>
+        <translation>Sledebellen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
-        <translation>Jingle bel</translation>
+        <translation>Sl. bel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Bell Plate</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Be. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Bowl Gongs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Bw. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Castagnettes (Metaal)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Cast.(Met.)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
-        <translation>Auto trommelremmen</translation>
+        <translation>Auto-trommelremmen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut. Trrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Iron Pipes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Ir. Pi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Kettingen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Ket.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Anvil</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Anv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
-        <translation>Woodbloks</translation>
+        <translation>Woodblocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
-        <translation>Woodbloks</translation>
+        <translation>W. Bl,</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
-        <translation>Templebloks</translation>
+        <translation>Templeblocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
-        <translation>Templebloks</translation>
+        <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Bekken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
-        <translation>Bekken</translation>
+        <translation>Bk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Ridebekken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
-        <translation>Ridebekken</translation>
+        <translation>R. bk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Chinees bekken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Chinees bekken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Crash bekken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Crash bekken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Splashbekken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Splashbekken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Koebel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Koebel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Castagnetten</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Castagnetten</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Güiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Güiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Kabassa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Kabassa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Spleettrommel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Spltrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Zweep</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Zweep</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Ratel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Rat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Thundersheet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Schuurblokken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sch. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Houten Wind Klokkenspel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Ht. Wn. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Bamboo Wind Klokkenspel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam. Wn. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Metalen Wind Klokkenspel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Met. Wn Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Glazen Wind Klokkenspel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Gl. Wn Kl..</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Schelpen Wind Klokkenspel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Sch. Wn Kl..</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Stenen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Ste.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Vingerklik</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Vingerklik</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Handklap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Handklap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Slap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Stamp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamboerijn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Mars Percussie</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Snare drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tenor drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>Tenor drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Bassdrums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>Bassdrums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Bekkens</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Bekkens</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Zang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Stem</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Stem</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Jongenssopraan</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>J. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Sopraan</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzo-sopraan</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Contra-alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Contratenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Bariton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Keyboards</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Vleugel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Honky Tonk Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Speelgoed Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Sp. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Klavechord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Kch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Klavecimbel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Kc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginaal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Electrische piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>El. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Orgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Slag orgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Slag Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Hammond-orgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Draaiorgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Dra. org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Pijporgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Tongorgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>To. org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Elektronische instrumenten</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Effect Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synth.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>Regen</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>Geluidsspoor</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>Kristal</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>Atmosfeer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>Helderheid</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>aardmannetjes</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>Echo's</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>Science fiction</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Atmosfeersynthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Helderheidsynthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Kristalsynthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Echoesynthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Trollensynthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Regensynthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sci-fi Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Soundtrack Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Pad Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>New Age</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>Warm</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>polysynth</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>Koor</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>strijkers</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>Metaal</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>halo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>sweep</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>New Agesynthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Warme Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Poly Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Koorsynthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Strijkerssynthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Metallic Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Halo Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sweep Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Zaagtandgolf synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sinusgolf synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Blokgolf synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Martenot golf</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>M. G.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Hamersynthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Hm. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Bassynthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Brass-synthesizer</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>synth-bas 1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>synth-bas 2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Brass-synthesizer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>synth-koper 1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>synth-koper 2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
         <translation>Strijkers synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>synth-strijkers 1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>synth-strijkers 2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Drum-synthesiser</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Drum Synth.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
-        <translation>Plucked snaren</translation>
+        <translation>Getokkelde snaarinstrumenten</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tablatuur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Tenor Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T. Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Piccolobalalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pic. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Prime-balalaiaka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Secundbalalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sec. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Altbalalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Basbalalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>B. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Contrabasbalalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>CB. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Bouzouki (trichordo)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Bouzouki (tetrachordo)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Sopraan gitaar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>S. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Altgitaar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A. git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Klassieke gitaar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Klassieke gitaar [Tablatuur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Acoestische gitaar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Akoestische gitaar [Tablatuur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11-snarige altgitaar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-sna. A. git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12 snarige gitaar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-sna. git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal-steel-Gitaar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Elektrische gitaar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El. git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Elektrische Gitaar [Tablatuur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Luit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>luit [Tablatuur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>5-korige Luit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>6-korige Luit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>7-korige Luit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>8-korige Luit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>9-korige Luit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>10-korige Luit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>13-korige Luit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A. Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolin [Tablatuur]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>tremolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>5 snarige electrische bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>5 snarige electrische bas [Tablatuur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>Pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
-        <translation type="unfinished"/>
+        <translation>Violen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
-        <translation type="unfinished"/>
+        <translation>Altviolen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
-        <translation type="unfinished"/>
+        <translation>Altv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
-        <translation type="unfinished"/>
+        <translation>Violoncelli</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vlci</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
-        <translation type="unfinished"/>
+        <translation>Contrabassen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
-        <translation type="unfinished"/>
+        <extracomment>Double Bass</extracomment>
+        <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
-        <translation>Vedel (tablatuur)</translation>
+        <translation>Viola da gamba (tablatuur)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Aartsluit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Oude muziek</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Bâ™­ Fife</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Teorbe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandoline</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolin [Tablatuur]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Alt-Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Tenor-Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandocello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Octaaf-Mandoline</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukelele [Tablatuur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Tenor Ukelel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Bariton Ukelele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Basgitaar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B. Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Basgitaar [Tabletuur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Akoestische bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Electrische bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Elektrische bas [Tablatuur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Fretloze electrische basgitaar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Frtl. El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Strijkers</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Viool</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Altviool</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Cello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Contrabas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Contrabas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Sopraanviola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>S. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Altviola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Tenor viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
-        <translation>Vedel</translation>
+        <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
-        <translation>Vedel (Tab)</translation>
+        <translation>Viola da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Viool</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>D viool</translation>
     </message>
diff --git a/share/locale/instruments_nn.ts b/share/locale/instruments_nn.ts
index 1632f3f..4ad36f9 100644
--- a/share/locale/instruments_nn.ts
+++ b/share/locale/instruments_nn.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_pl.ts b/share/locale/instruments_pl.ts
index 7573495..6b84ff6 100644
--- a/share/locale/instruments_pl.ts
+++ b/share/locale/instruments_pl.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>Clarinetto in C</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>Cl. in C</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Clarinetto in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>Cl. in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Clarinetto in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Cl. in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Clarinetto in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Cl. in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>Clarinetto in A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>Cl. in A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Clarinetto contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>Cl. c-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Clarinetto di bassetto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Cl. d. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Corno di bassetto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>C. d. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Clarinetto basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>Cl. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Clarinetto contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Cl. c-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Clarinetto contrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cl. c-b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Salmoè</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Salm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Salmoè sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Salm. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Salmoè soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>Salm. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Salmoè contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>Salm. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Salmoè tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>Salm. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Salmoè basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>Salm. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagotto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Controfagotto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>C-fag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Contrabbasso - reed</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>C-b. - reed</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Dulciana</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Cervellato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Cerv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sarr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sarrusofono sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Sarr. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sarrusofono soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>Sarr. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Sarrusofono alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>Sarr. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Sarrusofono tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>Sarr. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Sarrusofono baritono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Sarr. bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Sarrusofono basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>Sarr. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Sarrusofono contrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Sarr. c-b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Sassofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sass.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Sassofono sopranissimo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sass. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Sassofono sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Sass. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Sassofono soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>Sass. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulochrome</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Sassofono mezzosoprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>Sass. m-s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Sassofono contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>Sass. c-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Sassofono - melody</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Sass. - mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Sassofono tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>Sass. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Sassofono baritono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Sass. bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Sassofono basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>Sassofono b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Sassofono contrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Sass. c-b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Sassofono subcontrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Sass. subc-b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Cornamusa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>C-musa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Pozostałe dęte</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Armonica a bocca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Arm. a b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12 Hole C Chromatic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14 Hole C Chromatic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12 Hole G Chromatic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16 Hole C Chromatic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>12 Hole Tenor C Chromatic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>10 Hole High G Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>10 Hole F Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>10 Hole D Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>10 Hole C Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>10 Hole A Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>10 Hole G Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>10 Hole Low D Diatonic Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>20 Hole Chordet Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Armonica a bocca basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Arm. a b. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Bass Hohner Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Bass Huang Harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Fisarmonica diatonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Fis. d.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Band.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melodica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sheng soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>Sh. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Sheng contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>Sh. c-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Sheng tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>Sh. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Sheng basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>Sh. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Dęte blaszane</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Ottoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Corno in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>C. in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Corno alto in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>Corno a. in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Corno in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>C. in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Corno in A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>C. in A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Corno in Aâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>C. in Aâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Corno in G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>C. in G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Corno in E</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>C. in E</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Corno in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>C. in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Corno in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>C. in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Corno in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C. in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Corno Viennese</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>C. V.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Corno in Bâ™­ basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>C. in Bâ™­ b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Cornetta in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>C. in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>Mute</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Cornetta in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>C. in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
-        <translation>Flicorni</translation>
+        <translation>Flicorno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Corno contralto in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>C. c-a. in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Corno contralto in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>C. c-a. in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Corno baritono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>C. bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Corno baritono (Klucz wiolinowy)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Corno postale</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>C. p.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Corno alpino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>C. alp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Tromba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tr-ba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Tromba piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>Tr-ba picc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Tromba piccolo in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>Tr-ba picc. in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Tromba piccolo in A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>Tr-ba picc. in A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Tromba in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Tr-ba in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>Tromba in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>Tr-ba in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>Tromba in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>Tr-ba in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Tromba in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Tr-ba in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Tromba pocket</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Tr-ba p.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Tromba da tirarsi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Tr-ba d. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Tromba tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tr-ba t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Tromba basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>Tr-ba b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Tromba basso in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Tr-ba b. in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Tromba basso in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>Tr-ba b. in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Tromba basso in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Tr-ba b. in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Tromba barocco</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Tr-ba bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Tromba barocco in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Tr-ba bar. in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Tromba barocco in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Tr-ba bar. in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Tromba barocco in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Tr-ba bar. in D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Tromba barocco in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Tr-ba bar. in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Tromba barocco in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Tr-ba bar. in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Corno tibetano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>C. tib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Corno da caccia</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>C. d. c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Corno da caccia soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>C. d. c. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Corno da caccia contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>C. d. c. c-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Corno da caccia baritono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>C. d. c. bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Flicorno soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flic. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiscorno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fisc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlocorno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Kuhl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Eufonio - corno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Mellofono - corno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mell. - c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Contrabbasso - corno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>C-b. - c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Mellofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mell.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Oficleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Of.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Oficleide contralto in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>Of. c-a. in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Oficleide contralto in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Of. c-a. in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>Oficleide basso in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>Of. b. in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Oficleide basso Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Of. b. in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Oficleide contrabbasso in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Of. c-b. in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>C-no</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Cornetta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Cornetta soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>C. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Cornetta contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>C. c-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Cornetta tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>C. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpent</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Serp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Tr-ne</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombone (Klucz wiolinowy)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Trombone soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>Tr-ne s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Trombone contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>Tr-ne c-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Trombone tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>Tr-ne t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Trombone basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>Tr-ne b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Trombone contrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Tr-ne c-b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cimb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Eufonio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Eufonio (Klucz wiolinowy)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Tuba in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Muzyka dawna</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Piffero in Bâ™­</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Euf. - c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombone (Klucz wiolinowy)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Euf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Eufonio (Klucz wiolinowy)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>T. in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Tuba in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>T. in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba in Eâ™­ (Klucz wiolinowy)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Tuba in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>T. in C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Tuba in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>T. in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba in Bâ™­ (Klucz wiolinowy)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Tuba basso in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>T. b. in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Tuba basso in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>T. b. in Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Tuba subcontrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>T. subc-b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helicon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousafono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sous.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Tuba wagneriana</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>T. wagn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Tuba wagneriana in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>T. wagn. in Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>Tuba wagneriana in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>T. wagn. in F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Conch</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>C.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Didg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Perkusja melodyczna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Timpani</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Roto-tom</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>R.-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Campanelli</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Camp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Orff campanelli soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. camp. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Orff campanelli alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O. camp. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crotales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubafono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tub.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Campanaccio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Camp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibrafono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vibr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metallofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Orff metallofono soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O. met. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Orff metallofono alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. met. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Orff metallofono basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O. met. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Tubular bells</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Tub. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Steel pan</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. p.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Steel pan soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>St. p. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Steel pan contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>St. p. c-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Guitar steel drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Guit. st. dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Steel pan tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>St. p. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Cello steel drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>C. st. dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Steel pan basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>St. p. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Hand bells</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>H. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Tuned gongs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Tun. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexatone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flex.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Musical saw</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Mus. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Musical glasses</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Mus. gl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Glass harmonica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gl. harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xilofono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Orff xilofono soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O. xil. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Orff xilofono alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O. xil. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Orff xilofono basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O. xil. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xilomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>Xil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Marimba basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>Mar. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dulc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Tuned klaxon horns</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Tun. kl. horns</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Kalimba soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Kal. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Kalimba contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>Kal. c-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Perkusja</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Batteria</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Batt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Rullante</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Rull.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Grancassa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>Gr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Rullante piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>Rull. picc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Tamburo militare</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Tamb. mil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom-tom</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Tom</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Tom-tom cinese</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>T.-t. cin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Conga</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Tamburo a cornice</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Tamb. a c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tabla</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuíca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>C-ca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Finger cymbals</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>F. cymb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Hi-hat</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Bells</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Sleigh bells</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Sl. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Bell plate</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>B. pl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Bowl gongs</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>B. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Castagnette metallo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Cast. met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Automobile brake drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut. br. dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Iron pipes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Ir. pip.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Chains</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Incudine</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Inc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Wood blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>W. bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Temple blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>T. bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Piatti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>P-tti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Piatto ride</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>P-tto r.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Piatto cinese</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>P-tto cin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Piatto crash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>P-tto cr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Piatto splash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>P-tto spl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Cowbell</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>C.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Legnetti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>L-tti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Castagnette</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cast.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Güiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>G-ro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Q-da</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Slit drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Sl. dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Frusta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Fr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Raganella</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Rag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Thundersheet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Th.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Sandpaper blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>S. bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Wooden wind chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>W. w. ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Bamboo wind chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>B. w. ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Metal wind chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Met. w. ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Glass wind chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Gl. w. ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Shell wind chimes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Sh. w. ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Stones</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>St.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Finger snap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>F. sn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Hand clap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>H. cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Slap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Stamp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>St.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamburello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Perkusja marszowa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tamburo tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>T. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Tamburo basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>T. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Piatti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>P-tti</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Wokale</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Voce</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>V.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Voci bianche</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>V. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzosoprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>M-s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>C-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Contraltista</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>C-sta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Baritono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Klawiszowe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>P-no</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Pianoforte</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Upright piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Honky Tonk piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>H. T. p-no</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Toy piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Toy p-no</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Clavicordo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Cl-rdo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Clavicembalo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Cl-lo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Clavicembalo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Cl-lo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Pianoforte elettrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>P-no el.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Organo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Percussive organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perc. org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Organo Hammond</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Org. Hamm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Organo - rotary</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Org. - rot.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Organo - pipe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Armonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Armonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Arm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Elektroniczne</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Effect Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Sint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>Rain</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>Soundtrack</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>Crystal</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>Atmosphere</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>Brightness</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>Goblins</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>Echoes</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>Sci-Fi</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Atmosphere Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Brightness Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Crystal Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Echoes Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Goblins Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Rain Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sci-fi Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Soundtrack Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Pad Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>New Age</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>Warm</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>Polysynth</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>Choir</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>Bowed</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>Metallic</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>Halo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>Sweep</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>New Age Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Warm Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Poly Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Choir Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Bowed Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Metallic Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Halo Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sweep Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Saw Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sine Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Square Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondes Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O. M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Mallet Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Mall. Sint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Bass Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Brass Sintetizzatore</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>Synth-Bass-1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>String Sintetizzatore</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>Synth-Bass-2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Brass Sintetizzatore</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>Synth-Brass-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>Synth-Brass-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>String Sintetizzatore</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>Synth-String-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>Synth-String-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Ther.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Percussion Sintetizzatore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Perc. Sint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Strunowe szarpane</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Banjo tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>B. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Balalaika piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Bal. picc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Prima balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Secunda balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sec. bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Balalaika contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Bal. c-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Balalaika basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>Bal. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Balalaika contrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>Bal. c-b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bouz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Bouzouki (3-course)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Bouzouki (4-course)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Chitarra soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>Chit. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Chitarra alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>Chit. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Chitarra classica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Chit. cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Chitarra classica [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Chitarre acustiche</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Chitarre acustiche [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>Chitarra a 11 corde alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>Chit. a 11 c. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>Chitarra a 12 corde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>Chit. a 12 c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal steel guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. st. guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Chitarre elettriche</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>Chit. el.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Chitarre elettriche [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Arpa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Ar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>K.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Liuto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>L-to</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Liuto [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Liuto 5-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Liuto 6-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Liuto 7-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Liuto 8-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Liuto 9-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Liuto 10-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Liuto 13-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>L. a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolino [Tabulatura]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>Arco</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>Tremolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>Basso elettrico a 5 corde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>Basso elettrico a 5 corde [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Er.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>Pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Violini</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>V-ni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>V-le</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Violoncelli</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>V-c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Contrabbassi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>C-b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>C-b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola da gamba [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Arciliuto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Muzyka dawna</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Piffero in Bâ™­</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Tiorba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Th.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>M-no</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolino [Tabulatura]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>M-la</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Mandola contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Mandola tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandoloncello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>M-c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Mandolino ottava</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>M-no ott.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulele [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Ukulele tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Uk. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Ukulele baritono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Uk. bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Chitarra basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>Chit. b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Chitarra basso [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Basso acustiche</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Basso elettrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>B. el.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Basso elettrico [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Fretless basso elettrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Fr. b. el.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Smyczkowe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Er.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>V-no</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>V-la</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>V-c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Contrabbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>C-b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>P. d. v-le</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Viol soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>V. s.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Viol contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>V. c-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Viol tenore</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>V. t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>V-la d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola da gamba [Tabulatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>V-ne</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>Violone in D</translation>
     </message>
diff --git a/share/locale/instruments_pt.ts b/share/locale/instruments_pt.ts
index 4d10a0d..2726fdf 100644
--- a/share/locale/instruments_pt.ts
+++ b/share/locale/instruments_pt.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Clarinete em D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>Cl. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Clarinete em Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Cl. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Clarinete em Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Cl. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>Clarinete em A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>Cl. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Clarinete Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>Cl. Al. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Basset Clarinete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Ba. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Basset Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Ba. Hn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Clarinete Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>Cl. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Clarinete Contra-Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Cl.C-a</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Clarinete Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cl. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagote</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Contra Fagote</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Ct. Fg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Baixão</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusofone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxofone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Saxofone Sopraníssimo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sax. Sio.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Saxofone Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Sax. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Saxofone Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>Sax. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Saxofone Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>Sax. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Saxofone medolico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Sax. Mel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Saxofone Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>Sax. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Saxofone Barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Sax. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Saxofone Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>Sax. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Saxofone Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Sax. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Saxofone Subcontrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Sax. Scb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Gaita de Foles</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>G. F.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Harmónica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Harmónica Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Harm. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Acordeão</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Ac.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melódica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Trompa em F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>Tr. F.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Trompa em Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Tr. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Trompa em A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>Tr. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Trompa em Aâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Tr. Aâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Trompa em G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>Tr. G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Trompa em E</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>Tr. E</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Trompa em Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Tr. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Trompa em D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Tr. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Trompa em C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>Tr. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Trompa Alto em F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>Tr. A. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Trompa Alto em Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Tr. A. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Trompa Barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Tr. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Trompete Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>Tp. Pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Trompete Piccolo em Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>Tp. Pic. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Trompete Piccolo em A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>Tp. Pic. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Trompete em Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Tp. Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>Trompete em D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>Tp. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>Trompete em C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>Tp. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Trompete em Bâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Tp. Bâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Trompete de bolso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Tpt. Bolso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Trompete Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tp. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Trompete Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>Tp. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Trompete Baixo em Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Tp. B. Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Trompete Baixo em C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>Tp. B. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Trompete Baixo em Bâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Tp. B. Bâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Trompete Baroca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Tp. Bc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Trompete Baroca em F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Tp. Bc. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Trompete Barroca em Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Tp. Bc. Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Trompete Barroca em D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Tp. Bc. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Trompete Barroca em C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Tp. Bc. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Trompete Barroca em Bâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Tp. Bc. Bâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Fliscorne</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Fc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Melofone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Trombone Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>Trb. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Trombone Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>Trb. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Trombone Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>Trb. T</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Trombone Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>Trb. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Trombone Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Trb. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Bombardino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Bombardino (Clave de Sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Tuba em F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Bombardino (Clave de Sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Tuba em Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Tu. Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Tuba em C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>Tu. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Tuba em Bâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Tu. Bâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Tuba Baixo em F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Tu. B. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Tuba Baixo em Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Tu. B. Eâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Tuba Subcontrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>Tu. Scb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousafone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Timbales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Serra Musical</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Se. Mus.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Xilofone Orff Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>Xi.O.S</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Xilofone Orff Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>Xi.O.A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Xilofone Orff Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>Xi.O.B</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Bateria</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bombo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Sinos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triângulo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Bateria Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>BT</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Bateria Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BB</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Vocais</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Voz</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Contra-alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Contra-Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>C.T</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Grand Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Piano de Brincar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Pia. de brincar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Piano eléctrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>Pia. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Orgão</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Instrumentos Eletronicos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Efeito de Sintetizador</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Sint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation>Sintetizador Atmosferico</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
-        <translation>Sintetizador de chuva</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
-        <translation>Sintetizador de Ficção Cientifica</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
-        <translation>Sintetizador de banda sonora</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
-        <translation type="unfinished"/>
+        <source>Atmosphere Synthesizer</source>
+        <translation>Sintetizador Atmosferico</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
-        <translation type="unfinished"/>
+        <source>Rain Synthesizer</source>
+        <translation>Sintetizador de chuva</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
-        <translation type="unfinished"/>
+        <source>Sci-fi Synthesizer</source>
+        <translation>Sintetizador de Ficção Cientifica</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
-        <translation type="unfinished"/>
+        <source>Soundtrack Synthesizer</source>
+        <translation>Sintetizador de banda sonora</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
-        <translation>Sintetizador Baixo</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>Sintetizador de Cordas</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation>Sintetizador Baixo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>Sintetizador de Cordas</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Banjo Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>Bj. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Guitarra Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>Guit. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Guitarra Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>Guit. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Guitarra Clássica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Guitarra Acustica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>Guitarra Alto de 11 Cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>Guit. A. 11\</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>Guitarra de 12 Cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>Guit. 12</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Guitarra Elétrica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>Guit. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harpa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hpa.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Alaúde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Al.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Bandolim</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Bandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Bandola Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Bandola Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Cavaquinho</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Cav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Cavaquinho Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Cav. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Cavaquinho Barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Cav. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Guitarra Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>Guit. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Baixo Acústico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Baixo Elétrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>B. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncelo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_pt_BR.ts b/share/locale/instruments_pt_BR.ts
index 6ee9382..10ee876 100644
--- a/share/locale/instruments_pt_BR.ts
+++ b/share/locale/instruments_pt_BR.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>Clarinete em Dó</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>Dó. Cl.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Clarineta em D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>Cl. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Clarineta em Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Cl. Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Clarineta Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Cl. Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>Clarineta em A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>Cl. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Clarineta alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>Cl. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Clarineta basset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Cl. Ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Clarone Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Cl. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Clarineta Baixo / Clarone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>Cl. Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Clarineta Contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Cl. Ca.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Clarineta Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cl. Cb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Chalumeau Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Cha. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Chalumeau Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>Cha. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Chalumeau Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>Cha. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Chalumeau Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>Cha. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Chalumeau Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>Cha. Bx.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagote</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fgt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Contrafagote</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cbsn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Cntbx.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Dulciana</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusfone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sarrusfone Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Sar. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sarrusfone Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>Sar. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Sarrusfone Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>Sar. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Sarrusfone Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>Sar. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Sarrusfone Barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Sar. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Sarrusfone Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>Sar. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Sarrusfone Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Sar. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxofone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Saxofone Sopraníssimo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sax. Sopns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Saxofone Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Sax. Sopn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Saxofone Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>Sax. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulocromo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Saxofone Mezzo-Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>Sax. M. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Saxofone Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A. Sax</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Saxofone Melódico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Sax. Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Saxofone Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>Sax. Tn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Saxofone barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar. Sax</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Saxofone Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>Sax B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Saxofone Contra-baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Sax. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Saxofone SubContrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Sax Scb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Gaita de Foles</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Gat. Fol.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Outras paletas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Gaita</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Gat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>Gaita Cromática em C com 12 furos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>Gaita Cromática em C com 14 furos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>Gaita Cromática em G com 12 furos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>Gaita Cromática em C com 16 furos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>Gaita Cromática Tenor em C com 12 furos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>Gaita Diatônica com 10 furos e G alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>Gaita Diatônica em F com 10 furos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>Gaita Diatônica em D com 10 furos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>Gaita Diatônica em C com 10 furos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>Gaita Diatônica em A com 10 furos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>Gaita Diatônica em G com 10 furos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>Gaita Diatônica com 10 furos e D baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>Gaita de acordes com 20 furos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Gaita Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Gai. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Gaita Baixo Hohner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Gaita Baixo Huang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Acordeão</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Escaleta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Esc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sheng Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>She. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Sheng Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>She. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Sheng Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>She. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Sheng Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>She. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Metais</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Trompa em F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>Trom. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Trompa alta em C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>Trom. Al. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Trompa em Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Trom. Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Trompa em A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>Trom. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Trompa em Ab</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Trom. Ab</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Trompa em G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>Trom. G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Trompa em E</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>Trom. E</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Trompa em Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Trom. Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Trompa em D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Trom. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Trompa em C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>Trom. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Trompa de Viena</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>Trom. Vie.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Trompa baixo em Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Tromp. B. Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Cornet Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Cnt. Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>mudo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Cornet Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Cnt. Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Saxhorn Alto em F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>Sxh. A. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Saxhorn Alto Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Sxh. A. Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Saxhorn Barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Sxh. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Saxhorn Barítono (clave de sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Corneta de Carteiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Corn. Cart.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Trompa Alpina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>Trom. Alp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trompete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Trompete Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>Tpt. Pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Trompete Piccolo em Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>Tpt. Pic. Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Trompete Piccolo em A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>Tpt. Pic. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Trompete em Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Tpt. Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>Trompete em D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>Trompete em C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>Tpt C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Trompete Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Tpt. Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Trompete Pocket</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Tpt. Pkt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Trompete de vara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Tpt. Var.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Trompete Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tpt. Tnr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Trompete Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>Tpt. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Trompete Baixo em Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Tpt. B. Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Trompete Baixo em C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>Tpt. B. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Trompete Baixo em Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Tpt. B. Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Trompete Barroco</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Tpt. Barc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Trompete Barroco em F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Tpt. Barc. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Trompete Barroco em Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Tpt. Barc. Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Trompete Barroco em D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Tpt. Barc. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Trompete Barroco em C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Tpt. Barc. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Trompete Barroco em Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Tpt. Barc. Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Rag Dung</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Corneta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Corn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Corneta Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Corn. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Corneta Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Corn. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Cornetão Barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Corn. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Flugelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flghn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Cornetão Eufônico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Corneta Melofone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Corn. Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Cornetão Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Corn. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Melofone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Oficleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Ofc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Oficleide Alto em F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>Ofc. A F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Oficleide Alto em Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Ofc. A. Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>Oficleide Baixo em C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>Ofc. B. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Oficleide Baixo em Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Ofc. B. Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Oficleide Contrabaixo em Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Ofc. Cb. Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornetino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Contn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Corneto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Corneto Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>Cont. S</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Corneto Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>Cont. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Corneto Tenor </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>Cont. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpentão</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombone (clave de sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Trombone Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>Trb. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Trombone Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>Trb. Al.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Trombone Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>Trb. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Trombone Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>Trb. Ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Trombone Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Trb. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Bombardino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Bombardino (clave de sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Tuba em Fá</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Música antiga</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Pífano Bb</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Barit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombone (clave de sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Bomb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Bombardino (clave de sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Tuba em Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Tu. Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba em Eb (clave de sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Tuba em C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>Tu. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Tuba em Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Tu. Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba em Bb (clave de sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Tuba Baixo em F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Tu. Ba. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Tuba Baixo em Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Tu. Ba. Eb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Tuba Subcontrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>Tu. Scb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helicon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Sousafone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sfn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Tuba Wagneriana</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Tu. Wag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Tuba Wagneriana em Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Tu. Wag. Bb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>Tuba Wagneriana em F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>Tu. Wag. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Concha</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Percussão de alturas definidas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Tímpano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Rototoms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rtt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Glockenspiel Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>Glk. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Glockenspiel Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>Glk. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crotales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubafone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tbf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Caneca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Cnc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibrafone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metalofone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Metalofone Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>Met. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Metalfone Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>Met. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Metalofone Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>Met. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Carrilhão de orquestra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Carr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Tambor de aço</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>Tb. Aç.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Tambor de aço soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>Tb. Aç. S</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Tambor de aço alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>Tb. Aç. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Surdo Médio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Srd. Md.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Surdo mór</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>Srd. Mr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Surdo gigante</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Srd. Gg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Bombo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>Bmb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Sino de mão</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Sn. M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Gongos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Ggs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexatone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Serrote</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Ser.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Copos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Cps</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Harmônica de vidro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Har. Vdr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xilofone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Xilofone Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>Xil. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Xilofone Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>Xil. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Xilofone Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>Xil. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xilomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>Xmrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Marimba Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>Mrb. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dcm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Buzina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Buz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Quissange</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Qu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Quissange Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Qu. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Quissange Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>Qu. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Percussão de Alturas Indefinidas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Bateria</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Bat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Caixa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Cax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bombo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>Bmb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Caixa Clara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>Cax. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Caixa de Guerra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Cax. Gu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom tons</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Tons</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Tom-tons Chineses</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>T-t. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongô</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Conga</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbale</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Pandeiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Pand.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tabla</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Pratos de dedo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Prt. Dd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Chimbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Sinos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Sin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Chocalho</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Choc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Sino de placa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Sin. Pl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Bacia tibetana</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Bc. Tb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Castanhola de metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Cast. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Freada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Frd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Tubos de ferro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Tub. Fe.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Correntes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Corr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Bigorna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Big.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Blocos de Madeiras</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Bl. Mad.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Caneca de templo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Can. Tep.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Trinângulo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Pratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Prato de condução</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>Pr. Cond.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Prato Chinês</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Pr. Chin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Prato de ataque</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Pr. At.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Prato de corte</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Pr. Cot.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Caneca de metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Can. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Castanhola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cast.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Reco-reco</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Rec.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Afoxé</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Afx.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Queixada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qxd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vbslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Tambor de tronco</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Tmb. Trc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Chicote</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Chct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Matraca</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Mtc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Folha de bronze</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Fo. Brz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Apagador</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Apg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Sinos de vento de madeira</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Sin. Vent. mad.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Sinos de vento de bambo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Sin. Vent. Bmb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Sinos de vento de metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Sin. Vent. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Sinos de vento de vidro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Sin. Vent. Vid.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Sinos de vento de concha</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Sin. Vent. Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Pedras</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Pedr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Estalo de dedo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Est. Dd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Palmas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Palm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Tapa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Tp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Carimbo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Crmb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Pandeiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Pand.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Percussão de marcha</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Caix</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Surdo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>Srd</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Bombo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>Bmb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Pratos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Pr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Vozes</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Voz</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Tenorino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>Tenr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzo-soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>MzS.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>C.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Cntr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Contratenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>C.Ten.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>Ten.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>Bax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Teclados</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Piano de cauda</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Piano vertical</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Pianola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Pianl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Piano de criança</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Pno Crç.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Clavicórdio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Clvc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Cravo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Crv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Piano Elétrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>Pno. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Órgão</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Órgão Percussivo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Org. Perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Órgão Hammond</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Org. Hm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Órgão Rotativo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Org. Rot.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Orgão de tubos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmônio</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Harmônio Elétrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Harm. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Instrumentos Eletrônicos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Sintetizador de efeito</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Sint.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>chuva</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>pista de som</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>cristal</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>atmosfera</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>brilho</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>duendes</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>ecos</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>scifi</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Sintetizador de atmosfera</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Sintetizador de brilho</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Sintetizador cristalino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Sintetizador de eco</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Sintetizador de goblin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Sintetizador de chuva</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sintetizador Sci-fi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Sintetizador de trilha sonora</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Sintetizador abafado</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>nova era</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>quente</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>sintetizador polifônico</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>coro</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>arcado</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>metálico</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>auréola</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>varredura</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>Sintetizador New Age</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Sintetizador Warm</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Sintetizador polifônico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Sintetizador de voz</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Sintetizador curvo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Sintetizador metálico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Sintetizador circular</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sintetizador de varreduda</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Sintetizador de serra</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sintetizador senoidal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Sintetizador quadrangular</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondas Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>Ond. Mrt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Sintetizador de malha</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Sin. Mlh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Sintetizador de baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Sintetizador de metais</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>baixo sintetizado 1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
-        <translation>Sintetizador de cordas</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>baixo sintetizado 2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Sintetizador de metais</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>metal sintetizado 1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>metal sintetizado 2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation>Sintetizador de cordas</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>cordas sintetizadas 1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>cordas sintetizadas 2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Teremim</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Trmm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Sintetizador de percussão</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Sint. Perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Cordas Beliscadas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Banjo tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>Bj. Ten.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Balalaica Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Bal. Pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Balalaica Primeira</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Bal. Pr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Balalaica Segunda</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Bal. Seg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Balalaica Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Bal. Al.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Balalaica Baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>Bal. Bax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Balalaica Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>Bal. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Bouzouki (3 cordas duplas)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Bouzouki (4 cordas duplas)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Guitarra soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>Gui. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Guitarra alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>Gui. Alt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Violão</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Viol.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Violão [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Violão acústico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Violão acústico [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>Violão de 11 cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>Viol. 11</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>Violão de 12 cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>Viol. 12</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Guitarra havaiana</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Gui. Hav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Guitarra elétrica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>Gui. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Guitarra elétrica [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harpa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Alaúde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Al.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Alaúde [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Alaúde de 5 cordas duplas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Alaúde de 6 cordas duplas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Alaúde de 7 cordas duplas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Alaúde de 8 cordas duplas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Alaúde de 9 cordas duplas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Alaúde de 10 cordas duplas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Alaúde de 13 cordas duplas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>Arqal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Bandolim [Tablatura]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>tremolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>Baixo elétrico de 5 cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>Baixo elétrico de 5 cordas [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Erh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Violinos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Vlns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Violas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Vlas.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Violoncelos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Vlcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Contrabaixos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola da gamba (Tablatura)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Arquialaúde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Música antiga</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Pífano Bb</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Teorba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Teob.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Bandolim</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Bdl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Bandolim [Tablatura]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Mandola alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Mandola tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandocello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Mandola oitava a baixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>Mla. 8b.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Sangen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>St.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulele [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Ukulele tenor </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Uk. Ten.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Ukulele barítono</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Uk. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>Contb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Contrabaixo [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Baixolão</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Baixo elétrico</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>B. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Baixo elétrico [Tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Baixo elétrico sem traste</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>B. El. Frtl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Cordas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Erh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncelo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Contrabaixo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Viola da gamba piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Vio. Gam. Pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Viola da gamba soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Vio. Gam. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Viola da gamba alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>Vio. Gam. Al.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Viola da gamba tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>Vio. Gam. Ten.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vio. Gam.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>Violone em D</translation>
     </message>
diff --git a/share/locale/instruments_ro.ts b/share/locale/instruments_ro.ts
index fa8ec1e..d9a2442 100644
--- a/share/locale/instruments_ro.ts
+++ b/share/locale/instruments_ro.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>Clarinet Do</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>Cl. Do</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Clarinet Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>Cl. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Clarinet Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Cl. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Clarinet Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Cl. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>Clarinet La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>Cl. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Clarinet Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>Cl. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Clarinet Basset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Cl. Ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Corn Basset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Cn. Ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Clarinet Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>Cl. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Clarinet Contra-alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Cl. C-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Clarinet Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cl.  Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Chalumeau Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Cha. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Chalumeau Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>Cha. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Chalumeau Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>Cha. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Chalumeau Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>Cha. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Chalumeau Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>Cha. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Taragot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Contrafagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cfgt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Contrabass cu Ancie</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Cbs. An.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Dulcian</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra,</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Sarusofon Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Sar. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Sarusofon Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>Sar. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Sarusofon Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>Sar. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Sarusofon Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>Sar. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Sarusofon Bariton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Sar. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Sarusofon Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>Sar. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Sarusofon Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Sar. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Saxofon Sopranissimo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sax. Sio.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Saxofon Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Sax. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Saxofon Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>Sax. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Aulochrome</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Saxofon Mezzo-Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>Sax. M.S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Saxofon Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>Sax. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Saxophone Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Sax. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Saxofon Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>Sax. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Saxofon Bariton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Sax. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Saxofon Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>Sax. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Saxophone Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Sax. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Saxofon Subcontrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Sax. Scb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Cimpoi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Cmp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Ancie Liberă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Muzicuță</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Muz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>Muzicuță cu 12 Găuri Do Cromatic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>Muzicuță cu 14 Găuri Do Cromatic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>Muzicuță cu 12 Găuri Sol Cromatic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>Muzicuță cu 16 Găuri Do Cromatic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>Muzicuță cu 12 Găuri Do Cromatic Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>Muzicuță cu 10 Găuri Sol Diatonic Înalt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>Muzicuță cu 10 Găuri Fa Diatonic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>Muzicuță cu 10 Găuri Re Diatonic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>Muzicuță cu 10 Găuri Do Diatonic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>Muzicuță cu 10 Găuri La Diatonic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>Muzicuță cu 10 Găuri Sol Diatonic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>Muzicuță cu 10 Găuri Re Diatonic Jos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>Muzicuță cu 20 Găuri Chordet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Muzicuță Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Muz. Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Muzicuță Bass Hohner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Muzicuță Bass Huang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Acordeon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Concertină</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Clavietă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Sheng Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>She. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Sheng Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>She. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Sheng Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>She. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Sheng Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>She, B,</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Brass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Corn în Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>Cn. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Corn în Do Înalt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>Cn. Do. ÃŽn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Corn în Si♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Cn. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Corn în La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>Cn. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Corn în La♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Cn. Laâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Corn în Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>Cn. Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Corn în Mi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>Cn. Mi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Corn în Mi♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Cn. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Corn în Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Cn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Corn în Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>Cn. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Corn Vienna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>Cn. V.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Corn în Si♭ basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Cn. Siâ™­ ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Cornet Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Cnt. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>mut</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Cornet Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Cnt. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saxhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Corn Fa Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>Cn. Fa. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Corn Miâ™­ Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Cn. Miâ™­ A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Corn Bariton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Cn. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Corn Bariton (Cheia Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Corn Poștal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Cn. Pst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Corn Aplin (Alphorn)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>Cn. Alp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trompetă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Trompetă Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>Tpt. P.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Trompetă Piccolo în Si♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>Tpt. P. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Trompetă Piccolo în La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>P. Tpt. La</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Trumpetă Mi♭ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Tpt. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>Trumpetă Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>Tpt. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>Trompetă Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>Tpt. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Trumpetă Si♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Tpt. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Trompetă de Buzunar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Tpt. Buz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Trompetă cu Culisă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Tpt. Sl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Trometă Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tpt. Tnr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Trompetă Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>Tpt. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Trompetă Bass Mi♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Tpt. B. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Trompetă Bass în Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>Tpt. B. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Trompetă Bass Si♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Tpt. B. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Trompetă Baroc</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Tpt. Bc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Trompetă Baroc în Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Tpt. Bc. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Trompetă Baroc în Mi♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Tpt. Bc. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Trompetă Baroc în Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Tpt. Bc. Re</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Trompetă Baroc în Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Tpt. Bc. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Trompetă Baroc în Si♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Tpt. Bc. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Rag Dung (Corn Tibetan)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Goarnă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Gn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Goarnă Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Gn. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Goarnă Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Gn. Alt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Goarnă Bariton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Gn. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Fligorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flgrn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Fiscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kuholorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Goarnă Eufoniu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Goarnă Melofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Gn. Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Goarnă Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Gn. Con.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Melofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mfn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Oficleid</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Ofc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Oficleid Alto Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>Ofc. A. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Oficleid Alto Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Ofc. A. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>Oficleid Bass Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>Ofc. B. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Oficleid Bass Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Ofc. B. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Oficleid Contrabass Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Ofc. Cb. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Cornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Cornet Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>Co. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Cornet Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>Co. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Cornet Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>Co. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpent</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombom (Cheia Sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Trombon Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>Trb. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Trombon Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>Trb. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Trombon Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>Trb. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Trombon Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>Trb. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Trombon Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Trb. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Eufoniu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Eufoniu (Cheia Sol)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tubă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Tuba Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Muzică Veche</translation>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <source>Euph. Bu.</source>
+        <extracomment>Euphonium Bugle</extracomment>
+        <translation>Gn. Euf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Fife Siâ™­</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
-        <source>Euph. Bu.</source>
-        <extracomment>Euphonium Bugle</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombom (Cheia Sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
-        <translation type="unfinished"/>
+        <translation>Euf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Eufoniu (Cheia Sol)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>Tu. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Tuba Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Tu. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba Miâ™­ (Cheia Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Tuba Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>Tu. Do</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Tuba Siâ™­ </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Tu. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Tuba Siâ™­ (Cheia Sol)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Tuba Bass în Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Tu. Ba. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Tuba Bass în Si♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Tu. Ba. Miâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Tuba Sub-Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>Tu. SCb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Helicon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Susafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sufn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Tubă Wagneriană</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Tu. Wag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Tubă Wagneriană Si♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Tu. Wag. Siâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>Tubă Wagneriană Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>Tu. Wag. Fa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Scoică (Conch)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Scă.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Percuție cu Ton Definit</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Timpan</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Roto-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Glockenspiel Soprano Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>Glk. S. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Glockenspiel Alto Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>Glk. A. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crotale</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tfn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Almglocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibrafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metalofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Metafolon Soprano Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>Met. S. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Metalofon Alto Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>Met. A. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Metalofon Bass Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>Met. B. O. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Clopote Tubulare</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Clp. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Steel Drums Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>St. Dr. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Steel Drums Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>St. Dr. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Guitar Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Steel Drums Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>St, Dr, T,</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Cello Steel Drums</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce, St, Dr,</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Steel Drums Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>St. Dr. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Clopote de Mână</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Clp. Mn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Gong-uri Acordate</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Go. Ac.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexaton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Fierăstrău Muzical</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Frst. Muz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Pahare Muzicale</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Pah. Mu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Armonică de Sticlă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Arm. Sti.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xilofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Xilofon Soprano Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>Xil. S. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Xilofon Alto Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>Xil. A. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Xilofon Bass Orff</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>Xil. B. O.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xilomarimbă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrbf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimbafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrbf.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Marimbafon Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>Mrbf. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Claxoane Acordate</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Clx. Acd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Kalimba Cheia Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Kal. Tr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Kalimba Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>Kal. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Percuție cu Ton Difuz</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Set percuţie</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Set. perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Premier</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Prem.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Tobă Mare (Bass Drum)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>Tb. M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Premier Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>Prem. P.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Tobă Militară</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Tb. Mil.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom-uri</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Tom-uri</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Tom-uri Chineze</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>To. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongos</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Congas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Frame Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Fr. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tablas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Cinele pt. Degete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Cin. Dg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Fus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Clopote</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Clp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Zurgălăi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Zur.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Bell Plate </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Be. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Bol Muzical (Tibetan)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Bol. Muz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tub</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Castaniete de Metal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Cst. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Tambur de Frână</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Tmb. Frn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Tuburi de Fier</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Tb, Fe.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Chains</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Chn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Nicovală</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Ncv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Lemn (Wood Blocks)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Lemn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Nucă de cocos (Temple Blocks)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Nc. ccs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangular</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Cinel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cin.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Cinel Ride</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>Cin. R.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Cinel China</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Cin. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Cinel Crash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cin. Cr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Cinel Splash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Cin. Sp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Cowbell</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Cwb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Castaniete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Guiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Slit Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Bici</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Bc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Pârâitoare</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Pâr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Thundersheet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Sandpaper Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sa. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Chimes de Lemn pt. Vânt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Ch, Lm. Vt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Chimes de Bambos pt. Vânt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Ch. Bam. Vt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Chimes de Metal pt. Vânt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Ch. Met. Vt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Chimes de Sticlă pt. Vânt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Ch. St. Vt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Chimes din Scoici pt. Vânt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Ch. Sc. Vt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Pietre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Ptr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Poncnitură din degete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Pocn. Dg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Bătaie din palme</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Bt. palm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Slap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Stampa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamburină</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Percuție de fanfară</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Prem.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Tobă Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TT</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Tobă Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>TB</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Cinele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Cin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Vocal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Voce</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Băiat Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>B. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzo-soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Contratenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Bariton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Clape</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Pian</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pian</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Pian cu coadă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Pianină</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Pian Honky Tonk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Pian Hnk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Pian de Jucărie</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Pian. Juc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Clavicord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Ccd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Clavecin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Virg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celestă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Pian electric</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>Pian El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Orgă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Orgă Percusivă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Org. Perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Orgă Hammond</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Org. Hm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Orgă Rotativă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Org. Rot.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Orgă cu Tuburi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Armoniu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Orgă cu Ancie</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Org. Anc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Instrumente electronice</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Sintetizator de Effecte</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Sintz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>ploaie</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>soundtrack</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>cristal</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>atmosferă</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>brightness</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>goblins</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>ecouri</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>scifi</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Sintetizator Atmosferă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Sintetizator Brightness</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Sintetizator Cristal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Sintetizator Ecouri</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Sintetizator Goblins</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Sintetizator Ploaie</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sintetizator Sci-fi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Sintetizator Soundtrack</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Sintetizator Pad</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>new age</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>warm</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>Polisintz.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>cor</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>intrumente cu arcuÈ™</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>metalic</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>halo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>sweep</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>Sinteteizator New Age</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Sintetizator Warm</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Sintetizator Poly</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Sintetizator Cor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Sintetizator Instrumente cu ArcuÈ™</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Sintetizator Metalic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Sintetizator Halo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sintetizator Sweep</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Sintetizator Saw</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sintetizator Sine</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Sintetizator Square</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondes Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Sintetizator Mallet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Sintz. Mal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Sintetizator Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>bass-sintz-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>bass-sintz-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
         <translation>Sintetizator Brass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>brass-sintz-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>brass-sintz-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
         <translation>Sintetizator Coardă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>coarde-sintz-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>coarde-sintz-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremină</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Trmn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Sintetizator Percuție</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Sintz. Perc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Coarde ciupite</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tabulatură]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Banjo Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>Bj. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaică</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Balalaică Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Bal. Pic.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Balalaică Prima</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Bal. Pr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Balalaică Secunda</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Bal. Sec.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Balalaică Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Bal. Al.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Balalaică Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>Bal. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Balalaică Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>Bal. CB.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bzk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Bouzouki (3 grupuri coarde)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Bouzouki (4 grupuri coarde)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Chitară Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>Chit. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Chitară Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>Chit. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Chitară clasică</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Chit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Chitară clasică [Tabulatură]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Chitară acustică</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Chitară acustică [Tabultură]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>Chitară Alto cu 11 coarde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>Chit. A. 11 c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>Chitară cu 12 coarde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>Chit. 12 c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Pedal Steel Guitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Chitară electrică</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>Chit. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Chitară electrică [Tabulatură]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harpă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Lăută</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Lăută [Tabulatură]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Lăută 5 grupuri coarde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Lăută 6 grupuri coarde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Lăută 7 grupuri coarde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Lăută 8 grupuri coarde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Lăută 9 grupuri coarde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Lăută 10 grupuri coarde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Lăută 13 grupuri coarde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A. Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolină [Tabulatură]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>tremolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>Bass Electric 5 coarde</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>Bass Electric 5 coarde [Tabulatură]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
-        <translation type="unfinished"/>
+        <translation>Viori</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
-        <translation type="unfinished"/>
+        <translation>Viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vle.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
-        <translation type="unfinished"/>
+        <translation>Violoncele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vlce.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
-        <translation type="unfinished"/>
+        <translation>Contrabasuri</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cburi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
-        <translation type="unfinished"/>
+        <extracomment>Double Bass</extracomment>
+        <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Violă da gamba (Tabulatură)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Arhilăută</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Muzică Veche</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Fife Siâ™­</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Theorbo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolină</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolină [Tabulatură]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandolă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Mandolă Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Mandolă Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandocello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Mandolină Octavă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>MO.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulele [Tabulatură]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Ukulele Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Uk. Ten.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Ukulele Bariton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Uk. Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Chitară bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>Chit. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Chitară bass [Tabulatură]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Bass acustic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Bass electric</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>B. El.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Bass Electric [Tabulatură]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Bass Electric fără Taste</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>B. El. FrTs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Coarde cu ArcuÈ™</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Vioară</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Violă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vlă</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Contrabas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Contrabas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Violă Pardessus</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>V. Pds.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Violă da gamba Cheia Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Vl. d. g. Ch. Sol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Violă da gamba Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>Vlă. d. g. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Violă da gamba Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>Vlă. d. g. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Violă da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vlă. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Violă da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>Violone Re</translation>
     </message>
diff --git a/share/locale/instruments_ru.ts b/share/locale/instruments_ru.ts
index 02f5483..6c5d93d 100644
--- a/share/locale/instruments_ru.ts
+++ b/share/locale/instruments_ru.ts
@@ -4,7 +4,7 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1"/>
         <source>Common instruments</source>
-        <translation>Распространенные инструменты</translation>
+        <translation>Обычные инструменты</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="2"/>
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>C Кларнет</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>C Клар.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Ре Кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>Ре Кл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Ми♭ Кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Ми♭ Кл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Си♭ Кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Си♭ Кл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>Ля Кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>Ля Кл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Альтовый Кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>Альт. Кл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Бассет-кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Басс.-Кл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Бассет-валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Басс.-Валт.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Бассет-кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>Б. Кл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Контральтовый кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Контральт. Кл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Контрабасовый кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Контрб. Кл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Шамей</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Шалм.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Сопранино шалмей</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>С.-ино шалм.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Сопрановый шалмей</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>С. Шалм.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Альтовый Шалмей</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>Альт. Шалм.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Тенорный шалмей</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>Т. Шалм.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Басовый шалмей</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>Б. Шалм.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Тарогато</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Тар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Малая флейта</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Мал. фл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Фагот</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Фаг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Контрафагот</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Контрф.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Язычковый контрабас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Яз. Контрбас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Дульциан</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Ракет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ра.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Саррюссофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Сар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Сопранино саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>С.-ино Сар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Сопрановый саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>Сопр. Сар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Альтовый саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>Альт. Сар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Теноровый саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>Т. Сар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Баритоновый саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Бар. Сар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Басовый Саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>Б. Сар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Контрабасовый Саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Контрб. Сар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Сакс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Сопраниссимо саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>С.-имо Сакс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Сопранино саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>С.-ино саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Сопрановый саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>Сопр. Сакс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Аулохром</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Аул.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Меццо-сопрановый саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>Мец.-сопр. Сакс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Альтовый саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>Альт. Сакс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Мелодический саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Мел. Сакс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Теноровый саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>Т. Сакс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Баритон-саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Бар.-сакс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Бас-саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>Б.-сакс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Контрабас-саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Контрб.-сакс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Субконтрабас-саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Субконтрб.-сакс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Волынка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Вол.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
-        <translation>Безъязычковые</translation>
+        <translation>Язычковые</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Гармоника</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Гарм.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12 отв. Хроматическая гармоника C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14 отв. Хроматическая гармоника C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12 отв. Хроматическая гармоника G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16 отв. Хроматическая гармоника C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>12 отв. Хроматическая тенор-гармоника C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>10 отв. Диатоническая гармоника High G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>10 отв. Диатоническая гармоника F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>10 отв. Диатоническая гармоника D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>10 отв. Диатоническая гармоника C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>10 отв. Диатоническая гармоника A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>10 отв. Диатоническая гармоника G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>10 отв. Диатоническая гармоника Low D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>20 отв. Аккордовая гармоника</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Бас-гармоника</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Б.-гарм.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Бас-гармоника Хонер</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Бас-гармоника Хуан</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Аккордеон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Акк.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Бандонеон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Бан.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
-        <translation>Концертин</translation>
+        <translation>Концертино</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Конц.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Мелодическая гармоника</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Мел. Гарм.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Шэн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Сопрановый шэн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>Сопр. Шэ.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Альтовый Шэн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>Альт. Шэ.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Теноровый шэн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>Т. Шэ.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Бас-шэн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>Б.-шэн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Медные духовые</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Медн. дух.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Фа Валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>Фа Вал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Высокая до валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>Выс. до вал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Си♭ Валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Си♭ Вал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Ля Валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>Ля Вал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Ля♭ Валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Ля♭ Вал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Соль Валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>Соль Вал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Ми Валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>Ми Валт.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Ми♭ Валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Ми♭ Вал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Ре Валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Вал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>До Валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>До Вал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Венская валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>Вен. Вал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation> Си♭ Бас-валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Си♭ Бас-вал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation> Ми♭ Корнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Ми♭ Кор.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>сурдина</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Си♭ Корнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Си♭ Кор.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Саксгорн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Фа Альтовая труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>Фа Альт. тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Ми♭ Альтовая труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Ми♭ Альт. тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Баритоновая труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Бар. Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Баритоновая труба (скрипичный ключ)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Почтовый рожок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Почт. рож.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Альпийский рожок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>Альп. Р.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Труба-пикколо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>Тр.-пик.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Си♭ Труба-пикколо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>Си♭ Тр.-пик.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Ля Труба-пикколо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>Ля Тр.-пик.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Ми♭ Труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Ми♭ Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>Ре Труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>Ре Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>До Труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>До Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Си♭ Труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Си♭ Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Карманная труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Карм. Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Труба с кулисой</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Тр. с кул.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Теноровая труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Т. Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Бас-труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>Б.-тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Ми♭ Бас-труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Ми♭ Б.-тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>До Бас-труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>До Б.-тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Си♭ Бас-труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Си♭ Б.-тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Барочная труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Бар. Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Фа Барочная труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Фа Бар. Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Ми♭ Барочная труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Ми♭ Бар. Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Ре Барочная труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Ре Бар. Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>До Барочная труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>До Бар. Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Си♭ Барочная труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Си♭ Бар. Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Раг данг</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Рг. днг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Рожок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Р.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Сопрановый рожок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Сопр. Р.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Альтовый рожок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Альт. Р.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Баритоновый рожок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Бар. Р.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Флюгельгорн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Флюг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Фискорн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Фис.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Куглогорн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Кугл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Баритоновый рожок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Меллофоновый рожок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Мел. Р.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Контрабас-рожок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Контрб.-р.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Меллофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Мелл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Офиклеид</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Оф.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Фа Альтовый офиклеид</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>Фа Альт. Оф.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Ми♭ Альтовый офиклеид</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Ми♭ Альт. Оф.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>До Бас-офиклеид</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>До Б.-оф.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Си♭ Бас-офиклеид</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Си♭ Б.-оф.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Ми♭ Контрабас-офиклеид</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Ми♭ Контрб.-оф.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Корнетино</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Ко.-ино</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Корнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Сопрановый корнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>Сопр. Ко.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Альтовый корнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>Альт. Ко.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Теноровый корнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>Т. Ко.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Серпент</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Спт.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Тромбон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Трмб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Тромбон (скрипичный ключ)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Сопрановый тромбон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>Сопр. Трмб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Альтовый Тромбон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>Альт. Трмб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Теноровый Тромбон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>Т. Трмб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Бас-тромбон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>Б.-трмб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Контрабас-тромбон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Контрб.-трмб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Чимбассо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Чим.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Эуфониум</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Эуфониум (скрипичный ключ)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Туба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Ту.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Фа Туба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Старинная музыка</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Си♭ Файф</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation>Барит.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Тромбон (скрипичный ключ)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation>Эуф </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Эуфониум (скрипичный ключ)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Тба.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>Фа Ту.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Ми♭ Туба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Ми♭ Ту.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Ми♭ Туба (скрипичный ключ)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>До Туба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>До Ту.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Си♭ Туба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Си♭ Ту.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Си♭ Туба (скрипичный ключ)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Фа Бас-туба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Фа Б.-ту.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Ми♭ Бас-туба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Ми♭ Б.-ту.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Субконтрабас-туба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>Субконтрб.-ту.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Геликон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Сузафон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Суз.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Туба Вагнер</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Ту. Ваг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Си♭ Туба Вагнер</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Си♭ Ту. Ваг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>Фа Туба Вагнер</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>Фа Ту. Ваг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Конх</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Кнх.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Диджериду</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Дидж.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Хорагай</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Хрг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Шойфер</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Шо.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Вувузела</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Вув.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Ударные с определённой высотой звучания</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
-        <translation>Тимпаны</translation>
+        <translation>Литавры</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
-        <translation>Тимп.</translation>
+        <translation>Лит.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Рототом</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Рот.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Глокеншпиль</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Глк.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Сопрановый Глокеншпиль Орфф</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>Сопр. Глк. Ор.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Альтовый Глокеншпиль Орфф</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>Альт. Глк. Ор.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Помпейская тарелка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>По. Тар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Тубафон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Тубфн.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Альмглокен</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Альмглк.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Вибрафон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Виб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Металлофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Мет.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Сопрановый Металлофон Орфф</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>Сопр. Мет. Ор.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Альтовый Металлофон Орфф</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>Альт. Мет. Ор.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Бас-металлофон Орфф</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>Б.-мет. Ор.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Колокола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Кол.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Стальные ударные</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>Ст. Уд.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Сопрановые стальные ударные</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>Сопр. Ст. Уд.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Альтовые стальные ударные</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>Альт. Ст. Уд.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Гитарные стальные ударные</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Гит. Ст. Уд.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Теноровые стальные ударные</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>Т. Ст. Уд.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Виолончелевые стальные ударные</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ви. Ст. Уд.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Басовые стальные ударные</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>Б. Ст. Уд.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Колокольчик</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Кол.-ик</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Настроенные гонги</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Настр. Гон.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Флексатон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Флекс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Музыкальная пила</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Му. Пи.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Музыкальные стаканы</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Му. Ст.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Стеклянная гармоника</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Стекл. Гар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Ксилофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Ксил.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
-        <translation>Сопрановый ксилофон Орфф</translation>
+        <translation>Сопрановый ксилофон Орффа</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>Сопр. Ксил. Ор.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
-        <translation>Альтовый ксилофон Орфф</translation>
+        <translation>Альтовый ксилофон Орффа</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>Альт. Ксил. Ор.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
-        <translation>Бас-ксилофон Орфф</translation>
+        <translation>Бас-ксилофон Орффа</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>Б.-ксил. Ор.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
-        <translation>Маримба</translation>
+        <translation>КсилоМаримба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
-        <translation>Мар.</translation>
+        <translation>КсМар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Маримба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Мар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Бас-маримба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>Б.-мар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Дульсимер</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Дуль.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Настроенные клаксоновые горны</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Нас. Кл. Гор.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation> Калимба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Кал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Дискантовая калимба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Диск. Кал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Альтовая Калимба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>Альт. Кал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Ударные с неопределённой высотой звучания</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Набор ударных</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Наб. Уд</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Малый барабан</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Мал. Бар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Бас-барабан</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>Б.-бар</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Малый барабан-пикколо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>Мал. Бар.-пик.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Военный барабан</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Воен. Бар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Том-томы</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Томы</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
-        <translation>Китайские тамтамы</translation>
+        <translation>Китайские том-томы</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Кит. Там.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
-        <translation>Бонго</translation>
+        <translation>Бонги</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Бо.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
-        <translation>Конга</translation>
+        <translation>Конги</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
-        <translation>Тимбалес</translation>
+        <translation>Тимбалесы</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Тимб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Тамбурин без тарелочек</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Тамб. б. тар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Табла</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Таб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Куика</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Ку.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Кастаньеты</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Кас.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Хай-хет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Тамтам</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Колокола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Кол.-а</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Бубенцы</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Буб.-цы</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Тарелка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Тар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Чашечные гонги</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Чаш. Гон.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation> Тубо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Металлические кастаньеты</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Мет. Кас.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Автомобильные тормозные барабаны</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Авт. Торм. Бар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Железные трубы</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Ж. Тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Цепи</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Це.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Наковальня</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Нак.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
-        <translation>Коробочка</translation>
+        <translation>Коробочки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Кор.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Темплеблок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Тмпбл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Треугольник</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Треу.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
-        <translation>Тарелки</translation>
+        <translation>Тарелка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Тар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
-        <translation>Подвесные тарелки</translation>
+        <translation>Средняя тарелка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
-        <translation>Подв. Тар.</translation>
+        <translation>Ср. Тар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
-        <translation>Китайские тарелки</translation>
+        <translation>Китайские тарелка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Кит. Тар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
-        <translation>Подвесная тарелка</translation>
+        <translation>Акцентная тарелка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
-        <translation>Под. Тар.</translation>
+        <translation>Акк. Тар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Сплэш</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Спл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Каубелл</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Кауб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
-        <translation>Клавес</translation>
+        <translation>Клавесы</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Кл-с</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Кастаньеты</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Кас.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Гуиро</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Гу.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
-        <translation>Маракас</translation>
+        <translation>Маракасы</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Мар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Кабаца</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Каб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Челюсть</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Ч-ть</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Вибраслэп</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Вибсл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Простой перкуссионный инструмент</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Пер. Ин.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Хлопушка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Хл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Трещотка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Трещ.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Ластра</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Лас.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Наждачные блоки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Нжд. бл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Деревянная музыкальная подвеск</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Дер. Муз. Под.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Бамбуковая музыкальная подвеска</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Бам. Му. Под.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Металлическая музыкальная подвеска</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Мет. Му. Под.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Стеклянная музыкальная подвеска</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Ст. Му. Под.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Музыкальная подвеска из ракушек</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Рак. Му. Под.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Камни</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Кам.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Щелчок пальцами</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Щ. Пал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Хлопок в ладоши</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Хл. в лад.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Шлепок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Шл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Топанье</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Топ.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
-        <translation>Тамбурин</translation>
+        <translation>Бубен</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
-        <translation>Тамб.</translation>
+        <translation>Буб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Маршевые ударные</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Сопр. Уд.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Теноровые ударные</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>Т. Уд.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Басовые ударные</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>Б. Уд.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
-        <translation>Цимбалы</translation>
+        <translation>Тарелки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
-        <translation>Ци.</translation>
+        <translation>Тар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Вокал</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Голос</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Го.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
-        <translation>Мальчик сопрано</translation>
+        <translation>Мальчиковое сопрано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>Маль. Сопр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Сопрано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>Сопр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Меццо-сопрано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Мец.-сопр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
-        <translation>Альто</translation>
+        <translation>Альт</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
-        <translation>Альт.</translation>
+        <translation>А.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Контральто</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Контра.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Контратенор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Контрт.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Тенор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>Т.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Баритон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Бар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Бас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>Б.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Казу</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Каз.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Клавишные</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Фортепиано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Ф-но</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Рояль</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Пианино</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Расстроенное фортепиано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
-        <translation>Расстр. Фортепиано</translation>
+        <translation>Расстр. Ф-но</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Игрушечное пианино</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Игр. Пиа.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Клавикорд</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Клк.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Клавесин</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Клав.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Вёрджинел</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Вёрд.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Челеста</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Чел.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Электрическое фортепиано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>Эл. Ф-но</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Клавинет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Клави.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Орган</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Орг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Ударные орган</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Уд. Орг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Хаммонд-орган</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Хам.-орг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Ротационный орган</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Рот. Орг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Духовой орган</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Фисгармония</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Язычковый орган</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Яз. Орг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Электронные инструменты</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Синтезатор эффектов</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Синт.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>дождь</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>саундтрек</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>кристалл</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>атмосфера</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>яркость</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>гоблины</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>эхо</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>скай-фай</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Синтезатор атмосферы</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Синтезатор яркости</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Кристаллический синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Синтезатор эхо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Синтезатор гоблинов</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Синтезатор дождя</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Скай-фай синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Синтезатор звуковой дорожки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
-        <translation>Подушечный синтезатор</translation>
+        <translation>Синтезатор педали</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>новая эра</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>теплый</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>поли-синт</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>хор</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>смычковый</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>металик</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>гало</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>текучий</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>Синтезатор новой эры</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
-        <translation>Синтезатор тепла</translation>
+        <translation>Теплый Синтезатор </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Поли-синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Синтезатор хора</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
-        <translation>Смычковый синтезатор</translation>
+        <translation>Синтезатор смычковых</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Металлический синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Синтезатор гало</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
-        <translation>Синтезатор метлы</translation>
+        <translation>Текучий синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
-        <translation>Синтезатор пилы</translation>
+        <translation>Синтезатор пилообразной волны</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Синусоидальный синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
-        <translation>Квадратный синтезатор</translation>
+        <translation>Синтезатор квадратной волны</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
-        <translation>Мартенот</translation>
+        <translation>Волны Мартено</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
-        <translation>Март.</translation>
+        <translation>ВоМарт.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
-        <translation>Синтезатор молотка</translation>
+        <translation>Молоточковый синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
-        <translation>Си. Мол.</translation>
+        <translation>Мол.Си. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Бас-синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>Синт-бас-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>Синт-бас-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
         <source>Brass Synthesizer</source>
-        <translation>Латунный синтезатор</translation>
+        <translation>Синтезатор медных духовых</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>синт-медные-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>синт-медные-2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
-        <translation>Струнный синтезатор</translation>
+        <translation>Синтезатор струнных</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>синт-струнные-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>синт-струнные-2</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Терменвокс</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Термв.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
-        <translation>Ударный синтезатор</translation>
+        <translation>Синтезатор ударных</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
-        <translation>Уд. Син.</translation>
+        <translation>Син. Уд. </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Струнно-щипковые</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Банджо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Бдж.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Банджо [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Теноровое банджо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>Т. Бдж.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Балалайка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Бал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Балалайка-пикколо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Бал.-пик.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Прима балалайка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>При. Бал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Секунда балалайка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Сек. Бал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Альтовая балалайка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Альт. Бал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Бас-балалайка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>Б.-бал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Контрабас-балалайка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>КБ.-бал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Бузуки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Гр. гит.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Бузуки (3 хора)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Бузуки (4 хора)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Сопрано-гитара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>С.-гит.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Альт-гитара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>А.-гит.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Классическая гитара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Гит.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Классическая гитара [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Акустическая гитара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Акустическая гитара [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11-струнная Альт-гитара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-стр. А.-гит.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12-струнная Гитара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-стр. Гит.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Педал-стил гитара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Пдл.-ст. гит.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Электрогитара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>Эл. Гит.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Электрогитара [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Арфа</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Арф.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Кото</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ко.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Лютня</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Лт.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Лютня [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Лютня 5 хоров</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Лютня 6 хоров</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Лютня 7 хоров</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Лютня 8 хоров</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Лютня 9 хоров</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Лютня 10 хоров</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Лютня 13 хоров</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>Арх.-лют.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Мандолина [Табулатура]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>смычком</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
-        <translation>5-стр. Бас-гитара</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>тремоло</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
-        <translation>5-стр. Бас-гитара [Табулатура]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
+        <translation>5-стр. Электрическая бас-гитара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Эрху</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
+        <translation>5-стр. Электрическая бас-гитара [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Эх.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>пиццикато</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Скрипки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Скр-и.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Альты</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Ал-ы.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Виолончели</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
-        <translation>Виолнч-и.</translation>
+        <translation>Виолонч.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Контрабасы</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
-        <translation>Контрб-ы.</translation>
+        <translation>Кб-ы.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Дв. б.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Виола да гамба (Табулатура)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
-        <translation>Архилютня</translation>
+        <translation>Архлютня</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Старинная музыка</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Си♭ Файф</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Теорба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Тб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Мандолина</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Мдн.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Мандолина [Табулатура]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Мандола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Мда.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Альт-мандола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Тенор-мандола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Мандочелло</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Мнчл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Октавная мандолина</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>О. м.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Сямисэн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>См.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Ситар</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Си.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Укулеле</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Ук.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Укулеле [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Тенор-укулеле</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Тен.-ук.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Баритон-укулеле</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Бар.-ук.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Бас-гитара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>Б.-гит.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Бас-гитара [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Акустическая бас-гитара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Электрическая бас-гитара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>Эл. б.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Электрическая бас-гитара [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Безладовая бас-гитара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Безлд. б.-гит.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Струнные</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Эрху</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Эх.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Скрипка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Скр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Альт</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Ал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Виолончель</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Виолнч.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Контрабас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Контрб.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Двойной бас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Высокая дискантовая виола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Выс. диск. вла.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Дискантовая виола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Диск. вла.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Малая альтовая виола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>Мл. алт. вла.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Альтовая виола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>Алт. вла.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Виола да гамба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Вла. д .г</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Виола да гамба (Таб)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Виолоне</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Влне.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>Ре виолоне</translation>
     </message>
diff --git a/share/locale/instruments_sk.ts b/share/locale/instruments_sk.ts
index 440fa27..369b3a1 100644
--- a/share/locale/instruments_sk.ts
+++ b/share/locale/instruments_sk.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Rapkáč</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxofón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Gajdy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Akordeón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trúbka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Pozauna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Heligón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Tympany</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Oceľové bubny</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Xylofón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Bicie</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Kastanety</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Bič</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Rapkáč</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamburína</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Spev</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Hlas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Hl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Chlapčenský soprán </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>Chl. s</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Soprán</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzosoprán</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Kontraalt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Ka.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Kontratenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Barytón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Klávesy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Klavír</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Koncertné krídlo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Pianino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Elektrický klavír</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>El. kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Elektronické nástroje</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
-        <translation>Syntetizáror jasu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
-        <translation type="unfinished"/>
+        <source>Brightness Synthesizer</source>
+        <translation>Syntetizáror jasu</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>kovový</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Bendžo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Akustická gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
-        <translation type="unfinished"/>
+        <translation>12 strunová gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Elektrická gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harfa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Lutna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
-        <translation type="unfinished"/>
+        <translation>Husle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
-        <translation type="unfinished"/>
+        <translation>Violy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
-        <translation type="unfinished"/>
+        <translation>Violončelá</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabasy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolína</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Å amisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Basová gitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Strunové nástroje</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Husle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violončelo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Kontrabas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_sl.ts b/share/locale/instruments_sl.ts
index 3907857..f5f88e0 100644
--- a/share/locale/instruments_sl.ts
+++ b/share/locale/instruments_sl.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>D klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>D Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Eâ™­ klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Eâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Bâ™­ klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Bâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>A Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Altovski klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>A. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Ba. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Ba. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Basovski klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Kontra-altovski klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>C-a. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Kontrabasovski klarinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cb. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Si. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>S. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>A. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>T. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>B. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Bsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Kontra fagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cbsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Rd. Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Predfagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Si. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>S. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>A. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>T. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Bar. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>B. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Cb. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sio. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Si. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Sopranski saksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>M.S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Altovski saksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Melodični saksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Mel. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Tenorski saksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Baritonski saksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Basovski saksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Kontrabasovski saksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Cb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Subkontrabasovski saksofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Scb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Dude</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Bagp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Orglice</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Basovske orglice</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Bs. Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Harmonika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>S She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>A She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>T She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>B She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Trobila</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Rog v F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>F Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>H. C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Rog v Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Bâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Rog v A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>A Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Rog v Aâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Aâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Rog v G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>G Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>E rog</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>E Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Rog v Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Eâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Rog v D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Rog v C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Dunajski rog</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>V. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Bâ™­ ba Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Eâ™­ kornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Eâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Bâ™­ kornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Bâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Saksrog</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>F altovski rog</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>F A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Eâ™­ altovski rog</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Eâ™­ A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Baritonski rog</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Bar. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Baritonski rog (violinski ključ)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Poštni rog</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Psthn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Alpski rog</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>AlpHn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trobenta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Mala trobenta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Mala trobenta v Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>P. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Mala trobenta v A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>P. Tpt. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Eâ™­ trobenta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Eâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>D trobenta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>D Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>C trobenta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>C Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Bâ™­ trobenta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Bâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Žepna trobenta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Pkt. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Sl.Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Tenorska trobenta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tnr. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Basovska trobenta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Eâ™­ basovska trobenta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Eâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Basovska trobenta v C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>B. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Bâ™­ basovska trobenta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Bâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Baročna trobenta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Bq. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Baročna trobenta v F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Bq. Tpt. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Baročna trobenta v E♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Bq. Tpt. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Baročna trobenta v D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Bq. Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Baročna trobenta v C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Bq. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Baročna trobenta v B♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Bq. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Krilnica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Sopranska krilnica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Sop. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Altovska krilnica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Alt. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Baritonska krilnica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bar. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Krilni rog</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flghn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mel. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Con. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>F A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Eâ™­ A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>C B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Bâ™­ B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Eâ™­ Cb. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Mali kornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Kornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Sopranski kornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>S. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Altovski kornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>A. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Tenorski kornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>T. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Pozavna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Pozavna (violinski ključ)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Sopranska pozavna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>S. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Altovska pozavna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>A. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Tenorska pozavna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>T. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Basovska pozavna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>B. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Kontrabasovska pozavna</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Cb. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Bariton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Bariton (violinski ključ)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>F Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Zgodnja glasba</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Pozavna (violinski ključ)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Bariton (violinski ključ)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>F Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Eâ™­ Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Eâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>E♭ tuba (violinski ključ)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>C Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>C Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Bâ™­ Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Bâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>B♭ tuba (violinski ključ)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Basovska tuba v F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Ba. Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Basovska tuba v Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Ba. Tu. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Subkotrabasovska tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>SCB. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Wagner tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Bâ™­ Wagner tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Bâ™­ Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>F Wagner tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>F Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Didžeridu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Melodična tolkala</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Pavke</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. S. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O. A. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibrafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metalofone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O. S. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. A. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O. B. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Cevasti zvonovi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Tu. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>S. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Ha. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Td. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Pojoča žaga</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Mu. Sw.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Mu. Gla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gla. Har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Ksilofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O. S. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O. A. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O. B. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Ksilomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Bas marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>B. Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Tn. Klx. Hns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Tr. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Altovska kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Membranofonska tolkala</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Tolkala</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Drs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Mali boben</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Veliki boben</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>B. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P. Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Vojaški boben</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Mil. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom-tom</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Tom</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Kitajski tom-tom</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Ch. To.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bongo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Konge</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Timbali</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Fr. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Fi. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Sle. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Be. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Bw. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Kovinske kastanjete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Met. Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut. Brk. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Ir. Pi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Chn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Anv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Wd. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Trikot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>ÄŒinele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>R. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Kitejske činele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Ch. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cr. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Sp. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Kravji zvonec</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Cwb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Kastanjete</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Wh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Rat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sa. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Wd. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Met. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Gl. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Sh. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Sto.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Fi. Sna.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Plosk</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Hd. Clp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamburin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>SD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>ÄŒinele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Cy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Glasovi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Glas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Fantovski sopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>B. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Sopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Kontraalt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Bariton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Klaviature</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Klavir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Koncertni klavir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Toy Pno</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>ÄŒembalo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Cch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>ÄŒembalo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Hch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Električni klavir</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>El. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Orgle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perc. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Rot. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Rd. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Elektronska glasbila</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synth</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
-        <translation>O.M.</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
-        <translation>Mal. Syn.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
-        <translation>Thmn.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
-        <translation>Perc. Syn.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation>O.M.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation>Mal. Syn.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation>Thmn.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation>Perc. Syn.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Bendžo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Bendžo [tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Tenorki bendžo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T. Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Mala balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pic. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sec. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Altovska balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Basovska balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Kontrabasovska balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>CB. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Sopranska kitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>S. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Altovska kitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Klasična kitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Klasična kitara [tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Akustična kitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Akustična kitara [tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11-strunska altovska kitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-str. A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12-strunska kitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-str. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Električna kitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Električna kitara [tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harfa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Lutnja</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Lutnja [tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A. Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Mandolina [tablatura]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>5-strunski električni bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>5-strunski električni bas [tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Zgodnja glasba</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolina [tablatura]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulela [tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Tenorska ukulela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Baritonska ukulela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Basovska kitara</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Basovska kitara [tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Akustični bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Električni bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Električni bas [tablatura]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Brezprečk električni bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Frtl. El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Godala</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violončelo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Kontrabas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Tr. vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_sr.ts b/share/locale/instruments_sr.ts
index be76255..942d8f3 100644
--- a/share/locale/instruments_sr.ts
+++ b/share/locale/instruments_sr.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>bubanj set</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bass Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tambourine</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_sv.ts b/share/locale/instruments_sv.ts
index 58f081a..c905395 100644
--- a/share/locale/instruments_sv.ts
+++ b/share/locale/instruments_sv.ts
@@ -73,46 +73,46 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="19"/>
         <source>Sub Contra-alto Flute</source>
-        <translation type="unfinished"/>
+        <translation>Subkontraaltflöjt</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="21"/>
         <source>Sc-a. Fl.</source>
         <extracomment>Sub Contra-alto Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ska. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="22"/>
         <source>Alto Flute</source>
-        <translation type="unfinished"/>
+        <translation>Altflöjt</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="24"/>
         <source>A. Fl.</source>
         <extracomment>Alto Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="25"/>
         <source>Bass Flute</source>
-        <translation type="unfinished"/>
+        <translation>Basflöjt</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="27"/>
         <source>B. Fl.</source>
         <extracomment>Bass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="28"/>
         <source>Contra-alto Flute</source>
-        <translation type="unfinished"/>
+        <translation>Kontraaltflöjt</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="30"/>
         <source>C-a. Fl.</source>
         <extracomment>Contra-alto Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ka. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="31"/>
@@ -123,67 +123,67 @@
         <location filename="../instruments/instrumentsxml.h" line="33"/>
         <source>Cb. Fl.</source>
         <extracomment>Contrabass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="34"/>
         <source>Double Contrabass Flute</source>
-        <translation type="unfinished"/>
+        <translation>Subkontrabasflöjt</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="36"/>
         <source>D. Cb. Fl.</source>
         <extracomment>Double Contrabass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Skb. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="37"/>
         <source>Hyperbass Flute</source>
-        <translation type="unfinished"/>
+        <translation>Hyperbasflöjt</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="39"/>
         <source>Hb. Fl.</source>
         <extracomment>Hyperbass Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Hb. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="40"/>
         <source>Danso</source>
-        <translation type="unfinished"/>
+        <translation>Danso</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="42"/>
         <source>Da.</source>
         <extracomment>Danso</extracomment>
-        <translation type="unfinished"/>
+        <translation>Da.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="43"/>
         <source>Dizi</source>
-        <translation type="unfinished"/>
+        <translation>Dizi</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="45"/>
         <source>Di.</source>
         <extracomment>Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="46"/>
         <source>C Dizi</source>
-        <translation type="unfinished"/>
+        <translation>C Dizi</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="48"/>
         <source>C Di.</source>
         <extracomment>C Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>C Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="49"/>
         <source>A Dizi</source>
-        <translation type="unfinished"/>
+        <translation>A Dizi</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="51"/>
@@ -192,149 +192,149 @@
         <extracomment>A Dizi
 ----------
 F Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>A Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="52"/>
         <source>G Dizi</source>
-        <translation type="unfinished"/>
+        <translation>G Dizi</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="54"/>
         <source>G Di.</source>
         <extracomment>G Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>G Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="55"/>
         <source>F Dizi</source>
-        <translation type="unfinished"/>
+        <translation>F Dizi</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="58"/>
         <source>E Dizi</source>
-        <translation type="unfinished"/>
+        <translation>E Dizi</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="60"/>
         <source>E Di.</source>
         <extracomment>E Dizi</extracomment>
-        <translation type="unfinished"/>
+        <translation>E Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="64"/>
         <source>Flageolet</source>
-        <translation type="unfinished"/>
+        <translation>Flageolet</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="66"/>
         <source>Fla.</source>
         <extracomment>Flageolet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Fla.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="67"/>
         <source>French Flageolet</source>
-        <translation type="unfinished"/>
+        <translation>Fransk flageolet</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="69"/>
         <source>Fr. Fla.</source>
         <extracomment>French Flageolet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Fr. fla.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="70"/>
         <source>English Flageolet</source>
-        <translation type="unfinished"/>
+        <translation>Engelsk flageolet</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="72"/>
         <source>Eng. Fla.</source>
         <extracomment>English Flageolet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Eng. fla.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="73"/>
         <source>Irish Flute</source>
-        <translation type="unfinished"/>
+        <translation>Irländsk flöjt</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="75"/>
         <source>Ir. Fl.</source>
         <extracomment>Irish Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ir. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="76"/>
         <source>Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Gemshorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="78"/>
         <source>Gh.</source>
         <extracomment>Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="79"/>
         <source>Soprano Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Soprangemshorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="81"/>
         <source>S. Gh.</source>
         <extracomment>Soprano Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sgh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="82"/>
         <source>Alto Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Altgemshorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="84"/>
         <source>A. Gh.</source>
         <extracomment>Alto Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Agh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="85"/>
         <source>Tenor Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Tenorgemshorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="87"/>
         <source>T. Gh.</source>
         <extracomment>Tenor Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tgh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="88"/>
         <source>Bass Gemshorn</source>
-        <translation type="unfinished"/>
+        <translation>Basgemshorn</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="90"/>
         <source>B. Gh.</source>
         <extracomment>Bass Gemshorn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bgh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="91"/>
         <source>Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>Ocarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="93"/>
         <source>Oc.</source>
         <extracomment>Ocarina</extracomment>
-        <translation type="unfinished"/>
+        <translation>Oc.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="94"/>
         <source>G Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>G Sopran-ocarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="96"/>
@@ -345,7 +345,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="97"/>
         <source>F Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>F Sopran-ocarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="99"/>
@@ -356,7 +356,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="100"/>
         <source>C Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>C Sopran-ocarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="102"/>
@@ -367,7 +367,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="103"/>
         <source>Bâ™­ Soprano Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>B Sopran-ocarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="105"/>
@@ -378,7 +378,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="106"/>
         <source>G Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>G Alt-ocarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="108"/>
@@ -389,7 +389,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="109"/>
         <source>F Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>F Alt-ocarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="111"/>
@@ -400,7 +400,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="112"/>
         <source>C Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>C Alt-ocarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="114"/>
@@ -411,7 +411,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="115"/>
         <source>B♭­ Alto Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>B Alt-ocarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="117"/>
@@ -422,7 +422,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="118"/>
         <source>C Bass Ocarina</source>
-        <translation type="unfinished"/>
+        <translation>C Bas-ocarina</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="120"/>
@@ -439,53 +439,53 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="123"/>
         <source>Pn. Fl.</source>
         <extracomment>Pan Flute</extracomment>
-        <translation type="unfinished"/>
+        <translation>Pn. fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="124"/>
         <location filename="../instruments/instrumentsxml.h" line="136"/>
         <source>Quena</source>
-        <translation type="unfinished"/>
+        <translation>Queña</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="126"/>
         <location filename="../instruments/instrumentsxml.h" line="138"/>
         <source>Qn.</source>
         <extracomment>Quena</extracomment>
-        <translation type="unfinished"/>
+        <translation>Qn.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="127"/>
         <source>C Quena</source>
-        <translation type="unfinished"/>
+        <translation>C Queña</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="129"/>
         <source>C Qn.</source>
         <extracomment>C Quena</extracomment>
-        <translation type="unfinished"/>
+        <translation>C Qn.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="130"/>
         <source>G Quena</source>
-        <translation type="unfinished"/>
+        <translation>G Queña</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="132"/>
         <source>G Qn.</source>
         <extracomment>G Quena</extracomment>
-        <translation type="unfinished"/>
+        <translation>G Qn.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="133"/>
         <source>F Quena</source>
-        <translation type="unfinished"/>
+        <translation>F Queña</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="135"/>
         <source>F Qn.</source>
         <extracomment>F Quena</extracomment>
-        <translation type="unfinished"/>
+        <translation>F Qn.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="139"/>
@@ -501,7 +501,7 @@ F Dizi</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="142"/>
         <source>Garklein Recorder</source>
-        <translation type="unfinished"/>
+        <translation>Sopranissimoblockflöjt</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="144"/>
@@ -573,7 +573,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="162"/>
         <source>Cb. Rec.</source>
         <extracomment>Contrabass Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb. blf.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="163"/>
@@ -601,36 +601,36 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="169"/>
         <location filename="../instruments/instrumentsxml.h" line="175"/>
         <source>Tin Whistle</source>
-        <translation type="unfinished"/>
+        <translation>Tin whistle</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="171"/>
         <location filename="../instruments/instrumentsxml.h" line="177"/>
         <source>Tin. Wh.</source>
         <extracomment>Tin Whistle</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tin. Wh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="172"/>
         <source>Bâ™­ Tin Whistle</source>
-        <translation type="unfinished"/>
+        <translation>B Tin Whistle</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="174"/>
         <source>Bâ™­ Tin. Wh.</source>
         <extracomment>Bâ™­ Tin Whistle</extracomment>
-        <translation type="unfinished"/>
+        <translation>B Tin. Wh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="178"/>
         <source>Piccolo Oboe</source>
-        <translation type="unfinished"/>
+        <translation>Piccolo Oboe</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="180"/>
         <source>P. Ob.</source>
         <extracomment>Piccolo Oboe</extracomment>
-        <translation type="unfinished"/>
+        <translation>P. Ob.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="181"/>
@@ -641,18 +641,18 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="183"/>
         <source>Ob.</source>
         <extracomment>Oboe</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ob.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="184"/>
         <source>Baroque Oboe</source>
-        <translation type="unfinished"/>
+        <translation>Barockoboe</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="186"/>
         <source>Bq. Ob.</source>
         <extracomment>Baroque Oboe</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bar.ob.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="187"/>
@@ -663,7 +663,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="189"/>
         <source>Ob. d'a.</source>
         <extracomment>Oboe d'amore</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ob. d'a.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="190"/>
@@ -674,7 +674,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="192"/>
         <source>Ob. d. ca.</source>
         <extracomment>Oboe da caccia</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ob. d. ca.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="193"/>
@@ -685,29 +685,29 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="195"/>
         <source>E. Hn.</source>
         <extracomment>English Horn</extracomment>
-        <translation type="unfinished"/>
+        <translation>E. Hn.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="196"/>
         <source>Baritone Oboe</source>
-        <translation type="unfinished"/>
+        <translation>Baritonoboe</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="198"/>
         <source>Bar. Ob.</source>
         <extracomment>Baritone Oboe</extracomment>
-        <translation type="unfinished"/>
+        <translation>Barit.ob.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="199"/>
         <source>Piccolo Heckelphone</source>
-        <translation type="unfinished"/>
+        <translation>Piccoloheckelfon</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="201"/>
         <source>P. Hph.</source>
         <extracomment>Piccolo Heckelphone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Phf.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="202"/>
@@ -721,67 +721,67 @@ F Dizi</extracomment>
         <extracomment>Heckelphone
 ----------
 Heckelphone-clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Hf.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="205"/>
         <source>Heckelphone-clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Heckelfonklarinett</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="208"/>
         <source>Sopranino Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Sopranino-shawm</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="210"/>
         <source>Si. Sh.</source>
         <extracomment>Sopranino Shawm</extracomment>
-        <translation type="unfinished"/>
+        <translation>Si.sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="211"/>
         <source>Soprano Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Sopran-shawm</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="213"/>
         <source>S. Sh.</source>
         <extracomment>Soprano Shawm</extracomment>
-        <translation type="unfinished"/>
+        <translation>S.sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="214"/>
         <source>Alto Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Alt-shawm</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="216"/>
         <source>A. Sh.</source>
         <extracomment>Alto Shawm</extracomment>
-        <translation type="unfinished"/>
+        <translation>A.sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="217"/>
         <source>Tenor Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Tenor-shawm</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="219"/>
         <source>T. Sh.</source>
         <extracomment>Tenor Shawm</extracomment>
-        <translation type="unfinished"/>
+        <translation>T.sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="220"/>
         <source>Bass Shawm</source>
-        <translation type="unfinished"/>
+        <translation>Bas-shawm</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="222"/>
         <source>B. Sh.</source>
         <extracomment>Bass Shawm</extracomment>
-        <translation type="unfinished"/>
+        <translation>B.sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="223"/>
@@ -803,7 +803,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="228"/>
         <source>Cr.</source>
         <extracomment>Cromorne</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cr.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="229"/>
@@ -874,161 +874,161 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="247"/>
         <source>Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Cornamuse</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="249"/>
         <source>Cm.</source>
         <extracomment>Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="250"/>
         <source>Soprano Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Sopran-cornamuse</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="252"/>
         <source>S. Cm.</source>
         <extracomment>Soprano Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>S.cm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="253"/>
         <source>Alto Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Alt-cornamuse</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="255"/>
         <source>A. Cm.</source>
         <extracomment>Alto Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>A.cm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="256"/>
         <source>Tenor Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Tenor-cornamuse</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="258"/>
         <source>T. Cm.</source>
         <extracomment>Tenor Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>T.cm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="259"/>
         <source>Bass Cornamuse</source>
-        <translation type="unfinished"/>
+        <translation>Bas-cornamuse</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="261"/>
         <source>B. Cm.</source>
         <extracomment>Bass Cornamuse</extracomment>
-        <translation type="unfinished"/>
+        <translation>B.cm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="262"/>
         <location filename="../instruments/instrumentsxml.h" line="271"/>
         <source>Duduk</source>
-        <translation type="unfinished"/>
+        <translation>Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
 Dulcian</extracomment>
-        <translation type="unfinished"/>
+        <translation>Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="265"/>
         <source>F Duduk</source>
-        <translation type="unfinished"/>
+        <translation>F Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="267"/>
         <source>F Du.</source>
         <extracomment>F Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>F Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="268"/>
         <source>E Duduk</source>
-        <translation type="unfinished"/>
+        <translation>E Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="270"/>
         <source>E Du.</source>
         <extracomment>E Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>E Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="274"/>
         <source>C Duduk</source>
-        <translation type="unfinished"/>
+        <translation>C Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="276"/>
         <source>C Du.</source>
         <extracomment>C Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>C Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="277"/>
         <source>B Duduk</source>
-        <translation type="unfinished"/>
+        <translation>H Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="279"/>
         <source>B Du.</source>
         <extracomment>B Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>H Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="280"/>
         <source>Bâ™­ Duduk</source>
-        <translation type="unfinished"/>
+        <translation>B Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="282"/>
         <source>Bâ™­ Du.</source>
         <extracomment>Bâ™­ Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>B Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="283"/>
         <source>A Duduk</source>
-        <translation type="unfinished"/>
+        <translation>A Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="285"/>
         <source>A Du.</source>
         <extracomment>A Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>A Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="286"/>
         <source>G Duduk</source>
-        <translation type="unfinished"/>
+        <translation>G Duduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="288"/>
         <source>G Du.</source>
         <extracomment>G Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>G Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="289"/>
         <source>A Bass Duduk</source>
-        <translation type="unfinished"/>
+        <translation>A Basduduk</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="291"/>
         <source>A B. Du.</source>
         <extracomment>A Bass Duduk</extracomment>
-        <translation type="unfinished"/>
+        <translation>A Bdu.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="292"/>
@@ -1121,16 +1121,16 @@ Dulcian</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="316"/>
         <source>Shenai</source>
-        <translation type="unfinished"/>
+        <translation>Shenai</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
 Sheng</extracomment>
-        <translation type="unfinished"/>
+        <translation>She.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="319"/>
@@ -1141,7 +1141,7 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="321"/>
         <source>Cl.</source>
         <extracomment>Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="322"/>
@@ -1152,520 +1152,530 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="324"/>
         <source>P. Cl.</source>
         <extracomment>Piccolo Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>P.kl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="325"/>
         <source>Soprano Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Sopranklarinett</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="327"/>
         <source>S. Cl.</source>
         <extracomment>Soprano Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Skl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
-        <translation type="unfinished"/>
+        <source>C Clarinet</source>
+        <translation>C Klarinett</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>C kl.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation>D Klarinett</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>D kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Eâ™­ Klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
-        <translation>Bâ™­ Klarinett</translation>
+        <translation>B Klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>B kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A Klarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>A kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Altklarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Altkl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Bassettklarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ba.kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Bassetthorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
-        <translation type="unfinished"/>
+        <translation>Ba.hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Basklarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Kontraaltklarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>K-a.kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabasklarinett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb.kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Sopranino-chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>Si.cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Sopran-chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>S.cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Alt-chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>A.cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Tenor-chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>T.cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
-        <translation type="unfinished"/>
+        <translation>Bas-chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
-        <translation type="unfinished"/>
+        <translation>B.cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
-        <translation type="unfinished"/>
+        <translation>Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
-        <translation type="unfinished"/>
+        <translation>Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
-        <translation type="unfinished"/>
+        <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagott</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
-        <translation type="unfinished"/>
+        <translation>Fag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Kontrafagott</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kfag.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Sarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopraninosarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Si.sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Sopransarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>S.sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Altsarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>A.sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Tenorsarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>T.sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Baritonsarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bar.sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Bassarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>B.sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabassarrusofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb.sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Sopranissimosaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sio. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Sopraninosaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Si. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Sopransaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S. sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
-        <translation type="unfinished"/>
+        <translation>Aulochrome</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
-        <translation type="unfinished"/>
+        <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Mezzosopransaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>M.s.sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Altsaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>A.sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
-        <translation type="unfinished"/>
+        <translation>Melodisaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mel.sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Tenorsaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>T.sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Barytonsaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Bar.sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Bassaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>B.sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Kontrabassaxofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb.sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Säckpipa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Munspel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Dragspel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melodika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Bleckblås</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Horn i Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
-        <source>Bâ™­ Cornet</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
-        <source>Bâ™­ Cnt.</source>
-        <extracomment>Bâ™­ Cornet</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
+        <source>Bâ™­ Cornet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <source>Bâ™­ Cnt.</source>
+        <extracomment>Bâ™­ Cornet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Piccolatrumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Piccolatrumpet i Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Piccolatrumpet i A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Barocktrumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Barocktrumpet i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Barocktrumpet i Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Barocktrumpet i D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Barocktrumpet i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Barocktrumpet i Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Flygelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Mellofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Ofikleid</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Altofikleid i F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Altofikleid i Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>Basofikleid i C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Basofikleid i B</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Kontrabasofikleid i Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Kornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Soprankornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Altkornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Tenorkornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Serpent</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Trombon (diskantklav)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Soprantrombon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Alttrombon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Tenortrombon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Bastrombon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Kontrabastrombon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Eufonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Tidig musik</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Trombon (diskantklav)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Wagnertuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Trumset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Bastrumma</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Kinesisk cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Splash-cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Koskälla</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Kastanjetter</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Fingerknäpp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Handklapp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Slap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tamburin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Röst</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Gossopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Sopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzosopran</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Baryton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Leksakspiano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Klavikord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Cembalo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Elpiano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Orgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Hammondorgel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Martenotvågor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
         <source>Brass Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Knäppta stränginstrument</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalajka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Bouzouki (3-körig)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Bouzouki (4-körig)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Altgitarr</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Klassisk gitarr</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Klassisk gitarr [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Akustisk gitarr</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Akustisk gitarr [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11-strängad altgitarr</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Elgitarr</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Elgitarr [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Harpa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Luta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Luta [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Luta 5-körig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Luta 6-körig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Luta 7-körig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Luta 8-körig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Luta 9-körig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Luta 10-körig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Luta 13-körig</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>Elbas 5-strängad</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>Elbas 5-strängad [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola da gamba [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Tidig musik</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Teorb</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Ukulele [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Basgitarr</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Basgitarr [Tabulatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
-        <translation type="unfinished"/>
+        <translation>Akustisk bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Elbas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Elbas [Tablatur]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Elbas bandlös</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Stråkinstrument</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Violin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncell</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Kontrabas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Kontrabas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
-        <translation type="unfinished"/>
+        <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
-        <translation type="unfinished"/>
+        <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
-        <translation type="unfinished"/>
+        <translation>Diskantviol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
-        <translation type="unfinished"/>
+        <translation>Dvl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
-        <translation type="unfinished"/>
+        <translation>Altviol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
-        <translation type="unfinished"/>
+        <translation>Avl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
-        <translation type="unfinished"/>
+        <translation>Tenorviol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
-        <translation type="unfinished"/>
+        <translation>Tvl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,28 +5504,28 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
-        <translation type="unfinished"/>
+        <translation>Viola da gamba (tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
-        <translation type="unfinished"/>
+        <translation>Violon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
 D Violone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
-        <translation type="unfinished"/>
+        <translation>D Violon</translation>
     </message>
 </context>
 </TS>
\ No newline at end of file
diff --git a/share/locale/instruments_th.ts b/share/locale/instruments_th.ts
index 8e507ef..90c0d11 100644
--- a/share/locale/instruments_th.ts
+++ b/share/locale/instruments_th.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>เครื่องลมทองเหลือง</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>เครื่องกระทบที่มีระดับเสียงแน่นอน</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>เครื่องกระทบที่มีระดับเสียงไม่แน่นอน</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>เครื่องดนตรีวงโยทวาธิต</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>เสียง</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>เสียง</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>โซปราโนชาย</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>โซปราโน</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>เมซโซ-โซปราโน</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>อัลโต</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>คอนทราลโต</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>เคาเตอร์เทเนอร์</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>เทเนอร์</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>แบริโทน</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>เบส</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>คาซู</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>เครื่องลิ่มนิ้ว</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>ออร์แกน</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>เครื่องดนตรีไฟฟ้า</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
-        <translation>เครื่องดีด</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation>เครื่องดีด</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>เครื่องสาย</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_tr.ts b/share/locale/instruments_tr.ts
index 655ed5e..4c87d7c 100644
--- a/share/locale/instruments_tr.ts
+++ b/share/locale/instruments_tr.ts
@@ -4,7 +4,7 @@
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1"/>
         <source>Common instruments</source>
-        <translation type="unfinished"/>
+        <translation>Temel Enstrümanlar</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="2"/>
@@ -540,7 +540,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="153"/>
         <source>A. Rec.</source>
         <extracomment>Alto Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Bl. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="154"/>
@@ -551,7 +551,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="156"/>
         <source>T. Rec.</source>
         <extracomment>Tenor Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Bl. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="157"/>
@@ -562,7 +562,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="159"/>
         <source>B. Rec.</source>
         <extracomment>Bass Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Bl. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="160"/>
@@ -573,7 +573,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="162"/>
         <source>Cb. Rec.</source>
         <extracomment>Contrabass Recorder</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb. Bl. Fl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="163"/>
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Re Klarnet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>Re.Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Mib Klarnet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Miâ™­.Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Siâ™­ Klarnet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Siâ™­ Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>La Klarnet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>La Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Alto Klarnet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>A. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Bas Klarnet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B.Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Kontra-alto Klarnet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>Ka.Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
-        <translation>Kontrabass Klarnet</translation>
+        <translation>Kontrabas Klarnet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb. Kl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Fagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Fg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Kontra Fagot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>K. Fg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Saksafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Saks.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Sopranissimo Saksafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sio. Saks.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Sopranino Saksafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Si. Saks.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Soprano Saksafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S. Saks.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Mezzo-Soprano Saksafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>M.S. Saks.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Alto Saksafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A. Saks.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Tenor Saksafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T. Saks.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Bariton Saksafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar. Saks.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Bas Saksafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B. Saks.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Kontrbas Saksafon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Kb. Saks.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Gayda</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
-        <translation type="unfinished"/>
+        <translation>Gyd.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Mızıka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,857 +1724,877 @@ Harmonium</extracomment>
         <translation>Mız.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12 Delikli Do Kromatik Mızıka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14 Delikli Do Kromatik Mızıka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12 Delikli Sol Kromatik Mızıka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16 Delikli Do Kromatik Mızıka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
-        <translation type="unfinished"/>
+        <translation>12 Delikli Tenor Do Kromatik Mızıka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Bas Mızıka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
 Bass Hohner Harmonica
 ----------
 Bass Huang Harmonica</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Mız.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Akordiyon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Akr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Bandoneon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Melodika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Bakır Nefesli Çalgılar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Bk. Nef.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Pikolo Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>Do Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>Do Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Siâ™­ Trompet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Siâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Trombon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
-        <source>Soprano Trombone</source>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
+        <source>Soprano Trombone</source>
+        <translation>Soprano Trombon</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Alto Trombon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Tenor Trombon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
-        <translation type="unfinished"/>
+        <translation>T. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Bas Trombon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
-        <translation type="unfinished"/>
+        <translation>B. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
-        <translation type="unfinished"/>
+        <translation>Kontrabas Trombon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kb. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Wagner Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Timpani</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
-        <translation type="unfinished"/>
+        <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metalofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Ksilofon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Ksl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
-        <translation type="unfinished"/>
+        <translation>Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
-        <translation type="unfinished"/>
+        <translation>Bas Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
-        <translation type="unfinished"/>
+        <translation>Alkış</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
-        <translation type="unfinished"/>
+        <translation>Alk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Åžan</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
-        <translation type="unfinished"/>
+        <translation>Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
-        <translation type="unfinished"/>
+        <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
-        <translation type="unfinished"/>
+        <translation>Mezzo-soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
-        <translation type="unfinished"/>
+        <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
-        <translation type="unfinished"/>
+        <translation>Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
-        <translation type="unfinished"/>
+        <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Kontralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Kontr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Kontrtenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
-        <translation type="unfinished"/>
+        <translation>Kt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
-        <translation type="unfinished"/>
+        <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
-        <translation type="unfinished"/>
+        <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Bariton</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
-        <translation type="unfinished"/>
+        <translation>Tuşlu Çalgılar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piyano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Kuyruklu Piyano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Duvar Piyanosu</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
-        <translation type="unfinished"/>
+        <translation>Klavikord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
-        <translation type="unfinished"/>
+        <translation>Klvk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
-        <translation type="unfinished"/>
+        <translation>Klavsen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
-        <translation type="unfinished"/>
+        <translation>Klvs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
-        <translation type="unfinished"/>
+        <translation>Çelesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Org</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
-        <translation type="unfinished"/>
+        <translation>Hammond Org</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Borulu Org</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Elektronik Çalgılar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
         <source>Brass Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation>Theremin</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
-        <translation type="unfinished"/>
+        <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalayka</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Buzuki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
-        <translation type="unfinished"/>
+        <translation>Buzuki (3 çift telli)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
-        <translation type="unfinished"/>
+        <translation>Buzuki (4 çift telli)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Soprano Gitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
-        <translation type="unfinished"/>
+        <translation>S. Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Alto Gitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
-        <translation type="unfinished"/>
+        <translation>A. Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Klasik Gitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Klasik Gitar [Tablatür]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Akustik Gitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Akustik Gitar [Tablatür]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12 Telli Gitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
-        <translation>Elektrik Gitar</translation>
+        <translation>Elektro Gitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El. Git.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Elektro Gitar [Tablatür]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Arp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Arp</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Lavta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lvt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Lavta [Tablatür]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Kemanlar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Viyolalar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Viyolonseller</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Kontrbaslar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
-        <translation type="unfinished"/>
+        <translation>Viola da gamba (Tablatür)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Erken dönem müziği</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Mandolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Mandolin [Tablatür]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Sitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Ukulele [Tablatür]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Bas Gitar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
-        <translation type="unfinished"/>
+        <translation>Bas Gitar [Tablatür]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Akustik Bas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Yaylılar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Keman</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Kem.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viyola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Viyolonsel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vls.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Kontrbas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Kb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_uk.ts b/share/locale/instruments_uk.ts
index e47352d..b889e86 100644
--- a/share/locale/instruments_uk.ts
+++ b/share/locale/instruments_uk.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>D Кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>D Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>E♭ Кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Мі♭ Кл.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>B♭ Кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Bâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A Кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>A Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Альтовий кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>A. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Басет кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Ba. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Басет горн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Ba. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Бас-кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Контраальтовий кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>C-a. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Контрабасовий кларнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cb. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Сопілка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Сопілка-сопраніно</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Si. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Сопілка-сопрано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>S. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Альтова сопілка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>A. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Тенорова сопілка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>T. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Басова сопілка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>B. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Тараґот</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Мала флейта</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Фаґот</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Bsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Контрафаґот</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cbsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Язичковий контрабас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Rd. Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Дульціан</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Ракет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Саррюссофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Сопраніно саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Si. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Сопрановий саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>S. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Альтовий саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>A. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Теноровий саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>T. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Баритональний саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Bar. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Басовий Саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>B. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Контрабасовий саррюсофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Cb. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Сопраніссімо саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sio. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Сопраніно саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Si. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Саксофон-сопрано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Аулохром</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Саксофон-меццо-сопрано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>M.S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Саксофон-альт</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Мелодичний саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Mel. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Саксофон-тенор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Баритон-саксофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Саксофон-бас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Саксофон-контрабас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Cb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Саксофон-субконтрабас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Scb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Волинка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Bagp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Язичкові</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Гармоніка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>Хроматична губна гармоніка в ладу С на 12 отворів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>Хроматична губна гармоніка в ладу С на 14 отворів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>Хроматична губна гармоніка в ладу G на 12 отворів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>Хроматична губна гармоніка в ладу С на 16 отворів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>Хроматична тенорова губна гармоніка в ладу С на 12 отворів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>Діатонічна губна гармоніка в ладу верхня G на 10 отворів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>Діатонічна губна гармоніка в ладу Фа на 10 отворів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>Діатонічна губна гармоніка в ладу D на 10 отворів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>Діатонічна губна гармоніка в ладу C на 10 отворів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>Діатонічна губна гармоніка в ладу A на 10 отворів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>Діатонічна губна гармоніка в ладу G на 10 отворів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>Діатонічна губна гармоніка в ладу нижня D на 10 отворів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>Акордова гармоніка на 20 отворів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Басова гармоніка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Bs. Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Бас-гармоніка Хонер</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Бас-гармоніка Хуан</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Аккордеон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Бандонеон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Концертина</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Мелодична гармоніка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Шен</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Сопрановий шен</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>S She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Альтовий шен</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>A She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Теноровий шен</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>T She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Бас-шен</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>B She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>Мідні духові</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Валторна в ладу Фа</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>Фа вал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Валторна в ладу C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>H. C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Валторна в ладу B♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Bâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Валторна в ладу A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>A Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Валторна в ладу A♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Aâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Валторна в ладу G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>G Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Валторна в ладу E</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>E Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Валторна в ладу Мі♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Мі♭ Вал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Валторна в ладу D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Валторна в ладу C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Віденська валторна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>V. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Басова валторна в ладу B♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Bâ™­ ba Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Корнет в ладу Мі♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Мі♭ Кор.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Корнет в ладу B♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Bâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Саксогорн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Альтовий ріжок в ладу Фа</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>Фа альт. рж.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Альтовий ріжок в ладу Мі♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Мі♭ Альт. тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Баритоновий ріжок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Bar. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Баритональна труба (скрипковий ключ)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Поштовий ріжок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Psthn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Альтгорн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>AlpHn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>Труба-піколо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>Труба-піколо в Сі♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>P. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>Труба-піколо в Ля</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>P. Tpt. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>Мі♭ труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Мі♭ тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>Ре труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>D Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>До труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>C Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>Сі♭ труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Bâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Кишенькова труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Pkt. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Труба з кулісою</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Sl.Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Тенорова труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tnr. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Басова труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>Мі♭ басова труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Мі♭ Б.-тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Басова труба в До</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>B. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Сі♭ басова труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Bâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Барокова труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Bq. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Фа барокова труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Фа бар. тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Мі♭ барокова труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Мі♭ Бар. тр.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Ре барокова труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Bq. Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>До барокова труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Bq. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Сі♭ барокова труба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Bq. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Раг данг</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Сурма</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Сурма-сопрано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Sop. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Альтова сурма</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Alt. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Баритонова сурма</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bar. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Флюгельгорн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Флюг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Фіскорн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Фіс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Куглогорн</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Баритональна сурма</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Мелофонова сурма</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mel. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Контрабас-сурма</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Con. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Мелофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Офіклейд</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Фа альтовий офіклейд</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>Фа альт. оф.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Мі♭ альтовий офіклейд</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Мі♭ Альт. Оф.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>До бас-офіклейд</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>C B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Сі♭ бас-офіклейд</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Bâ™­ B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Мі♭ контрабас-офіклейд</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Мі♭ Контрб.-оф.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Корнетіно</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Корнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Сопрановий корнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>S. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Альтовий корнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>A. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Теноровий корнет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>T. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Серпент</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Тромбон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Тромбон (скрипковий ключ)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Тромбон-сопрано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>S. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Альтовий тромбон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>A. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Теноровий тромбон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>T. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Басовий тромбон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>B. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Контрабасовий тромбон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Cb. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Чимбассо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Еуфоніум</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Еуфоніум (скрипковий ключ)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Туба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Туба в ладу Фа</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Старовинна музика</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Сі♭ файф</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Тромбон (скрипковий ключ)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Еуфоніум (скрипковий ключ)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>Фа ту.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Туба в ладу Мі♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Мі♭ Ту.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Мі♭ туба (скрипковий ключ)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Туба в ладу До</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>C Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Сі♭ туба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Bâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Сі♭ туба (скрипковий ключ)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Фа бас-туба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Фа б.-ту.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Мі♭ бас-туба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Мі♭ Б.-ту.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Субконтрабас-туба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>SCB. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Гелікон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Сузафон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Туба Вагнер</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Сі♭ туба Вагнер</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Bâ™­ Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>Фа туба Вагнер</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>Фа ту. Ваг.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Мушля</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Діджеріду</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Хорагай</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Шойфер</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Вувузела</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Ударні з визначеною висотою звуку</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Литаври</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Рототом</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Дзвіночки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Сопрановий глокеншпіль Орфф</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. S. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Альтовий глокеншпіль Орфф</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O. A. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Помпейські тарілочки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Тубафон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Коров’ячі дзвони</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Вібрафон </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Металофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Сопрановий металофон Орфф</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O. S. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Альтовий металофон Орфф</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. A. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Бас-металофон Орфф</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O. B. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Оркестрові дзвони</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Tu. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Сталеві ударні</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Сопранові сталеві ударні</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>S. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Альтові сталеві ударні</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Гітарні сталеві ударні</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Тенорові сталеві ударні</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Віолончелеві сталеві ударні</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Басові сталеві ударні</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Дзвіночок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Ha. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Налаштовані гонги</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Td. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Флексатон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Флекс.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Музична пилка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Mu. Sw.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Мизичне скло</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Mu. Gla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Скляна гармоніка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gla. Har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Ксилофон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Сопрановий ксилофон Орфф</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O. S. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Альтовий ксилофон Орфф</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O. A. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Бас-ксилофон Орфф</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O. B. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Ксиломаримба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Маримба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Бас маримба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>B. Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Цимбали</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Налаштовані клаксонові ріжки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Tn. Klx. Hns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Калімба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation> Дискантова калімба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Tr. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Альтова калімба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Ударні з невизначеною висотою звуку</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Набір ударних</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Drs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Малий барабан</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Басовий малий барабан</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>B. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Малий барабан-піколо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P. Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Військовий барабан</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Mil. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Том-томи</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Китайські том-томи</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Ch. To.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Бонги</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Конги</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Тімбалес</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Тамбурин без тарілочок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Тамб. б. тар.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Табли</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Куіка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Кастаньєти</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Кас.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Хай-хет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Там-там</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Дзвіночки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Бубонці</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Sle. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Тарілка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Be. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Чашкові гонги</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Bw. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Тубо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Металеві кастаньєти</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Met. Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Автомобільні гальмові барабани</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut. Brk. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Сталеві труби</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Ir. Pi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Ланцюги</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Chn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Ковадло</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Anv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Дерев’яні блоки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Wd. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Темплеблок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Трикутник</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Тарілки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Підвісні тарілки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>R. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Китайські тарілки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Ch. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Підвісна тарілка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cr. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Сплеш</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Sp. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Альпійський дзвіночок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Cwb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Клавес-палички</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Кастаньєти</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Гуїро</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Маракаси</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Кабаца</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Челюсть</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Вібраслеп</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Простий перкусійний інструмент</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Хлопавка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Wh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Тріскачка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Rat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Грім</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Наждакові блоки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sa. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Дерев’яна музична підвіска</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Wd. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Бамбукова музична підвіска</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Металева музична підвіска</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Met. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Скляна музична підвіска</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Gl. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Музична підвіска з черепашок</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Sh. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Каміння </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Sto.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Клацання пальцями</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Кл. пал.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Плескання в долоні</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Hd. Clp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Ляпанець</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Тупання</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Бубон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Маршові ударні</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>SD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Тенорові барабани</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Басові малі барабани</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Тарілки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Cy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Вокал</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Голос</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Хлопчик сопрано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>B. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Сопрано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Меццо-сопрано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Альт</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Контральто</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Контртенор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Тенор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Баритон</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Бас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Казу</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Клавішні</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Фортепіано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Рояль</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Піаніно</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Хонкі-тонк фортепіано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Дитяче фортепіано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Toy Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Клавікорд</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Cch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Клавікорд</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Hch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Верджінел</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Челеста</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Електричне фортепіано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>El. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Клавінет</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Орган</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Ударний орган</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perc. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Орган Хаммонд</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Ротаційний орган</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Rot. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Духовий орган</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Фісгармонія</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Язичковий орган</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Rd. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Електронні інструменти</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Синтезатор ефектів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synth.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Синтезатор атмосфери</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Синтезатор яскравості</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Кристалічний синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Синтезатор відлуння</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Синтезатор гоблінів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Синтезатор дощу</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Скай-фай синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Синтезатор звукової доріжки</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Подушковий синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>Синтезатор нової ери</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Синтезатор тепла</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Полі-синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Синтезатор хору</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Смичковий синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Металевий синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Синтезатор гало</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Синтезатор мітли</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Синтезатор пили</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Синусоїдальний синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Квадратний синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Хвилі Мартено</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Синтезатор молотка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Mal. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Бас-синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
         <source>Brass Synthesizer</source>
         <translation>Латунний синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
         <translation>Струнний синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Терменвокс</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Ударний синтезатор</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Perc. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Струнні щипкові</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Банджо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Банджо [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Тенорова банджо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T. Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Балалайка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Балалайка піколо</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pic. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Перша балалайка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Друга балалайка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sec. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Альтова балалайка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Басова балалайка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>B. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Балалайка-контрабас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>CB. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Бузукі</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Бузукі (3 хори)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Бузукі (4 хори)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Гітара-сопрано</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>S. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Альтова гітара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Класична гітара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,279 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Класична гітара [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Акустична гітара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Акустична гітара [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11-струнна альтова гітара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-str. A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12-и струнна гітара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-str. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Сталева педальна гітара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Електрична гітара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Електрична гітара [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Арфа</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Кото</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Лютня</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Лютня [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Лютня (5-хорів)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Лютня (6-хорів)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Лютня (7-хорів)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Лютня (8-хорів)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Лютня (9-хорів)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Лютня (10-хорів)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Лютня (13-хорів)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A. Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Мандоліна [Табулатура]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>5-стр. Електрична бас-гітара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>5-стр. Електрична бас-гітара [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Ерху</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>
-Ех.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
-        <translation type="unfinished"/>
+        <translation>Скрипка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
-        <translation type="unfinished"/>
+        <translation>Альти</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
-        <translation type="unfinished"/>
+        <translation>Віолончель</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
-        <translation type="unfinished"/>
+        <translation>Контрабас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Віола да гамба (Табулатоура)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Архилютня</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Старовинна музика</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Сі♭ файф</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Теорба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Мандоліна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Мандоліна [Табулатура]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Мандола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5076,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Альтова мандола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Тенорова мандола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Мандолочелло</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Октавна мандоліна</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Сямісен</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Ситар</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>Укулеле</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>Укулеле [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Тенорова укулеле</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Баритонова укулеле</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Бас гітара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Бас гітара [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Акустична бас-гітара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Електрична бас-гітара</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5203,127 +5365,139 @@ Tenor Mandola</extracomment>
         <translation>El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Електрична бас-гітара [Табулатура]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Електрична бас-гітара без ладів</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Ел. бас-гіт. без лад.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Струнні</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Ерху</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>
+Ех.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Скрипка</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Віола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Віолончель</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Контрабас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Подвійний бас</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Віола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Tr. vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Альтова віола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Тенорова віола</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Віола да гамба</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5331,18 +5505,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Віола да гамба (Таб)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Віолоне</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5350,7 +5524,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>Віолоне в ладу D</translation>
     </message>
diff --git a/share/locale/instruments_uz at Latn.ts b/share/locale/instruments_uz at Latn.ts
index a967a50..42d3a0d 100644
--- a/share/locale/instruments_uz at Latn.ts
+++ b/share/locale/instruments_uz at Latn.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
-        <source>D Clarinet</source>
+        <source>C Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <source>D Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
-        <source>Atmosphere Synthesizer</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
-        <source>Brightness Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
-        <source>Crystal Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
-        <source>Echoes Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
-        <source>Goblins Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
-        <source>Rain Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
-        <source>Sci-fi Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
-        <source>Soundtrack Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
-        <source>Pad Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1266"/>
-        <source>New Age Synthesizer</source>
+        <source>Atmosphere Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1269"/>
-        <source>Warm Synthesizer</source>
+        <source>Brightness Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1272"/>
-        <source>Poly Synthesizer</source>
+        <source>Crystal Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1275"/>
-        <source>Choir Synthesizer</source>
+        <source>Echoes Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1278"/>
-        <source>Bowed Synthesizer</source>
+        <source>Goblins Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1281"/>
-        <source>Metallic Synthesizer</source>
+        <source>Rain Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1284"/>
-        <source>Halo Synthesizer</source>
+        <source>Sci-fi Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1287"/>
-        <source>Sweep Synthesizer</source>
+        <source>Soundtrack Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1290"/>
-        <source>Saw Synthesizer</source>
+        <source>Pad Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="1293"/>
-        <source>Sine Synthesizer</source>
+        <source>new age</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
-        <source>Square Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
-        <source>Ondes Martenot</source>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
-        <source>O.M.</source>
-        <extracomment>Ondes Martenot</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
-        <source>Mallet Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
-        <source>Mal. Syn.</source>
-        <extracomment>Mallet Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
-        <source>Bass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <source>New Age Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
-        <source>Theremin</source>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <source>Warm Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
-        <source>Thmn.</source>
-        <extracomment>Theremin</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
+        <source>Poly Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
-        <source>Percussion Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
+        <source>Choir Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
-        <source>Perc. Syn.</source>
-        <extracomment>Percussion Synthesizer</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <source>Bowed Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
-        <source>Plucked Strings</source>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <source>Metallic Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
-        <source>Banjo</source>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <source>Halo Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
-        <source>Bj.</source>
-        <extracomment>Banjo</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
+        <source>Sweep Synthesizer</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <source>Saw Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
+        <source>Sine Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <source>Square Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <source>Ondes Martenot</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
+        <source>O.M.</source>
+        <extracomment>Ondes Martenot</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
+        <source>Mallet Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <source>Mal. Syn.</source>
+        <extracomment>Mallet Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
+        <source>Bass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <source>Theremin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
+        <source>Thmn.</source>
+        <extracomment>Theremin</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
+        <source>Percussion Synthesizer</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <source>Perc. Syn.</source>
+        <extracomment>Percussion Synthesizer</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
+        <source>Plucked Strings</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <source>Banjo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <source>Bj.</source>
+        <extracomment>Banjo</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
-        <source>5-str. Electric Bass</source>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
-        <source>5-str. Electric Bass [Tablature]</source>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <source>5-str. Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <source>5-str. Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/instruments_vi.ts b/share/locale/instruments_vi.ts
index 0522570..9517cc6 100644
--- a/share/locale/instruments_vi.ts
+++ b/share/locale/instruments_vi.ts
@@ -35,7 +35,7 @@
         <location filename="../instruments/instrumentsxml.h" line="9"/>
         <source>Picc.</source>
         <extracomment>Piccolo</extracomment>
-        <translation>Picc.</translation>
+        <translation>S.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="10"/>
@@ -46,7 +46,7 @@
         <location filename="../instruments/instrumentsxml.h" line="12"/>
         <source>Fl.</source>
         <extracomment>Flute</extracomment>
-        <translation>Fl.</translation>
+        <translation>S.tr.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="13"/>
@@ -57,7 +57,7 @@
         <location filename="../instruments/instrumentsxml.h" line="15"/>
         <source>Tr. Fl.</source>
         <extracomment>Treble Flute</extracomment>
-        <translation>Tr. Fl.</translation>
+        <translation>S.tr. Tr</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="16"/>
@@ -68,7 +68,7 @@
         <location filename="../instruments/instrumentsxml.h" line="18"/>
         <source>Sop. Fl.</source>
         <extracomment>Soprano Flute</extracomment>
-        <translation>Sop. Fl.</translation>
+        <translation>S.tr. Sop.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="19"/>
@@ -79,7 +79,7 @@
         <location filename="../instruments/instrumentsxml.h" line="21"/>
         <source>Sc-a. Fl.</source>
         <extracomment>Sub Contra-alto Flute</extracomment>
-        <translation>Sc-a. Fl.</translation>
+        <translation>S.tr. Sc-a.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="22"/>
@@ -90,7 +90,7 @@
         <location filename="../instruments/instrumentsxml.h" line="24"/>
         <source>A. Fl.</source>
         <extracomment>Alto Flute</extracomment>
-        <translation>A. Fl.</translation>
+        <translation>S.tr. A.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="25"/>
@@ -101,7 +101,7 @@
         <location filename="../instruments/instrumentsxml.h" line="27"/>
         <source>B. Fl.</source>
         <extracomment>Bass Flute</extracomment>
-        <translation>B. Fl.</translation>
+        <translation>S.tr. B.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="28"/>
@@ -112,7 +112,7 @@
         <location filename="../instruments/instrumentsxml.h" line="30"/>
         <source>C-a. Fl.</source>
         <extracomment>Contra-alto Flute</extracomment>
-        <translation>C-a. Fl.</translation>
+        <translation>S.tr. C-a.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="31"/>
@@ -123,7 +123,7 @@
         <location filename="../instruments/instrumentsxml.h" line="33"/>
         <source>Cb. Fl.</source>
         <extracomment>Contrabass Flute</extracomment>
-        <translation>Cb. Fl.</translation>
+        <translation>S.tr. Cb.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="34"/>
@@ -134,7 +134,7 @@
         <location filename="../instruments/instrumentsxml.h" line="36"/>
         <source>D. Cb. Fl.</source>
         <extracomment>Double Contrabass Flute</extracomment>
-        <translation>D. Cb. Fl.</translation>
+        <translation>S.tr. Cb. Đ.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="37"/>
@@ -145,7 +145,7 @@
         <location filename="../instruments/instrumentsxml.h" line="39"/>
         <source>Hb. Fl.</source>
         <extracomment>Hyperbass Flute</extracomment>
-        <translation>Hb. Fl.</translation>
+        <translation>S.tr. Hb.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="40"/>
@@ -156,7 +156,7 @@
         <location filename="../instruments/instrumentsxml.h" line="42"/>
         <source>Da.</source>
         <extracomment>Danso</extracomment>
-        <translation>Da.</translation>
+        <translation>S. Da.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="43"/>
@@ -167,7 +167,7 @@
         <location filename="../instruments/instrumentsxml.h" line="45"/>
         <source>Di.</source>
         <extracomment>Dizi</extracomment>
-        <translation>Di.</translation>
+        <translation>S. Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="46"/>
@@ -178,7 +178,7 @@
         <location filename="../instruments/instrumentsxml.h" line="48"/>
         <source>C Di.</source>
         <extracomment>C Dizi</extracomment>
-        <translation>C Di.</translation>
+        <translation>S. C Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="49"/>
@@ -192,7 +192,7 @@
         <extracomment>A Dizi
 ----------
 F Dizi</extracomment>
-        <translation>A Di.</translation>
+        <translation>S. A Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="52"/>
@@ -203,7 +203,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="54"/>
         <source>G Di.</source>
         <extracomment>G Dizi</extracomment>
-        <translation>G Di.</translation>
+        <translation>S. G Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="55"/>
@@ -219,7 +219,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="60"/>
         <source>E Di.</source>
         <extracomment>E Dizi</extracomment>
-        <translation>E Di.</translation>
+        <translation>S. E Di.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="64"/>
@@ -230,7 +230,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="66"/>
         <source>Fla.</source>
         <extracomment>Flageolet</extracomment>
-        <translation>Fla.</translation>
+        <translation>S.d. Th.c.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="67"/>
@@ -241,7 +241,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="69"/>
         <source>Fr. Fla.</source>
         <extracomment>French Flageolet</extracomment>
-        <translation>Fr. Fla.</translation>
+        <translation>S.d. Th.c. Ph.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="70"/>
@@ -252,7 +252,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="72"/>
         <source>Eng. Fla.</source>
         <extracomment>English Flageolet</extracomment>
-        <translation>Eng. Fla.</translation>
+        <translation>S.d. Th.c. A.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="73"/>
@@ -263,7 +263,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="75"/>
         <source>Ir. Fl.</source>
         <extracomment>Irish Flute</extracomment>
-        <translation>Ir. Fl.</translation>
+        <translation>S.tr. Ai.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="76"/>
@@ -274,7 +274,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="78"/>
         <source>Gh.</source>
         <extracomment>Gemshorn</extracomment>
-        <translation>Gh.</translation>
+        <translation>K.s.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="79"/>
@@ -285,7 +285,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="81"/>
         <source>S. Gh.</source>
         <extracomment>Soprano Gemshorn</extracomment>
-        <translation>S. Gh.</translation>
+        <translation>K.s. Sop.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="82"/>
@@ -296,7 +296,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="84"/>
         <source>A. Gh.</source>
         <extracomment>Alto Gemshorn</extracomment>
-        <translation>A. Gh.</translation>
+        <translation>K.s. A.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="85"/>
@@ -307,7 +307,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="87"/>
         <source>T. Gh.</source>
         <extracomment>Tenor Gemshorn</extracomment>
-        <translation>T. Gh.</translation>
+        <translation>K.s. T.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="88"/>
@@ -318,7 +318,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="90"/>
         <source>B. Gh.</source>
         <extracomment>Bass Gemshorn</extracomment>
-        <translation>B. Gh.</translation>
+        <translation>K.s. B.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="91"/>
@@ -329,106 +329,106 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="93"/>
         <source>Oc.</source>
         <extracomment>Ocarina</extracomment>
-        <translation>Oc.</translation>
+        <translation>S. Oc.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="94"/>
         <source>G Soprano Ocarina</source>
-        <translation>G Soprano Ocarina</translation>
+        <translation>Sáo Ocarina G Soprano</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="96"/>
         <source>G S. Oc.</source>
         <extracomment>G Soprano Ocarina</extracomment>
-        <translation>G S. Oc.</translation>
+        <translation>S. Oc. G Sop.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="97"/>
         <source>F Soprano Ocarina</source>
-        <translation>F Soprano Ocarina</translation>
+        <translation>Sáo  Ocarina F Soprano</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="99"/>
         <source>F S. Oc.</source>
         <extracomment>F Soprano Ocarina</extracomment>
-        <translation>F S. Oc.</translation>
+        <translation>S. Oc. F Sop.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="100"/>
         <source>C Soprano Ocarina</source>
-        <translation>C Soprano Ocarina</translation>
+        <translation>Sáo Ocarina C Soprano</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="102"/>
         <source>C S. Oc.</source>
         <extracomment>C Soprano Ocarina</extracomment>
-        <translation>C S. Oc.</translation>
+        <translation>S. Oc. C Sop.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="103"/>
         <source>Bâ™­ Soprano Ocarina</source>
-        <translation>Bâ™­ Soprano Ocarina</translation>
+        <translation>Sáo Ocarina B♭ Soprano</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="105"/>
         <source>B♭­ S. Oc.</source>
         <extracomment>Bâ™­ Soprano Ocarina</extracomment>
-        <translation>B♭­ S. Oc.</translation>
+        <translation>S. Oc. B♭­ Sop.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="106"/>
         <source>G Alto Ocarina</source>
-        <translation>G Alto Ocarina</translation>
+        <translation>Sáo Ocarina G Alto</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="108"/>
         <source>G A. Oc.</source>
         <extracomment>G Alto Ocarina</extracomment>
-        <translation>G A. Oc.</translation>
+        <translation>S. Oc. G A.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="109"/>
         <source>F Alto Ocarina</source>
-        <translation>F Alto Ocarina</translation>
+        <translation>Sáo Ocarina F Alto</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="111"/>
         <source>F A. Oc.</source>
         <extracomment>F Alto Ocarina</extracomment>
-        <translation>F A. Oc.</translation>
+        <translation>S. Oc. F A.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="112"/>
         <source>C Alto Ocarina</source>
-        <translation>C Alto Ocarina</translation>
+        <translation>Sáo Ocarina C Alto</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="114"/>
         <source>C A. Oc.</source>
         <extracomment>C Alto Ocarina</extracomment>
-        <translation>C A. Oc.</translation>
+        <translation>S. Oc. C A.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="115"/>
         <source>B♭­ Alto Ocarina</source>
-        <translation>B♭­ Alto Ocarina</translation>
+        <translation>Sáo Ocarina B♭­ Alto</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="117"/>
         <source>B♭­ A. Oc.</source>
         <extracomment>B♭­ Alto Ocarina</extracomment>
-        <translation>B♭­ A. Oc.</translation>
+        <translation>S. Oc. B♭­ A.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="118"/>
         <source>C Bass Ocarina</source>
-        <translation>C Bass Ocarina</translation>
+        <translation>Sáo Ocarina C Bass</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="120"/>
         <source>C B. Oc.</source>
         <extracomment>C Bass Ocarina</extracomment>
-        <translation>C B. Oc.</translation>
+        <translation>S. Oc. C B.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="121"/>
@@ -439,7 +439,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="123"/>
         <source>Pn. Fl.</source>
         <extracomment>Pan Flute</extracomment>
-        <translation>Pn. Fl.</translation>
+        <translation>S.tr. Q.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="124"/>
@@ -452,40 +452,40 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="138"/>
         <source>Qn.</source>
         <extracomment>Quena</extracomment>
-        <translation>Qn.</translation>
+        <translation>T. Qn.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="127"/>
         <source>C Quena</source>
-        <translation>Tiêu C Quena</translation>
+        <translation>Tiêu Quena C</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="129"/>
         <source>C Qn.</source>
         <extracomment>C Quena</extracomment>
-        <translation>C Qn.</translation>
+        <translation>T. Qn. C</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="130"/>
         <source>G Quena</source>
-        <translation>Tiêu G Quena</translation>
+        <translation>Tiêu Quena G</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="132"/>
         <source>G Qn.</source>
         <extracomment>G Quena</extracomment>
-        <translation>G Qn.</translation>
+        <translation>T. Qn. G</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="133"/>
         <source>F Quena</source>
-        <translation>Tiêu F Quena</translation>
+        <translation>Tiêu Quena F</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="135"/>
         <source>F Qn.</source>
         <extracomment>F Quena</extracomment>
-        <translation>F Qn.</translation>
+        <translation>T. Qn. F</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="139"/>
@@ -496,106 +496,106 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="141"/>
         <source>Rec.</source>
         <extracomment>Recorder</extracomment>
-        <translation>Rec.</translation>
+        <translation>S. Rec.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="142"/>
         <source>Garklein Recorder</source>
-        <translation>Sáo Garklein Recorder</translation>
+        <translation>Sáo Recorder Garklein</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="144"/>
         <source>Gk. Rec.</source>
         <extracomment>Garklein Recorder</extracomment>
-        <translation>Gk. Rec.</translation>
+        <translation>S. Rec. Gk.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="145"/>
         <source>Sopranino Recorder</source>
-        <translation>Sáo Sopranino Recorder</translation>
+        <translation>Sáo Recorder Sopranino</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="147"/>
         <source>Si. Rec.</source>
         <extracomment>Sopranino Recorder</extracomment>
-        <translation>Si. Rec.</translation>
+        <translation>S. Rec. Si.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="148"/>
         <source>Soprano Recorder</source>
-        <translation>Sáo Soprano Recorder</translation>
+        <translation>Sáo Recorder Soprano</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="150"/>
         <source>S. Rec.</source>
         <extracomment>Soprano Recorder</extracomment>
-        <translation>S. Rec.</translation>
+        <translation>S. Rec. Sop.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="151"/>
         <source>Alto Recorder</source>
-        <translation>Sáo Alto Recorder</translation>
+        <translation>Sáo Recorder Alto</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="153"/>
         <source>A. Rec.</source>
         <extracomment>Alto Recorder</extracomment>
-        <translation>A. Rec.</translation>
+        <translation>S. Rec. A.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="154"/>
         <source>Tenor Recorder</source>
-        <translation>Sáo Tenor Recorder</translation>
+        <translation>Sáo Recorder Tenor</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="156"/>
         <source>T. Rec.</source>
         <extracomment>Tenor Recorder</extracomment>
-        <translation>T. Rec.</translation>
+        <translation>S. Rec. T.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="157"/>
         <source>Bass Recorder</source>
-        <translation>Sáo Bass Recorder</translation>
+        <translation>Sáo Recorder Bass</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="159"/>
         <source>B. Rec.</source>
         <extracomment>Bass Recorder</extracomment>
-        <translation>B. Rec.</translation>
+        <translation>S. Rec. B.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="160"/>
         <source>Contrabass Recorder</source>
-        <translation>Sáo Contrabass Recorder</translation>
+        <translation>Sáo Recorder Contrabass</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="162"/>
         <source>Cb. Rec.</source>
         <extracomment>Contrabass Recorder</extracomment>
-        <translation>Cb. Rec.</translation>
+        <translation>S. Rec. Cb.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="163"/>
         <source>Greatbass Recorder</source>
-        <translation>Sáo Greatbass Recorder</translation>
+        <translation>Sáo Recorder Greatbass</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="165"/>
         <source>Gb. Rec.</source>
         <extracomment>Greatbass Recorder</extracomment>
-        <translation>Gb. Rec.</translation>
+        <translation>S. Rec. Gb.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="166"/>
         <source>Slide Whistle</source>
-        <translation>Sáo Slide Whistle</translation>
+        <translation>Sáo van kéo</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="168"/>
         <source>Sl. Wh.</source>
         <extracomment>Slide Whistle</extracomment>
-        <translation>Sl. Wh.</translation>
+        <translation>S.v.k</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="169"/>
@@ -608,29 +608,29 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="177"/>
         <source>Tin. Wh.</source>
         <extracomment>Tin Whistle</extracomment>
-        <translation>Tin. Wh.</translation>
+        <translation>S. Tin. Wh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="172"/>
         <source>Bâ™­ Tin Whistle</source>
-        <translation>Bâ™­ Tin Whistle</translation>
+        <translation>Sáo Tin Whistle B♭</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="174"/>
         <source>Bâ™­ Tin. Wh.</source>
         <extracomment>Bâ™­ Tin Whistle</extracomment>
-        <translation>Bâ™­ Tin. Wh.</translation>
+        <translation>S. Tin. Wh. Bâ™­</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="178"/>
         <source>Piccolo Oboe</source>
-        <translation>Kèn ôboa piccolo</translation>
+        <translation>Kèn sáo ôboa</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="180"/>
         <source>P. Ob.</source>
         <extracomment>Piccolo Oboe</extracomment>
-        <translation>P. Ob.</translation>
+        <translation>K. S. Ob.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="181"/>
@@ -641,7 +641,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="183"/>
         <source>Ob.</source>
         <extracomment>Oboe</extracomment>
-        <translation>Ob.</translation>
+        <translation>K. Ob.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="184"/>
@@ -652,7 +652,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="186"/>
         <source>Bq. Ob.</source>
         <extracomment>Baroque Oboe</extracomment>
-        <translation>Bq. Ob.</translation>
+        <translation>K. Ob. Bq.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="187"/>
@@ -663,7 +663,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="189"/>
         <source>Ob. d'a.</source>
         <extracomment>Oboe d'amore</extracomment>
-        <translation>Ob. d'a.</translation>
+        <translation>K. Ob. d'a.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="190"/>
@@ -674,7 +674,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="192"/>
         <source>Ob. d. ca.</source>
         <extracomment>Oboe da caccia</extracomment>
-        <translation>Ob. d. ca.</translation>
+        <translation>K. Ob. d. ca.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="193"/>
@@ -685,7 +685,7 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="195"/>
         <source>E. Hn.</source>
         <extracomment>English Horn</extracomment>
-        <translation>E. Hn.</translation>
+        <translation>K. Hn. A.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="196"/>
@@ -696,18 +696,18 @@ F Dizi</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="198"/>
         <source>Bar. Ob.</source>
         <extracomment>Baritone Oboe</extracomment>
-        <translation>Bar. Ob.</translation>
+        <translation>K. Ob. Bar.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="199"/>
         <source>Piccolo Heckelphone</source>
-        <translation>Kèn Piccolo Heckelphone</translation>
+        <translation>Kèn sáo Heckelphone</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="201"/>
         <source>P. Hph.</source>
         <extracomment>Piccolo Heckelphone</extracomment>
-        <translation>P. Hph.</translation>
+        <translation>K. S. Hph.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="202"/>
@@ -721,7 +721,7 @@ F Dizi</extracomment>
         <extracomment>Heckelphone
 ----------
 Heckelphone-clarinet</extracomment>
-        <translation>Hph.</translation>
+        <translation>K. Hph.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="205"/>
@@ -737,7 +737,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="210"/>
         <source>Si. Sh.</source>
         <extracomment>Sopranino Shawm</extracomment>
-        <translation>Si. Sh.</translation>
+        <translation>K. Si. Sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="211"/>
@@ -748,7 +748,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="213"/>
         <source>S. Sh.</source>
         <extracomment>Soprano Shawm</extracomment>
-        <translation>S. Sh.</translation>
+        <translation>K. Sop. Sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="214"/>
@@ -759,7 +759,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="216"/>
         <source>A. Sh.</source>
         <extracomment>Alto Shawm</extracomment>
-        <translation>A. Sh.</translation>
+        <translation>K. A. Sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="217"/>
@@ -770,7 +770,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="219"/>
         <source>T. Sh.</source>
         <extracomment>Tenor Shawm</extracomment>
-        <translation>T. Sh.</translation>
+        <translation>K. T. Sh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="220"/>
@@ -781,7 +781,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="222"/>
         <source>B. Sh.</source>
         <extracomment>Bass Shawm</extracomment>
-        <translation>B. Sh.</translation>
+        <translation>K. Sh. B.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="223"/>
@@ -792,7 +792,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="225"/>
         <source>G.B. Sh.</source>
         <extracomment>Great Bass Shawm</extracomment>
-        <translation>G.B. Sh.</translation>
+        <translation>K Sh. B.L.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="226"/>
@@ -803,7 +803,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="228"/>
         <source>Cr.</source>
         <extracomment>Cromorne</extracomment>
-        <translation>Cr.</translation>
+        <translation>K. Cr.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="229"/>
@@ -814,7 +814,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="231"/>
         <source>Crh.</source>
         <extracomment>Crumhorn</extracomment>
-        <translation>Crh.</translation>
+        <translation>K. Crh.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="232"/>
@@ -825,7 +825,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="234"/>
         <source>S. Crh.</source>
         <extracomment>Soprano Crumhorn</extracomment>
-        <translation>S. Crh.</translation>
+        <translation>K. Crh. Sop.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="235"/>
@@ -836,7 +836,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="237"/>
         <source>A. Crh.</source>
         <extracomment>Alto Crumhorn</extracomment>
-        <translation>A. Crh.</translation>
+        <translation>K. Crh. A.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="238"/>
@@ -847,7 +847,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="240"/>
         <source>T. Crh.</source>
         <extracomment>Tenor Crumhorn</extracomment>
-        <translation>T. Crh.</translation>
+        <translation>K. Crh. T.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="241"/>
@@ -858,7 +858,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="243"/>
         <source>B. Crh.</source>
         <extracomment>Bass Crumhorn</extracomment>
-        <translation>B. Crh.</translation>
+        <translation>K. Crh. B.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="244"/>
@@ -869,7 +869,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="246"/>
         <source>Gb. Crh.</source>
         <extracomment>Greatbass Crumhorn</extracomment>
-        <translation>Gb. Crh.</translation>
+        <translation>K. Crh. B.L.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="247"/>
@@ -880,7 +880,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="249"/>
         <source>Cm.</source>
         <extracomment>Cornamuse</extracomment>
-        <translation>Cm.</translation>
+        <translation>K. Cm.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="250"/>
@@ -891,7 +891,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="252"/>
         <source>S. Cm.</source>
         <extracomment>Soprano Cornamuse</extracomment>
-        <translation>S. Cm.</translation>
+        <translation>K. Cm. Sop.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="253"/>
@@ -902,7 +902,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="255"/>
         <source>A. Cm.</source>
         <extracomment>Alto Cornamuse</extracomment>
-        <translation>A. Cm.</translation>
+        <translation>K. Cm. A.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="256"/>
@@ -913,7 +913,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="258"/>
         <source>T. Cm.</source>
         <extracomment>Tenor Cornamuse</extracomment>
-        <translation>T. Cm.</translation>
+        <translation>K. Cm. T.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="259"/>
@@ -924,7 +924,7 @@ Heckelphone-clarinet</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="261"/>
         <source>B. Cm.</source>
         <extracomment>Bass Cornamuse</extracomment>
-        <translation>B. Cm.</translation>
+        <translation>K. Cm. B.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="262"/>
@@ -935,12 +935,12 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
 Dulcian</extracomment>
-        <translation>Du.</translation>
+        <translation>K. Du.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="265"/>
@@ -951,7 +951,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="267"/>
         <source>F Du.</source>
         <extracomment>F Duduk</extracomment>
-        <translation>F Du.</translation>
+        <translation>K. Du. F</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="268"/>
@@ -962,7 +962,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="270"/>
         <source>E Du.</source>
         <extracomment>E Duduk</extracomment>
-        <translation>E Du.</translation>
+        <translation>K. Du. E</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="274"/>
@@ -973,7 +973,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="276"/>
         <source>C Du.</source>
         <extracomment>C Duduk</extracomment>
-        <translation>C Du.</translation>
+        <translation>K. Du. C</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="277"/>
@@ -984,7 +984,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="279"/>
         <source>B Du.</source>
         <extracomment>B Duduk</extracomment>
-        <translation>B Du.</translation>
+        <translation>K. Du. B</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="280"/>
@@ -995,7 +995,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="282"/>
         <source>Bâ™­ Du.</source>
         <extracomment>Bâ™­ Duduk</extracomment>
-        <translation>Bâ™­ Du.</translation>
+        <translation>K. Du. Bâ™­</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="283"/>
@@ -1006,7 +1006,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="285"/>
         <source>A Du.</source>
         <extracomment>A Duduk</extracomment>
-        <translation>A Du.</translation>
+        <translation>K. Du. A</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="286"/>
@@ -1017,7 +1017,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="288"/>
         <source>G Du.</source>
         <extracomment>G Duduk</extracomment>
-        <translation>G Du.</translation>
+        <translation>K. Du. G</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="289"/>
@@ -1028,7 +1028,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="291"/>
         <source>A B. Du.</source>
         <extracomment>A Bass Duduk</extracomment>
-        <translation>A B. Du.</translation>
+        <translation>K. Du. B. A</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="292"/>
@@ -1039,7 +1039,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="294"/>
         <source>S. Kh.</source>
         <extracomment>Soprano Kelhorn</extracomment>
-        <translation>S. Kh.</translation>
+        <translation>K. Kh. Sop.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="295"/>
@@ -1050,7 +1050,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="297"/>
         <source>A. Kh.</source>
         <extracomment>Alto Kelhorn</extracomment>
-        <translation>A. Kh.</translation>
+        <translation>K. Kh. A.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="298"/>
@@ -1061,7 +1061,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="300"/>
         <source>T. Kh.</source>
         <extracomment>Tenor Kelhorn</extracomment>
-        <translation>T. Kh.</translation>
+        <translation>K. Kh. T.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="301"/>
@@ -1072,7 +1072,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="303"/>
         <source>B. Kh.</source>
         <extracomment>Bass Kelhorn</extracomment>
-        <translation>B. Kh.</translation>
+        <translation>K. Kh. B.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="304"/>
@@ -1083,7 +1083,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="306"/>
         <source>Gb. Kh.</source>
         <extracomment>Greatbass Kelhorn</extracomment>
-        <translation>Gb. Kh.</translation>
+        <translation>K. Kh. B.L.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="307"/>
@@ -1094,7 +1094,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="309"/>
         <source>Rpf.</source>
         <extracomment>Rauschpfeife</extracomment>
-        <translation>Rpf.</translation>
+        <translation>K. Rpf.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="310"/>
@@ -1105,7 +1105,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="312"/>
         <source>Si. Rpf.</source>
         <extracomment>Sopranino Rauschpfeife</extracomment>
-        <translation>Si. Rpf.</translation>
+        <translation>K. Rpf. Si.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="313"/>
@@ -1116,7 +1116,7 @@ Dulcian</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="315"/>
         <source>S. Rpf.</source>
         <extracomment>Soprano Rauschpfeife</extracomment>
-        <translation>S. Rpf.</translation>
+        <translation>K. Rpf. Sop.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="316"/>
@@ -1125,12 +1125,12 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
 Sheng</extracomment>
-        <translation>She.</translation>
+        <translation>K. She.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="319"/>
@@ -1141,18 +1141,18 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="321"/>
         <source>Cl.</source>
         <extracomment>Clarinet</extracomment>
-        <translation>Cl.</translation>
+        <translation>K. Cl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="322"/>
         <source>Piccolo Clarinet</source>
-        <translation>Kèn Clarinet Sáo</translation>
+        <translation>Kèn sáo Clarinet</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="324"/>
         <source>P. Cl.</source>
         <extracomment>Piccolo Clarinet</extracomment>
-        <translation>P. Cl.</translation>
+        <translation>K. S. Cl.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="325"/>
@@ -1163,509 +1163,519 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="327"/>
         <source>S. Cl.</source>
         <extracomment>Soprano Clarinet</extracomment>
-        <translation>S. Cl.</translation>
+        <translation>K. Cl. Sop.</translation>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation>Kèn Clarinet C</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation>K. Cl. C</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>Kèn Clarinet D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
-        <translation>D Cl.</translation>
+        <translation>K. Cl. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>Kèn Clarinet E♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
-        <translation>Eâ™­ Cl.</translation>
+        <translation>K. Cl. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>Kèn Clarinet B♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
-        <translation>Bâ™­ Cl.</translation>
+        <translation>K. Cl. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>Kèn Clarinet A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
-        <translation>A Cl.</translation>
+        <translation>K. Cl. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>Kèn Clarinet Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
-        <translation>A. Cl.</translation>
+        <translation>K. Cl. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>Kèn Clarinet Bassset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
-        <translation>Ba. Cl.</translation>
+        <translation>K. Cl. Ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>Kèn Horn Basset</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
-        <translation>Ba. Hn.</translation>
+        <translation>K. Hn. Ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>Kèn Clarinet Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
-        <translation>B. Cl.</translation>
+        <translation>K. Cl. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>Kèn Clarinet Contra-alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
-        <translation>C-a. Cl.</translation>
+        <translation>K. Cl. C-a.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>Kèn Clarinet Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
-        <translation>Cb. Cl.</translation>
+        <translation>K. Cl. Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>Kèn Chalumeau</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
-        <translation>Cha.</translation>
+        <translation>K. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>Kèn Chalumeau Sopranino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
-        <translation>Si. Cha.</translation>
+        <translation>K. Cha. Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>Kèn Chalumeau Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
-        <translation>S. Cha.</translation>
+        <translation>K. Cha. Sop.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>Kèn Chalumeau Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
-        <translation>A. Cha.</translation>
+        <translation>K. Cha. A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>Kèn Chalumeau Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
-        <translation>T. Cha.</translation>
+        <translation>K. Cha. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>Kèn Chalumeau Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
-        <translation>B. Cha.</translation>
+        <translation>K. Cha. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>Kèn Tarogato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
-        <translation>Tar.</translation>
+        <translation>K. Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation>Kèn Octavin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
-        <translation>Oct.</translation>
+        <translation>K. Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>Kèn Bassoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
-        <translation>Bsn.</translation>
+        <translation>K. Bsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>Kèn Contrabassoon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
-        <translation>Cbsn.</translation>
+        <translation>K. Cbsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>Kèn Reed Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
-        <translation>Rd. Cbs.</translation>
+        <translation>K. Rd. Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>Kèn Dulcian</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>Kèn Rackett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
-        <translation>Ra.</translation>
+        <translation>K. Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>Kèn Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
-        <translation>Sar.</translation>
+        <translation>K. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>Kèn Sopranino Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
-        <translation>Si. Sar.</translation>
+        <translation>K. Si. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>Kèn Soprano Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
-        <translation>S. Sar.</translation>
+        <translation>K. Sop. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>Kèn Alto Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
-        <translation>A. Sar.</translation>
+        <translation>K. A. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>Kèn Tenor Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
-        <translation>T. Sar.</translation>
+        <translation>K. T. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>Kèn Baritone Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
-        <translation>Bar. Sar.</translation>
+        <translation>K. Bar. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>Kèn Bass Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
-        <translation>B. Sar.</translation>
+        <translation>K. B. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>Kèn Contrabass Sarrusophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
-        <translation>Cb. Sar.</translation>
+        <translation>K. Cb. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>Kèn Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
-        <translation>Sax.</translation>
+        <translation>K. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>Kèn Sopranissimo Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
-        <translation>Sio. Sax.</translation>
+        <translation>K. Sio. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>Kèn Sopranino Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
-        <translation>Si. Sax.</translation>
+        <translation>K. Si. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>Kèn Soprano Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
-        <translation>S. Sax.</translation>
+        <translation>K. S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>Kèn Aulochrome</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
-        <translation>Aul.</translation>
+        <translation>K. Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>Kèn Mezzo-Soprano Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
-        <translation>M.S. Sax.</translation>
+        <translation>K. M.S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>Kèn Alto Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
-        <translation>A. Sax.</translation>
+        <translation>K. A. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>Kèn Melody Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
-        <translation>Mel. Sax.</translation>
+        <translation>K. Mel. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>Kèn Tenor Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
-        <translation>T. Sax.</translation>
+        <translation>K. T. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>Kèn Baritone Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
-        <translation>Bar. Sax.</translation>
+        <translation>K. Bar. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>Kèn Bass Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
-        <translation>B. Sax.</translation>
+        <translation>K. B. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>Kèn Contrabass Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
-        <translation>Cb. Sax.</translation>
+        <translation>K. Cb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>Kèn Subcontrabass Saxophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
-        <translation>Scb. Sax.</translation>
+        <translation>K. Scb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>Kèn Túi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
-        <translation>Bagp.</translation>
+        <translation>K. T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>Bộ có lưỡi gà</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>Kèn Harmonica </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1710,2495 +1721,2503 @@ Sheng</extracomment>
 20 Hole Chordet Harmonica
 ----------
 Harmonium</extracomment>
-        <translation>Harm.</translation>
+        <translation>K. Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
-        <translation>Harmonica 12 lá»— C Chromati</translation>
+        <translation>Harmonica 12 lá»— C Chromatic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>Harmonica 14 lá»— C Chromatic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>Harmonica 12 lá»— G Chromatic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>Harmonica 16 lá»— C Chromatic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>Harmonica 12 lá»— Tenor C Chromatic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>Harmonica 10 lá»— High G Diatonic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>Harmonica 10 lá»— F Diatonic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>Harmonica 10 lá»— D Diatoni</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>Harmonica 10 lá»— C Diatonic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>Harmonica 10 lá»— A Diatonic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>Harmonica 10 lá»— G Diatonic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>Harmonica 10 lá»— Low D Diatonic</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>Harmonica 20 lá»— Chordet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>Harmonica Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
 Bass Hohner Harmonica
 ----------
 Bass Huang Harmonica</extracomment>
-        <translation>Bs. Harm.</translation>
+        <translation>K.  Harm. Bs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>Harmonica Bass Hohner</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>Harmonica Bass Huang</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>Đàn xếp Accordion</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
-        <translation>Acc.</translation>
+        <translation>Đ.x. Acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>Đàn xếp Bandoneon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
-        <translation>Ban.</translation>
+        <translation>Đ.x. Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>Đàn xếp Concertina</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
-        <translation>Conc.</translation>
+        <translation>Đ.x. Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>Đàn hơi Melodica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
-        <translation>Mel.</translation>
+        <translation>Đ.h. Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>Kèn Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>Kèn Soprano Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
-        <translation>S She.</translation>
+        <translation>K. Sop. She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>Kèn Alto Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
-        <translation>A She.</translation>
+        <translation>K. A. She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>Kèn Tenor Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
-        <translation>T She.</translation>
+        <translation>K. T. She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>Kèn Bass Sheng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
-        <translation>B She.</translation>
+        <translation>K. B. She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
-        <translation>Bộ đồng</translation>
+        <translation>Kèn đồng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
-        <translation>Br.</translation>
+        <translation>K. Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>Kèn Horn F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
-        <translation>F Hn.</translation>
+        <translation>K.  Hn. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>Kèn Horn C cao</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
-        <translation>H. C Hn.</translation>
+        <translation>K. Hn. C c.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>Kèn Horn B♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
-        <translation>Bâ™­ Hn.</translation>
+        <translation>K. Hn. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>Kèn Horn A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
-        <translation>A Hn.</translation>
+        <translation>K. Hn. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>Kèn Horn A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
-        <translation>Aâ™­ Hn.</translation>
+        <translation>K. Hn. Aâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>Kèn Horn G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
-        <translation>G Hn.</translation>
+        <translation>K. Hn. G</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>Kèn Horn E</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
-        <translation>E Hn.</translation>
+        <translation>K. Hn. E</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>Kèn Horn E</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
-        <translation>Eâ™­ Hn.</translation>
+        <translation>K. Hn. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>Kèn Horn D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
-        <translation>Hn.</translation>
+        <translation>K. Hn. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>Kèn Horn C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
-        <translation>C Hn.</translation>
+        <translation>K. Hn. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>Kèn Vienna Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
-        <translation>V. Hn.</translation>
+        <translation>K. V. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>Kèn Horn B♭ basso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
-        <translation>Bâ™­ ba Hn.</translation>
+        <translation> Hn. Hn. Bâ™­ ba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>Kèn E♭ Cornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
-        <translation>Eâ™­ Cnt.</translation>
+        <translation>K. Eâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation>tắt tiếng</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>Kèn B♭ Cornet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
-        <translation>Bâ™­ Cnt.</translation>
+        <translation>K. Bâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>Kèn Saxhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>Kèn F Alto Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
-        <translation>F A. Hn.</translation>
+        <translation>K. F A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>Kèn E♭ Alto Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
-        <translation>Eâ™­ A. Hn.</translation>
+        <translation>K. Eâ™­ A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>Kèn Baritone Horn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
-        <translation>Bar. Hn.</translation>
+        <translation>K. Bar. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>Kèn Baritone Horn (khóa Treble)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>Kèn Posthorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
-        <translation>Psthn.</translation>
+        <translation>K. Psthn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>Kèn Alphorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
-        <translation>AlpHn.</translation>
+        <translation>K. AlpHn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>Kèn Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
-        <translation>Tpt.</translation>
+        <translation>K. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
-        <translation>Kèn Piccolo Trumpet</translation>
+        <translation>Kèn sáo Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
-        <translation>P. Tpt.</translation>
+        <translation>K. S. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
-        <translation>Kèn Piccolo Trumpet B♭</translation>
+        <translation>Kèn sáo Trumpet B♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
-        <translation>P. Tpt. Bâ™­</translation>
+        <translation>K. S. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
-        <translation>Kèn Piccolo Trumpet tông A</translation>
+        <translation>Kèn sáo Trumpet A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
-        <translation>P. Tpt. A</translation>
+        <translation>K. S. Tpt. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
-        <translation>Kên tông E♭ Trumpet</translation>
+        <translation>Kèn Trumpet E♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
-        <translation>Eâ™­ Tpt.</translation>
+        <translation>K. Tpt. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
-        <translation>Kèn D Trumpet</translation>
+        <translation>Kèn Trumpet D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
-        <translation>D Tpt.</translation>
+        <translation>K. Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
-        <translation>Kèn C Trumpet</translation>
+        <translation>Kèn Trumpet C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
-        <translation>C Tpt.</translation>
+        <translation>K. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
-        <translation>Kèn B♭ Trumpet</translation>
+        <translation>Kèn Trumpet B♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
-        <translation>Bâ™­ Tpt.</translation>
+        <translation>K. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>Kèn Pocket Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
-        <translation>Pkt. Tpt.</translation>
+        <translation>K. Tpt. Pkt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>Kèn Slide Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
-        <translation>Sl.Tpt.</translation>
+        <translation>K. Tpt. Sl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>Kèn Tenor Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
-        <translation>Tnr. Tpt.</translation>
+        <translation>K. Tpt. Tnr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>Kèn Bass Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
-        <translation>B. Tpt.</translation>
+        <translation>K. Tpt. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
-        <translation>Kèn E♭ Bass Trumpet</translation>
+        <translation>Kèn Bass Trumpet E♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
-        <translation>Eâ™­ B. Tpt.</translation>
+        <translation>K. B. Tpt. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>Kèn Bass Trumpet tông C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
-        <translation>B. Tpt. C</translation>
+        <translation>K. B. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>Kèn B♭ Bass Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
-        <translation>Bâ™­ B. Tpt.</translation>
+        <translation>K. Bâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>Kèn Baroque Trumpet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
-        <translation>Bq. Tpt.</translation>
+        <translation>K. Bq. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>Kèn Baroque Trumpet tông F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
-        <translation>Bq. Tpt. F</translation>
+        <translation>K. Bq. Tpt. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>Kèn Baroque Trumpet tông E♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
-        <translation>Bq. Tpt. Eâ™­</translation>
+        <translation>K. Bq. Tpt. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>Kèn Baroque Trumpet tông D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
-        <translation>Bq. Tpt. D</translation>
+        <translation>K. Bq. Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>Kèn Baroque Trumpet tông C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
-        <translation>Bq. Tpt. C</translation>
+        <translation>K. Bq. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>Kèn Baroque Trumpet tông B♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
-        <translation>Bq. Tpt. Bâ™­</translation>
+        <translation>K. Bq. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>Kèn Rag Dung</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
-        <translation>Rg. Dng.</translation>
+        <translation>K. Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>Kèn Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
-        <translation>Bu.</translation>
+        <translation>K. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>Kèn Soprano Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
-        <translation>Sop. Bu.</translation>
+        <translation>K. Sop. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>Kèn Alto Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
-        <translation>Alt. Bu.</translation>
+        <translation>K. Alt. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>Kèn Baritone Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
-        <translation>Bar. Bu.</translation>
+        <translation>K. Bar. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>Kèn Flugelhorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
-        <translation>Flghn.</translation>
+        <translation>K. Flghn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>Kèn Fiscorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
-        <translation>Fsc.</translation>
+        <translation>K. Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>Kèn Kuhlohorn</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
-        <translation>Klhn.</translation>
+        <translation>K. Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>Kèn Euphonium Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>Kèn Mellophone Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
-        <translation>Mel. Bu.</translation>
+        <translation>K. Mel. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>Kèn Contrabass Bugle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
-        <translation>Con. Bu.</translation>
+        <translation>K. Con. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>Kèn Mellophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
-        <translation>Mph.</translation>
+        <translation>K. Mph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>Kèn Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
-        <translation>Oph.</translation>
+        <translation>K. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>Kèn F Alto Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
-        <translation>F A. Oph.</translation>
+        <translation>K. F A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>Kèn E♭ Alto Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
-        <translation>Eâ™­ A. Oph.</translation>
+        <translation>K. Eâ™­ A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>Kèn C Bass Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
-        <translation>C B. Oph.</translation>
+        <translation>K. C B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>Kèn B♭ Bass Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
-        <translation>Bâ™­ B. Oph.</translation>
+        <translation>K. Bâ™­ B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>Kèn E♭ Contrabass Ophicleide</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
-        <translation>Eâ™­ Cb. Oph.</translation>
+        <translation>K. Eâ™­ Cb. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>Kèn Cornettino</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
 Cornett
 ----------
 Congas</extracomment>
-        <translation>Co.</translation>
+        <translation>K. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>Kèn Cornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>Kèn Soprano Cornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
-        <translation>S. Co.</translation>
+        <translation>K. S. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>Kèn Alto Cornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
-        <translation>A. Co.</translation>
+        <translation>K. A. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>Kèn Tenor Cornett</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
-        <translation>T. Co.</translation>
+        <translation>K. T. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>Kèn Trompet cổ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
-        <translation>Spt.</translation>
+        <translation>K. Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>Kèn Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
-        <translation>Trb.</translation>
+        <translation>K. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>Kèn Trombone (khóa Treble)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>Kèn Soprano Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
-        <translation>S. Trb.</translation>
+        <translation>K. S. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>Kèn Alto Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
-        <translation>A. Trb.</translation>
+        <translation>K. A. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>Kèn Tenor Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
-        <translation>T. Trb.</translation>
+        <translation>K. T. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>Kèn Bass Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
-        <translation>B. Trb.</translation>
+        <translation>K. B. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>Kèn Contrabass Trombone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
-        <translation>Cb. Trb.</translation>
+        <translation>K. Cb. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>Kèn Cimbasso</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
-        <translation>Cim.</translation>
+        <translation>K. Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>Kèn Euphonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>Kèn Euphonium (khóa Treble)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>Kèn Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
-        <translation>Tu.</translation>
+        <translation>K. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>Kèn F Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>Early music</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>Sáo Fife B♭</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
-        <translation>Euph. Bu.</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>Kèn Trombone (khóa Treble)</translation>
+        <translation>K. Euph. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
-        <translation>Euph.</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>Kèn Euphonium (khóa Treble)</translation>
+        <translation>K. Euph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation>Tba.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
-        <translation>F Tu.</translation>
+        <translation>K. F Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>Kèn E♭ Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
-        <translation>Eâ™­ Tu.</translation>
+        <translation>K. Eâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>Kèn E♭ Tuba (khóa Treble)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>Kèn C Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
-        <translation>C Tu.</translation>
+        <translation>K. C Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>Kèn B♭ Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
-        <translation>Bâ™­ Tu.</translation>
+        <translation>K. Bâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>Kèn B♭ Tuba (khóa Treble)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>Kèn Bass Tuba F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
-        <translation>Ba. Tu. F</translation>
+        <translation>K. Ba. Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>Kèn Bass Tuba E♭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
-        <translation>Ba. Tu. Eâ™­</translation>
+        <translation>K. Ba. Tu. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>Kèn Sub-Contrabass Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
-        <translation>SCB. Tu.</translation>
+        <translation>K. SCB. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>Kèn Helicon</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>Kèn Sousaphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
-        <translation>Sphn.</translation>
+        <translation>K. Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>Kèn Wagner Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
-        <translation>Wag. Tu.</translation>
+        <translation>K. Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>Kèn B♭ Wagner Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
-        <translation>Bâ™­ Wag. Tu.</translation>
+        <translation>K. Bâ™­ Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>Kèn F Wagner Tuba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
-        <translation>F Wag. Tu.</translation>
+        <translation>K. F Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>Conch</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
-        <translation>Cnch.</translation>
+        <translation>K. Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>Kèn Didgeridoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
-        <translation>Doo.</translation>
+        <translation>K. Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>Kèn Horagai</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
-        <translation>Hor.</translation>
+        <translation>K. Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>Kèn Shofar</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
-        <translation>Sho.</translation>
+        <translation>K. Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>Kèn Vuvuzela</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
-        <translation>Vuv.</translation>
+        <translation>K. Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>Bộ gõ có cao độ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>Timpani</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>Roto-toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>Orff Soprano Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. S. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>Orff Alto Glockenspiel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O. A. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>Crotales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>Tubaphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>Almglocken</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>Vibraphone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>Metallophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>Orff Soprano Metallophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O. S. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>Orff Alto Metallophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. A. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>Orff Bass Metallophone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O. B. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>Tubular Bells</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Tu. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>Trống thép</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>Trống thép Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>S. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>Trống thép Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>Trống thép ghi-ta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>Trống thép Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>Trống thép Cello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>Trống thép Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>Chuông cầm tay</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Ha. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>Chiêng gồng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Td. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>Flexatone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>Musical Saw</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Mu. Sw.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>Nhạc cụ thủy tinh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Mu. Gla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>Harmonica thủy tinh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gla. Har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>Mộc cầm</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>Mộc cầm Orff Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O. S. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>Mộc cầm Orff Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O. A. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>Mộc cầm Orff Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O. B. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>Xylomarimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>Mộc cầm Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>Mộc cầm Bass Marimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>B. Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>Đàn Dulcimer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>Kèn Tuned Klaxon Horns</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Tn. Klx. Hns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>Treble Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Tr. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>Alto Kalimba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>Bộ gõ không cao độ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>Trống</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Trg.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>Trống Két-le</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>K.L.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>Trống bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>Tr.B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>Trống Két-le Piccolo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P. Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>Military Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Mil. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>Tom Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>Tom-toms Trung Quốc</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Ch. To.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>Bông-gô</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>Trống Congas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>Bộ trống Timbales</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>Trống Frame</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Fr. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>Tablas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>Cuica</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>Xâm-ban đeo ngón</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Fi. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>Xâm-ban kép</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>Tam-tam</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>Chuông</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>Chuông xe trượt tuyết</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Sle. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>Chuông đĩa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Be. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>Chiêng hình cái bát</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Bw. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation>Tubo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>Castanet kim loại</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Met. Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>Trống Automobile Brake</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut. Brk. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>Tiếng ống sắt</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Ir. Pi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>Tiếng xích</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Chn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>Tiếng cái đe</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Anv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>Wood Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Wd. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>Temple Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>Triangle</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>Xâm-ban</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>S.B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>Ride Cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>R. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>Xâm-ban Trung Quốc</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Ch. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>Crash Cymbal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cr. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>Xâm-ban Splash</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Sp. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>Chuông (bò)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Cwb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>Claves</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>Castanets</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>Guiro</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>Maracas</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>Cabasa</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>Quijada</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>Vibraslap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>Slit Drum</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>Tiếng roi da</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Wh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>Ratchet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Rat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>Thundersheet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>Sandpaper Blocks</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sa. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>Chuông gió gỗ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Wd. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>Chuông gió bằng tre</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>Chuông gió kim loại</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Met. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>Chuông gió thủy tinh</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Gl. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>Chuông gió vỏ sò</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Sh. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>Stones</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Sto.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>Finger Snap</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Fi. Sna.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>Tiếng vỗ tay</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Hd. Clp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>Vá»— tay</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>Tiếng dập chân</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>Tam-bô-rin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>Bộ trống hành quân</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>SD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>Trống Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>Trống bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>Các Sâm-ban</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Cy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>Các âm giọng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>Voice</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>Nam Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>B. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>Mezzo-soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>Contralto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>Countertenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>Tenor</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>Baritone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>Bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>Kazoo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>Bộ có bàn phím</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>Đại dương cầm</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>Piano đứng</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>Honky Tonk Piano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>Piano đồ chơi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Toy Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>Clavichord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Cch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>Harpsichord</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Hch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>Virginal</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>Celesta</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>Piano điện tử</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>P.Đ.T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>Clavinet</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>Oọc-gan</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Og.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>Percussive Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perc. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>Hammond Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>Rotary Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Rot. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>Đàn ống</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>Harmonium</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>Reed Organ</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Rd. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>Bộ nhạc cụ điện tử</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>Effect Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synth.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation>tiếng mưa</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation>soundtrack</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation>tiếng pha lê</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation>tiếng không khí</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation>độ sáng</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation>tiếng yêu tinh</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation>tiếng vang</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation>scifi</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>Atmosphere Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>Brightness Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>Crystal Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>Echoes Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>Goblins Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>Rain Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>Sci-fi Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>Soundtrack Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>Pad Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation>new age</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation>warm</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation>polysynth</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation>đồng ca</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation>bowed</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation>tiếng kim loại</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation>halo</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation>tiếng vuốt</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>New Age Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>Warm Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>Poly Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>Choir Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>Bowed Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>Metallic Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>Halo Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>Sweep Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>Saw Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>Sine Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>Square Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>Ondes Martenot</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>Mallet Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Mal. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>Bass Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
-        <source>Brass Synthesizer</source>
-        <translation>Brass Synthesizer</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation>synth-bass-1</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
-        <source>String Synthesizer</source>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation>synth-bass-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
+        <source>Brass Synthesizer</source>
+        <translation>Brass Synthesizer</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation>synth-brass-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation>synth-brass-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <source>String Synthesizer</source>
         <translation>String Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation>synth-string-1</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation>synth-string-2</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>Theremin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>Percussion Synthesizer</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Perc. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>Bộ đàn khảy dây</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>Banjo [Tablature]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>Tenor Banjo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T. Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>Piccolo Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pic. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>Prima Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>Secunda Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sec. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>Alto Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>Bass Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>B. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>Contrabass Balalaika</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>CB. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>Bouzouki</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>Bouzouki (3-course)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>Bouzouki (4-course)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>Ghi-ta Soprano</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>S. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>Ghi-ta Alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>Ghi-ta cổ điển</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Ghi-ta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>Ghi-ta cổ điển [dạng Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>Ghi-ta má»™c</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>Ghi-ta mộc [dạng Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>Ghi-ta Alto 11-dây</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-str. A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>Ghi-ta 12-dây</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-str. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>Ghi-ta Pedal Steel</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>Ghi-ta điện</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>Ghi-ta điện [dạng Tab.]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>Đàn Hạc</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>Đàn Koto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>Đàn dây Lute</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>Lute [Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>Lute 5-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>Lute 6-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>Lute 7-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>Lute 8-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>Lute 9-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>Lute 10-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>Lute 13-course</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A. Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>Măng-đô-lin [dạng Tab.]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation>arco</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation>tiếng vê</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>Ghi-ta bass điện 5-dây</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>Ghi-ta bass điện 5-dây [Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>Erhu</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
-        <translation>Eh.</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
+        <translation>pizzicato</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation>Vĩ cầm</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation>Vlns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation>Vĩ cầm alto</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation>Vlas.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation>Vi-ô-lông-xen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation>Vlcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation>Contrabasses</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation>Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation>Db.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>Viola da gamba [Tab]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>Đàn Archlute</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>Nhạc cụ cổ</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>Sáo Fife B♭</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>Theorbo</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>Măng-đô-lin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>Măng-đô-lin [dạng Tab.]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>Alto Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>Tenor Mandola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>Mandocello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>Octave Mandolin</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>Shamisen</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>Đàn </translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>U-ku-le-le</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>U-ku-le-le [dạng Tab.]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>Tenor Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>Baritone Ukulele</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>Ghi-ta bass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>Gh.B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>Ghi-ta bass [dạng Tab.]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>Ghi-ta bass má»™c</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>Ghi-ta bass điện</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>Gh.B.Đ.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>Ghi-ta bass điện [Tab.]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>Ghi-ta bass không phím</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>B.Kh.P.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>Bộ dây</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>Erhu</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation>Eh.</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>Vĩ cầm</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>Viola</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>Violoncello</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation>Contrabass</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>Bass đôi</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>Treble Viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Tr. vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>Alto Viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>Tenor Viol</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>Viola da gamba</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>Viola da gamba (Tab)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>Violone</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>D Violone</translation>
     </message>
diff --git a/share/locale/instruments_zh_CN.ts b/share/locale/instruments_zh_CN.ts
index 78d47f5..abe4fbe 100644
--- a/share/locale/instruments_zh_CN.ts
+++ b/share/locale/instruments_zh_CN.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>D调单簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation>D Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>降E调单簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation>Eâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>降B调单簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation>Bâ™­ Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A调单簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation>A Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>中音单簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation>A. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>巴塞单簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation>Ba. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>巴塞管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation>Ba. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>低音单簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation>B. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>倍中音单簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation>C-a. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>倍低音单簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation>Cb. Cl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>夏吕莫管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation>Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>超高音夏吕莫管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation>Si. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>高音夏吕莫管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation>S. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>中音夏吕莫管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation>A. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>次中音夏吕莫管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation>T. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>低音夏吕莫管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation>B. Cha.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation>匈牙利唢呐</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation>Tar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation>Oct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>大管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation>Bsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>低音大管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation>Cbsn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation>倍低音簧片</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation>Rd. Cbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>德尔西安管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>凯特管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation>Ra.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>萨鲁管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation>Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>超高音萨鲁管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation>Si. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>高音萨鲁管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation>S. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>中音萨鲁管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation>A. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>次中音萨鲁管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation>T. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>上低音萨鲁管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation>Bar. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation>低音萨鲁管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation>B. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>倍低音萨鲁管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation>Cb. Sar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>萨克斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation>Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation>上超高音萨克斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation>Sio. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>超高音萨克斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation>Si. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>高音萨克斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation>S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>双管高音萨克斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation>Aul.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>次高音萨克斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation>M.S. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>中音萨克斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation>A. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation>C调中音萨克斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation>Mel. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>次中音萨克斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation>T. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>上低音萨克斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation>Bar. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>低音萨克斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation>B. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>倍低音萨克斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation>Cb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation>超倍低音萨克斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation>Scb. Sax.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>风笛</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation>Bagp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>自由簧片</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation>Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12孔C调半音阶口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14孔C调半音阶口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12孔G调半音阶口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16孔C调半音阶口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>12孔中音C调半音阶口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>10孔高音G调全音阶口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>10孔F调全音阶口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>10孔D调全音阶口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>10孔C调全音阶口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>10孔A调全音阶口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>10孔G调全音阶口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>10孔低音D调全音阶口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>20孔和弦口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>低音口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation>Bs. Harm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>低音和莱口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>低音Huang牌口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>手风琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation>Acc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>班都尼昂琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation>Ban.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>六角风琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation>Conc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>口风琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation>Mel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>高音笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation>S She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>中音笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation>A She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>次中音笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation>T She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>低音笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation>B She.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>铜管乐器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation>Br.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>F调圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation>F Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>高音C调圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation>H. C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>降B调圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation>Bâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>A调圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation>A Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>降A调圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation>Aâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>G调圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation>G Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>E调圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation>E Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>降E调圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation>Eâ™­ Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>D调圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation>D Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>C调圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation>C Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>维也纳圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation>V. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>降B调低音圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation>Bâ™­ ba Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>降E调短号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation>Eâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>降B调短号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation>Bâ™­ Cnt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>萨克斯号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>F调中音圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation>F A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>降E调中音圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation>Eâ™­ A. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>上低音圆号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation>Bar. Hn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>驿车号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation>Psthn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>阿尔卑斯长号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation>AlpHn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation>Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>高音小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation>P. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>降B调高音小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation>P. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>A调高音小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation>P. Tpt. A</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>降E调小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation>Eâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>D调小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation>D Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>C调小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation>C Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>降B调小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation>Bâ™­ Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>袖珍小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation>Pkt. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>滑管小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation>Sl.Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>次中音小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation>Tnr. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>低音小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation>B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>降E调低音小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation>Eâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>C调低音小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation>B. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>降B调低音小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation>Bâ™­ B. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>巴洛克小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation>Bq. Tpt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>F调巴洛克小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation>Bq. Tpt. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>降E调巴洛克小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation>Bq. Tpt. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>D调巴洛克小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation>Bq. Tpt. D</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>C调巴洛克小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation>Bq. Tpt. C</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>降B调巴洛克小号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation>Bq. Tpt. Bâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>景泰蓝号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation>Rg. Dng.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>军号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation>Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>高音军号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation>Sop. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>中音军号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation>Alt. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>上低音军号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation>Bar. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>富鲁格号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation>Flghn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>西班牙管铜号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation>Fsc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation>库号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation>Klhn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation>次中音军号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation>美乐军号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation>Mel. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>倍低音军号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation>Con. Bu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>美乐号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation>Mph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>奥菲克莱德号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation>Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>F调中音奥菲克莱德号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation>F A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>降E调中音奥菲克莱德号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation>Eâ™­ A. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>C调低音奥菲克莱德号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation>C B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>降B调奥菲克莱德号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation>Bâ™­ B. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>降E调倍低音奥菲克莱德号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation>Eâ™­ Cb. Oph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>古小铜喇叭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation>Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>小铜喇叭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>高音小铜喇叭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation>S. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>中音小铜喇叭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation>A. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>次中音小铜喇叭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation>T. Co.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>蛇号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation>Spt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>长号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation>Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>长号(指法谱)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>高音长号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation>S. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>中音长号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation>A. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>次中音长号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation>T. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>低音长号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation>B. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>倍低音长号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation>Cb. Trb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>细管长号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation>Cim.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>次中音号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>粗管上低音号(高音谱号)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>大号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation>Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>F调大号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>早期音乐</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>长号(指法谱)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation>F Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>降E调大号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation>Eâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>C调大号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation>C Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>降B调大号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation>Bâ™­ Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>F调低音大号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation>Ba. Tu. F</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>降E调低音大号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation>Ba. Tu. Eâ™­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation>倍大低音大号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation>SCB. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>黑里康大号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>苏萨大号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation>Sphn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>华格纳大号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation>Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>降B调华格纳大号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation>Bâ™­ Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>F调华格纳大号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation>F Wag. Tu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>螺号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation>Cnch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>迪吉里杜管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation>Doo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>法螺贝</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation>Hor.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>羊角号</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation>Sho.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>呜呜祖拉</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation>Vuv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>有音高打击乐器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>定音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation>Timp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>定音鼓和手鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation>Rt-t.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>钟琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation>Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>奥尔夫高音钟琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation>O. S. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>奥尔夫中音钟琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation>O. A. Glk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>古钹</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation>Cro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>管钟琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation>Tph.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>牛颈铃</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation>Agl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>电颤琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation>Vib.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>钢片琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation>Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>奥尔夫高音钢片琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation>O. S. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>奥尔夫中音钢片琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation>O. A. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>奥尔夫低音钢片琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation>O. B. Met.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>管钟</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation>Tu. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>钢鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation>St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>高音钢鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation>S. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>中音钢鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation>A. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>吉他钢鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation>Gtr. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>次中音钢鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation>T. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>大提琴钢鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation>Ce. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>低音钢鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation>B. St. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>手摇铃</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation>Ha. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>调谐锣</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation>Td. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>弹音器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation>Flt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>锯琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation>Mu. Sw.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>杯琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation>Mu. Gla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>玻璃琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation>Gla. Har.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>木琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation>Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>奥尔夫高音木琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation>O. S. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>奥尔夫中音木琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation>O. A. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>奥尔夫低音木琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation>O. B. Xyl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>马林巴木琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation>XMrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>马林巴琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation>Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>低音马林巴琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation>B. Mrm.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>扬琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation>Dlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>调谐电喇叭号角</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation>Tn. Klx. Hns.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>卡林巴琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation>Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>高音卡林巴琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation>Tr. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>中音卡林巴琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation>A. Kal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>高音打击乐器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>鼓组</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation>Drs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>小鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation>Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>低音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation>B. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>高音小鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation>P. Sn. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>军鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation>Mil. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>手鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation>Toms</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation>中国手鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation>Ch. To.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>邦戈鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation>Bo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>康加鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>天巴鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation>Timb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>框鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation>Fr. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>对鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation>Tbs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>锯加鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation>Cu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>指钹</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation>Fi. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>踩钹</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation>铜锣</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>铃铛</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation>Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>雪橇铃</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation>Sle. Be.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>铁片</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation>Be. Pla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>碗锣</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation>Bw. Go.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>金属响板</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation>Met. Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation>汽车制动鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation>Aut. Brk. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>铁管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation>Ir. Pi.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>铁链</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation>Chn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>乐砧</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation>Anv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>盒棒</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation>Wd. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>木鱼</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation>Tmp. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>三角波</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation>Trgl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>铜钹</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation>Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>敲钹</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation>R. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>中国钹</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation>Ch. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>双面钹</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation>Cr. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>响钹</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation>Sp. Cym.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>牛颈铃</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation>Cwb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>响棒</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation>Clv.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>响板</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation>Cst.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>刮葫</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation>Gro.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>砂槌</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation>Mrcs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>铁沙铃</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation>Cab.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>基哈达</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation>Qui.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>颤音叉</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation>Vibslp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>非洲裂痕鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation>Slt. Dr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>éž­</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation>Wh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>棘齿</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation>Rat.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>雷鸣器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation>Thu.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>沙锤块</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation>Sa. Bl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>木制风铃</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation>Wd. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>竹制风铃</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation>Bam. Wn. Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>金属风铃</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation>Met. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>玻璃风铃</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation>Gl. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>贝壳风铃</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation>Sh. Wn Ch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>石头</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation>Sto.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>响指</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation>Fi. Sna.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>拍手</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation>Hd. Clp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation>拍打</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation>Sla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation>重踏</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation>Sta.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>铃鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation>Tamb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>进行曲打击乐器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation>SD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>次中音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation>TD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>低音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation>BD</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>铜钹</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation>Cy</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation>声乐</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>人声</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation>Vo.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>男童女高音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation>B. S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>女高音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation>S.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>女中音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation>Mzs.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>男高音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation>A.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>女低音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation>Contr.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>高男高音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation>Ct.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>男高音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation>T.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>男中音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation>Bar.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>男低音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation>B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>卡祖笛</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation>Kaz.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>键盘</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>钢琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation>Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>大钢琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>立式钢琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>破钢琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation>Hnk. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>玩具钢琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation>Toy Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>古钢琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation>Cch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>拨弦琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation>Hch.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>贞女</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation>Vir.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>钢片琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation>Cel.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>电子琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation>El. Pno.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>电翼琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation>Clav.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>风琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation>Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>敲击风琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation>Perc. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>哈蒙德风琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation>Hm. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>旋转风琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation>Rot. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>管风琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>簧风琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>簧管风琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation>Rd. Org.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>电子乐器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>音效合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation>Synth.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>大气合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>亮度合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>水晶合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>回响合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>哥布林合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>雨声合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>科幻合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>音轨合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>轻声走合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>新潮时代合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>柔和合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>多边形合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>合唱合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>鞠躬合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>金属合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>光晕合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>清扫合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>锯声合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>正弦合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>方波合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>马特诺电琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation>O.M.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>木槌合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation>Mal. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>贝斯合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
         <source>Brass Synthesizer</source>
         <translation>铜管乐合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
         <translation>弦合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>特雷门琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation>Thmn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>打击乐合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation>Perc. Syn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>拨弦乐器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>班卓琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation>Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>班卓琴[指法谱]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>次中音班卓琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation>T. Bj.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>巴拉莱卡琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation>Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>高音巴拉莱卡</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation>Pic. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>主巴拉莱卡琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation>Pr. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>次巴拉莱卡琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation>Sec. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>中音巴拉莱卡琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation>Al. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>低音巴拉莱卡琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation>B. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>低音巴拉莱卡琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation>CB. Bal.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>布祖基琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation>Bou.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>布祖基琴(3道共振装置)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>布祖基琴(4道共振装置)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>高音吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation>S. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>中音吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation>A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>古典吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation>Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>古典吉他[指法谱]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>原音吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>原音吉他[指法谱]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11弦中音吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation>11-str. A. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12弦吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation>12-str. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>踏板电子吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation>Ped. St. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>电子吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation>El. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>电子吉他[指法谱]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>竖琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation>Hrp.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>十三弦古筝</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation>Ko.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>古琵琶</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation>Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>古琵琶[指法谱]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>5道共振古琵琶</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>6道共振古琵琶</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>7道共振古琵琶</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>8道共振古琵琶</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>9道共振古琵琶</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>10道共振古琵琶</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>13道共振古琵琶</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation>A. Lt.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>曼陀铃[指法谱]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>5弦电贝斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>5弦电贝斯[指法谱]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>二胡</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
-        <translation type="unfinished"/>
+        <translation>乐队小提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
-        <translation type="unfinished"/>
+        <translation>乐队中提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
-        <translation type="unfinished"/>
+        <translation>乐队大提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
-        <translation type="unfinished"/>
+        <translation>乐队低音提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>低音提琴 (指法谱)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>长颈鲁特琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>早期音乐</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>双首琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation>Thb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>曼陀林</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation>Mdn.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>曼陀铃[指法谱]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>中曼陀林琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation>Mda.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>中音曼陀林琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>次中音曼陀林</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>低音曼陀林</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation>Mncl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>八度音曼陀林琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation>OM.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>三弦琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation>Sh.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>西塔琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation>Si.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>尤克莱利琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation>Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>尤克莱利琴[指法谱]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>次中音尤克莱利琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation>Ten. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>上低音尤克莱利琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation>Bar. Uk.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>低音吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation>B. Guit.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>低音吉他[指法谱]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>原音贝斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>电贝斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation>El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>电贝斯[指法谱]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>无品电贝司</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation>Frtl. El. B.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>弦乐器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>二胡</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>小提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation>Vln.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>中提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation>Vla.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>大提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation>Vlc.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
-        <translation>低音大提琴</translation>
+        <translation>低音提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation>Cb.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>倍大提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation>Pardessus de viole</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation>Pds. v.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>高音古提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation>Tr. vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>中音古提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation>A. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>次中音古提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation>T. Vl.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>低音古提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation>Vla. d. g.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>低音提琴(指法谱)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation>低音提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation>Vne.</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation>D调提琴</translation>
     </message>
diff --git a/share/locale/instruments_zh_TW.ts b/share/locale/instruments_zh_TW.ts
index 85af97a..47f5aaa 100644
--- a/share/locale/instruments_zh_TW.ts
+++ b/share/locale/instruments_zh_TW.ts
@@ -935,7 +935,7 @@ Heckelphone-clarinet</extracomment>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="264"/>
         <location filename="../instruments/instrumentsxml.h" line="273"/>
-        <location filename="../instruments/instrumentsxml.h" line="393"/>
+        <location filename="../instruments/instrumentsxml.h" line="396"/>
         <source>Du.</source>
         <extracomment>Duduk
 ----------
@@ -1125,7 +1125,7 @@ Dulcian</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="318"/>
-        <location filename="../instruments/instrumentsxml.h" line="529"/>
+        <location filename="../instruments/instrumentsxml.h" line="532"/>
         <source>She.</source>
         <extracomment>Shenai
 ----------
@@ -1167,505 +1167,515 @@ Sheng</extracomment>
     </message>
     <message>
         <location filename="../instruments/instrumentsxml.h" line="328"/>
+        <source>C Clarinet</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <source>C Cl.</source>
+        <extracomment>C Clarinet</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="331"/>
         <source>D Clarinet</source>
         <translation>D調單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="330"/>
+        <location filename="../instruments/instrumentsxml.h" line="333"/>
         <source>D Cl.</source>
         <extracomment>D Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="331"/>
+        <location filename="../instruments/instrumentsxml.h" line="334"/>
         <source>Eâ™­ Clarinet</source>
         <translation>降E調單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="333"/>
+        <location filename="../instruments/instrumentsxml.h" line="336"/>
         <source>Eâ™­ Cl.</source>
         <extracomment>Eâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="334"/>
+        <location filename="../instruments/instrumentsxml.h" line="337"/>
         <source>Bâ™­ Clarinet</source>
         <translation>降B調單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="336"/>
+        <location filename="../instruments/instrumentsxml.h" line="339"/>
         <source>Bâ™­ Cl.</source>
         <extracomment>Bâ™­ Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="337"/>
+        <location filename="../instruments/instrumentsxml.h" line="340"/>
         <source>A Clarinet</source>
         <translation>A調單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="339"/>
+        <location filename="../instruments/instrumentsxml.h" line="342"/>
         <source>A Cl.</source>
         <extracomment>A Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="340"/>
+        <location filename="../instruments/instrumentsxml.h" line="343"/>
         <source>Alto Clarinet</source>
         <translation>中音單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="342"/>
+        <location filename="../instruments/instrumentsxml.h" line="345"/>
         <source>A. Cl.</source>
         <extracomment>Alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="343"/>
+        <location filename="../instruments/instrumentsxml.h" line="346"/>
         <source>Basset Clarinet</source>
         <translation>巴塞單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="345"/>
+        <location filename="../instruments/instrumentsxml.h" line="348"/>
         <source>Ba. Cl.</source>
         <extracomment>Basset Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="346"/>
+        <location filename="../instruments/instrumentsxml.h" line="349"/>
         <source>Basset Horn</source>
         <translation>巴塞管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="348"/>
+        <location filename="../instruments/instrumentsxml.h" line="351"/>
         <source>Ba. Hn.</source>
         <extracomment>Basset Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="349"/>
+        <location filename="../instruments/instrumentsxml.h" line="352"/>
         <source>Bass Clarinet</source>
         <translation>低音單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="351"/>
+        <location filename="../instruments/instrumentsxml.h" line="354"/>
         <source>B. Cl.</source>
         <extracomment>Bass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="352"/>
+        <location filename="../instruments/instrumentsxml.h" line="355"/>
         <source>Contra-alto Clarinet</source>
         <translation>倍中音單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="354"/>
+        <location filename="../instruments/instrumentsxml.h" line="357"/>
         <source>C-a. Cl.</source>
         <extracomment>Contra-alto Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="355"/>
+        <location filename="../instruments/instrumentsxml.h" line="358"/>
         <source>Contrabass Clarinet</source>
         <translation>倍低音單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="357"/>
+        <location filename="../instruments/instrumentsxml.h" line="360"/>
         <source>Cb. Cl.</source>
         <extracomment>Contrabass Clarinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="358"/>
+        <location filename="../instruments/instrumentsxml.h" line="361"/>
         <source>Chalumeau</source>
         <translation>古單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="360"/>
+        <location filename="../instruments/instrumentsxml.h" line="363"/>
         <source>Cha.</source>
         <extracomment>Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="361"/>
+        <location filename="../instruments/instrumentsxml.h" line="364"/>
         <source>Sopranino Chalumeau</source>
         <translation>超高音古單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="363"/>
+        <location filename="../instruments/instrumentsxml.h" line="366"/>
         <source>Si. Cha.</source>
         <extracomment>Sopranino Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="364"/>
+        <location filename="../instruments/instrumentsxml.h" line="367"/>
         <source>Soprano Chalumeau</source>
         <translation>高音古單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="366"/>
+        <location filename="../instruments/instrumentsxml.h" line="369"/>
         <source>S. Cha.</source>
         <extracomment>Soprano Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="367"/>
+        <location filename="../instruments/instrumentsxml.h" line="370"/>
         <source>Alto Chalumeau</source>
         <translation>中音古單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="369"/>
+        <location filename="../instruments/instrumentsxml.h" line="372"/>
         <source>A. Cha.</source>
         <extracomment>Alto Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="370"/>
+        <location filename="../instruments/instrumentsxml.h" line="373"/>
         <source>Tenor Chalumeau</source>
         <translation>次中音古單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="372"/>
+        <location filename="../instruments/instrumentsxml.h" line="375"/>
         <source>T. Cha.</source>
         <extracomment>Tenor Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="373"/>
+        <location filename="../instruments/instrumentsxml.h" line="376"/>
         <source>Bass Chalumeau</source>
         <translation>低音古單簧管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="375"/>
+        <location filename="../instruments/instrumentsxml.h" line="378"/>
         <source>B. Cha.</source>
         <extracomment>Bass Chalumeau</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="376"/>
+        <location filename="../instruments/instrumentsxml.h" line="379"/>
         <source>Tarogato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="378"/>
+        <location filename="../instruments/instrumentsxml.h" line="381"/>
         <source>Tar.</source>
         <extracomment>Tarogato</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="379"/>
+        <location filename="../instruments/instrumentsxml.h" line="382"/>
         <source>Octavin</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="381"/>
+        <location filename="../instruments/instrumentsxml.h" line="384"/>
         <source>Oct.</source>
         <extracomment>Octavin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="382"/>
+        <location filename="../instruments/instrumentsxml.h" line="385"/>
         <source>Bassoon</source>
         <translation>巴松管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="384"/>
+        <location filename="../instruments/instrumentsxml.h" line="387"/>
         <source>Bsn.</source>
         <extracomment>Bassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="385"/>
+        <location filename="../instruments/instrumentsxml.h" line="388"/>
         <source>Contrabassoon</source>
         <translation>低音巴松管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="387"/>
+        <location filename="../instruments/instrumentsxml.h" line="390"/>
         <source>Cbsn.</source>
         <extracomment>Contrabassoon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="388"/>
+        <location filename="../instruments/instrumentsxml.h" line="391"/>
         <source>Reed Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="390"/>
+        <location filename="../instruments/instrumentsxml.h" line="393"/>
         <source>Rd. Cbs.</source>
         <extracomment>Reed Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="391"/>
+        <location filename="../instruments/instrumentsxml.h" line="394"/>
         <source>Dulcian</source>
         <translation>寇塔爾管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="394"/>
+        <location filename="../instruments/instrumentsxml.h" line="397"/>
         <source>Rackett</source>
         <translation>拉凱特管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="396"/>
+        <location filename="../instruments/instrumentsxml.h" line="399"/>
         <source>Ra.</source>
         <extracomment>Rackett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="397"/>
+        <location filename="../instruments/instrumentsxml.h" line="400"/>
         <source>Sarrusophone</source>
         <translation>薩魯管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="399"/>
+        <location filename="../instruments/instrumentsxml.h" line="402"/>
         <source>Sar.</source>
         <extracomment>Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="400"/>
+        <location filename="../instruments/instrumentsxml.h" line="403"/>
         <source>Sopranino Sarrusophone</source>
         <translation>超高音薩魯管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="402"/>
+        <location filename="../instruments/instrumentsxml.h" line="405"/>
         <source>Si. Sar.</source>
         <extracomment>Sopranino Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="403"/>
+        <location filename="../instruments/instrumentsxml.h" line="406"/>
         <source>Soprano Sarrusophone</source>
         <translation>高音薩魯管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="405"/>
+        <location filename="../instruments/instrumentsxml.h" line="408"/>
         <source>S. Sar.</source>
         <extracomment>Soprano Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="406"/>
+        <location filename="../instruments/instrumentsxml.h" line="409"/>
         <source>Alto Sarrusophone</source>
         <translation>中音薩魯管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="408"/>
+        <location filename="../instruments/instrumentsxml.h" line="411"/>
         <source>A. Sar.</source>
         <extracomment>Alto Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="409"/>
+        <location filename="../instruments/instrumentsxml.h" line="412"/>
         <source>Tenor Sarrusophone</source>
         <translation>次中音薩魯管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="411"/>
+        <location filename="../instruments/instrumentsxml.h" line="414"/>
         <source>T. Sar.</source>
         <extracomment>Tenor Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="412"/>
+        <location filename="../instruments/instrumentsxml.h" line="415"/>
         <source>Baritone Sarrusophone</source>
         <translation>上低音薩魯管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="414"/>
+        <location filename="../instruments/instrumentsxml.h" line="417"/>
         <source>Bar. Sar.</source>
         <extracomment>Baritone Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="415"/>
+        <location filename="../instruments/instrumentsxml.h" line="418"/>
         <source>Bass Sarrusophone</source>
         <translation> 低音薩魯管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="417"/>
+        <location filename="../instruments/instrumentsxml.h" line="420"/>
         <source>B. Sar.</source>
         <extracomment>Bass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="418"/>
+        <location filename="../instruments/instrumentsxml.h" line="421"/>
         <source>Contrabass Sarrusophone</source>
         <translation>倍低音薩魯管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="420"/>
+        <location filename="../instruments/instrumentsxml.h" line="423"/>
         <source>Cb. Sar.</source>
         <extracomment>Contrabass Sarrusophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="421"/>
+        <location filename="../instruments/instrumentsxml.h" line="424"/>
         <source>Saxophone</source>
         <translation>薩克斯風</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="423"/>
+        <location filename="../instruments/instrumentsxml.h" line="426"/>
         <source>Sax.</source>
         <extracomment>Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="424"/>
+        <location filename="../instruments/instrumentsxml.h" line="427"/>
         <source>Sopranissimo Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="426"/>
+        <location filename="../instruments/instrumentsxml.h" line="429"/>
         <source>Sio. Sax.</source>
         <extracomment>Sopranissimo Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="427"/>
+        <location filename="../instruments/instrumentsxml.h" line="430"/>
         <source>Sopranino Saxophone</source>
         <translation>超高音薩克斯風</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="429"/>
+        <location filename="../instruments/instrumentsxml.h" line="432"/>
         <source>Si. Sax.</source>
         <extracomment>Sopranino Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="430"/>
+        <location filename="../instruments/instrumentsxml.h" line="433"/>
         <source>Soprano Saxophone</source>
         <translation>高音薩克斯風</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="432"/>
+        <location filename="../instruments/instrumentsxml.h" line="435"/>
         <source>S. Sax.</source>
         <extracomment>Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="433"/>
+        <location filename="../instruments/instrumentsxml.h" line="436"/>
         <source>Aulochrome</source>
         <translation>雙管高音薩克斯風</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="435"/>
+        <location filename="../instruments/instrumentsxml.h" line="438"/>
         <source>Aul.</source>
         <extracomment>Aulochrome</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="436"/>
+        <location filename="../instruments/instrumentsxml.h" line="439"/>
         <source>Mezzo-Soprano Saxophone</source>
         <translation>次高音薩克斯風</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="438"/>
+        <location filename="../instruments/instrumentsxml.h" line="441"/>
         <source>M.S. Sax.</source>
         <extracomment>Mezzo-Soprano Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="439"/>
+        <location filename="../instruments/instrumentsxml.h" line="442"/>
         <source>Alto Saxophone</source>
         <translation>中音薩克斯風</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="441"/>
+        <location filename="../instruments/instrumentsxml.h" line="444"/>
         <source>A. Sax.</source>
         <extracomment>Alto Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="442"/>
+        <location filename="../instruments/instrumentsxml.h" line="445"/>
         <source>Melody Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="444"/>
+        <location filename="../instruments/instrumentsxml.h" line="447"/>
         <source>Mel. Sax.</source>
         <extracomment>Melody Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="445"/>
+        <location filename="../instruments/instrumentsxml.h" line="448"/>
         <source>Tenor Saxophone</source>
         <translation>次中音薩克斯風</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="447"/>
+        <location filename="../instruments/instrumentsxml.h" line="450"/>
         <source>T. Sax.</source>
         <extracomment>Tenor Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="448"/>
+        <location filename="../instruments/instrumentsxml.h" line="451"/>
         <source>Baritone Saxophone</source>
         <translation>上低音薩克斯風</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="450"/>
+        <location filename="../instruments/instrumentsxml.h" line="453"/>
         <source>Bar. Sax.</source>
         <extracomment>Baritone Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="451"/>
+        <location filename="../instruments/instrumentsxml.h" line="454"/>
         <source>Bass Saxophone</source>
         <translation>低音薩克斯風</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="453"/>
+        <location filename="../instruments/instrumentsxml.h" line="456"/>
         <source>B. Sax.</source>
         <extracomment>Bass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="454"/>
+        <location filename="../instruments/instrumentsxml.h" line="457"/>
         <source>Contrabass Saxophone</source>
         <translation>倍低音薩克斯風</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="456"/>
+        <location filename="../instruments/instrumentsxml.h" line="459"/>
         <source>Cb. Sax.</source>
         <extracomment>Contrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="457"/>
+        <location filename="../instruments/instrumentsxml.h" line="460"/>
         <source>Subcontrabass Saxophone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="459"/>
+        <location filename="../instruments/instrumentsxml.h" line="462"/>
         <source>Scb. Sax.</source>
         <extracomment>Subcontrabass Saxophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="460"/>
+        <location filename="../instruments/instrumentsxml.h" line="463"/>
         <source>Bagpipe</source>
         <translation>風笛</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="462"/>
+        <location filename="../instruments/instrumentsxml.h" line="465"/>
         <source>Bagp.</source>
         <extracomment>Bagpipe</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="463"/>
+        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <source>Free Reed</source>
         <translation>自由簧</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="464"/>
+        <location filename="../instruments/instrumentsxml.h" line="467"/>
         <source>Harmonica</source>
         <translation>口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="466"/>
         <location filename="../instruments/instrumentsxml.h" line="469"/>
         <location filename="../instruments/instrumentsxml.h" line="472"/>
         <location filename="../instruments/instrumentsxml.h" line="475"/>
@@ -1679,7 +1689,8 @@ Sheng</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="499"/>
         <location filename="../instruments/instrumentsxml.h" line="502"/>
         <location filename="../instruments/instrumentsxml.h" line="505"/>
-        <location filename="../instruments/instrumentsxml.h" line="1231"/>
+        <location filename="../instruments/instrumentsxml.h" line="508"/>
+        <location filename="../instruments/instrumentsxml.h" line="1250"/>
         <source>Harm.</source>
         <extracomment>Harmonica
 ----------
@@ -1713,79 +1724,79 @@ Harmonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="467"/>
+        <location filename="../instruments/instrumentsxml.h" line="470"/>
         <source>12 Hole C Chromatic Harmonica</source>
         <translation>12孔C調半音音階口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="470"/>
+        <location filename="../instruments/instrumentsxml.h" line="473"/>
         <source>14 Hole C Chromatic Harmonica</source>
         <translation>14孔C調半音音階口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="473"/>
+        <location filename="../instruments/instrumentsxml.h" line="476"/>
         <source>12 Hole G Chromatic Harmonica</source>
         <translation>12孔G調半音音階口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="476"/>
+        <location filename="../instruments/instrumentsxml.h" line="479"/>
         <source>16 Hole C Chromatic Harmonica</source>
         <translation>16孔C調半音音階口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="479"/>
+        <location filename="../instruments/instrumentsxml.h" line="482"/>
         <source>12 Hole Tenor C Chromatic Harmonica</source>
         <translation>12孔次中音C調半音音階口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="482"/>
+        <location filename="../instruments/instrumentsxml.h" line="485"/>
         <source>10 Hole High G Diatonic Harmonica</source>
         <translation>10孔高G調全音階口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="485"/>
+        <location filename="../instruments/instrumentsxml.h" line="488"/>
         <source>10 Hole F Diatonic Harmonica</source>
         <translation>10孔F調全音階口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="488"/>
+        <location filename="../instruments/instrumentsxml.h" line="491"/>
         <source>10 Hole D Diatonic Harmonica</source>
         <translation>10孔D調全音階口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="491"/>
+        <location filename="../instruments/instrumentsxml.h" line="494"/>
         <source>10 Hole C Diatonic Harmonica</source>
         <translation>10孔C調全音階口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="494"/>
+        <location filename="../instruments/instrumentsxml.h" line="497"/>
         <source>10 Hole A Diatonic Harmonica</source>
         <translation>10孔A調全音階口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="497"/>
+        <location filename="../instruments/instrumentsxml.h" line="500"/>
         <source>10 Hole G Diatonic Harmonica</source>
         <translation>10孔G調全音階口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="500"/>
+        <location filename="../instruments/instrumentsxml.h" line="503"/>
         <source>10 Hole Low D Diatonic Harmonica</source>
         <translation>10孔低D調全音階口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="503"/>
+        <location filename="../instruments/instrumentsxml.h" line="506"/>
         <source>20 Hole Chordet Harmonica</source>
         <translation>20孔和弦口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="506"/>
+        <location filename="../instruments/instrumentsxml.h" line="509"/>
         <source>Bass Harmonica</source>
         <translation>低音口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="508"/>
         <location filename="../instruments/instrumentsxml.h" line="511"/>
         <location filename="../instruments/instrumentsxml.h" line="514"/>
+        <location filename="../instruments/instrumentsxml.h" line="517"/>
         <source>Bs. Harm.</source>
         <extracomment>Bass Harmonica
 ----------
@@ -1795,775 +1806,795 @@ Bass Huang Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="509"/>
+        <location filename="../instruments/instrumentsxml.h" line="512"/>
         <source>Bass Hohner Harmonica</source>
         <translation>好樂低音口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="512"/>
+        <location filename="../instruments/instrumentsxml.h" line="515"/>
         <source>Bass Huang Harmonica</source>
         <translation>黃牌低音口琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="515"/>
+        <location filename="../instruments/instrumentsxml.h" line="518"/>
         <source>Accordion</source>
         <translation>手風琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="517"/>
+        <location filename="../instruments/instrumentsxml.h" line="520"/>
         <source>Acc.</source>
         <extracomment>Accordion</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="518"/>
+        <location filename="../instruments/instrumentsxml.h" line="521"/>
         <source>Bandoneon</source>
         <translation>班多鈕手風琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="520"/>
+        <location filename="../instruments/instrumentsxml.h" line="523"/>
         <source>Ban.</source>
         <extracomment>Bandoneon</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="521"/>
+        <location filename="../instruments/instrumentsxml.h" line="524"/>
         <source>Concertina</source>
         <translation>六角手風琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="523"/>
+        <location filename="../instruments/instrumentsxml.h" line="526"/>
         <source>Conc.</source>
         <extracomment>Concertina</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="524"/>
+        <location filename="../instruments/instrumentsxml.h" line="527"/>
         <source>Melodica</source>
         <translation>口風琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="526"/>
+        <location filename="../instruments/instrumentsxml.h" line="529"/>
         <source>Mel.</source>
         <extracomment>Melodica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="527"/>
+        <location filename="../instruments/instrumentsxml.h" line="530"/>
         <source>Sheng</source>
         <translation>笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="530"/>
+        <location filename="../instruments/instrumentsxml.h" line="533"/>
         <source>Soprano Sheng</source>
         <translation>高音笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="532"/>
+        <location filename="../instruments/instrumentsxml.h" line="535"/>
         <source>S She.</source>
         <extracomment>Soprano Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="533"/>
+        <location filename="../instruments/instrumentsxml.h" line="536"/>
         <source>Alto Sheng</source>
         <translation>中音笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="535"/>
+        <location filename="../instruments/instrumentsxml.h" line="538"/>
         <source>A She.</source>
         <extracomment>Alto Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="536"/>
+        <location filename="../instruments/instrumentsxml.h" line="539"/>
         <source>Tenor Sheng</source>
         <translation>次中音笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="538"/>
+        <location filename="../instruments/instrumentsxml.h" line="541"/>
         <source>T She.</source>
         <extracomment>Tenor Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="539"/>
+        <location filename="../instruments/instrumentsxml.h" line="542"/>
         <source>Bass Sheng</source>
         <translation>低音笙</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="541"/>
+        <location filename="../instruments/instrumentsxml.h" line="544"/>
         <source>B She.</source>
         <extracomment>Bass Sheng</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="542"/>
-        <location filename="../instruments/instrumentsxml.h" line="543"/>
+        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="546"/>
         <source>Brass</source>
         <translation>銅管樂器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="545"/>
+        <location filename="../instruments/instrumentsxml.h" line="548"/>
         <source>Br.</source>
         <extracomment>Brass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="546"/>
+        <location filename="../instruments/instrumentsxml.h" line="549"/>
         <source>Horn in F</source>
         <translation>F調號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="548"/>
+        <location filename="../instruments/instrumentsxml.h" line="551"/>
         <source>F Hn.</source>
         <extracomment>Horn in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="549"/>
+        <location filename="../instruments/instrumentsxml.h" line="552"/>
         <source>High C Horn</source>
         <translation>高音C調號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="551"/>
+        <location filename="../instruments/instrumentsxml.h" line="554"/>
         <source>H. C Hn.</source>
         <extracomment>High C Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="552"/>
+        <location filename="../instruments/instrumentsxml.h" line="555"/>
         <source>Horn in Bâ™­</source>
         <translation>降B調號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="554"/>
+        <location filename="../instruments/instrumentsxml.h" line="557"/>
         <source>Bâ™­ Hn.</source>
         <extracomment>Horn in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="555"/>
+        <location filename="../instruments/instrumentsxml.h" line="558"/>
         <source>Horn in A</source>
         <translation>A調號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="557"/>
+        <location filename="../instruments/instrumentsxml.h" line="560"/>
         <source>A Hn.</source>
         <extracomment>Horn in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="558"/>
+        <location filename="../instruments/instrumentsxml.h" line="561"/>
         <source>Horn in Aâ™­</source>
         <translation>降A調號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="560"/>
+        <location filename="../instruments/instrumentsxml.h" line="563"/>
         <source>Aâ™­ Hn.</source>
         <extracomment>Horn in Aâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="561"/>
+        <location filename="../instruments/instrumentsxml.h" line="564"/>
         <source>Horn in G</source>
         <translation>G調號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="563"/>
+        <location filename="../instruments/instrumentsxml.h" line="566"/>
         <source>G Hn.</source>
         <extracomment>Horn in G</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="564"/>
+        <location filename="../instruments/instrumentsxml.h" line="567"/>
         <source>E Horn</source>
         <translation>E調號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="566"/>
+        <location filename="../instruments/instrumentsxml.h" line="569"/>
         <source>E Hn.</source>
         <extracomment>E Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="567"/>
+        <location filename="../instruments/instrumentsxml.h" line="570"/>
         <source>Horn in Eâ™­</source>
         <translation>降E調號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="569"/>
+        <location filename="../instruments/instrumentsxml.h" line="572"/>
         <source>Eâ™­ Hn.</source>
         <extracomment>Horn in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="570"/>
+        <location filename="../instruments/instrumentsxml.h" line="573"/>
         <source>Horn in D</source>
         <translation>D調號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="572"/>
+        <location filename="../instruments/instrumentsxml.h" line="575"/>
         <source>Hn.</source>
         <extracomment>Horn in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="573"/>
+        <location filename="../instruments/instrumentsxml.h" line="576"/>
         <source>Horn in C</source>
         <translation>C調號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="575"/>
+        <location filename="../instruments/instrumentsxml.h" line="578"/>
         <source>C Hn.</source>
         <extracomment>Horn in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="576"/>
+        <location filename="../instruments/instrumentsxml.h" line="579"/>
         <source>Vienna Horn</source>
         <translation>維也納號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="578"/>
+        <location filename="../instruments/instrumentsxml.h" line="581"/>
         <source>V. Hn.</source>
         <extracomment>Vienna Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="579"/>
+        <location filename="../instruments/instrumentsxml.h" line="582"/>
         <source>Horn in Bâ™­ basso</source>
         <translation>低音降B調號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="581"/>
+        <location filename="../instruments/instrumentsxml.h" line="584"/>
         <source>Bâ™­ ba Hn.</source>
         <extracomment>Horn in Bâ™­ basso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="582"/>
+        <location filename="../instruments/instrumentsxml.h" line="585"/>
         <source>Eâ™­ Cornet</source>
         <translation>降E調短號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="584"/>
+        <location filename="../instruments/instrumentsxml.h" line="587"/>
         <source>Eâ™­ Cnt.</source>
         <extracomment>Eâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="585"/>
+        <location filename="../instruments/instrumentsxml.h" line="588"/>
+        <location filename="../instruments/instrumentsxml.h" line="592"/>
+        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="626"/>
+        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="638"/>
+        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="650"/>
+        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="665"/>
+        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <source>mute</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="589"/>
         <source>Bâ™­ Cornet</source>
         <translation>降B調短號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="587"/>
+        <location filename="../instruments/instrumentsxml.h" line="591"/>
         <source>Bâ™­ Cnt.</source>
         <extracomment>Bâ™­ Cornet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="588"/>
-        <location filename="../instruments/instrumentsxml.h" line="590"/>
+        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="595"/>
         <source>Saxhorn</source>
         <extracomment>Saxhorn</extracomment>
         <translation>薩克號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="591"/>
+        <location filename="../instruments/instrumentsxml.h" line="596"/>
         <source>F Alto Horn</source>
         <translation>F調中音號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="593"/>
+        <location filename="../instruments/instrumentsxml.h" line="598"/>
         <source>F A. Hn.</source>
         <extracomment>F Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="594"/>
+        <location filename="../instruments/instrumentsxml.h" line="599"/>
         <source>Eâ™­ Alto Horn</source>
         <translation>降E調中音號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="596"/>
+        <location filename="../instruments/instrumentsxml.h" line="601"/>
         <source>Eâ™­ A. Hn.</source>
         <extracomment>Eâ™­ Alto Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="597"/>
-        <location filename="../instruments/instrumentsxml.h" line="600"/>
+        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="605"/>
         <source>Baritone Horn</source>
         <translation>上低音號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="599"/>
-        <location filename="../instruments/instrumentsxml.h" line="602"/>
+        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="607"/>
         <source>Bar. Hn.</source>
         <extracomment>Baritone Horn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="603"/>
+        <location filename="../instruments/instrumentsxml.h" line="608"/>
         <source>Baritone Horn (Treble Clef)</source>
         <translation>上低音號(高音譜號)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="604"/>
+        <location filename="../instruments/instrumentsxml.h" line="609"/>
         <source>Posthorn</source>
         <translation>郵號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="606"/>
+        <location filename="../instruments/instrumentsxml.h" line="611"/>
         <source>Psthn.</source>
         <extracomment>Posthorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="607"/>
+        <location filename="../instruments/instrumentsxml.h" line="612"/>
         <source>Alphorn</source>
         <translation>阿爾卑斯長號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="609"/>
+        <location filename="../instruments/instrumentsxml.h" line="614"/>
         <source>AlpHn.</source>
         <extracomment>Alphorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="610"/>
+        <location filename="../instruments/instrumentsxml.h" line="615"/>
         <source>Trumpet</source>
         <translation>小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="612"/>
+        <location filename="../instruments/instrumentsxml.h" line="617"/>
         <source>Tpt.</source>
         <extracomment>Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="613"/>
+        <location filename="../instruments/instrumentsxml.h" line="619"/>
         <source>Piccolo Trumpet</source>
         <translation>高音小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="615"/>
+        <location filename="../instruments/instrumentsxml.h" line="621"/>
         <source>P. Tpt.</source>
         <extracomment>Piccolo Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="616"/>
+        <location filename="../instruments/instrumentsxml.h" line="623"/>
         <source>Piccolo Trumpet in Bâ™­</source>
         <translation>降B調高音小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="618"/>
+        <location filename="../instruments/instrumentsxml.h" line="625"/>
         <source>P. Tpt. Bâ™­</source>
         <extracomment>Piccolo Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="619"/>
+        <location filename="../instruments/instrumentsxml.h" line="627"/>
         <source>Piccolo Trumpet in A</source>
         <translation>降A調高音小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="621"/>
+        <location filename="../instruments/instrumentsxml.h" line="629"/>
         <source>P. Tpt. A</source>
         <extracomment>Piccolo Trumpet in A</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="622"/>
+        <location filename="../instruments/instrumentsxml.h" line="631"/>
         <source>Eâ™­ Trumpet</source>
         <translation>降E調小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="624"/>
+        <location filename="../instruments/instrumentsxml.h" line="633"/>
         <source>Eâ™­ Tpt.</source>
         <extracomment>Eâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="625"/>
+        <location filename="../instruments/instrumentsxml.h" line="635"/>
         <source>D Trumpet</source>
         <translation>D調小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="627"/>
+        <location filename="../instruments/instrumentsxml.h" line="637"/>
         <source>D Tpt.</source>
         <extracomment>D Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="628"/>
+        <location filename="../instruments/instrumentsxml.h" line="639"/>
         <source>C Trumpet</source>
         <translation>降C調小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="630"/>
+        <location filename="../instruments/instrumentsxml.h" line="641"/>
         <source>C Tpt.</source>
         <extracomment>C Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="631"/>
+        <location filename="../instruments/instrumentsxml.h" line="643"/>
         <source>Bâ™­ Trumpet</source>
         <translation>降B調小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="633"/>
+        <location filename="../instruments/instrumentsxml.h" line="645"/>
         <source>Bâ™­ Tpt.</source>
         <extracomment>Bâ™­ Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="634"/>
+        <location filename="../instruments/instrumentsxml.h" line="647"/>
         <source>Pocket Trumpet</source>
         <translation>袖珍小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="636"/>
+        <location filename="../instruments/instrumentsxml.h" line="649"/>
         <source>Pkt. Tpt.</source>
         <extracomment>Pocket Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="637"/>
+        <location filename="../instruments/instrumentsxml.h" line="651"/>
         <source>Slide Trumpet</source>
         <translation>伸縮小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="639"/>
+        <location filename="../instruments/instrumentsxml.h" line="653"/>
         <source>Sl.Tpt.</source>
         <extracomment>Slide Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="640"/>
+        <location filename="../instruments/instrumentsxml.h" line="655"/>
         <source>Tenor Trumpet</source>
         <translation>次中音小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="642"/>
+        <location filename="../instruments/instrumentsxml.h" line="657"/>
         <source>Tnr. Tpt.</source>
         <extracomment>Tenor Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="643"/>
+        <location filename="../instruments/instrumentsxml.h" line="658"/>
         <source>Bass Trumpet</source>
         <translation>低音小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="645"/>
+        <location filename="../instruments/instrumentsxml.h" line="660"/>
         <source>B. Tpt.</source>
         <extracomment>Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="646"/>
+        <location filename="../instruments/instrumentsxml.h" line="662"/>
         <source>Eâ™­ Bass Trumpet</source>
         <translation>降E調低音小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="648"/>
+        <location filename="../instruments/instrumentsxml.h" line="664"/>
         <source>Eâ™­ B. Tpt.</source>
         <extracomment>Eâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="649"/>
+        <location filename="../instruments/instrumentsxml.h" line="666"/>
         <source>Bass Trumpet in C</source>
         <translation>C調低音小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="651"/>
+        <location filename="../instruments/instrumentsxml.h" line="668"/>
         <source>B. Tpt. C</source>
         <extracomment>Bass Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="652"/>
+        <location filename="../instruments/instrumentsxml.h" line="670"/>
         <source>Bâ™­ Bass Trumpet</source>
         <translation>降B調低音小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="654"/>
+        <location filename="../instruments/instrumentsxml.h" line="672"/>
         <source>Bâ™­ B. Tpt.</source>
         <extracomment>Bâ™­ Bass Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="655"/>
+        <location filename="../instruments/instrumentsxml.h" line="674"/>
         <source>Baroque Trumpet</source>
         <translation>巴洛克小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="657"/>
+        <location filename="../instruments/instrumentsxml.h" line="676"/>
         <source>Bq. Tpt.</source>
         <extracomment>Baroque Trumpet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="658"/>
+        <location filename="../instruments/instrumentsxml.h" line="677"/>
         <source>Baroque Trumpet in F</source>
         <translation>F調巴洛克小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="660"/>
+        <location filename="../instruments/instrumentsxml.h" line="679"/>
         <source>Bq. Tpt. F</source>
         <extracomment>Baroque Trumpet in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="661"/>
+        <location filename="../instruments/instrumentsxml.h" line="680"/>
         <source>Baroque Trumpet in Eâ™­</source>
         <translation>降F調巴洛克小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="663"/>
+        <location filename="../instruments/instrumentsxml.h" line="682"/>
         <source>Bq. Tpt. Eâ™­</source>
         <extracomment>Baroque Trumpet in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="664"/>
+        <location filename="../instruments/instrumentsxml.h" line="683"/>
         <source>Baroque Trumpet in D</source>
         <translation>D調巴洛克小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="666"/>
+        <location filename="../instruments/instrumentsxml.h" line="685"/>
         <source>Bq. Tpt. D</source>
         <extracomment>Baroque Trumpet in D</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="667"/>
+        <location filename="../instruments/instrumentsxml.h" line="686"/>
         <source>Baroque Trumpet in C</source>
         <translation>C調巴洛克小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="669"/>
+        <location filename="../instruments/instrumentsxml.h" line="688"/>
         <source>Bq. Tpt. C</source>
         <extracomment>Baroque Trumpet in C</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="670"/>
+        <location filename="../instruments/instrumentsxml.h" line="689"/>
         <source>Baroque Trumpet in Bâ™­</source>
         <translation>降B調巴洛克小號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="672"/>
+        <location filename="../instruments/instrumentsxml.h" line="691"/>
         <source>Bq. Tpt. Bâ™­</source>
         <extracomment>Baroque Trumpet in Bâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="673"/>
+        <location filename="../instruments/instrumentsxml.h" line="692"/>
         <source>Rag Dung</source>
         <translation>西藏喇叭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="675"/>
+        <location filename="../instruments/instrumentsxml.h" line="694"/>
         <source>Rg. Dng.</source>
         <extracomment>Rag Dung</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="676"/>
+        <location filename="../instruments/instrumentsxml.h" line="695"/>
         <source>Bugle</source>
         <translation>軍號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="678"/>
+        <location filename="../instruments/instrumentsxml.h" line="697"/>
         <source>Bu.</source>
         <extracomment>Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="679"/>
+        <location filename="../instruments/instrumentsxml.h" line="698"/>
         <source>Soprano Bugle</source>
         <translation>高音軍號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="681"/>
+        <location filename="../instruments/instrumentsxml.h" line="700"/>
         <source>Sop. Bu.</source>
         <extracomment>Soprano Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="682"/>
+        <location filename="../instruments/instrumentsxml.h" line="701"/>
         <source>Alto Bugle</source>
         <translation>中音軍號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="684"/>
+        <location filename="../instruments/instrumentsxml.h" line="703"/>
         <source>Alt. Bu.</source>
         <extracomment>Alto Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="685"/>
+        <location filename="../instruments/instrumentsxml.h" line="704"/>
         <source>Baritone Bugle</source>
         <translation>上低音軍號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="687"/>
+        <location filename="../instruments/instrumentsxml.h" line="706"/>
         <source>Bar. Bu.</source>
         <extracomment>Baritone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="688"/>
+        <location filename="../instruments/instrumentsxml.h" line="707"/>
         <source>Flugelhorn</source>
         <translation>富魯格號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="690"/>
+        <location filename="../instruments/instrumentsxml.h" line="709"/>
         <source>Flghn.</source>
         <extracomment>Flugelhorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="691"/>
+        <location filename="../instruments/instrumentsxml.h" line="710"/>
         <source>Fiscorn</source>
         <translation>西班牙管銅號角</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="693"/>
+        <location filename="../instruments/instrumentsxml.h" line="712"/>
         <source>Fsc.</source>
         <extracomment>Fiscorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="694"/>
+        <location filename="../instruments/instrumentsxml.h" line="713"/>
         <source>Kuhlohorn</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="696"/>
+        <location filename="../instruments/instrumentsxml.h" line="715"/>
         <source>Klhn.</source>
         <extracomment>Kuhlohorn</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="697"/>
+        <location filename="../instruments/instrumentsxml.h" line="716"/>
         <source>Euphonium Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="700"/>
+        <location filename="../instruments/instrumentsxml.h" line="719"/>
         <source>Mellophone Bugle</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="702"/>
+        <location filename="../instruments/instrumentsxml.h" line="721"/>
         <source>Mel. Bu.</source>
         <extracomment>Mellophone Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="703"/>
+        <location filename="../instruments/instrumentsxml.h" line="722"/>
         <source>Contrabass Bugle</source>
         <translation>倍低音軍號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="705"/>
+        <location filename="../instruments/instrumentsxml.h" line="724"/>
         <source>Con. Bu.</source>
         <extracomment>Contrabass Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="706"/>
+        <location filename="../instruments/instrumentsxml.h" line="725"/>
         <source>Mellophone</source>
         <translation>行進圓號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="708"/>
+        <location filename="../instruments/instrumentsxml.h" line="727"/>
         <source>Mph.</source>
         <extracomment>Mellophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="709"/>
+        <location filename="../instruments/instrumentsxml.h" line="728"/>
         <source>Ophicleide</source>
         <translation>指孔大號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="711"/>
+        <location filename="../instruments/instrumentsxml.h" line="730"/>
         <source>Oph.</source>
         <extracomment>Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="712"/>
+        <location filename="../instruments/instrumentsxml.h" line="731"/>
         <source>F Alto Ophicleide</source>
         <translation>F調中音指孔大號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="714"/>
+        <location filename="../instruments/instrumentsxml.h" line="733"/>
         <source>F A. Oph.</source>
         <extracomment>F Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="715"/>
+        <location filename="../instruments/instrumentsxml.h" line="734"/>
         <source>Eâ™­ Alto Ophicleide</source>
         <translation>降E調中音指孔大號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="717"/>
+        <location filename="../instruments/instrumentsxml.h" line="736"/>
         <source>Eâ™­ A. Oph.</source>
         <extracomment>Eâ™­ Alto Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="718"/>
+        <location filename="../instruments/instrumentsxml.h" line="737"/>
         <source>C Bass Ophicleide</source>
         <translation>C調低音指孔大號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="720"/>
+        <location filename="../instruments/instrumentsxml.h" line="739"/>
         <source>C B. Oph.</source>
         <extracomment>C Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="721"/>
+        <location filename="../instruments/instrumentsxml.h" line="740"/>
         <source>Bâ™­ Bass Ophicleide</source>
         <translation>降B調低音指孔大號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="723"/>
+        <location filename="../instruments/instrumentsxml.h" line="742"/>
         <source>Bâ™­ B. Oph.</source>
         <extracomment>Bâ™­ Bass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="724"/>
+        <location filename="../instruments/instrumentsxml.h" line="743"/>
         <source>Eâ™­ Contrabass Ophicleide</source>
         <translation>䧏E調倍低音指孔大號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="726"/>
+        <location filename="../instruments/instrumentsxml.h" line="745"/>
         <source>Eâ™­ Cb. Oph.</source>
         <extracomment>Eâ™­ Contrabass Ophicleide</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="727"/>
+        <location filename="../instruments/instrumentsxml.h" line="746"/>
         <source>Cornettino</source>
         <translation>小號角</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="729"/>
-        <location filename="../instruments/instrumentsxml.h" line="732"/>
-        <location filename="../instruments/instrumentsxml.h" line="984"/>
+        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="751"/>
+        <location filename="../instruments/instrumentsxml.h" line="1003"/>
         <source>Co.</source>
         <extracomment>Cornettino
 ----------
@@ -2573,1632 +2604,1620 @@ Congas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="730"/>
+        <location filename="../instruments/instrumentsxml.h" line="749"/>
         <source>Cornett</source>
         <translation>木管號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="733"/>
+        <location filename="../instruments/instrumentsxml.h" line="752"/>
         <source>Soprano Cornett</source>
         <translation>高音木管號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="735"/>
+        <location filename="../instruments/instrumentsxml.h" line="754"/>
         <source>S. Co.</source>
         <extracomment>Soprano Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="736"/>
+        <location filename="../instruments/instrumentsxml.h" line="755"/>
         <source>Alto Cornett</source>
         <translation>中音木管號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="738"/>
+        <location filename="../instruments/instrumentsxml.h" line="757"/>
         <source>A. Co.</source>
         <extracomment>Alto Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="739"/>
+        <location filename="../instruments/instrumentsxml.h" line="758"/>
         <source>Tenor Cornett</source>
         <translation>次中音木管號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="741"/>
+        <location filename="../instruments/instrumentsxml.h" line="760"/>
         <source>T. Co.</source>
         <extracomment>Tenor Cornett</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="742"/>
+        <location filename="../instruments/instrumentsxml.h" line="761"/>
         <source>Serpent</source>
         <translation>蛇號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="744"/>
+        <location filename="../instruments/instrumentsxml.h" line="763"/>
         <source>Spt.</source>
         <extracomment>Serpent</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="745"/>
-        <location filename="../instruments/instrumentsxml.h" line="748"/>
+        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="767"/>
         <source>Trombone</source>
         <translation>長號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="747"/>
-        <location filename="../instruments/instrumentsxml.h" line="750"/>
+        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="769"/>
         <source>Trb.</source>
         <extracomment>Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="752"/>
+        <location filename="../instruments/instrumentsxml.h" line="770"/>
+        <source>Trombone (Treble Clef)</source>
+        <translation>長號(高音譜號)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="771"/>
         <source>Soprano Trombone</source>
         <translation>高音長號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="754"/>
+        <location filename="../instruments/instrumentsxml.h" line="773"/>
         <source>S. Trb.</source>
         <extracomment>Soprano Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="755"/>
+        <location filename="../instruments/instrumentsxml.h" line="774"/>
         <source>Alto Trombone</source>
         <translation>中音長號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="757"/>
+        <location filename="../instruments/instrumentsxml.h" line="776"/>
         <source>A. Trb.</source>
         <extracomment>Alto Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="758"/>
+        <location filename="../instruments/instrumentsxml.h" line="777"/>
         <source>Tenor Trombone</source>
         <translation>次中音長號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="760"/>
+        <location filename="../instruments/instrumentsxml.h" line="779"/>
         <source>T. Trb.</source>
         <extracomment>Tenor Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="761"/>
+        <location filename="../instruments/instrumentsxml.h" line="780"/>
         <source>Bass Trombone</source>
         <translation>低音長號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="763"/>
+        <location filename="../instruments/instrumentsxml.h" line="782"/>
         <source>B. Trb.</source>
         <extracomment>Bass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="764"/>
+        <location filename="../instruments/instrumentsxml.h" line="783"/>
         <source>Contrabass Trombone</source>
         <translation>倍低音長號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="766"/>
+        <location filename="../instruments/instrumentsxml.h" line="785"/>
         <source>Cb. Trb.</source>
         <extracomment>Contrabass Trombone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="767"/>
+        <location filename="../instruments/instrumentsxml.h" line="786"/>
         <source>Cimbasso</source>
         <translation>細管低音號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="769"/>
+        <location filename="../instruments/instrumentsxml.h" line="788"/>
         <source>Cim.</source>
         <extracomment>Cimbasso</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="770"/>
-        <location filename="../instruments/instrumentsxml.h" line="773"/>
+        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="792"/>
         <source>Euphonium</source>
         <translation>粗管上低音號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="777"/>
+        <location filename="../instruments/instrumentsxml.h" line="795"/>
+        <source>Euphonium (Treble Clef)</source>
+        <translation>粗管上低音號(高音譜號)</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="796"/>
         <source>Tuba</source>
         <translation>低音號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1020"/>
+        <location filename="../instruments/instrumentsxml.h" line="1039"/>
         <source>Tu.</source>
         <extracomment>Tubo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="780"/>
+        <location filename="../instruments/instrumentsxml.h" line="799"/>
         <source>F Tuba</source>
         <translation>F調低音號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="4"/>
-        <source>Early music</source>
-        <translation>早期音樂</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="61"/>
-        <location filename="../instruments/instrumentsxml.h" line="63"/>
-        <source>Bâ™­ Fife</source>
-        <extracomment>Bâ™­ Fife</extracomment>
-        <translation>降B調鼓笛</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="699"/>
+        <location filename="../instruments/instrumentsxml.h" line="718"/>
         <source>Euph. Bu.</source>
         <extracomment>Euphonium Bugle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="751"/>
-        <source>Trombone (Treble Clef)</source>
-        <translation>長號(高音譜號)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="772"/>
-        <location filename="../instruments/instrumentsxml.h" line="775"/>
+        <location filename="../instruments/instrumentsxml.h" line="791"/>
+        <location filename="../instruments/instrumentsxml.h" line="794"/>
         <source>Euph.</source>
         <extracomment>Euphonium</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="776"/>
-        <source>Euphonium (Treble Clef)</source>
-        <translation>粗管上低音號(高音譜號)</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="779"/>
+        <location filename="../instruments/instrumentsxml.h" line="798"/>
         <source>Tba.</source>
         <extracomment>Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="782"/>
+        <location filename="../instruments/instrumentsxml.h" line="801"/>
         <source>F Tu.</source>
         <extracomment>F Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="783"/>
-        <location filename="../instruments/instrumentsxml.h" line="786"/>
+        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="805"/>
         <source>Eâ™­ Tuba</source>
         <translation>降E調低音號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="785"/>
-        <location filename="../instruments/instrumentsxml.h" line="788"/>
+        <location filename="../instruments/instrumentsxml.h" line="804"/>
+        <location filename="../instruments/instrumentsxml.h" line="807"/>
         <source>Eâ™­ Tu.</source>
         <extracomment>Eâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="789"/>
+        <location filename="../instruments/instrumentsxml.h" line="808"/>
         <source>Eâ™­ Tuba (Treble Clef)</source>
         <translation>降E調低音號(高音譜號)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="790"/>
+        <location filename="../instruments/instrumentsxml.h" line="809"/>
         <source>C Tuba</source>
         <translation>C調低音號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="792"/>
+        <location filename="../instruments/instrumentsxml.h" line="811"/>
         <source>C Tu.</source>
         <extracomment>C Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="793"/>
-        <location filename="../instruments/instrumentsxml.h" line="796"/>
+        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="815"/>
         <source>Bâ™­ Tuba</source>
         <translation>降B調低音號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="795"/>
-        <location filename="../instruments/instrumentsxml.h" line="798"/>
+        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="817"/>
         <source>Bâ™­ Tu.</source>
         <extracomment>Bâ™­ Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="799"/>
+        <location filename="../instruments/instrumentsxml.h" line="818"/>
         <source>Bâ™­ Tuba (Treble Clef)</source>
         <translation>降B調低音號(高音譜號)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="800"/>
+        <location filename="../instruments/instrumentsxml.h" line="819"/>
         <source>Bass Tuba in F</source>
         <translation>F調低音土巴號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="802"/>
+        <location filename="../instruments/instrumentsxml.h" line="821"/>
         <source>Ba. Tu. F</source>
         <extracomment>Bass Tuba in F</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="803"/>
+        <location filename="../instruments/instrumentsxml.h" line="822"/>
         <source>Bass Tuba in Eâ™­</source>
         <translation>降E調低音土巴號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="805"/>
+        <location filename="../instruments/instrumentsxml.h" line="824"/>
         <source>Ba. Tu. Eâ™­</source>
         <extracomment>Bass Tuba in Eâ™­</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="806"/>
+        <location filename="../instruments/instrumentsxml.h" line="825"/>
         <source>Sub-Contrabass Tuba</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="808"/>
+        <location filename="../instruments/instrumentsxml.h" line="827"/>
         <source>SCB. Tu.</source>
         <extracomment>Sub-Contrabass Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="809"/>
-        <location filename="../instruments/instrumentsxml.h" line="811"/>
+        <location filename="../instruments/instrumentsxml.h" line="828"/>
+        <location filename="../instruments/instrumentsxml.h" line="830"/>
         <source>Helicon</source>
         <extracomment>Helicon</extracomment>
         <translation>黑里康大號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="812"/>
+        <location filename="../instruments/instrumentsxml.h" line="831"/>
         <source>Sousaphone</source>
         <translation>蘇沙號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="814"/>
+        <location filename="../instruments/instrumentsxml.h" line="833"/>
         <source>Sphn.</source>
         <extracomment>Sousaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="815"/>
+        <location filename="../instruments/instrumentsxml.h" line="834"/>
         <source>Wagner Tuba</source>
         <translation>華格納號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="817"/>
+        <location filename="../instruments/instrumentsxml.h" line="836"/>
         <source>Wag. Tu.</source>
         <extracomment>Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="818"/>
+        <location filename="../instruments/instrumentsxml.h" line="837"/>
         <source>Bâ™­ Wagner Tuba</source>
         <translation>降B調華格納號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="820"/>
+        <location filename="../instruments/instrumentsxml.h" line="839"/>
         <source>Bâ™­ Wag. Tu.</source>
         <extracomment>Bâ™­ Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="821"/>
+        <location filename="../instruments/instrumentsxml.h" line="840"/>
         <source>F Wagner Tuba</source>
         <translation>F調華格納號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="823"/>
+        <location filename="../instruments/instrumentsxml.h" line="842"/>
         <source>F Wag. Tu.</source>
         <extracomment>F Wagner Tuba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="824"/>
+        <location filename="../instruments/instrumentsxml.h" line="843"/>
         <source>Conch</source>
         <translation>螺角</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="826"/>
+        <location filename="../instruments/instrumentsxml.h" line="845"/>
         <source>Cnch.</source>
         <extracomment>Conch</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="827"/>
+        <location filename="../instruments/instrumentsxml.h" line="846"/>
         <source>Didgeridoo</source>
         <translation>迪吉里杜管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="829"/>
+        <location filename="../instruments/instrumentsxml.h" line="848"/>
         <source>Doo.</source>
         <extracomment>Didgeridoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="830"/>
+        <location filename="../instruments/instrumentsxml.h" line="849"/>
         <source>Horagai</source>
         <translation>法螺貝</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="832"/>
+        <location filename="../instruments/instrumentsxml.h" line="851"/>
         <source>Hor.</source>
         <extracomment>Horagai</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="833"/>
+        <location filename="../instruments/instrumentsxml.h" line="852"/>
         <source>Shofar</source>
         <translation>羊角號</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="835"/>
+        <location filename="../instruments/instrumentsxml.h" line="854"/>
         <source>Sho.</source>
         <extracomment>Shofar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="836"/>
+        <location filename="../instruments/instrumentsxml.h" line="855"/>
         <source>Vuvuzela</source>
         <translation>巫巫茲拉</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="838"/>
+        <location filename="../instruments/instrumentsxml.h" line="857"/>
         <source>Vuv.</source>
         <extracomment>Vuvuzela</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="839"/>
+        <location filename="../instruments/instrumentsxml.h" line="858"/>
         <source>Pitched Percussion</source>
         <translation>定音敲擊樂</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="840"/>
+        <location filename="../instruments/instrumentsxml.h" line="859"/>
         <source>Timpani</source>
         <translation>定音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="842"/>
+        <location filename="../instruments/instrumentsxml.h" line="861"/>
         <source>Timp.</source>
         <extracomment>Timpani</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="843"/>
+        <location filename="../instruments/instrumentsxml.h" line="862"/>
         <source>Roto-toms</source>
         <translation>旋轉鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="845"/>
+        <location filename="../instruments/instrumentsxml.h" line="864"/>
         <source>Rt-t.</source>
         <extracomment>Roto-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="846"/>
+        <location filename="../instruments/instrumentsxml.h" line="865"/>
         <source>Glockenspiel</source>
         <translation>鐘琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="848"/>
+        <location filename="../instruments/instrumentsxml.h" line="867"/>
         <source>Glk.</source>
         <extracomment>Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="849"/>
+        <location filename="../instruments/instrumentsxml.h" line="868"/>
         <source>Orff Soprano Glockenspiel</source>
         <translation>奧福高音鐘琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="851"/>
+        <location filename="../instruments/instrumentsxml.h" line="870"/>
         <source>O. S. Glk.</source>
         <extracomment>Orff Soprano Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="852"/>
+        <location filename="../instruments/instrumentsxml.h" line="871"/>
         <source>Orff Alto Glockenspiel</source>
         <translation>奧福中音鐘琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="854"/>
+        <location filename="../instruments/instrumentsxml.h" line="873"/>
         <source>O. A. Glk.</source>
         <extracomment>Orff Alto Glockenspiel</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="855"/>
+        <location filename="../instruments/instrumentsxml.h" line="874"/>
         <source>Crotales</source>
         <translation>鐃鈸</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="857"/>
+        <location filename="../instruments/instrumentsxml.h" line="876"/>
         <source>Cro.</source>
         <extracomment>Crotales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="858"/>
+        <location filename="../instruments/instrumentsxml.h" line="877"/>
         <source>Tubaphone</source>
         <translation>管鐘琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="860"/>
+        <location filename="../instruments/instrumentsxml.h" line="879"/>
         <source>Tph.</source>
         <extracomment>Tubaphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="861"/>
+        <location filename="../instruments/instrumentsxml.h" line="880"/>
         <source>Almglocken</source>
         <translation>阿爾卑斯牛鈴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="863"/>
+        <location filename="../instruments/instrumentsxml.h" line="882"/>
         <source>Agl.</source>
         <extracomment>Almglocken</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="864"/>
+        <location filename="../instruments/instrumentsxml.h" line="883"/>
         <source>Vibraphone</source>
         <translation>顫音琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="866"/>
+        <location filename="../instruments/instrumentsxml.h" line="885"/>
         <source>Vib.</source>
         <extracomment>Vibraphone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="867"/>
+        <location filename="../instruments/instrumentsxml.h" line="886"/>
         <source>Metallophone</source>
         <translation>鐵琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="869"/>
+        <location filename="../instruments/instrumentsxml.h" line="888"/>
         <source>Met.</source>
         <extracomment>Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="870"/>
+        <location filename="../instruments/instrumentsxml.h" line="889"/>
         <source>Orff Soprano Metallophone</source>
         <translation>奧福高音鐵琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="872"/>
+        <location filename="../instruments/instrumentsxml.h" line="891"/>
         <source>O. S. Met.</source>
         <extracomment>Orff Soprano Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="873"/>
+        <location filename="../instruments/instrumentsxml.h" line="892"/>
         <source>Orff Alto Metallophone</source>
         <translation>奧福中音鐵琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="875"/>
+        <location filename="../instruments/instrumentsxml.h" line="894"/>
         <source>O. A. Met.</source>
         <extracomment>Orff Alto Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="876"/>
+        <location filename="../instruments/instrumentsxml.h" line="895"/>
         <source>Orff Bass Metallophone</source>
         <translation>奧福低音鐵琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="878"/>
+        <location filename="../instruments/instrumentsxml.h" line="897"/>
         <source>O. B. Met.</source>
         <extracomment>Orff Bass Metallophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="879"/>
+        <location filename="../instruments/instrumentsxml.h" line="898"/>
         <source>Tubular Bells</source>
         <translation>管鐘</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="881"/>
+        <location filename="../instruments/instrumentsxml.h" line="900"/>
         <source>Tu. Be.</source>
         <extracomment>Tubular Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="882"/>
+        <location filename="../instruments/instrumentsxml.h" line="901"/>
         <source>Steel Drums</source>
         <translation>油桶音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="884"/>
+        <location filename="../instruments/instrumentsxml.h" line="903"/>
         <source>St. Dr.</source>
         <extracomment>Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="885"/>
+        <location filename="../instruments/instrumentsxml.h" line="904"/>
         <source>Soprano Steel Drums</source>
         <translation>高音油桶音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="887"/>
+        <location filename="../instruments/instrumentsxml.h" line="906"/>
         <source>S. St. Dr.</source>
         <extracomment>Soprano Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="888"/>
+        <location filename="../instruments/instrumentsxml.h" line="907"/>
         <source>Alto Steel Drums</source>
         <translation>中音油桶音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="890"/>
+        <location filename="../instruments/instrumentsxml.h" line="909"/>
         <source>A. St. Dr.</source>
         <extracomment>Alto Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="891"/>
+        <location filename="../instruments/instrumentsxml.h" line="910"/>
         <source>Guitar Steel Drums</source>
         <translation>吉他油桶音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="893"/>
+        <location filename="../instruments/instrumentsxml.h" line="912"/>
         <source>Gtr. St. Dr.</source>
         <extracomment>Guitar Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="894"/>
+        <location filename="../instruments/instrumentsxml.h" line="913"/>
         <source>Tenor Steel Drums</source>
         <translation>次中音油桶音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="896"/>
+        <location filename="../instruments/instrumentsxml.h" line="915"/>
         <source>T. St. Dr.</source>
         <extracomment>Tenor Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="897"/>
+        <location filename="../instruments/instrumentsxml.h" line="916"/>
         <source>Cello Steel Drums</source>
         <translation>上低音油桶音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="899"/>
+        <location filename="../instruments/instrumentsxml.h" line="918"/>
         <source>Ce. St. Dr.</source>
         <extracomment>Cello Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="900"/>
+        <location filename="../instruments/instrumentsxml.h" line="919"/>
         <source>Bass Steel Drums</source>
         <translation>低音油桶音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="902"/>
+        <location filename="../instruments/instrumentsxml.h" line="921"/>
         <source>B. St. Dr.</source>
         <extracomment>Bass Steel Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="903"/>
+        <location filename="../instruments/instrumentsxml.h" line="922"/>
         <source>Hand Bells</source>
         <translation>手搖鈴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="905"/>
+        <location filename="../instruments/instrumentsxml.h" line="924"/>
         <source>Ha. Be.</source>
         <extracomment>Hand Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="906"/>
+        <location filename="../instruments/instrumentsxml.h" line="925"/>
         <source>Tuned Gongs</source>
         <translation>定音鑼</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="908"/>
+        <location filename="../instruments/instrumentsxml.h" line="927"/>
         <source>Td. Go.</source>
         <extracomment>Tuned Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="909"/>
+        <location filename="../instruments/instrumentsxml.h" line="928"/>
         <source>Flexatone</source>
         <translation>彈音器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="911"/>
+        <location filename="../instruments/instrumentsxml.h" line="930"/>
         <source>Flt.</source>
         <extracomment>Flexatone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="912"/>
+        <location filename="../instruments/instrumentsxml.h" line="931"/>
         <source>Musical Saw</source>
         <translation>鋸琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="914"/>
+        <location filename="../instruments/instrumentsxml.h" line="933"/>
         <source>Mu. Sw.</source>
         <extracomment>Musical Saw</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="915"/>
+        <location filename="../instruments/instrumentsxml.h" line="934"/>
         <source>Musical Glasses</source>
         <translation>玻璃樂器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="917"/>
+        <location filename="../instruments/instrumentsxml.h" line="936"/>
         <source>Mu. Gla.</source>
         <extracomment>Musical Glasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="918"/>
+        <location filename="../instruments/instrumentsxml.h" line="937"/>
         <source>Glass Harmonica</source>
         <translation>玻璃琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="920"/>
+        <location filename="../instruments/instrumentsxml.h" line="939"/>
         <source>Gla. Har.</source>
         <extracomment>Glass Harmonica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="921"/>
+        <location filename="../instruments/instrumentsxml.h" line="940"/>
         <source>Xylophone</source>
         <translation>木琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="923"/>
+        <location filename="../instruments/instrumentsxml.h" line="942"/>
         <source>Xyl.</source>
         <extracomment>Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="924"/>
+        <location filename="../instruments/instrumentsxml.h" line="943"/>
         <source>Orff Soprano Xylophone</source>
         <translation>奧福高音木琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="926"/>
+        <location filename="../instruments/instrumentsxml.h" line="945"/>
         <source>O. S. Xyl.</source>
         <extracomment>Orff Soprano Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="927"/>
+        <location filename="../instruments/instrumentsxml.h" line="946"/>
         <source>Orff Alto Xylophone</source>
         <translation>奧福中音木琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="929"/>
+        <location filename="../instruments/instrumentsxml.h" line="948"/>
         <source>O. A. Xyl.</source>
         <extracomment>Orff Alto Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="930"/>
+        <location filename="../instruments/instrumentsxml.h" line="949"/>
         <source>Orff Bass Xylophone</source>
         <translation>奧福低音木琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="932"/>
+        <location filename="../instruments/instrumentsxml.h" line="951"/>
         <source>O. B. Xyl.</source>
         <extracomment>Orff Bass Xylophone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="933"/>
+        <location filename="../instruments/instrumentsxml.h" line="952"/>
         <source>Xylomarimba</source>
         <translation>小型馬林巴琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="935"/>
+        <location filename="../instruments/instrumentsxml.h" line="954"/>
         <source>XMrm.</source>
         <extracomment>Xylomarimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="936"/>
+        <location filename="../instruments/instrumentsxml.h" line="955"/>
         <source>Marimba</source>
         <translation>馬林巴琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="938"/>
+        <location filename="../instruments/instrumentsxml.h" line="957"/>
         <source>Mrm.</source>
         <extracomment>Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="939"/>
+        <location filename="../instruments/instrumentsxml.h" line="958"/>
         <source>Bass Marimba</source>
         <translation>低音馬林巴琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="941"/>
+        <location filename="../instruments/instrumentsxml.h" line="960"/>
         <source>B. Mrm.</source>
         <extracomment>Bass Marimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="942"/>
+        <location filename="../instruments/instrumentsxml.h" line="961"/>
         <source>Dulcimer</source>
         <translation>揚琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="944"/>
+        <location filename="../instruments/instrumentsxml.h" line="963"/>
         <source>Dlc.</source>
         <extracomment>Dulcimer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="945"/>
+        <location filename="../instruments/instrumentsxml.h" line="964"/>
         <source>Tuned Klaxon Horns</source>
         <translation>定音電號角</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="947"/>
+        <location filename="../instruments/instrumentsxml.h" line="966"/>
         <source>Tn. Klx. Hns.</source>
         <extracomment>Tuned Klaxon Horns</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="948"/>
+        <location filename="../instruments/instrumentsxml.h" line="967"/>
         <source>Kalimba</source>
         <translation>拇指琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="950"/>
+        <location filename="../instruments/instrumentsxml.h" line="969"/>
         <source>Kal.</source>
         <extracomment>Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="951"/>
+        <location filename="../instruments/instrumentsxml.h" line="970"/>
         <source>Treble Kalimba</source>
         <translation>高音拇指琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="953"/>
+        <location filename="../instruments/instrumentsxml.h" line="972"/>
         <source>Tr. Kal.</source>
         <extracomment>Treble Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="954"/>
+        <location filename="../instruments/instrumentsxml.h" line="973"/>
         <source>Alto Kalimba</source>
         <translation>中音拇指琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="956"/>
+        <location filename="../instruments/instrumentsxml.h" line="975"/>
         <source>A. Kal.</source>
         <extracomment>Alto Kalimba</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="957"/>
+        <location filename="../instruments/instrumentsxml.h" line="976"/>
         <source>Unpitched Percussion</source>
         <translation>無定音敲擊樂</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="958"/>
+        <location filename="../instruments/instrumentsxml.h" line="977"/>
         <source>Drumset</source>
         <translation>鼓組</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="960"/>
+        <location filename="../instruments/instrumentsxml.h" line="979"/>
         <source>Drs.</source>
         <extracomment>Drumset</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="961"/>
-        <location filename="../instruments/instrumentsxml.h" line="1133"/>
+        <location filename="../instruments/instrumentsxml.h" line="980"/>
+        <location filename="../instruments/instrumentsxml.h" line="1152"/>
         <source>Snare Drum</source>
         <translation>小鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="963"/>
+        <location filename="../instruments/instrumentsxml.h" line="982"/>
         <source>Sn. Dr.</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="964"/>
+        <location filename="../instruments/instrumentsxml.h" line="983"/>
         <source>Bass Drum</source>
         <translation>低音鼓 (大鼓)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="966"/>
+        <location filename="../instruments/instrumentsxml.h" line="985"/>
         <source>B. Dr.</source>
         <extracomment>Bass Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="967"/>
+        <location filename="../instruments/instrumentsxml.h" line="986"/>
         <source>Piccolo Snare Drum</source>
         <translation>高音小鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="969"/>
+        <location filename="../instruments/instrumentsxml.h" line="988"/>
         <source>P. Sn. Dr.</source>
         <extracomment>Piccolo Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="970"/>
+        <location filename="../instruments/instrumentsxml.h" line="989"/>
         <source>Military Drum</source>
         <translation>軍鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="972"/>
+        <location filename="../instruments/instrumentsxml.h" line="991"/>
         <source>Mil. Dr.</source>
         <extracomment>Military Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="973"/>
+        <location filename="../instruments/instrumentsxml.h" line="992"/>
         <source>Tom Toms</source>
         <translation>筒狀鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="975"/>
+        <location filename="../instruments/instrumentsxml.h" line="994"/>
         <source>Toms</source>
         <extracomment>Tom Toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="976"/>
+        <location filename="../instruments/instrumentsxml.h" line="995"/>
         <source>Chinese Tom-toms</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="978"/>
+        <location filename="../instruments/instrumentsxml.h" line="997"/>
         <source>Ch. To.</source>
         <extracomment>Chinese Tom-toms</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="979"/>
+        <location filename="../instruments/instrumentsxml.h" line="998"/>
         <source>Bongos</source>
         <translation>邦哥鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="981"/>
+        <location filename="../instruments/instrumentsxml.h" line="1000"/>
         <source>Bo.</source>
         <extracomment>Bongos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="982"/>
+        <location filename="../instruments/instrumentsxml.h" line="1001"/>
         <source>Congas</source>
         <translation>康加鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="985"/>
+        <location filename="../instruments/instrumentsxml.h" line="1004"/>
         <source>Timbales</source>
         <translation>天巴雷鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="987"/>
+        <location filename="../instruments/instrumentsxml.h" line="1006"/>
         <source>Timb.</source>
         <extracomment>Timbales</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="988"/>
+        <location filename="../instruments/instrumentsxml.h" line="1007"/>
         <source>Frame Drum</source>
         <translation>框鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="990"/>
+        <location filename="../instruments/instrumentsxml.h" line="1009"/>
         <source>Fr. Dr.</source>
         <extracomment>Frame Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="991"/>
+        <location filename="../instruments/instrumentsxml.h" line="1010"/>
         <source>Tablas</source>
         <translation>塔布拉鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="993"/>
+        <location filename="../instruments/instrumentsxml.h" line="1012"/>
         <source>Tbs.</source>
         <extracomment>Tablas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="994"/>
+        <location filename="../instruments/instrumentsxml.h" line="1013"/>
         <source>Cuica</source>
         <translation>鋸加鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="996"/>
+        <location filename="../instruments/instrumentsxml.h" line="1015"/>
         <source>Cu.</source>
         <extracomment>Cuica</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="997"/>
+        <location filename="../instruments/instrumentsxml.h" line="1016"/>
         <source>Finger Cymbals</source>
         <translation>指鈸</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="999"/>
+        <location filename="../instruments/instrumentsxml.h" line="1018"/>
         <source>Fi. Cym.</source>
         <extracomment>Finger Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1000"/>
-        <location filename="../instruments/instrumentsxml.h" line="1002"/>
+        <location filename="../instruments/instrumentsxml.h" line="1019"/>
+        <location filename="../instruments/instrumentsxml.h" line="1021"/>
         <source>Hi-hat</source>
         <extracomment>Hi-hat</extracomment>
         <translation>帽鈸</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1003"/>
-        <location filename="../instruments/instrumentsxml.h" line="1005"/>
+        <location filename="../instruments/instrumentsxml.h" line="1022"/>
+        <location filename="../instruments/instrumentsxml.h" line="1024"/>
         <source>Tam-tam</source>
         <extracomment>Tam-tam</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1006"/>
+        <location filename="../instruments/instrumentsxml.h" line="1025"/>
         <source>Bells</source>
         <translation>鐘</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1008"/>
+        <location filename="../instruments/instrumentsxml.h" line="1027"/>
         <source>Be.</source>
         <extracomment>Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1009"/>
+        <location filename="../instruments/instrumentsxml.h" line="1028"/>
         <source>Sleigh Bells</source>
         <translation>搖鈴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1011"/>
+        <location filename="../instruments/instrumentsxml.h" line="1030"/>
         <source>Sle. Be.</source>
         <extracomment>Sleigh Bells</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1012"/>
+        <location filename="../instruments/instrumentsxml.h" line="1031"/>
         <source>Bell Plate</source>
         <translation>鐘音板</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1014"/>
+        <location filename="../instruments/instrumentsxml.h" line="1033"/>
         <source>Be. Pla.</source>
         <extracomment>Bell Plate</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1015"/>
+        <location filename="../instruments/instrumentsxml.h" line="1034"/>
         <source>Bowl Gongs</source>
         <translation>磬</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1017"/>
+        <location filename="../instruments/instrumentsxml.h" line="1036"/>
         <source>Bw. Go.</source>
         <extracomment>Bowl Gongs</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1018"/>
+        <location filename="../instruments/instrumentsxml.h" line="1037"/>
         <source>Tubo</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1021"/>
+        <location filename="../instruments/instrumentsxml.h" line="1040"/>
         <source>Metal Castanets</source>
         <translation>鐵響板</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1023"/>
+        <location filename="../instruments/instrumentsxml.h" line="1042"/>
         <source>Met. Cst.</source>
         <extracomment>Metal Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1024"/>
+        <location filename="../instruments/instrumentsxml.h" line="1043"/>
         <source>Automobile Brake Drums</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1026"/>
+        <location filename="../instruments/instrumentsxml.h" line="1045"/>
         <source>Aut. Brk. Dr.</source>
         <extracomment>Automobile Brake Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1027"/>
+        <location filename="../instruments/instrumentsxml.h" line="1046"/>
         <source>Iron Pipes</source>
         <translation>鐵管</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1029"/>
+        <location filename="../instruments/instrumentsxml.h" line="1048"/>
         <source>Ir. Pi.</source>
         <extracomment>Iron Pipes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1030"/>
+        <location filename="../instruments/instrumentsxml.h" line="1049"/>
         <source>Chains</source>
         <translation>鏈</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1032"/>
+        <location filename="../instruments/instrumentsxml.h" line="1051"/>
         <source>Chn.</source>
         <extracomment>Chains</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1033"/>
+        <location filename="../instruments/instrumentsxml.h" line="1052"/>
         <source>Anvil</source>
         <translation>鐵砧</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1035"/>
+        <location filename="../instruments/instrumentsxml.h" line="1054"/>
         <source>Anv.</source>
         <extracomment>Anvil</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1036"/>
+        <location filename="../instruments/instrumentsxml.h" line="1055"/>
         <source>Wood Blocks</source>
         <translation>梆子</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1038"/>
+        <location filename="../instruments/instrumentsxml.h" line="1057"/>
         <source>Wd. Bl.</source>
         <extracomment>Wood Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1039"/>
+        <location filename="../instruments/instrumentsxml.h" line="1058"/>
         <source>Temple Blocks</source>
         <translation>木魚</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1041"/>
+        <location filename="../instruments/instrumentsxml.h" line="1060"/>
         <source>Tmp. Bl.</source>
         <extracomment>Temple Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1042"/>
+        <location filename="../instruments/instrumentsxml.h" line="1061"/>
         <source>Triangle</source>
         <translation>三角鐵</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1044"/>
+        <location filename="../instruments/instrumentsxml.h" line="1063"/>
         <source>Trgl.</source>
         <extracomment>Triangle</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1045"/>
+        <location filename="../instruments/instrumentsxml.h" line="1064"/>
         <source>Cymbal</source>
         <translation>鈸</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1047"/>
+        <location filename="../instruments/instrumentsxml.h" line="1066"/>
         <source>Cym.</source>
         <extracomment>Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1048"/>
+        <location filename="../instruments/instrumentsxml.h" line="1067"/>
         <source>Ride Cymbal</source>
         <translation>疊音鈸</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1050"/>
+        <location filename="../instruments/instrumentsxml.h" line="1069"/>
         <source>R. Cym.</source>
         <extracomment>Ride Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1051"/>
+        <location filename="../instruments/instrumentsxml.h" line="1070"/>
         <source>Chinese Cymbal</source>
         <translation>中國鈸</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1053"/>
+        <location filename="../instruments/instrumentsxml.h" line="1072"/>
         <source>Ch. Cym.</source>
         <extracomment>Chinese Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1054"/>
+        <location filename="../instruments/instrumentsxml.h" line="1073"/>
         <source>Crash Cymbal</source>
         <translation>碎音鈸</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1056"/>
+        <location filename="../instruments/instrumentsxml.h" line="1075"/>
         <source>Cr. Cym.</source>
         <extracomment>Crash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1057"/>
+        <location filename="../instruments/instrumentsxml.h" line="1076"/>
         <source>Splash Cymbal</source>
         <translation>水鈸</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1059"/>
+        <location filename="../instruments/instrumentsxml.h" line="1078"/>
         <source>Sp. Cym.</source>
         <extracomment>Splash Cymbal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1060"/>
+        <location filename="../instruments/instrumentsxml.h" line="1079"/>
         <source>Cowbell</source>
         <translation>牛鈴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1062"/>
+        <location filename="../instruments/instrumentsxml.h" line="1081"/>
         <source>Cwb.</source>
         <extracomment>Cowbell</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1063"/>
+        <location filename="../instruments/instrumentsxml.h" line="1082"/>
         <source>Claves</source>
         <translation>擊木</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1065"/>
+        <location filename="../instruments/instrumentsxml.h" line="1084"/>
         <source>Clv.</source>
         <extracomment>Claves</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1066"/>
+        <location filename="../instruments/instrumentsxml.h" line="1085"/>
         <source>Castanets</source>
         <translation>響板</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1068"/>
+        <location filename="../instruments/instrumentsxml.h" line="1087"/>
         <source>Cst.</source>
         <extracomment>Castanets</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1069"/>
+        <location filename="../instruments/instrumentsxml.h" line="1088"/>
         <source>Guiro</source>
         <translation>刮葫</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1071"/>
+        <location filename="../instruments/instrumentsxml.h" line="1090"/>
         <source>Gro.</source>
         <extracomment>Guiro</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1072"/>
+        <location filename="../instruments/instrumentsxml.h" line="1091"/>
         <source>Maracas</source>
         <translation>砂鈴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1074"/>
+        <location filename="../instruments/instrumentsxml.h" line="1093"/>
         <source>Mrcs.</source>
         <extracomment>Maracas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1075"/>
+        <location filename="../instruments/instrumentsxml.h" line="1094"/>
         <source>Cabasa</source>
         <translation>鐵砂鈴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1077"/>
+        <location filename="../instruments/instrumentsxml.h" line="1096"/>
         <source>Cab.</source>
         <extracomment>Cabasa</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1078"/>
+        <location filename="../instruments/instrumentsxml.h" line="1097"/>
         <source>Quijada</source>
         <translation>吉哈達顎骨</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1080"/>
+        <location filename="../instruments/instrumentsxml.h" line="1099"/>
         <source>Qui.</source>
         <extracomment>Quijada</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1081"/>
+        <location filename="../instruments/instrumentsxml.h" line="1100"/>
         <source>Vibraslap</source>
         <translation>搖棒</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1083"/>
+        <location filename="../instruments/instrumentsxml.h" line="1102"/>
         <source>Vibslp.</source>
         <extracomment>Vibraslap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1084"/>
+        <location filename="../instruments/instrumentsxml.h" line="1103"/>
         <source>Slit Drum</source>
         <translation>木縫鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1086"/>
+        <location filename="../instruments/instrumentsxml.h" line="1105"/>
         <source>Slt. Dr.</source>
         <extracomment>Slit Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1087"/>
+        <location filename="../instruments/instrumentsxml.h" line="1106"/>
         <source>Whip</source>
         <translation>鞭子</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1089"/>
+        <location filename="../instruments/instrumentsxml.h" line="1108"/>
         <source>Wh.</source>
         <extracomment>Whip</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1090"/>
+        <location filename="../instruments/instrumentsxml.h" line="1109"/>
         <source>Ratchet</source>
         <translation>棘輪</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1092"/>
+        <location filename="../instruments/instrumentsxml.h" line="1111"/>
         <source>Rat.</source>
         <extracomment>Ratchet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1093"/>
+        <location filename="../instruments/instrumentsxml.h" line="1112"/>
         <source>Thundersheet</source>
         <translation>雷鳴器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1095"/>
+        <location filename="../instruments/instrumentsxml.h" line="1114"/>
         <source>Thu.</source>
         <extracomment>Thundersheet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1096"/>
+        <location filename="../instruments/instrumentsxml.h" line="1115"/>
         <source>Sandpaper Blocks</source>
         <translation>砂紙板</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1098"/>
+        <location filename="../instruments/instrumentsxml.h" line="1117"/>
         <source>Sa. Bl.</source>
         <extracomment>Sandpaper Blocks</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1099"/>
+        <location filename="../instruments/instrumentsxml.h" line="1118"/>
         <source>Wooden Wind Chimes</source>
         <translation>木風鈴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1101"/>
+        <location filename="../instruments/instrumentsxml.h" line="1120"/>
         <source>Wd. Wn. Ch.</source>
         <extracomment>Wooden Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1102"/>
+        <location filename="../instruments/instrumentsxml.h" line="1121"/>
         <source>Bamboo Wind Chimes</source>
         <translation>竹風鈴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1104"/>
+        <location filename="../instruments/instrumentsxml.h" line="1123"/>
         <source>Bam. Wn. Ch.</source>
         <extracomment>Bamboo Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1105"/>
+        <location filename="../instruments/instrumentsxml.h" line="1124"/>
         <source>Metal Wind Chimes</source>
         <translation>鐵風鈴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1107"/>
+        <location filename="../instruments/instrumentsxml.h" line="1126"/>
         <source>Met. Wn Ch.</source>
         <extracomment>Metal Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1108"/>
+        <location filename="../instruments/instrumentsxml.h" line="1127"/>
         <source>Glass Wind Chimes</source>
         <translation>玻璃風鈴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1110"/>
+        <location filename="../instruments/instrumentsxml.h" line="1129"/>
         <source>Gl. Wn Ch.</source>
         <extracomment>Glass Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1111"/>
+        <location filename="../instruments/instrumentsxml.h" line="1130"/>
         <source>Shell Wind Chimes</source>
         <translation>貝殼風鈴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1113"/>
+        <location filename="../instruments/instrumentsxml.h" line="1132"/>
         <source>Sh. Wn Ch.</source>
         <extracomment>Shell Wind Chimes</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1114"/>
+        <location filename="../instruments/instrumentsxml.h" line="1133"/>
         <source>Stones</source>
         <translation>石頭</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1116"/>
+        <location filename="../instruments/instrumentsxml.h" line="1135"/>
         <source>Sto.</source>
         <extracomment>Stones</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1117"/>
+        <location filename="../instruments/instrumentsxml.h" line="1136"/>
         <source>Finger Snap</source>
         <translation>打響指</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1119"/>
+        <location filename="../instruments/instrumentsxml.h" line="1138"/>
         <source>Fi. Sna.</source>
         <extracomment>Finger Snap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1120"/>
+        <location filename="../instruments/instrumentsxml.h" line="1139"/>
         <source>Hand Clap</source>
         <translation>拍手</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1122"/>
+        <location filename="../instruments/instrumentsxml.h" line="1141"/>
         <source>Hd. Clp.</source>
         <extracomment>Hand Clap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1123"/>
+        <location filename="../instruments/instrumentsxml.h" line="1142"/>
         <source>Slap</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1125"/>
+        <location filename="../instruments/instrumentsxml.h" line="1144"/>
         <source>Sla.</source>
         <extracomment>Slap</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1126"/>
+        <location filename="../instruments/instrumentsxml.h" line="1145"/>
         <source>Stamp</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1128"/>
+        <location filename="../instruments/instrumentsxml.h" line="1147"/>
         <source>Sta.</source>
         <extracomment>Stamp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1129"/>
+        <location filename="../instruments/instrumentsxml.h" line="1148"/>
         <source>Tambourine</source>
         <translation>鈴鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1131"/>
+        <location filename="../instruments/instrumentsxml.h" line="1150"/>
         <source>Tamb.</source>
         <extracomment>Tambourine</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1132"/>
+        <location filename="../instruments/instrumentsxml.h" line="1151"/>
         <source>Marching Percussion</source>
         <translation>行進敲擊樂</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1135"/>
+        <location filename="../instruments/instrumentsxml.h" line="1154"/>
         <source>SD</source>
         <extracomment>Snare Drum</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1136"/>
+        <location filename="../instruments/instrumentsxml.h" line="1155"/>
         <source>Tenor Drums</source>
         <translation>中音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1138"/>
+        <location filename="../instruments/instrumentsxml.h" line="1157"/>
         <source>TD</source>
         <extracomment>Tenor Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1139"/>
+        <location filename="../instruments/instrumentsxml.h" line="1158"/>
         <source>Bass Drums</source>
         <translation>低音鼓</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1141"/>
+        <location filename="../instruments/instrumentsxml.h" line="1160"/>
         <source>BD</source>
         <extracomment>Bass Drums</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1142"/>
+        <location filename="../instruments/instrumentsxml.h" line="1161"/>
         <source>Cymbals</source>
         <translation>鈸</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1144"/>
+        <location filename="../instruments/instrumentsxml.h" line="1163"/>
         <source>Cy</source>
         <extracomment>Cymbals</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1145"/>
+        <location filename="../instruments/instrumentsxml.h" line="1164"/>
         <source>Vocals</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1146"/>
+        <location filename="../instruments/instrumentsxml.h" line="1165"/>
         <source>Voice</source>
         <translation>聲部</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1148"/>
+        <location filename="../instruments/instrumentsxml.h" line="1167"/>
         <source>Vo.</source>
         <extracomment>Voice</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1149"/>
+        <location filename="../instruments/instrumentsxml.h" line="1168"/>
         <source>Boy Soprano</source>
         <translation>男童高音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1151"/>
+        <location filename="../instruments/instrumentsxml.h" line="1170"/>
         <source>B. S.</source>
         <extracomment>Boy Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1152"/>
+        <location filename="../instruments/instrumentsxml.h" line="1171"/>
         <source>Soprano</source>
         <translation>女高音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1154"/>
+        <location filename="../instruments/instrumentsxml.h" line="1173"/>
         <source>S.</source>
         <extracomment>Soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1155"/>
+        <location filename="../instruments/instrumentsxml.h" line="1174"/>
         <source>Mezzo-soprano</source>
         <translation>女中音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1157"/>
+        <location filename="../instruments/instrumentsxml.h" line="1176"/>
         <source>Mzs.</source>
         <extracomment>Mezzo-soprano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1158"/>
+        <location filename="../instruments/instrumentsxml.h" line="1177"/>
         <source>Alto</source>
         <translation>女低音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1160"/>
+        <location filename="../instruments/instrumentsxml.h" line="1179"/>
         <source>A.</source>
         <extracomment>Alto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1161"/>
+        <location filename="../instruments/instrumentsxml.h" line="1180"/>
         <source>Contralto</source>
         <translation>女倍低音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1163"/>
+        <location filename="../instruments/instrumentsxml.h" line="1182"/>
         <source>Contr.</source>
         <extracomment>Contralto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1164"/>
+        <location filename="../instruments/instrumentsxml.h" line="1183"/>
         <source>Countertenor</source>
         <translation>男倍高音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1166"/>
+        <location filename="../instruments/instrumentsxml.h" line="1185"/>
         <source>Ct.</source>
         <extracomment>Countertenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1167"/>
+        <location filename="../instruments/instrumentsxml.h" line="1186"/>
         <source>Tenor</source>
         <translation>男高音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1169"/>
+        <location filename="../instruments/instrumentsxml.h" line="1188"/>
         <source>T.</source>
         <extracomment>Tenor</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1170"/>
+        <location filename="../instruments/instrumentsxml.h" line="1189"/>
         <source>Baritone</source>
         <translation>男中音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1172"/>
+        <location filename="../instruments/instrumentsxml.h" line="1191"/>
         <source>Bar.</source>
         <extracomment>Baritone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1173"/>
-        <location filename="../instruments/instrumentsxml.h" line="1476"/>
+        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1517"/>
         <source>Bass</source>
         <extracomment>Acoustic Bass</extracomment>
         <translation>男低音</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1175"/>
+        <location filename="../instruments/instrumentsxml.h" line="1194"/>
         <source>B.</source>
         <extracomment>Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1176"/>
+        <location filename="../instruments/instrumentsxml.h" line="1195"/>
         <source>Kazoo</source>
         <translation>卡祖</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1178"/>
+        <location filename="../instruments/instrumentsxml.h" line="1197"/>
         <source>Kaz.</source>
         <extracomment>Kazoo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1179"/>
+        <location filename="../instruments/instrumentsxml.h" line="1198"/>
         <source>Keyboards</source>
         <translation>鍵盤</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1180"/>
+        <location filename="../instruments/instrumentsxml.h" line="1199"/>
         <source>Piano</source>
         <translation>鋼琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1182"/>
-        <location filename="../instruments/instrumentsxml.h" line="1185"/>
-        <location filename="../instruments/instrumentsxml.h" line="1188"/>
+        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1207"/>
         <source>Pno.</source>
         <extracomment>Piano
 ----------
@@ -4208,111 +4227,111 @@ Upright Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1183"/>
+        <location filename="../instruments/instrumentsxml.h" line="1202"/>
         <source>Grand Piano</source>
         <translation>平臺鋼琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1186"/>
+        <location filename="../instruments/instrumentsxml.h" line="1205"/>
         <source>Upright Piano</source>
         <translation>立式鋼琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1189"/>
+        <location filename="../instruments/instrumentsxml.h" line="1208"/>
         <source>Honky Tonk Piano</source>
         <translation>酒吧鋼琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1191"/>
+        <location filename="../instruments/instrumentsxml.h" line="1210"/>
         <source>Hnk. Pno.</source>
         <extracomment>Honky Tonk Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1192"/>
+        <location filename="../instruments/instrumentsxml.h" line="1211"/>
         <source>Toy Piano</source>
         <translation>玩具鋼琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1194"/>
+        <location filename="../instruments/instrumentsxml.h" line="1213"/>
         <source>Toy Pno.</source>
         <extracomment>Toy Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1195"/>
+        <location filename="../instruments/instrumentsxml.h" line="1214"/>
         <source>Clavichord</source>
         <translation>古鋼琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1197"/>
+        <location filename="../instruments/instrumentsxml.h" line="1216"/>
         <source>Cch.</source>
         <extracomment>Clavichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1198"/>
+        <location filename="../instruments/instrumentsxml.h" line="1217"/>
         <source>Harpsichord</source>
         <translation>大鍵琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1200"/>
+        <location filename="../instruments/instrumentsxml.h" line="1219"/>
         <source>Hch.</source>
         <extracomment>Harpsichord</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1201"/>
+        <location filename="../instruments/instrumentsxml.h" line="1220"/>
         <source>Virginal</source>
         <translation>古鍵琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1203"/>
+        <location filename="../instruments/instrumentsxml.h" line="1222"/>
         <source>Vir.</source>
         <extracomment>Virginal</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1204"/>
+        <location filename="../instruments/instrumentsxml.h" line="1223"/>
         <source>Celesta</source>
         <translation>鋼片琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1206"/>
+        <location filename="../instruments/instrumentsxml.h" line="1225"/>
         <source>Cel.</source>
         <extracomment>Celesta</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1207"/>
+        <location filename="../instruments/instrumentsxml.h" line="1226"/>
         <source>Electric Piano</source>
         <translation>電鋼琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1209"/>
+        <location filename="../instruments/instrumentsxml.h" line="1228"/>
         <source>El. Pno.</source>
         <extracomment>Electric Piano</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1210"/>
+        <location filename="../instruments/instrumentsxml.h" line="1229"/>
         <source>Clavinet</source>
         <translation>電翼琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1212"/>
+        <location filename="../instruments/instrumentsxml.h" line="1231"/>
         <source>Clav.</source>
         <extracomment>Clavinet</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1213"/>
+        <location filename="../instruments/instrumentsxml.h" line="1232"/>
         <source>Organ</source>
         <translation>風琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1215"/>
-        <location filename="../instruments/instrumentsxml.h" line="1227"/>
+        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1246"/>
         <source>Org.</source>
         <extracomment>Organ
 ----------
@@ -4320,81 +4339,72 @@ Pipe Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1216"/>
+        <location filename="../instruments/instrumentsxml.h" line="1235"/>
         <source>Percussive Organ</source>
         <translation>敲擊風琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1218"/>
+        <location filename="../instruments/instrumentsxml.h" line="1237"/>
         <source>Perc. Org.</source>
         <extracomment>Percussive Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1219"/>
+        <location filename="../instruments/instrumentsxml.h" line="1238"/>
         <source>Hammond Organ</source>
         <translation>漢蒙式電風琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1221"/>
+        <location filename="../instruments/instrumentsxml.h" line="1240"/>
         <source>Hm. Org.</source>
         <extracomment>Hammond Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1222"/>
+        <location filename="../instruments/instrumentsxml.h" line="1241"/>
         <source>Rotary Organ</source>
         <translation>旋轉風琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1224"/>
+        <location filename="../instruments/instrumentsxml.h" line="1243"/>
         <source>Rot. Org.</source>
         <extracomment>Rotary Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1225"/>
-        <location filename="../instruments/instrumentsxml.h" line="1228"/>
+        <location filename="../instruments/instrumentsxml.h" line="1244"/>
+        <location filename="../instruments/instrumentsxml.h" line="1247"/>
         <source>Pipe Organ</source>
         <translation>管風琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1229"/>
+        <location filename="../instruments/instrumentsxml.h" line="1248"/>
         <source>Harmonium</source>
         <translation>小風琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1232"/>
+        <location filename="../instruments/instrumentsxml.h" line="1251"/>
         <source>Reed Organ</source>
         <translation>簧風琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1234"/>
+        <location filename="../instruments/instrumentsxml.h" line="1253"/>
         <source>Rd. Org.</source>
         <extracomment>Reed Organ</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1235"/>
+        <location filename="../instruments/instrumentsxml.h" line="1254"/>
         <source>Electronic Instruments</source>
         <translation>電子樂器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1236"/>
+        <location filename="../instruments/instrumentsxml.h" line="1255"/>
         <source>Effect Synthesizer</source>
         <translation>效果合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1238"/>
-        <location filename="../instruments/instrumentsxml.h" line="1241"/>
-        <location filename="../instruments/instrumentsxml.h" line="1244"/>
-        <location filename="../instruments/instrumentsxml.h" line="1247"/>
-        <location filename="../instruments/instrumentsxml.h" line="1250"/>
-        <location filename="../instruments/instrumentsxml.h" line="1253"/>
-        <location filename="../instruments/instrumentsxml.h" line="1256"/>
-        <location filename="../instruments/instrumentsxml.h" line="1259"/>
-        <location filename="../instruments/instrumentsxml.h" line="1262"/>
-        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <location filename="../instruments/instrumentsxml.h" line="1257"/>
         <location filename="../instruments/instrumentsxml.h" line="1268"/>
         <location filename="../instruments/instrumentsxml.h" line="1271"/>
         <location filename="../instruments/instrumentsxml.h" line="1274"/>
@@ -4404,11 +4414,20 @@ Pipe Organ</extracomment>
         <location filename="../instruments/instrumentsxml.h" line="1286"/>
         <location filename="../instruments/instrumentsxml.h" line="1289"/>
         <location filename="../instruments/instrumentsxml.h" line="1292"/>
-        <location filename="../instruments/instrumentsxml.h" line="1295"/>
-        <location filename="../instruments/instrumentsxml.h" line="1298"/>
-        <location filename="../instruments/instrumentsxml.h" line="1307"/>
-        <location filename="../instruments/instrumentsxml.h" line="1310"/>
-        <location filename="../instruments/instrumentsxml.h" line="1313"/>
+        <location filename="../instruments/instrumentsxml.h" line="1303"/>
+        <location filename="../instruments/instrumentsxml.h" line="1306"/>
+        <location filename="../instruments/instrumentsxml.h" line="1309"/>
+        <location filename="../instruments/instrumentsxml.h" line="1312"/>
+        <location filename="../instruments/instrumentsxml.h" line="1315"/>
+        <location filename="../instruments/instrumentsxml.h" line="1318"/>
+        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1333"/>
+        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1352"/>
         <source>Synth.</source>
         <extracomment>Effect Synthesizer
 ----------
@@ -4460,333 +4479,443 @@ String Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1239"/>
+        <location filename="../instruments/instrumentsxml.h" line="1258"/>
+        <source>rain</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1259"/>
+        <source>soundtrack</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <source>crystal</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1261"/>
+        <source>atmosphere</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1262"/>
+        <source>brightness</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <source>goblins</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1264"/>
+        <source>echoes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1265"/>
+        <source>scifi</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1266"/>
         <source>Atmosphere Synthesizer</source>
         <translation>氣氛合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1242"/>
+        <location filename="../instruments/instrumentsxml.h" line="1269"/>
         <source>Brightness Synthesizer</source>
         <translation>明亮合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1245"/>
+        <location filename="../instruments/instrumentsxml.h" line="1272"/>
         <source>Crystal Synthesizer</source>
         <translation>水晶合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1248"/>
+        <location filename="../instruments/instrumentsxml.h" line="1275"/>
         <source>Echoes Synthesizer</source>
         <translation>迴音合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1251"/>
+        <location filename="../instruments/instrumentsxml.h" line="1278"/>
         <source>Goblins Synthesizer</source>
         <translation>魅影合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1254"/>
+        <location filename="../instruments/instrumentsxml.h" line="1281"/>
         <source>Rain Synthesizer</source>
         <translation>雨合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1257"/>
+        <location filename="../instruments/instrumentsxml.h" line="1284"/>
         <source>Sci-fi Synthesizer</source>
         <translation>科幻合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1260"/>
+        <location filename="../instruments/instrumentsxml.h" line="1287"/>
         <source>Soundtrack Synthesizer</source>
         <translation>電影音效合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1263"/>
+        <location filename="../instruments/instrumentsxml.h" line="1290"/>
         <source>Pad Synthesizer</source>
         <translation>和弦襯底合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1266"/>
+        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <source>new age</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1294"/>
+        <source>warm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1295"/>
+        <source>polysynth</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <source>choir</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1297"/>
+        <source>bowed</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1298"/>
+        <source>metallic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <source>halo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1300"/>
+        <source>sweep</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1301"/>
         <source>New Age Synthesizer</source>
         <translation>新世紀合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1269"/>
+        <location filename="../instruments/instrumentsxml.h" line="1304"/>
         <source>Warm Synthesizer</source>
         <translation>溫暖合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1272"/>
+        <location filename="../instruments/instrumentsxml.h" line="1307"/>
         <source>Poly Synthesizer</source>
         <translation>多重合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1275"/>
+        <location filename="../instruments/instrumentsxml.h" line="1310"/>
         <source>Choir Synthesizer</source>
         <translation>人聲合唱合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1278"/>
+        <location filename="../instruments/instrumentsxml.h" line="1313"/>
         <source>Bowed Synthesizer</source>
         <translation>玻璃合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1281"/>
+        <location filename="../instruments/instrumentsxml.h" line="1316"/>
         <source>Metallic Synthesizer</source>
         <translation>金屬合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1284"/>
+        <location filename="../instruments/instrumentsxml.h" line="1319"/>
         <source>Halo Synthesizer</source>
         <translation>光華合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1287"/>
+        <location filename="../instruments/instrumentsxml.h" line="1322"/>
         <source>Sweep Synthesizer</source>
         <translation>掃掠合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1290"/>
+        <location filename="../instruments/instrumentsxml.h" line="1325"/>
         <source>Saw Synthesizer</source>
         <translation>鋸齒波合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1293"/>
+        <location filename="../instruments/instrumentsxml.h" line="1328"/>
         <source>Sine Synthesizer</source>
         <translation>正弦波合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1296"/>
+        <location filename="../instruments/instrumentsxml.h" line="1331"/>
         <source>Square Synthesizer</source>
         <translation>方波合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1299"/>
+        <location filename="../instruments/instrumentsxml.h" line="1334"/>
         <source>Ondes Martenot</source>
         <translation>馬特諾音波</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1301"/>
+        <location filename="../instruments/instrumentsxml.h" line="1336"/>
         <source>O.M.</source>
         <extracomment>Ondes Martenot</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1302"/>
+        <location filename="../instruments/instrumentsxml.h" line="1337"/>
         <source>Mallet Synthesizer</source>
         <translation>鼓槌合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1304"/>
+        <location filename="../instruments/instrumentsxml.h" line="1339"/>
         <source>Mal. Syn.</source>
         <extracomment>Mallet Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1305"/>
+        <location filename="../instruments/instrumentsxml.h" line="1340"/>
         <source>Bass Synthesizer</source>
         <translation>貝斯合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1308"/>
+        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <source>synth-bass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1344"/>
+        <source>synth-bass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1345"/>
         <source>Brass Synthesizer</source>
         <translation>銅管樂合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1311"/>
+        <location filename="../instruments/instrumentsxml.h" line="1348"/>
+        <source>synth-brass-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1349"/>
+        <source>synth-brass-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1350"/>
         <source>String Synthesizer</source>
         <translation>弦樂合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1314"/>
+        <location filename="../instruments/instrumentsxml.h" line="1353"/>
+        <source>synth-string-1</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <source>synth-string-2</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1355"/>
         <source>Theremin</source>
         <translation>泰雷明</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1316"/>
+        <location filename="../instruments/instrumentsxml.h" line="1357"/>
         <source>Thmn.</source>
         <extracomment>Theremin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1317"/>
+        <location filename="../instruments/instrumentsxml.h" line="1358"/>
         <source>Percussion Synthesizer</source>
         <translation>敲擊樂合成器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1319"/>
+        <location filename="../instruments/instrumentsxml.h" line="1360"/>
         <source>Perc. Syn.</source>
         <extracomment>Percussion Synthesizer</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1320"/>
+        <location filename="../instruments/instrumentsxml.h" line="1361"/>
         <source>Plucked Strings</source>
         <translation>撥弦</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1321"/>
+        <location filename="../instruments/instrumentsxml.h" line="1362"/>
         <source>Banjo</source>
         <translation>班究琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1323"/>
+        <location filename="../instruments/instrumentsxml.h" line="1364"/>
         <source>Bj.</source>
         <extracomment>Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1324"/>
+        <location filename="../instruments/instrumentsxml.h" line="1365"/>
         <source>Banjo [Tablature]</source>
         <translation>班究琴[圖表記譜法]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1325"/>
+        <location filename="../instruments/instrumentsxml.h" line="1366"/>
         <source>Tenor Banjo</source>
         <translation>次中音班究琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1327"/>
+        <location filename="../instruments/instrumentsxml.h" line="1368"/>
         <source>T. Bj.</source>
         <extracomment>Tenor Banjo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1328"/>
-        <location filename="../instruments/instrumentsxml.h" line="1331"/>
+        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1372"/>
         <source>Balalaika</source>
         <translation>巴拉萊卡琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1330"/>
+        <location filename="../instruments/instrumentsxml.h" line="1371"/>
         <source>Bal.</source>
         <extracomment>Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1332"/>
-        <location filename="../instruments/instrumentsxml.h" line="1335"/>
+        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1376"/>
         <source>Piccolo Balalaika</source>
         <translation>高音巴拉萊卡琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1334"/>
+        <location filename="../instruments/instrumentsxml.h" line="1375"/>
         <source>Pic. Bal.</source>
         <extracomment>Piccolo Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1336"/>
-        <location filename="../instruments/instrumentsxml.h" line="1339"/>
+        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1380"/>
         <source>Prima Balalaika</source>
         <translation>首巴拉萊卡琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1338"/>
+        <location filename="../instruments/instrumentsxml.h" line="1379"/>
         <source>Pr. Bal.</source>
         <extracomment>Prima Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1340"/>
-        <location filename="../instruments/instrumentsxml.h" line="1343"/>
+        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1384"/>
         <source>Secunda Balalaika</source>
         <translation>次巴拉萊卡琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1342"/>
+        <location filename="../instruments/instrumentsxml.h" line="1383"/>
         <source>Sec. Bal.</source>
         <extracomment>Secunda Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1344"/>
-        <location filename="../instruments/instrumentsxml.h" line="1347"/>
+        <location filename="../instruments/instrumentsxml.h" line="1385"/>
+        <location filename="../instruments/instrumentsxml.h" line="1388"/>
         <source>Alto Balalaika</source>
         <translation>中音巴拉萊卡琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1346"/>
+        <location filename="../instruments/instrumentsxml.h" line="1387"/>
         <source>Al. Bal.</source>
         <extracomment>Alto Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1348"/>
-        <location filename="../instruments/instrumentsxml.h" line="1351"/>
+        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1392"/>
         <source>Bass Balalaika</source>
         <translation>低音巴拉萊卡琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1350"/>
+        <location filename="../instruments/instrumentsxml.h" line="1391"/>
         <source>B. Bal.</source>
         <extracomment>Bass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1352"/>
-        <location filename="../instruments/instrumentsxml.h" line="1355"/>
+        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1396"/>
         <source>Contrabass Balalaika</source>
         <translation>倍低音巴拉萊卡琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1354"/>
+        <location filename="../instruments/instrumentsxml.h" line="1395"/>
         <source>CB. Bal.</source>
         <extracomment>Contrabass Balalaika</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1356"/>
-        <location filename="../instruments/instrumentsxml.h" line="1360"/>
+        <location filename="../instruments/instrumentsxml.h" line="1397"/>
+        <location filename="../instruments/instrumentsxml.h" line="1401"/>
         <source>Bouzouki</source>
         <translation>布祖基琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1358"/>
-        <location filename="../instruments/instrumentsxml.h" line="1362"/>
+        <location filename="../instruments/instrumentsxml.h" line="1399"/>
+        <location filename="../instruments/instrumentsxml.h" line="1403"/>
         <source>Bou.</source>
         <extracomment>Bouzouki</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1359"/>
+        <location filename="../instruments/instrumentsxml.h" line="1400"/>
         <source>Bouzouki (3-course)</source>
         <translation>布祖基琴(3 個雙琴弦)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1363"/>
+        <location filename="../instruments/instrumentsxml.h" line="1404"/>
         <source>Bouzouki (4-course)</source>
         <translation>布祖基琴(4 個雙琴弦)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1364"/>
+        <location filename="../instruments/instrumentsxml.h" line="1405"/>
         <source>Soprano Guitar</source>
         <translation>高音吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1366"/>
+        <location filename="../instruments/instrumentsxml.h" line="1407"/>
         <source>S. Guit.</source>
         <extracomment>Soprano Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1367"/>
+        <location filename="../instruments/instrumentsxml.h" line="1408"/>
         <source>Alto Guitar</source>
         <translation>中音吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1369"/>
+        <location filename="../instruments/instrumentsxml.h" line="1410"/>
         <source>A. Guit.</source>
         <extracomment>Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1370"/>
+        <location filename="../instruments/instrumentsxml.h" line="1411"/>
         <source>Classical Guitar</source>
         <translation>古典吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1372"/>
-        <location filename="../instruments/instrumentsxml.h" line="1376"/>
+        <location filename="../instruments/instrumentsxml.h" line="1413"/>
+        <location filename="../instruments/instrumentsxml.h" line="1417"/>
         <source>Guit.</source>
         <extracomment>Classical Guitar
 ----------
@@ -4794,278 +4923,312 @@ Acoustic Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1373"/>
+        <location filename="../instruments/instrumentsxml.h" line="1414"/>
         <source>Classical Guitar [Tablature]</source>
         <translation>古典吉他[圖表記譜法]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1374"/>
+        <location filename="../instruments/instrumentsxml.h" line="1415"/>
         <source>Acoustic Guitar</source>
         <translation>原聲吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1377"/>
+        <location filename="../instruments/instrumentsxml.h" line="1418"/>
         <source>Acoustic Guitar [Tablature]</source>
         <translation>原聲吉他[圖表記譜法]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1378"/>
+        <location filename="../instruments/instrumentsxml.h" line="1419"/>
         <source>11-string Alto Guitar</source>
         <translation>11 弦中音吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1380"/>
+        <location filename="../instruments/instrumentsxml.h" line="1421"/>
         <source>11-str. A. Guit.</source>
         <extracomment>11-string Alto Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1381"/>
+        <location filename="../instruments/instrumentsxml.h" line="1422"/>
         <source>12-string Guitar</source>
         <translation>12 弦中音吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1383"/>
+        <location filename="../instruments/instrumentsxml.h" line="1424"/>
         <source>12-str. Guit.</source>
         <extracomment>12-string Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1384"/>
+        <location filename="../instruments/instrumentsxml.h" line="1425"/>
         <source>Pedal Steel Guitar</source>
         <translation>踏板電吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1386"/>
+        <location filename="../instruments/instrumentsxml.h" line="1427"/>
         <source>Ped. St. Guit.</source>
         <extracomment>Pedal Steel Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1387"/>
+        <location filename="../instruments/instrumentsxml.h" line="1428"/>
         <source>Electric Guitar</source>
         <translation>電吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1389"/>
+        <location filename="../instruments/instrumentsxml.h" line="1430"/>
         <source>El. Guit.</source>
         <extracomment>Electric Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1390"/>
+        <location filename="../instruments/instrumentsxml.h" line="1431"/>
         <source>Electric Guitar [Tablature]</source>
         <translation>電吉他[圖表記譜法]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1391"/>
+        <location filename="../instruments/instrumentsxml.h" line="1432"/>
         <source>Harp</source>
         <translation>豎琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1393"/>
+        <location filename="../instruments/instrumentsxml.h" line="1434"/>
         <source>Hrp.</source>
         <extracomment>Harp</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1394"/>
+        <location filename="../instruments/instrumentsxml.h" line="1435"/>
         <source>Koto</source>
         <translation>日本箏</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1396"/>
+        <location filename="../instruments/instrumentsxml.h" line="1437"/>
         <source>Ko.</source>
         <extracomment>Koto</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1397"/>
-        <location filename="../instruments/instrumentsxml.h" line="1401"/>
-        <location filename="../instruments/instrumentsxml.h" line="1405"/>
-        <location filename="../instruments/instrumentsxml.h" line="1409"/>
-        <location filename="../instruments/instrumentsxml.h" line="1413"/>
-        <location filename="../instruments/instrumentsxml.h" line="1417"/>
-        <location filename="../instruments/instrumentsxml.h" line="1421"/>
-        <location filename="../instruments/instrumentsxml.h" line="1425"/>
+        <location filename="../instruments/instrumentsxml.h" line="1438"/>
+        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1446"/>
+        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1458"/>
+        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1466"/>
         <source>Lute</source>
         <translation>魯特琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1399"/>
-        <location filename="../instruments/instrumentsxml.h" line="1403"/>
-        <location filename="../instruments/instrumentsxml.h" line="1407"/>
-        <location filename="../instruments/instrumentsxml.h" line="1411"/>
-        <location filename="../instruments/instrumentsxml.h" line="1415"/>
-        <location filename="../instruments/instrumentsxml.h" line="1419"/>
-        <location filename="../instruments/instrumentsxml.h" line="1423"/>
-        <location filename="../instruments/instrumentsxml.h" line="1427"/>
+        <location filename="../instruments/instrumentsxml.h" line="1440"/>
+        <location filename="../instruments/instrumentsxml.h" line="1444"/>
+        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1452"/>
+        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1468"/>
         <source>Lt.</source>
         <extracomment>Lute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1400"/>
+        <location filename="../instruments/instrumentsxml.h" line="1441"/>
         <source>Lute [Tablature]</source>
         <translation>魯特琴[圖表記譜法]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1404"/>
+        <location filename="../instruments/instrumentsxml.h" line="1445"/>
         <source>Lute 5-course</source>
         <translation>魯特琴 5 個雙琴弦</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1408"/>
+        <location filename="../instruments/instrumentsxml.h" line="1449"/>
         <source>Lute 6-course</source>
         <translation>魯特琴 6 個雙琴弦</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1412"/>
+        <location filename="../instruments/instrumentsxml.h" line="1453"/>
         <source>Lute 7-course</source>
         <translation>魯特琴 7 個雙琴弦</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1416"/>
+        <location filename="../instruments/instrumentsxml.h" line="1457"/>
         <source>Lute 8-course</source>
         <translation>魯特琴 8 個雙琴弦</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1420"/>
+        <location filename="../instruments/instrumentsxml.h" line="1461"/>
         <source>Lute 9-course</source>
         <translation>魯特琴 9 個雙琴弦</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1424"/>
+        <location filename="../instruments/instrumentsxml.h" line="1465"/>
         <source>Lute 10-course</source>
         <translation>魯特琴 10 個雙琴弦</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1428"/>
+        <location filename="../instruments/instrumentsxml.h" line="1469"/>
         <source>Lute 13-course</source>
         <translation>魯特琴 13 個雙琴弦</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1431"/>
+        <location filename="../instruments/instrumentsxml.h" line="1472"/>
         <source>A. Lt.</source>
         <extracomment>Archlute</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1438"/>
-        <source>Mandolin [Tablature]</source>
-        <translation>曼陀林琴[圖表記譜法]</translation>
+        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <source>arco</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1484"/>
+        <location filename="../instruments/instrumentsxml.h" line="1519"/>
+        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1541"/>
+        <location filename="../instruments/instrumentsxml.h" line="1546"/>
+        <location filename="../instruments/instrumentsxml.h" line="1551"/>
+        <location filename="../instruments/instrumentsxml.h" line="1556"/>
+        <location filename="../instruments/instrumentsxml.h" line="1561"/>
+        <location filename="../instruments/instrumentsxml.h" line="1566"/>
+        <location filename="../instruments/instrumentsxml.h" line="1571"/>
+        <location filename="../instruments/instrumentsxml.h" line="1576"/>
+        <source>tremolo</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1527"/>
         <source>5-str. Electric Bass</source>
         <translation>5 弦電貝斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1487"/>
+        <location filename="../instruments/instrumentsxml.h" line="1530"/>
         <source>5-str. Electric Bass [Tablature]</source>
         <translation>5 弦電貝斯[圖表記譜法]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1489"/>
-        <source>Erhu</source>
-        <translation>二胡</translation>
-    </message>
-    <message>
-        <location filename="../instruments/instrumentsxml.h" line="1491"/>
-        <source>Eh.</source>
-        <extracomment>Erhu</extracomment>
+        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1545"/>
+        <location filename="../instruments/instrumentsxml.h" line="1550"/>
+        <location filename="../instruments/instrumentsxml.h" line="1555"/>
+        <location filename="../instruments/instrumentsxml.h" line="1560"/>
+        <location filename="../instruments/instrumentsxml.h" line="1565"/>
+        <location filename="../instruments/instrumentsxml.h" line="1570"/>
+        <location filename="../instruments/instrumentsxml.h" line="1575"/>
+        <source>pizzicato</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1495"/>
+        <location filename="../instruments/instrumentsxml.h" line="1542"/>
         <source>Violins</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1497"/>
+        <location filename="../instruments/instrumentsxml.h" line="1544"/>
         <source>Vlns.</source>
         <extracomment>Violins</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1501"/>
+        <location filename="../instruments/instrumentsxml.h" line="1552"/>
         <source>Violas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1503"/>
+        <location filename="../instruments/instrumentsxml.h" line="1554"/>
         <source>Vlas.</source>
         <extracomment>Violas</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1507"/>
+        <location filename="../instruments/instrumentsxml.h" line="1562"/>
         <source>Violoncellos</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1509"/>
+        <location filename="../instruments/instrumentsxml.h" line="1564"/>
         <source>Vlcs.</source>
         <extracomment>Violoncellos</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1513"/>
+        <location filename="../instruments/instrumentsxml.h" line="1572"/>
         <source>Contrabasses</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1515"/>
+        <location filename="../instruments/instrumentsxml.h" line="1574"/>
         <source>Cbs.</source>
         <extracomment>Contrabasses</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1517"/>
+        <location filename="../instruments/instrumentsxml.h" line="1579"/>
         <source>Db.</source>
+        <extracomment>Double Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1536"/>
+        <location filename="../instruments/instrumentsxml.h" line="1598"/>
         <source>Viola da gamba (Tablature)</source>
         <translation>古提琴(圖表記譜法)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1429"/>
+        <location filename="../instruments/instrumentsxml.h" line="1470"/>
         <source>Archlute</source>
         <translation>長頸魯特琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1432"/>
+        <location filename="../instruments/instrumentsxml.h" line="4"/>
+        <source>Early music</source>
+        <translation>早期音樂</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="61"/>
+        <location filename="../instruments/instrumentsxml.h" line="63"/>
+        <source>Bâ™­ Fife</source>
+        <extracomment>Bâ™­ Fife</extracomment>
+        <translation>降B調鼓笛</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1473"/>
         <source>Theorbo</source>
         <translation>長頸雙頭龍</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1434"/>
+        <location filename="../instruments/instrumentsxml.h" line="1475"/>
         <source>Thb.</source>
         <extracomment>Theorbo</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1435"/>
+        <location filename="../instruments/instrumentsxml.h" line="1476"/>
         <source>Mandolin</source>
         <translation>曼陀林琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1437"/>
+        <location filename="../instruments/instrumentsxml.h" line="1478"/>
         <source>Mdn.</source>
         <extracomment>Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1439"/>
+        <location filename="../instruments/instrumentsxml.h" line="1479"/>
+        <source>Mandolin [Tablature]</source>
+        <translation>曼陀林琴[圖表記譜法]</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1480"/>
         <source>Mandola</source>
         <translation>曼多拉琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1441"/>
-        <location filename="../instruments/instrumentsxml.h" line="1444"/>
-        <location filename="../instruments/instrumentsxml.h" line="1447"/>
+        <location filename="../instruments/instrumentsxml.h" line="1482"/>
+        <location filename="../instruments/instrumentsxml.h" line="1485"/>
+        <location filename="../instruments/instrumentsxml.h" line="1488"/>
         <source>Mda.</source>
         <extracomment>Mandola
 ----------
@@ -5075,126 +5238,126 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1442"/>
+        <location filename="../instruments/instrumentsxml.h" line="1483"/>
         <source>Alto Mandola</source>
         <translation>中音曼多拉琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1445"/>
+        <location filename="../instruments/instrumentsxml.h" line="1486"/>
         <source>Tenor Mandola</source>
         <translation>次中音曼多拉琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1448"/>
+        <location filename="../instruments/instrumentsxml.h" line="1489"/>
         <source>Mandocello</source>
         <translation>大曼陀鈴琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1450"/>
+        <location filename="../instruments/instrumentsxml.h" line="1491"/>
         <source>Mncl.</source>
         <extracomment>Mandocello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1451"/>
+        <location filename="../instruments/instrumentsxml.h" line="1492"/>
         <source>Octave Mandolin</source>
         <translation>低音曼陀鈴琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1453"/>
+        <location filename="../instruments/instrumentsxml.h" line="1494"/>
         <source>OM.</source>
         <extracomment>Octave Mandolin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1454"/>
+        <location filename="../instruments/instrumentsxml.h" line="1495"/>
         <source>Shamisen</source>
         <translation>三味線</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1456"/>
+        <location filename="../instruments/instrumentsxml.h" line="1497"/>
         <source>Sh.</source>
         <extracomment>Shamisen</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1457"/>
+        <location filename="../instruments/instrumentsxml.h" line="1498"/>
         <source>Sitar</source>
         <translation>錫塔琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1459"/>
+        <location filename="../instruments/instrumentsxml.h" line="1500"/>
         <source>Si.</source>
         <extracomment>Sitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1460"/>
+        <location filename="../instruments/instrumentsxml.h" line="1501"/>
         <source>Ukulele</source>
         <translation>小吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1462"/>
+        <location filename="../instruments/instrumentsxml.h" line="1503"/>
         <source>Uk.</source>
         <extracomment>Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1463"/>
+        <location filename="../instruments/instrumentsxml.h" line="1504"/>
         <source>Ukulele [Tablature]</source>
         <translation>小吉他[圖表記譜法]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1464"/>
+        <location filename="../instruments/instrumentsxml.h" line="1505"/>
         <source>Tenor Ukulele</source>
         <translation>次中音小吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1466"/>
+        <location filename="../instruments/instrumentsxml.h" line="1507"/>
         <source>Ten. Uk.</source>
         <extracomment>Tenor Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1467"/>
+        <location filename="../instruments/instrumentsxml.h" line="1508"/>
         <source>Baritone Ukulele</source>
         <translation>上低音小吉他</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1469"/>
+        <location filename="../instruments/instrumentsxml.h" line="1510"/>
         <source>Bar. Uk.</source>
         <extracomment>Baritone Ukulele</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1470"/>
+        <location filename="../instruments/instrumentsxml.h" line="1511"/>
         <source>Bass Guitar</source>
         <translation>貝斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1472"/>
+        <location filename="../instruments/instrumentsxml.h" line="1513"/>
         <source>B. Guit.</source>
         <extracomment>Bass Guitar</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1473"/>
+        <location filename="../instruments/instrumentsxml.h" line="1514"/>
         <source>Bass Guitar [Tablature]</source>
         <translation>貝斯[圖表記譜法]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1474"/>
+        <location filename="../instruments/instrumentsxml.h" line="1515"/>
         <source>Acoustic Bass</source>
         <translation>原聲貝斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1477"/>
+        <location filename="../instruments/instrumentsxml.h" line="1520"/>
         <source>Electric Bass</source>
         <translation>電貝斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1479"/>
-        <location filename="../instruments/instrumentsxml.h" line="1486"/>
+        <location filename="../instruments/instrumentsxml.h" line="1522"/>
+        <location filename="../instruments/instrumentsxml.h" line="1529"/>
         <source>El. B.</source>
         <extracomment>Electric Bass
 ----------
@@ -5202,127 +5365,138 @@ Tenor Mandola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1480"/>
+        <location filename="../instruments/instrumentsxml.h" line="1523"/>
         <source>Electric Bass [Tablature]</source>
         <translation>電貝斯[圖表記譜法]</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1481"/>
+        <location filename="../instruments/instrumentsxml.h" line="1524"/>
         <source>Fretless Electric Bass</source>
         <translation>無品電貝斯</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1483"/>
+        <location filename="../instruments/instrumentsxml.h" line="1526"/>
         <source>Frtl. El. B.</source>
         <extracomment>Fretless Electric Bass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1488"/>
+        <location filename="../instruments/instrumentsxml.h" line="1531"/>
         <source>Strings</source>
         <translation>弦樂器</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1492"/>
+        <location filename="../instruments/instrumentsxml.h" line="1532"/>
+        <source>Erhu</source>
+        <translation>二胡</translation>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1534"/>
+        <source>Eh.</source>
+        <extracomment>Erhu</extracomment>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <location filename="../instruments/instrumentsxml.h" line="1537"/>
         <source>Violin</source>
         <translation>小提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1494"/>
+        <location filename="../instruments/instrumentsxml.h" line="1539"/>
         <source>Vln.</source>
         <extracomment>Violin</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1498"/>
+        <location filename="../instruments/instrumentsxml.h" line="1547"/>
         <source>Viola</source>
         <translation>中提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1500"/>
+        <location filename="../instruments/instrumentsxml.h" line="1549"/>
         <source>Vla.</source>
         <extracomment>Viola</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1504"/>
+        <location filename="../instruments/instrumentsxml.h" line="1557"/>
         <source>Violoncello</source>
         <translation>大提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1506"/>
+        <location filename="../instruments/instrumentsxml.h" line="1559"/>
         <source>Vlc.</source>
         <extracomment>Violoncello</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1510"/>
+        <location filename="../instruments/instrumentsxml.h" line="1567"/>
         <source>Contrabass</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1512"/>
+        <location filename="../instruments/instrumentsxml.h" line="1569"/>
         <source>Cb.</source>
         <extracomment>Contrabass</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1516"/>
+        <location filename="../instruments/instrumentsxml.h" line="1577"/>
         <source>Double Bass</source>
         <translation>低音提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1518"/>
+        <location filename="../instruments/instrumentsxml.h" line="1580"/>
         <source>Pardessus de viole</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1520"/>
+        <location filename="../instruments/instrumentsxml.h" line="1582"/>
         <source>Pds. v.</source>
         <extracomment>Pardessus de viole</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1521"/>
+        <location filename="../instruments/instrumentsxml.h" line="1583"/>
         <source>Treble Viol</source>
         <translation>高音古提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1523"/>
+        <location filename="../instruments/instrumentsxml.h" line="1585"/>
         <source>Tr. vl.</source>
         <extracomment>Treble Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1524"/>
+        <location filename="../instruments/instrumentsxml.h" line="1586"/>
         <source>Alto Viol</source>
         <translation>中音古提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1526"/>
+        <location filename="../instruments/instrumentsxml.h" line="1588"/>
         <source>A. Vl.</source>
         <extracomment>Alto Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1527"/>
+        <location filename="../instruments/instrumentsxml.h" line="1589"/>
         <source>Tenor Viol</source>
         <translation>次中音古提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1529"/>
+        <location filename="../instruments/instrumentsxml.h" line="1591"/>
         <source>T. Vl.</source>
         <extracomment>Tenor Viol</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1530"/>
+        <location filename="../instruments/instrumentsxml.h" line="1592"/>
         <source>Viola da gamba</source>
         <translation>古提琴</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1532"/>
-        <location filename="../instruments/instrumentsxml.h" line="1535"/>
+        <location filename="../instruments/instrumentsxml.h" line="1594"/>
+        <location filename="../instruments/instrumentsxml.h" line="1597"/>
         <source>Vla. d. g.</source>
         <extracomment>Viola da gamba
 ----------
@@ -5330,18 +5504,18 @@ Viola da gamba (Tab)</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1533"/>
+        <location filename="../instruments/instrumentsxml.h" line="1595"/>
         <source>Viola da gamba (Tab)</source>
         <translation>古提琴(圖表記譜法)</translation>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1537"/>
+        <location filename="../instruments/instrumentsxml.h" line="1599"/>
         <source>Violone</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1539"/>
-        <location filename="../instruments/instrumentsxml.h" line="1542"/>
+        <location filename="../instruments/instrumentsxml.h" line="1601"/>
+        <location filename="../instruments/instrumentsxml.h" line="1604"/>
         <source>Vne.</source>
         <extracomment>Violone
 ----------
@@ -5349,7 +5523,7 @@ D Violone</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <location filename="../instruments/instrumentsxml.h" line="1540"/>
+        <location filename="../instruments/instrumentsxml.h" line="1602"/>
         <source>D Violone</source>
         <translation type="unfinished"/>
     </message>
diff --git a/share/locale/languages.xml b/share/locale/languages.xml
index 4ed6ecf..b3f23f4 100644
--- a/share/locale/languages.xml
+++ b/share/locale/languages.xml
@@ -8,6 +8,7 @@
   <language code="ca" name="Català" />
   <language code="ca at valencia" name="Valencià" />
   <language code="cs" name="Čeština" />
+  <language code="cs" name="Cymraeg" />
   <language code="da" name="Dansk" />
   <language code="de" name="Deutsch" />
   <language code="el" name="ελληνικά" />
diff --git a/share/locale/mscore_af.ts b/share/locale/mscore_af.ts
index 770e8e1..8718ad5 100644
--- a/share/locale/mscore_af.ts
+++ b/share/locale/mscore_af.ts
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7158,6 +7359,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7628,10 +7833,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7643,6 +7844,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7950,6 +8155,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10347,6 +10557,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11175,6 +11393,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13521,10 +13747,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation type="unfinished"/>
     </message>
@@ -13561,10 +13783,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13921,10 +14139,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15488,6 +15702,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16537,6 +16767,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17648,10 +17882,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_ar.ts b/share/locale/mscore_ar.ts
index 1040504..9220e4b 100644
--- a/share/locale/mscore_ar.ts
+++ b/share/locale/mscore_ar.ts
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>أربيج</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>عزف</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>أظهر النصّ</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>افتراضيّ</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>عزف</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7162,6 +7363,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7635,10 +7840,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7650,6 +7851,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7958,6 +8163,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10355,6 +10565,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11189,6 +11407,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13535,10 +13761,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>بالتة</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>لوح العزف</translation>
     </message>
@@ -13575,10 +13797,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13935,10 +14153,6 @@ failed: </source>
         <translation>إعادة تحديد الاختيار</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15502,6 +15716,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16551,6 +16781,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17662,10 +17896,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_ast.ts b/share/locale/mscore_ast.ts
index 30a9476..28d798d 100644
--- a/share/locale/mscore_ast.ts
+++ b/share/locale/mscore_ast.ts
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproducir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Amosar Testu</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>por defeutu</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproducir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7162,6 +7363,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7635,10 +7840,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7650,6 +7851,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7958,6 +8163,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10355,6 +10565,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11189,6 +11407,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13535,10 +13761,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paleta</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Panel d'execución</translation>
     </message>
@@ -13575,10 +13797,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13935,10 +14153,6 @@ failed: </source>
         <translation>Repetir esbilla</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15502,6 +15716,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16551,6 +16781,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17662,10 +17896,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_be.ts b/share/locale/mscore_be.ts
index e91f050..9971015 100644
--- a/share/locale/mscore_be.ts
+++ b/share/locale/mscore_be.ts
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>граць</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Паказаць тэкст</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>граць</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7158,6 +7359,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7628,10 +7833,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7643,6 +7844,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7950,6 +8155,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10347,6 +10557,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11175,6 +11393,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13521,10 +13747,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation type="unfinished"/>
     </message>
@@ -13561,10 +13783,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13921,10 +14139,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15488,6 +15702,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16537,6 +16767,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17648,10 +17882,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_bg.ts b/share/locale/mscore_bg.ts
index 6dbf867..23fa348 100644
--- a/share/locale/mscore_bg.ts
+++ b/share/locale/mscore_bg.ts
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Арпежи</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Възпроизведи</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Покажи текста</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,12 +4666,36 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
+        <translation>Възстанови началната стойност</translation>
+    </message>
+    <message>
+        <source>Ornament Style</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
-        <translation>Възстанови началната стойност</translation>
+        <source>Direction</source>
+        <translation>Посока</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>по подразбиране</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Възпроизведи</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6033,27 +6234,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7177,6 +7378,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7650,10 +7855,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7665,6 +7866,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7973,6 +8178,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10370,6 +10580,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11206,6 +11424,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13552,10 +13778,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Палитри</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Възпроизвеждане</translation>
     </message>
@@ -13592,10 +13814,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13952,10 +14170,6 @@ failed: </source>
         <translation>Повтори избраното</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15519,6 +15733,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16568,6 +16798,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17679,10 +17913,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_ca.ts b/share/locale/mscore_ca.ts
index 51abf1b..6daee1f 100644
--- a/share/locale/mscore_ca.ts
+++ b/share/locale/mscore_ca.ts
@@ -324,7 +324,7 @@ p, li { white-space: pre-wrap; }
     <name>ChordBase</name>
     <message>
         <source>Glissando end</source>
-        <translation type="unfinished"/>
+        <translation>Fi del glissando</translation>
     </message>
 </context>
 <context>
@@ -425,7 +425,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>No.</source>
-        <translation type="unfinished"/>
+        <translation>Núm.</translation>
     </message>
     <message>
         <source>Note</source>
@@ -1143,7 +1143,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>»C</source>
-        <translation type="unfinished"/>
+        <translation>»Do</translation>
     </message>
 </context>
 <context>
@@ -1345,7 +1345,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Usable pitch range:</source>
-        <translation type="unfinished"/>
+        <translation>Rang de tessitura útil:</translation>
     </message>
     <message>
         <source>Play transposition:</source>
@@ -1580,7 +1580,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Upside down</source>
-        <translation type="unfinished"/>
+        <translation>A l'inrevés</translation>
     </message>
     <message>
         <source>Show rests</source>
@@ -2271,15 +2271,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Semitones offset</source>
-        <translation type="unfinished"/>
+        <translation>Desplaçament per semitons</translation>
     </message>
     <message>
         <source>Cents offset</source>
-        <translation type="unfinished"/>
+        <translation>Desplaçament per cents</translation>
     </message>
     <message>
         <source>A, B♭, B, C, C♯, ...</source>
-        <translation type="unfinished"/>
+        <translation>A, B♭, B, C, C♯, ...</translation>
     </message>
     <message>
         <source>Chord Symbols, Fretboard Diagrams</source>
@@ -2383,7 +2383,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Use odd/even page header</source>
-        <translation type="unfinished"/>
+        <translation>Utilitzar capçalera en pàgines parell/senar</translation>
     </message>
     <message>
         <source>Use odd/even page footer</source>
@@ -2475,11 +2475,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>A, B♭, H, C, C♯, ...</source>
-        <translation type="unfinished"/>
+        <translation>A, B♭, H, C, C♯, ...</translation>
     </message>
     <message>
         <source>A, B, H, C, Cis</source>
-        <translation type="unfinished"/>
+        <translation>A, B, H, C, Cis,...</translation>
     </message>
     <message>
         <source>Full German</source>
@@ -2515,11 +2515,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Vertical frame upper margin</source>
-        <translation type="unfinished"/>
+        <translation>Marge superior del marc vertical</translation>
     </message>
     <message>
         <source>Vertical frame lower margin</source>
-        <translation type="unfinished"/>
+        <translation>Marge inferior del marc vertical</translation>
     </message>
     <message>
         <source>Scale:</source>
@@ -2719,7 +2719,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Small value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valor menor</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -2882,11 +2882,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Oct </source>
-        <translation type="unfinished"/>
+        <translation>Oct</translation>
     </message>
     <message>
         <source>Has line</source>
-        <translation type="unfinished"/>
+        <translation>Amb línia</translation>
     </message>
     <message>
         <source>Top note</source>
@@ -2918,7 +2918,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Update Range</source>
-        <translation type="unfinished"/>
+        <translation>Actualitzar rang</translation>
     </message>
     <message>
         <source>Direction</source>
@@ -2926,15 +2926,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Upright</source>
-        <translation type="unfinished"/>
+        <translation>Recte</translation>
     </message>
     <message>
         <source>Leaning Left</source>
-        <translation type="unfinished"/>
+        <translation>Inclinar a l'esquerra</translation>
     </message>
     <message>
         <source>Leaning Right</source>
-        <translation type="unfinished"/>
+        <translation>Inclinar a la dreta</translation>
     </message>
     <message>
         <source>Ambitus Inspector</source>
@@ -2942,15 +2942,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Oct</source>
-        <translation type="unfinished"/>
+        <translation>Oct</translation>
     </message>
     <message>
         <source>Reset Has line value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir visualització de la línia </translation>
     </message>
     <message>
         <source>Reset Head group value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valor grup de caps</translation>
     </message>
     <message>
         <source>Reset Direction value</source>
@@ -2958,7 +2958,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Update range</source>
-        <translation type="unfinished"/>
+        <translation>Actualitzar rang</translation>
     </message>
     <message>
         <source>Reset Head type value</source>
@@ -3018,7 +3018,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Alt. Brevis</source>
-        <translation type="unfinished"/>
+        <translation>Alt. Brevis</translation>
     </message>
     <message>
         <source>Line thickness</source>
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Inspector Glissandis</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpegi</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reprodueix</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restablir valors reproduix</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Restablir valors ampliació temporal</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Tipus d'ornament</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Per defecte</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barroc</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Restablir valors del tipus d'ornament</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reprodueix</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restablir valors de reproducció</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3152,7 +3195,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Span</source>
-        <translation type="unfinished"/>
+        <translation>Estendre</translation>
     </message>
     <message>
         <source>Span to</source>
@@ -3172,7 +3215,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Spantype</source>
-        <translation type="unfinished"/>
+        <translation>Tipus d'extenció</translation>
     </message>
     <message>
         <source>Reset Span type value</source>
@@ -3223,7 +3266,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Vertical position offset left</source>
-        <translation type="unfinished"/>
+        <translation>Posició vertical desplaçament esquerra</translation>
     </message>
     <message>
         <source>Reset Direction value</source>
@@ -3231,7 +3274,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Vertical position offset right</source>
-        <translation type="unfinished"/>
+        <translation>Posició vertical desplaçament dreta</translation>
     </message>
     <message>
         <source>Reset User position value</source>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reprodueix</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restablir valors de reproducció</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3286,7 +3348,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Layout Break</source>
-        <translation type="unfinished"/>
+        <translation>Salt del disseny</translation>
     </message>
 </context>
 <context>
@@ -3346,7 +3408,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Stem direction value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valor direcció de la plica</translation>
     </message>
     <message>
         <source>Horizontal Offset</source>
@@ -3354,11 +3416,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Small Value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valor petit</translation>
     </message>
     <message>
         <source>Reset Stemless value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valor sense plica</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -3420,7 +3482,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Velocity value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valor Velocitat</translation>
     </message>
     <message>
         <source>Reset Dynamic range value</source>
@@ -3487,7 +3549,7 @@ space unit</extracomment>
     <name>InspectorEmpty</name>
     <message>
         <source>Empty Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Inspector buit</translation>
     </message>
     <message>
         <source>Nothing selected</source>
@@ -3559,16 +3621,52 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Mostrar text</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Estil</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Restablir valors d'estil</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Estil de reproducció</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Cromàtic</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Tecles blanques</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Tecles negres</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatònic</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reprodueix</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restablir valors de reproducció</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
     <message>
         <source>Element Group</source>
-        <translation type="unfinished"/>
+        <translation>Grup d'elements</translation>
     </message>
     <message>
         <source>Set Color</source>
-        <translation type="unfinished"/>
+        <translation>Establir color</translation>
     </message>
     <message>
         <source>Set Visible</source>
@@ -3580,7 +3678,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Element Group Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Inspector Grup d'elements</translation>
     </message>
     <message>
         <source>Color</source>
@@ -3612,19 +3710,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Right gap</source>
-        <translation type="unfinished"/>
+        <translation>Espai a la dreta</translation>
     </message>
     <message>
         <source>Left gap</source>
-        <translation type="unfinished"/>
+        <translation>Espai a l'esquerra</translation>
     </message>
     <message>
         <source>Reset Left gap value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valors espai a l'esquerra</translation>
     </message>
     <message>
         <source>Reset Right gap value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valors espai a la dreta</translation>
     </message>
 </context>
 <context>
@@ -3758,7 +3856,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Lock aspect ratio value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valors Bloquejar relació d'aspecte</translation>
     </message>
     <message>
         <source>Lock aspect ratio</source>
@@ -3770,11 +3868,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Size in staff space units</source>
-        <translation type="unfinished"/>
+        <translation>Mida en unitats d'espai de pentagrama</translation>
     </message>
     <message>
         <source>Reset Size in staff space units value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valors Mida en unitats d'espai de pentagrama</translation>
     </message>
 </context>
 <context>
@@ -3797,15 +3895,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Jump Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Inspector Salts</translation>
     </message>
     <message>
         <source>Reset Jump to value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valors Vés a</translation>
     </message>
     <message>
         <source>Reset Play until value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valors Reproduix fins</translation>
     </message>
     <message>
         <source>Reset Continue at value</source>
@@ -3895,7 +3993,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Allow diagonal</source>
-        <translation type="unfinished"/>
+        <translation>Permetre diagonal</translation>
     </message>
     <message>
         <source>Line Inspector</source>
@@ -3903,11 +4001,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Line color value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valors color de línia</translation>
     </message>
     <message>
         <source>Reset Allow diagonal value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valor Permetre diagonal</translation>
     </message>
     <message>
         <source>Reset Line style value</source>
@@ -3951,14 +4049,14 @@ space unit</extracomment>
     </message>
     <message>
         <source>Line visible</source>
-        <translation type="unfinished"/>
+        <translation>Línia visible</translation>
     </message>
 </context>
 <context>
     <name>InspectorMarker</name>
     <message>
         <source>Marker</source>
-        <translation>Marcador</translation>
+        <translation>Marca</translation>
     </message>
     <message>
         <source>Label</source>
@@ -3986,23 +4084,23 @@ space unit</extracomment>
     </message>
     <message>
         <source>Marker type</source>
-        <translation type="unfinished"/>
+        <translation>Tipus de marca</translation>
     </message>
     <message>
         <source>Marker Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Inspector Marca</translation>
     </message>
     <message>
         <source>Reset Marker type value</source>
-        <translation>Restablir valors tipus de marc</translation>
+        <translation>Restablir valors tipus de marca</translation>
     </message>
     <message>
         <source>Reset Label value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valors etiqueta</translation>
     </message>
     <message>
         <source>Marker Type</source>
-        <translation type="unfinished"/>
+        <translation>Tipus de marca</translation>
     </message>
     <message>
         <source>Segno variation</source>
@@ -4089,7 +4187,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Velocity type</source>
-        <translation type="unfinished"/>
+        <translation>Tipus de velocitat</translation>
     </message>
     <message>
         <source>Left</source>
@@ -4121,7 +4219,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Velocity value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valor Velocitat</translation>
     </message>
     <message>
         <source>Mirror Head</source>
@@ -4133,19 +4231,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Head group value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valor grup de caps</translation>
     </message>
     <message>
         <source>Reset Small value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valor menor</translation>
     </message>
     <message>
         <source>Reset Tuning value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valor d'afinació</translation>
     </message>
     <message>
         <source>Reset Play value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valors reproduix</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4161,15 +4259,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Fix to line</source>
-        <translation type="unfinished"/>
+        <translation>Fixar a la línia</translation>
     </message>
     <message>
         <source>Reset Fix to line</source>
-        <translation type="unfinished"/>
+        <translation>Restablir fixar a la línia</translation>
     </message>
     <message>
         <source>Reset Line</source>
-        <translation type="unfinished"/>
+        <translation>Restablir Línia</translation>
     </message>
 </context>
 <context>
@@ -4184,7 +4282,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Placement</source>
-        <translation type="unfinished"/>
+        <translation>Posició</translation>
     </message>
     <message>
         <source>8va</source>
@@ -4224,7 +4322,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Placement value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valors Posició</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4259,7 +4357,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Small value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valor menor</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4287,7 +4385,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Segment Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Inspector Segment</translation>
     </message>
     <message>
         <source>Reset Leading space value</source>
@@ -4358,7 +4456,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Spacer Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Inspector Espaiament</translation>
     </message>
     <message>
         <source>Reset Height value</source>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Marc de text</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Marge superior</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Recuperar valors</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Marge esquerra</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Marge inferior</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Restablir valors del marge dret</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Marge dret</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Restablir valors del marge inferior</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Restablir valors del marge superior</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Restablir valors del marge esquerra</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4377,7 +4547,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Follow text</source>
-        <translation type="unfinished"/>
+        <translation>Seguir text</translation>
     </message>
     <message>
         <source>BPM</source>
@@ -4389,7 +4559,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Tempo value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valors tempo</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4397,7 +4567,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Follow text value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valors Seguir text</translation>
     </message>
 </context>
 <context>
@@ -4416,7 +4586,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Style value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valors Estil</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Trinat breu</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Línia ondulada</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Restablir valor</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Tipus d'ornament</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Direcció</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Per defecte</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barroc</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Restablir valors del tipus d'ornament</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reprodueix</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restablir valors de reproducció</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4568,11 +4762,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Number type</source>
-        <translation type="unfinished"/>
+        <translation>Tipus de número</translation>
     </message>
     <message>
         <source>Bracket type</source>
-        <translation type="unfinished"/>
+        <translation>Tipus de claudàtor</translation>
     </message>
 </context>
 <context>
@@ -4608,11 +4802,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Top gap value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valorsobertura superior</translation>
     </message>
     <message>
         <source>Reset Bottom gap value</source>
-        <translation type="unfinished"/>
+        <translation>Restablir valorsobertura inferior</translation>
     </message>
     <message>
         <source>Bottom margin</source>
@@ -4624,11 +4818,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Top gap</source>
-        <translation type="unfinished"/>
+        <translation>Obertura superior</translation>
     </message>
     <message>
         <source>Bottom gap</source>
-        <translation type="unfinished"/>
+        <translation>Obertura inferior</translation>
     </message>
     <message>
         <source>Top margin</source>
@@ -4734,7 +4928,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Instrument wizard</source>
-        <translation type="unfinished"/>
+        <translation>Assistent d'instruments</translation>
     </message>
     <message>
         <source>Instrument List</source>
@@ -4746,7 +4940,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Instrument Genre Filter</source>
-        <translation type="unfinished"/>
+        <translation>Filtre classificació d'instruments</translation>
     </message>
 </context>
 <context>
@@ -4840,7 +5034,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Instrument Genre Filter</source>
-        <translation type="unfinished"/>
+        <translation>Filtre classificació d'instruments</translation>
     </message>
     <message>
         <source>Instrument list</source>
@@ -4848,11 +5042,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Clear Search box</source>
-        <translation type="unfinished"/>
+        <translation>Buuidar la casella de cerca</translation>
     </message>
     <message>
         <source>Partitur List</source>
-        <translation type="unfinished"/>
+        <translation>Llista de partitures</translation>
     </message>
     <message>
         <source>Staff linked to previous</source>
@@ -4879,14 +5073,21 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Capes</translation>
     </message>
     <message>
         <source>Layer</source>
-        <translation type="unfinished"/>
+        <translation>Capa</translation>
     </message>
     <message>
         <source>Create</source>
@@ -4898,15 +5099,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Tags</source>
-        <translation type="unfinished"/>
+        <translation>Etiquetes</translation>
     </message>
     <message>
         <source>Add Tag</source>
-        <translation type="unfinished"/>
+        <translation>Afegir etiquetes</translation>
     </message>
     <message>
         <source>Delete Tag</source>
-        <translation type="unfinished"/>
+        <translation>Eliminar etiquetes</translation>
     </message>
     <message>
         <source>1</source>
@@ -5034,7 +5235,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Tag</source>
-        <translation type="unfinished"/>
+        <translation>Etiqueta</translation>
     </message>
     <message>
         <source>Description</source>
@@ -5147,7 +5348,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>None (1:1)</source>
-        <translation type="unfinished"/>
+        <translation>Cap (1:1)</translation>
     </message>
     <message>
         <source>Swing (2:1)</source>
@@ -5175,27 +5376,27 @@ space unit</extracomment>
     </message>
     <message>
         <source>2-plets</source>
-        <translation type="unfinished"/>
+        <translation>2-ets</translation>
     </message>
     <message>
         <source>3-plets</source>
-        <translation type="unfinished"/>
+        <translation>3-ets</translation>
     </message>
     <message>
         <source>4-plets</source>
-        <translation type="unfinished"/>
+        <translation>4-ets</translation>
     </message>
     <message>
         <source>5-plets</source>
-        <translation type="unfinished"/>
+        <translation>5-ets</translation>
     </message>
     <message>
         <source>7-plets</source>
-        <translation type="unfinished"/>
+        <translation>7-ets</translation>
     </message>
     <message>
         <source>9-plets</source>
-        <translation type="unfinished"/>
+        <translation>9-ets</translation>
     </message>
     <message>
         <source>Tuplets</source>
@@ -5638,15 +5839,15 @@ el grupetto sobrepassa el compàs</translation>
     </message>
     <message>
         <source>PDF-Scan</source>
-        <translation type="unfinished"/>
+        <translation>PDF-Scan</translation>
     </message>
     <message>
         <source>Add Scan</source>
-        <translation type="unfinished"/>
+        <translation>Afegir imatge escanejada</translation>
     </message>
     <message>
         <source>Remove Scan</source>
-        <translation type="unfinished"/>
+        <translation>Treure imatge escanejada</translation>
     </message>
     <message>
         <source>Audio</source>
@@ -5792,11 +5993,11 @@ el grupetto sobrepassa el compàs</translation>
     <name>Ms::BarLine</name>
     <message>
         <source>%1 Start of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 Inici de %2</translation>
     </message>
     <message>
         <source>%1 End of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 Final de %2</translation>
     </message>
 </context>
 <context>
@@ -5850,11 +6051,11 @@ el grupetto sobrepassa el compàs</translation>
     </message>
     <message>
         <source>%1 Start of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 Inici de %2</translation>
     </message>
     <message>
         <source>%1 End of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 Final de %2</translation>
     </message>
     <message>
         <source>Dotted %1</source>
@@ -5880,7 +6081,7 @@ el grupetto sobrepassa el compàs</translation>
     <name>Ms::DrumTools</name>
     <message>
         <source>Drum Tools</source>
-        <translation type="unfinished"/>
+        <translation>Eines de percussió</translation>
     </message>
     <message>
         <source>Edit Drumset</source>
@@ -5895,11 +6096,11 @@ el grupetto sobrepassa el compàs</translation>
     <name>Ms::DrumrollEditor</name>
     <message>
         <source>Toolbar 1</source>
-        <translation type="unfinished"/>
+        <translation>Barra d'eines 1</translation>
     </message>
     <message>
         <source>Toolbar 3</source>
-        <translation type="unfinished"/>
+        <translation>Barra d'eines 3</translation>
     </message>
     <message>
         <source>Cursor:</source>
@@ -6025,15 +6226,15 @@ error:</translation>
     </message>
     <message>
         <source>file path+name</source>
-        <translation type="unfinished"/>
+        <translation>Ruta y nom del fitxer</translation>
     </message>
     <message>
         <source>current date</source>
-        <translation type="unfinished"/>
+        <translation>Data actual</translation>
     </message>
     <message>
         <source>creation date</source>
-        <translation type="unfinished"/>
+        <translation>Data de creació</translation>
     </message>
     <message>
         <source>copyright, on first page only</source>
@@ -6045,15 +6246,7 @@ error:</translation>
     </message>
     <message>
         <source>the $ sign itself</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>meta data tag</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation type="unfinished"/>
+        <translation>El mateix símbol $</translation>
     </message>
     <message>
         <source>Apply to all Parts</source>
@@ -6061,16 +6254,24 @@ error:</translation>
     </message>
     <message>
         <source>last modification time</source>
-        <translation type="unfinished"/>
+        <translation>Hora de l'última modificació</translation>
     </message>
     <message>
         <source>last modification date</source>
-        <translation type="unfinished"/>
+        <translation>Data de l'última modificació</translation>
     </message>
     <message>
         <source>page number, if there is more than one page</source>
         <translation>nombre de pàgina, si hi ha més d'una pàgina</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -6131,7 +6332,7 @@ error:</translation>
     </message>
     <message>
         <source>Inspector Subwindow</source>
-        <translation type="unfinished"/>
+        <translation>Subfinestra de l'inspector</translation>
     </message>
 </context>
 <context>
@@ -6282,11 +6483,11 @@ error:</translation>
     <name>Ms::LayerManager</name>
     <message>
         <source>MuseScore: select layer tag</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Seleccionar l'etiqueta de la capa</translation>
     </message>
     <message>
         <source>layer tag</source>
-        <translation type="unfinished"/>
+        <translation>Etiqueta de capa</translation>
     </message>
 </context>
 <context>
@@ -6312,7 +6513,7 @@ error:</translation>
     <name>Ms::LoginManager</name>
     <message>
         <source>Network error</source>
-        <translation type="unfinished"/>
+        <translation>Error xarxa</translation>
     </message>
     <message>
         <source>Unsuccessful login. Please try again.</source>
@@ -6360,7 +6561,7 @@ error:</translation>
     </message>
     <message>
         <source>The local time on your device is not set right. Please check it and adjust. It's advised to set the time/timezone to automatic. If you still can't log in, <a href="%1">contact us</a>.</source>
-        <translation type="unfinished"/>
+        <translation>L'hora local del dispositiu no és la correcta. Si us plau, comproveu i ajusteu. És aconsellable de fer-ho en automàtic. Si vostè encara no pot connectar-se, <a href="%1">poseu-vos en contacte amb nosaltres</a>.</translation>
     </message>
 </context>
 <context>
@@ -6396,18 +6597,18 @@ error:</translation>
     <name>Ms::MediaDialog</name>
     <message>
         <source>MuseScore: Additional Media</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Multimèdia addicional</translation>
     </message>
 </context>
 <context>
     <name>Ms::MetaEditDialog</name>
     <message>
         <source>MuseScore: Input Tag Name</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Nom de l'etiqueta d'entrada</translation>
     </message>
     <message>
         <source>New tag name:</source>
-        <translation type="unfinished"/>
+        <translation>Nou nom de l'etiqueta:</translation>
     </message>
 </context>
 <context>
@@ -6421,15 +6622,15 @@ error:</translation>
     <name>Ms::MuseScore</name>
     <message>
         <source>Could not open MP3 encoding library!</source>
-        <translation type="unfinished"/>
+        <translation>No s'ha pogut obrir la biblioteca de codificació de MP3!</translation>
     </message>
     <message>
         <source>Not a valid or supported MP3 encoding library!</source>
-        <translation type="unfinished"/>
+        <translation>No és una biblioteca de codificació MP3 vàlida o compatible!</translation>
     </message>
     <message>
         <source>Unable to initialize MP3 stream</source>
-        <translation type="unfinished"/>
+        <translation>No es pot inicialitzar flux MP3</translation>
     </message>
     <message>
         <source>Unable to open target file for writing</source>
@@ -6619,7 +6820,7 @@ Voleu reemplaçar-lo?
     </message>
     <message>
         <source>Skip</source>
-        <translation type="unfinished"/>
+        <translation>Saltar</translation>
     </message>
     <message>
         <source>Replace All</source>
@@ -6627,7 +6828,7 @@ Voleu reemplaçar-lo?
     </message>
     <message>
         <source>Skip All</source>
-        <translation type="unfinished"/>
+        <translation>Saltar tot</translation>
     </message>
     <message>
         <source>Parts were successfully exported</source>
@@ -6743,7 +6944,7 @@ Voleu reemplaçar-lo?
     </message>
     <message>
         <source>&Frames</source>
-        <translation>&Fragments</translation>
+        <translation>&Marcs</translation>
     </message>
     <message>
         <source>&Text</source>
@@ -6829,7 +7030,7 @@ Selecciona un compàs i torna a intentar-ho</translation>
     </message>
     <message>
         <source>T&uplets</source>
-        <translation type="unfinished"/>
+        <translation>Grups irregulars</translation>
     </message>
     <message>
         <source>&Layout</source>
@@ -6885,7 +7086,7 @@ Restaurar sessió?</translation>
     </message>
     <message>
         <source>MuseScore: Read Workspace Name</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Llegir el nom de l'espai de trevall</translation>
     </message>
     <message>
         <source>'%1' does already exist,
@@ -6965,7 +7166,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Clear Recent Files</source>
-        <translation type="unfinished"/>
+        <translation>Esborrar fitxers recents</translation>
     </message>
     <message>
         <source>All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</source>
@@ -6981,7 +7182,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>View Mode</source>
-        <translation type="unfinished"/>
+        <translation>Mode de visualització</translation>
     </message>
     <message>
         <source>Swing</source>
@@ -7069,7 +7270,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Switch layer</source>
-        <translation type="unfinished"/>
+        <translation>Canviar capa</translation>
     </message>
     <message>
         <source>Switch play mode</source>
@@ -7109,7 +7310,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>All Supported Files (*.svg *.jpg *.jpeg *.png);;Scalable Vector Graphics (*.svg);;JPEG (*.jpg *.jpeg);;PNG (*.png)</source>
-        <translation type="unfinished"/>
+        <translation>Tots els arxius suportats (*.svg *.jpg *.jpeg *.png);;Scalable Vector Graphics (*.svg);;JPEG (*.jpg *.jpeg);;PNG (*.png)</translation>
     </message>
     <message>
         <source>&Tools</source>
@@ -7173,11 +7374,11 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Drum input mode</source>
-        <translation type="unfinished"/>
+        <translation>Mode d'entrada percussions</translation>
     </message>
     <message>
         <source>TAB input mode</source>
-        <translation type="unfinished"/>
+        <translation>Mode d'entrada tabulatura</translation>
     </message>
     <message>
         <source>Image capture mode</source>
@@ -7185,7 +7386,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Cannot determine file type</source>
-        <translation type="unfinished"/>
+        <translation>No es pot determinar el tipus de fitxer</translation>
     </message>
     <message>
         <source>MuseScore:</source>
@@ -7193,10 +7394,14 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Cannot write into %1</source>
-        <translation type="unfinished"/>
+        <translation>No es pot escriure a %1</translation>
     </message>
     <message>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
+        <translation>Aquesta partitura no es pot guardar en línia. Si us plau, corregeixi les mesures danyades i torneu a intentar-ho.</translation>
+    </message>
+    <message>
+        <source>Ask for Help</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7320,7 +7525,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Invalid note</source>
-        <translation type="unfinished"/>
+        <translation>Nota no vàlida</translation>
     </message>
     <message>
         <source>Note</source>
@@ -7336,11 +7541,11 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>%1 Start of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 Inici de %2</translation>
     </message>
     <message>
         <source>%1 End of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 Final de %2</translation>
     </message>
     <message>
         <source>%1; Pitch: %2; Duration: %3%4</source>
@@ -7401,7 +7606,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Single Palette</source>
-        <translation type="unfinished"/>
+        <translation>Paleta individual</translation>
     </message>
 </context>
 <context>
@@ -7461,7 +7666,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Edit Operations</source>
-        <translation type="unfinished"/>
+        <translation>Operacions d'edició</translation>
     </message>
     <message>
         <source>MuseScore</source>
@@ -7482,7 +7687,8 @@ si us plau escolliu un altre nom:</translation>
     <message>
         <source>Plugin "%1" has changes.
 Save before closing?</source>
-        <translation type="unfinished"/>
+        <translation>Plugin "%1" té canvis.
+¿Desar abans de tancar?</translation>
     </message>
     <message>
         <source>MuseScore: Save Plugin</source>
@@ -7490,7 +7696,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>Cannot determine file type</source>
-        <translation type="unfinished"/>
+        <translation>No es pot determinar el tipus de fitxer</translation>
     </message>
 </context>
 <context>
@@ -7537,7 +7743,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>Choose Default Style for Imports</source>
-        <translation type="unfinished"/>
+        <translation>Triar l'estil predeterminat per les importacions</translation>
     </message>
     <message>
         <source>Choose Score Folder</source>
@@ -7600,7 +7806,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>Failed, try again</source>
-        <translation type="unfinished"/>
+        <translation>Error, intenta de nou</translation>
     </message>
     <message>
         <source>Updated</source>
@@ -7638,16 +7844,19 @@ Prova a desar-ho en una localització diferent.</translation>
         <source>Open Temp File
 %1
 failed: %2</source>
-        <translation type="unfinished"/>
+        <translation>Obrir fitxer temporal
+%1
+error: %2</translation>
     </message>
     <message>
         <source>MuseScore: Save File failed: %1</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Error al desar el fitxer: %1</translation>
     </message>
     <message>
         <source>Renaming temp. file <%1> to <%2> failed:
 %3</source>
-        <translation type="unfinished"/>
+        <translation>Canviar el nom del fitxer temporal  <% 1> a <% 2> error:
+3%</translation>
     </message>
     <message>
         <source>Open File
@@ -7661,21 +7870,21 @@ error:</translation>
         <source>Open File
 %1
 failed: %2</source>
-        <translation type="unfinished"/>
+        <translation>Obrir fitxer
+%1
+error: %2</translation>
     </message>
     <message>
         <source>Open Style File
 %1
 failed: %2</source>
-        <translation type="unfinished"/>
+        <translation>Obrir fitxer d'estil
+%1
+error: %2</translation>
     </message>
     <message>
         <source>Write Style failed: %1</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>file not found</source>
-        <translation>Fitxer no trobat</translation>
+        <translation>Error escriure estils: %1</translation>
     </message>
     <message>
         <source>No selection</source>
@@ -7689,6 +7898,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7706,7 +7919,7 @@ failed: %2</source>
     </message>
     <message>
         <source>List Selection</source>
-        <translation type="unfinished"/>
+        <translation>Selecció de llista</translation>
     </message>
     <message>
         <source>Measure: %1</source>
@@ -7772,7 +7985,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Layer</source>
-        <translation type="unfinished"/>
+        <translation>Capa</translation>
     </message>
     <message>
         <source>Text Properties...</source>
@@ -7832,7 +8045,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Chord Articulation...</source>
-        <translation type="unfinished"/>
+        <translation>Articulació de l'acord ...</translation>
     </message>
     <message>
         <source>Section Break Properties...</source>
@@ -7984,11 +8197,11 @@ Per favor seleccioni un rang de compassos per fusionar i provi una altra vegada<
     </message>
     <message>
         <source>Cannot determine file type</source>
-        <translation type="unfinished"/>
+        <translation>No es pot determinar el tipus de fitxer</translation>
     </message>
     <message>
         <source>No destination to paste</source>
-        <translation type="unfinished"/>
+        <translation>No hi ha cap destí per enganxar</translation>
     </message>
     <message>
         <source>Cannot paste into tuplet</source>
@@ -8002,12 +8215,17 @@ Per favor seleccioni un rang de compassos per fusionar i provi una altra vegada<
         <source>Transparent background</source>
         <translation>Fons transparent</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
     <message>
         <source>Search Box</source>
-        <translation type="unfinished"/>
+        <translation>Casella de cerca</translation>
     </message>
     <message>
         <source>Type to search. Press Enter to return to score.</source>
@@ -8018,15 +8236,15 @@ Per favor seleccioni un rang de compassos per fusionar i provi una altra vegada<
     <name>Ms::Segment</name>
     <message>
         <source>Start of </source>
-        <translation type="unfinished"/>
+        <translation>Inici de</translation>
     </message>
     <message>
         <source>End of </source>
-        <translation type="unfinished"/>
+        <translation>Final de</translation>
     </message>
     <message>
         <source>Annotations:</source>
-        <translation type="unfinished"/>
+        <translation>Anotacions:</translation>
     </message>
 </context>
 <context>
@@ -8037,7 +8255,7 @@ Per favor seleccioni un rang de compassos per fusionar i provi una altra vegada<
     </message>
     <message>
         <source>Use Tab and Backtab to move through the check boxes</source>
-        <translation type="unfinished"/>
+        <translation>Utilitzar les tecles Tab i Blacktab per desplaçar-se per les caselles de verificació</translation>
     </message>
 </context>
 <context>
@@ -8081,7 +8299,7 @@ Per favor seleccioni un rang de compassos per fusionar i provi una altra vegada<
     <name>Ms::StartDialog</name>
     <message>
         <source>MuseScore Startup Dialog</source>
-        <translation type="unfinished"/>
+        <translation>Finestra d'inici de MuseScore</translation>
     </message>
 </context>
 <context>
@@ -8138,11 +8356,11 @@ Per favor seleccioni un rang de compassos per fusionar i provi una altra vegada<
     </message>
     <message>
         <source>Subscript</source>
-        <translation type="unfinished"/>
+        <translation>Subíndex</translation>
     </message>
     <message>
         <source>Superscript</source>
-        <translation type="unfinished"/>
+        <translation>Superíndex</translation>
     </message>
 </context>
 <context>
@@ -8169,7 +8387,7 @@ Per favor seleccioni un rang de compassos per fusionar i provi una altra vegada<
     <name>Ms::TextStyleDialog</name>
     <message>
         <source>MuseScore: Read Style Name</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Llegir nom de l'estil</translation>
     </message>
     <message>
         <source>'%1' does already exist,
@@ -8183,7 +8401,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Text style name:</source>
-        <translation type="unfinished"/>
+        <translation>Nom de l'estil de text:</translation>
     </message>
 </context>
 <context>
@@ -8210,11 +8428,11 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Subscript</source>
-        <translation type="unfinished"/>
+        <translation>Subíndex</translation>
     </message>
     <message>
         <source>Superscript</source>
-        <translation type="unfinished"/>
+        <translation>Superíndex</translation>
     </message>
 </context>
 <context>
@@ -8228,7 +8446,7 @@ si us plau escolliu un altre nom:</translation>
     <name>Ms::TimeSig</name>
     <message>
         <source>Common time</source>
-        <translation type="unfinished"/>
+        <translation>Compàs comú</translation>
     </message>
     <message>
         <source>Cut time</source>
@@ -8236,7 +8454,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>%1/%2 time</source>
-        <translation type="unfinished"/>
+        <translation>Compàs %1/%2</translation>
     </message>
 </context>
 <context>
@@ -8258,39 +8476,39 @@ si us plau escolliu un altre nom:</translation>
     <name>Ms::UploadScoreDialog</name>
     <message>
         <source>All Rights reserved</source>
-        <translation type="unfinished"/>
+        <translation>Tots els drets reservats</translation>
     </message>
     <message>
         <source>Creative Commons Attribution</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Attribution</translation>
     </message>
     <message>
         <source>Creative Commons Attribution Share Alike</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Attribution Share Alike</translation>
     </message>
     <message>
         <source>Creative Commons Attribution No Derivative Works</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Attribution No Derivative Works</translation>
     </message>
     <message>
         <source>Creative Commons Attribution Noncommercial</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Attribution Noncommercial</translation>
     </message>
     <message>
         <source>Creative Commons Attribution Noncommercial Share Alike</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Attribution Noncommercial Share Alike</translation>
     </message>
     <message>
         <source>Creative Commons Attribution Noncommercial Non Derivate Works</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Attribution Noncommercial Non Derivate Works</translation>
     </message>
     <message>
         <source>Public Domain</source>
-        <translation type="unfinished"/>
+        <translation>Domini públic</translation>
     </message>
     <message>
         <source>Creative Commons Zero</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Zero</translation>
     </message>
     <message>
         <source>Missing title</source>
@@ -8302,7 +8520,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Success</source>
-        <translation type="unfinished"/>
+        <translation>Èxit</translation>
     </message>
     <message>
         <source>Finished! <a href="%1">Go to my score</a>.</source>
@@ -8310,7 +8528,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Error</source>
-        <translation type="unfinished"/>
+        <translation>Error</translation>
     </message>
     <message>
         <source><a href="%1">What does this mean?</a></source>
@@ -8322,7 +8540,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Use a comma to separate the tags</source>
-        <translation type="unfinished"/>
+        <translation>Utilitzar una coma per a separar les etiquetes</translation>
     </message>
     <message>
         <source>[<a href="%1">link</a>]</source>
@@ -8462,7 +8680,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Insert composer's name here</source>
-        <translation type="unfinished"/>
+        <translation>Insereix el nom del compositor aquí</translation>
     </message>
     <message>
         <source>Lyricist</source>
@@ -8485,7 +8703,7 @@ si us plau escolliu un altre nom:</translation>
     <name>NoteGroups</name>
     <message>
         <source>Note Groups</source>
-        <translation type="unfinished"/>
+        <translation>Grups de notes</translation>
     </message>
     <message>
         <source>1/16</source>
@@ -8512,19 +8730,19 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Process</source>
-        <translation type="unfinished"/>
+        <translation>Processar</translation>
     </message>
     <message>
         <source>Mark staves</source>
-        <translation type="unfinished"/>
+        <translation>Marcar pentagrames</translation>
     </message>
     <message>
         <source>Mark slices</source>
-        <translation type="unfinished"/>
+        <translation>Marcar mostres</translation>
     </message>
     <message>
         <source>Mark barlines</source>
-        <translation type="unfinished"/>
+        <translation>Marcar barres de compàs</translation>
     </message>
     <message>
         <source>Show lines</source>
@@ -8750,7 +8968,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>Staff Changes</source>
-        <translation type="unfinished"/>
+        <translation>Canvis de pentagrama</translation>
     </message>
     <message>
         <source>Arpeggios && Glissandi</source>
@@ -8774,7 +8992,7 @@ si us plau escolliu un altre nom:</translation>
     </message>
     <message>
         <source>MuseScore: Writing Palette File</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Escriure el fitxer de la paleta</translation>
     </message>
     <message>
         <source>Writing Palette File
@@ -8784,11 +9002,11 @@ failed: </source>
     </message>
     <message>
         <source>common symbols</source>
-        <translation type="unfinished"/>
+        <translation>Símbols comuns</translation>
     </message>
     <message>
         <source>all font symbols</source>
-        <translation type="unfinished"/>
+        <translation>tots els símbols de tipografía</translation>
     </message>
     <message>
         <source>Tick 1 span</source>
@@ -8851,7 +9069,7 @@ failed: </source>
     <name>PaletteCellProperties</name>
     <message>
         <source>Cell Properties</source>
-        <translation type="unfinished"/>
+        <translation>Propietats de cel·la</translation>
     </message>
     <message>
         <source>Palette Cell Properties</source>
@@ -8985,7 +9203,7 @@ failed: </source>
     </message>
     <message>
         <source>Panorama position</source>
-        <translation type="unfinished"/>
+        <translation>Posició panorama</translation>
     </message>
     <message>
         <source>MIDI sound</source>
@@ -8997,7 +9215,7 @@ failed: </source>
     </message>
     <message>
         <source>Use arrows to modify</source>
-        <translation type="unfinished"/>
+        <translation>Utilitzeu les fletxes per a modificar</translation>
     </message>
     <message>
         <source>Sound</source>
@@ -9023,11 +9241,11 @@ failed: </source>
     <name>PianorollEditor</name>
     <message>
         <source>Toolbar 1</source>
-        <translation type="unfinished"/>
+        <translation>Barra d'eines 1</translation>
     </message>
     <message>
         <source>Wave</source>
-        <translation type="unfinished"/>
+        <translation>Ona</translation>
     </message>
     <message>
         <source>Show wave display</source>
@@ -9035,7 +9253,7 @@ failed: </source>
     </message>
     <message>
         <source>Toolbar 2</source>
-        <translation type="unfinished"/>
+        <translation>Barra d'eines 2</translation>
     </message>
     <message>
         <source>Cursor:</source>
@@ -9063,7 +9281,7 @@ failed: </source>
     </message>
     <message>
         <source>Len:</source>
-        <translation type="unfinished"/>
+        <translation>Long:</translation>
     </message>
     <message>
         <source>MuseScore: <%1> Staff: %2</source>
@@ -9120,7 +9338,7 @@ failed: </source>
     </message>
     <message>
         <source>Playback Position</source>
-        <translation type="unfinished"/>
+        <translation>Posició de reproducció</translation>
     </message>
     <message>
         <source>Relative Tempo to 120 beats per minute</source>
@@ -9128,7 +9346,7 @@ failed: </source>
     </message>
     <message>
         <source>Use up and down arrows to change value</source>
-        <translation type="unfinished"/>
+        <translation>Utilitzar les tecles fletxes amunt i avall per canviar el valor</translation>
     </message>
     <message>
         <source>Master Volume</source>
@@ -9187,7 +9405,7 @@ failed: </source>
     </message>
     <message>
         <source>R</source>
-        <translation type="unfinished"/>
+        <translation>R</translation>
     </message>
     <message>
         <source>Reload current plugin source</source>
@@ -9297,7 +9515,7 @@ failed: </source>
     </message>
     <message>
         <source>Paper</source>
-        <translation type="unfinished"/>
+        <translation>Paper</translation>
     </message>
     <message>
         <source>Miscellaneous</source>
@@ -9377,7 +9595,7 @@ failed: </source>
     </message>
     <message>
         <source>Device:</source>
-        <translation>Dispositiu:</translation>
+        <translation>Perifèric:</translation>
     </message>
     <message>
         <source>default</source>
@@ -9537,7 +9755,7 @@ failed: </source>
     </message>
     <message>
         <source>Export layout</source>
-        <translation type="unfinished"/>
+        <translation>Exportar disseny</translation>
     </message>
     <message>
         <source>Export all system and page breaks</source>
@@ -9677,7 +9895,7 @@ failed: </source>
     </message>
     <message>
         <source>ALSA audio</source>
-        <translation type="unfinished"/>
+        <translation>Àudio ALSA</translation>
     </message>
     <message>
         <source>Sample rate:</source>
@@ -9758,15 +9976,15 @@ failed: </source>
     </message>
     <message>
         <source>Start with score</source>
-        <translation type="unfinished"/>
+        <translation>Començar amb la partitura</translation>
     </message>
     <message>
         <source>Insert path to starting score</source>
-        <translation type="unfinished"/>
+        <translation>Inserir la ruta per la partitura d'inici</translation>
     </message>
     <message>
         <source>Choose starting score</source>
-        <translation type="unfinished"/>
+        <translation>Triar partitura d'inici</translation>
     </message>
     <message>
         <source>Opens a file dialog for selecting the starting score</source>
@@ -9774,7 +9992,7 @@ failed: </source>
     </message>
     <message>
         <source>Select delay (in minutes) between auto saves</source>
-        <translation type="unfinished"/>
+        <translation>Seleccionar la durada (en minuts) entre dos desa automàtic</translation>
     </message>
     <message>
         <source>Port number</source>
@@ -9786,11 +10004,11 @@ failed: </source>
     </message>
     <message>
         <source>Icon Height</source>
-        <translation type="unfinished"/>
+        <translation>Alçada icona</translation>
     </message>
     <message>
         <source>Icon Width</source>
-        <translation type="unfinished"/>
+        <translation>Amplada icona</translation>
     </message>
     <message>
         <source>Style folder</source>
@@ -9798,7 +10016,7 @@ failed: </source>
     </message>
     <message>
         <source>Insert path for style folder</source>
-        <translation type="unfinished"/>
+        <translation>Inserir ruta de carpeta d'estil</translation>
     </message>
     <message>
         <source>Choose score folder</source>
@@ -9806,7 +10024,7 @@ failed: </source>
     </message>
     <message>
         <source>Opens a folder dialog for selecting the score folder</source>
-        <translation>Obre un caixa de diàleg per seleccionar la carpeta de partitures</translation>
+        <translation>Obre una caixa de diàleg per seleccionar la carpeta de partitures</translation>
     </message>
     <message>
         <source>Choose style folder</source>
@@ -9814,7 +10032,7 @@ failed: </source>
     </message>
     <message>
         <source>Opens a folder dialog for selecting the style folder</source>
-        <translation>Obre un caixa de diàleg per seleccionar la carpeta d'estils</translation>
+        <translation>Obre una caixa de diàleg per seleccionar la carpeta d'estils</translation>
     </message>
     <message>
         <source>Score folder</source>
@@ -9822,7 +10040,7 @@ failed: </source>
     </message>
     <message>
         <source>Insert path to score folder.</source>
-        <translation type="unfinished"/>
+        <translation>Inserir ruta de carpeta de partitures</translation>
     </message>
     <message>
         <source>Template folder</source>
@@ -9830,7 +10048,7 @@ failed: </source>
     </message>
     <message>
         <source>Insert path to Template folder</source>
-        <translation type="unfinished"/>
+        <translation>Inserir ruta de carpeta d'estil</translation>
     </message>
     <message>
         <source>Plugin folder</source>
@@ -9838,7 +10056,7 @@ failed: </source>
     </message>
     <message>
         <source>Insert path to plugin folder</source>
-        <translation type="unfinished"/>
+        <translation>Inserir ruta de carpeta de connectors</translation>
     </message>
     <message>
         <source>Choose plugin folder</source>
@@ -9846,7 +10064,7 @@ failed: </source>
     </message>
     <message>
         <source>Opens a folder dialog for selecting the plugin folder</source>
-        <translation>Obre un caixa de diàleg per seleccionar la carpeta de connectors</translation>
+        <translation>Obre una caixa de diàleg per seleccionar la carpeta de connectors</translation>
     </message>
     <message>
         <source>Image folder</source>
@@ -9854,7 +10072,7 @@ failed: </source>
     </message>
     <message>
         <source>Insert path to image folder</source>
-        <translation type="unfinished"/>
+        <translation>Inserir ruta de carpeta d'imatges</translation>
     </message>
     <message>
         <source>Choose template folder</source>
@@ -9862,11 +10080,11 @@ failed: </source>
     </message>
     <message>
         <source>Opens a folder dialog for selecting the template folder</source>
-        <translation>Obre un caixa de diàleg per seleccionar la carpeta de plantilles</translation>
+        <translation>Obre una caixa de diàleg per seleccionar la carpeta de plantilles</translation>
     </message>
     <message>
         <source>Opens a folder dialog for selecting the image folder</source>
-        <translation>Obre un caixa de diàleg per seleccionar la carpeta d'imatges</translation>
+        <translation>Obre una caixa de diàleg per seleccionar la carpeta d'imatges</translation>
     </message>
     <message>
         <source>Canvas Tab</source>
@@ -9894,7 +10112,7 @@ failed: </source>
     </message>
     <message>
         <source>Opens a file dialog for selecting the wallpaper file</source>
-        <translation>Obre un caixa de diàleg per seleccionar un fons d'escriptori</translation>
+        <translation>Obre una caixa de diàleg per seleccionar un fons d'escriptori</translation>
     </message>
     <message>
         <source>Select background color</source>
@@ -9930,7 +10148,7 @@ failed: </source>
     </message>
     <message>
         <source>Paper Color</source>
-        <translation type="unfinished"/>
+        <translation>Color del paper</translation>
     </message>
     <message>
         <source>Enable MIDI Input</source>
@@ -9962,11 +10180,11 @@ failed: </source>
     </message>
     <message>
         <source>Whole note record</source>
-        <translation type="unfinished"/>
+        <translation>Enregistrar rodona</translation>
     </message>
     <message>
         <source>Half note record</source>
-        <translation type="unfinished"/>
+        <translation>Enregistrar blanca</translation>
     </message>
     <message>
         <source>Rest is active</source>
@@ -9998,7 +10216,7 @@ failed: </source>
     </message>
     <message>
         <source>Rest record</source>
-        <translation type="unfinished"/>
+        <translation>Enregistrar silenci</translation>
     </message>
     <message>
         <source>Play is active</source>
@@ -10022,7 +10240,7 @@ failed: </source>
     </message>
     <message>
         <source>16th note record</source>
-        <translation type="unfinished"/>
+        <translation>Enregistrar semicorxera</translation>
     </message>
     <message>
         <source>32nd note is active</source>
@@ -10030,7 +10248,7 @@ failed: </source>
     </message>
     <message>
         <source>32nd note record</source>
-        <translation type="unfinished"/>
+        <translation>Enregistrar fusa</translation>
     </message>
     <message>
         <source>Score Tab</source>
@@ -10054,15 +10272,15 @@ failed: </source>
     </message>
     <message>
         <source>Insert path to a instrument list file</source>
-        <translation type="unfinished"/>
+        <translation>Inserir ruta d'un fitxer de llistat d'instruments</translation>
     </message>
     <message>
         <source>Insert path to style file</source>
-        <translation type="unfinished"/>
+        <translation>Inserir ruta de fitxer d'estil</translation>
     </message>
     <message>
         <source>Choose style</source>
-        <translation type="unfinished"/>
+        <translation>Tria estil</translation>
     </message>
     <message>
         <source>Opens a file dialog for selecting a style file</source>
@@ -10074,7 +10292,7 @@ failed: </source>
     </message>
     <message>
         <source>Insert path to style file for part</source>
-        <translation type="unfinished"/>
+        <translation>Inserir ruta de fitxer d'estil per particel·la</translation>
     </message>
     <message>
         <source>Choose style for part</source>
@@ -10098,7 +10316,7 @@ failed: </source>
     </message>
     <message>
         <source>Port Audio</source>
-        <translation type="unfinished"/>
+        <translation>Port d'àudio</translation>
     </message>
     <message>
         <source>API</source>
@@ -10118,27 +10336,27 @@ failed: </source>
     </message>
     <message>
         <source>Device</source>
-        <translation type="unfinished"/>
+        <translation>Perifèric</translation>
     </message>
     <message>
         <source>Choose device</source>
-        <translation type="unfinished"/>
+        <translation>Seleccionar perifèric</translation>
     </message>
     <message>
         <source>Fragments</source>
-        <translation type="unfinished"/>
+        <translation>Fragments</translation>
     </message>
     <message>
         <source>Choose number of fragments</source>
-        <translation type="unfinished"/>
+        <translation>Tria el nombre de fragments</translation>
     </message>
     <message>
         <source>Period Size</source>
-        <translation type="unfinished"/>
+        <translation>Mida del període</translation>
     </message>
     <message>
         <source>Choose period size</source>
-        <translation type="unfinished"/>
+        <translation>Tria la mida del període</translation>
     </message>
     <message>
         <source>Sample rate</source>
@@ -10202,7 +10420,7 @@ failed: </source>
     </message>
     <message>
         <source>Shortcuts table</source>
-        <translation type="unfinished"/>
+        <translation>Taula de dreceres de teclat</translation>
     </message>
     <message>
         <source>Reset Shortcut to default</source>
@@ -10226,7 +10444,7 @@ failed: </source>
     </message>
     <message>
         <source>Quarter note record</source>
-        <translation type="unfinished"/>
+        <translation>Enregistrar negra</translation>
     </message>
     <message>
         <source>Eighth note is active</source>
@@ -10234,7 +10452,7 @@ failed: </source>
     </message>
     <message>
         <source>Eighth note record</source>
-        <translation type="unfinished"/>
+        <translation>Enregistrar corxera</translation>
     </message>
     <message>
         <source>64th note</source>
@@ -10246,11 +10464,11 @@ failed: </source>
     </message>
     <message>
         <source>64th note record</source>
-        <translation type="unfinished"/>
+        <translation>Enregistrar semifusa</translation>
     </message>
     <message>
         <source>Here you can configure shortcuts for actions</source>
-        <translation type="unfinished"/>
+        <translation>Aquí pots configurar les dreceres de teclat per a les accions</translation>
     </message>
     <message>
         <source>Resets the shortcuts to their default assignment</source>
@@ -10294,7 +10512,7 @@ failed: </source>
     </message>
     <message>
         <source>Default scale for new score views</source>
-        <translation type="unfinished"/>
+        <translation>Escala per defecte per les noves visualitzacions de la partitura</translation>
     </message>
     <message>
         <source>Show play panel</source>
@@ -10338,11 +10556,11 @@ failed: </source>
     </message>
     <message>
         <source>Insert path to SoundFont folders</source>
-        <translation type="unfinished"/>
+        <translation>Inserir ruta de carpeta SoundFont</translation>
     </message>
     <message>
         <source>Opens a dialog for configuring the SoundFont folders</source>
-        <translation type="unfinished"/>
+        <translation>Obre una caixa diàleg per a configurar les carpetes SoundFont</translation>
     </message>
     <message>
         <source>Note Input Tab</source>
@@ -10398,6 +10616,14 @@ failed: </source>
     </message>
     <message>
         <source>Filter</source>
+        <translation>Filtre</translation>
+    </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -10504,11 +10730,11 @@ failed: %2</source>
     </message>
     <message>
         <source>bad format</source>
-        <translation type="unfinished"/>
+        <translation>Format incorrecte</translation>
     </message>
     <message>
         <source>unknown type</source>
-        <translation type="unfinished"/>
+        <translation>Tipus desconegut</translation>
     </message>
     <message>
         <source>It was last saved with version 0.9.5 or older.<br>You can convert this score by opening and then saving with MuseScore version 1.x</a></source>
@@ -10541,7 +10767,8 @@ Visiteu la <a href="http://musescore.org"> web de MuseScore <
     <message>
         <source>Can't find rootfile
 %1</source>
-        <translation type="unfinished"/>
+        <translation>No s'ha trobat el fitxer arrel
+%1</translation>
     </message>
     <message>
         <source>File '%1' is not a valid MusicXML file</source>
@@ -10574,7 +10801,7 @@ Visiteu la <a href="http://musescore.org"> web de MuseScore <
     </message>
     <message>
         <source>Long</source>
-        <translation type="unfinished"/>
+        <translation>Longa</translation>
     </message>
     <message>
         <source>Breve</source>
@@ -10626,7 +10853,7 @@ Visiteu la <a href="http://musescore.org"> web de MuseScore <
     </message>
     <message>
         <source>Zero</source>
-        <translation type="unfinished"/>
+        <translation>Zero</translation>
     </message>
     <message>
         <source>Measure</source>
@@ -10711,18 +10938,18 @@ Visiteu la <a href="http://musescore.org"> web de MuseScore <
     </message>
     <message>
         <source>MuseScore: Upload Error</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Error de pujar</translation>
     </message>
     <message>
         <source>Do you want to try to load this file anyway?</source>
-        <translation type="unfinished"/>
+        <translation>Vols intentar de carregar l'arxiu de totes maneres?</translation>
     </message>
 </context>
 <context>
     <name>QWidget</name>
     <message>
         <source>MuseScore: Save Album into Score</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Desar l'àlbum com partitura</translation>
     </message>
     <message>
         <source>MuseScore: Save File</source>
@@ -10766,11 +10993,11 @@ Visiteu la <a href="http://musescore.org"> web de MuseScore <
     </message>
     <message>
         <source>MuseScore: Load Style Failed</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Error en la càrrega de l'estil</translation>
     </message>
     <message>
         <source>MuseScore: Load Languages Failed:</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Error en la càrrega de llengüesl</translation>
     </message>
     <message>
         <source>MuseScore: Invalid Command</source>
@@ -10876,7 +11103,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Created: </source>
-        <translation type="unfinished"/>
+        <translation>Creat:</translation>
     </message>
     <message>
         <source>Name:</source>
@@ -11182,7 +11409,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Sixteenth note</source>
-        <translation type="unfinished"/>
+        <translation>Semicorxera</translation>
     </message>
 </context>
 <context>
@@ -11212,7 +11439,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Load Score</source>
-        <translation type="unfinished"/>
+        <translation>Carregar partitura</translation>
     </message>
     <message>
         <source>Startup Dialog</source>
@@ -11244,6 +11471,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation>Indicador de sistema</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11298,7 +11533,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Load Default</source>
-        <translation type="unfinished"/>
+        <translation>Carregar per defecte</translation>
     </message>
     <message>
         <source>Master tuning:</source>
@@ -11314,11 +11549,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Use up and down arrows to modify</source>
-        <translation type="unfinished"/>
+        <translation>Utilitzar les tecles fletxes amunt i avall per modificar</translation>
     </message>
     <message>
         <source>Metronome gain</source>
-        <translation type="unfinished"/>
+        <translation>Volum del metrònom</translation>
     </message>
     <message>
         <source>Effect A</source>
@@ -11349,7 +11584,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Common</source>
-        <translation type="unfinished"/>
+        <translation>Comú</translation>
     </message>
     <message>
         <source>All</source>
@@ -11434,7 +11669,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Reset to Style</source>
-        <translation type="unfinished"/>
+        <translation>Restablir al estil</translation>
     </message>
     <message>
         <source>Text margin:</source>
@@ -11806,7 +12041,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Note Groups</source>
-        <translation type="unfinished"/>
+        <translation>Grups de notes</translation>
     </message>
     <message>
         <source>Values</source>
@@ -11889,19 +12124,19 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Common time</source>
-        <translation type="unfinished"/>
+        <translation>Compàs comú</translation>
     </message>
     <message>
         <source>Time Signature Wizard</source>
-        <translation type="unfinished"/>
+        <translation>Assistent de la indicació de compàs</translation>
     </message>
     <message>
         <source>Beat unit</source>
-        <translation type="unfinished"/>
+        <translation>Unitat del temps</translation>
     </message>
     <message>
         <source>Common Time</source>
-        <translation type="unfinished"/>
+        <translation>Compàs comú</translation>
     </message>
     <message>
         <source>Enter Number of Measures</source>
@@ -11913,7 +12148,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Cut Time</source>
-        <translation type="unfinished"/>
+        <translation>Alla breve</translation>
     </message>
     <message>
         <source>Beats in a measure</source>
@@ -12280,7 +12515,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Relation:</source>
-        <translation type="unfinished"/>
+        <translation>Relació:</translation>
     </message>
     <message>
         <source>Relation</source>
@@ -12315,7 +12550,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Sign out on exit</source>
-        <translation type="unfinished"/>
+        <translation>Tancar sessió al sortir</translation>
     </message>
     <message>
         <source>Title</source>
@@ -12331,7 +12566,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Tags</source>
-        <translation type="unfinished"/>
+        <translation>Etiquetes</translation>
     </message>
     <message>
         <source>Update the existing score </source>
@@ -12339,7 +12574,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Make this score private</source>
-        <translation type="unfinished"/>
+        <translation>Fer aquesta partitura privada</translation>
     </message>
 </context>
 <context>
@@ -12361,7 +12596,7 @@ Do you want to overwrite it?</source>
     <name>Workspace</name>
     <message>
         <source>MuseScore: Writing Workspace File</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Escriure el fitxer de la paleta</translation>
     </message>
     <message>
         <source>Writing Workspace File
@@ -12374,19 +12609,19 @@ failed: </source>
     <name>XmlStream</name>
     <message>
         <source>Extra content at end of document.</source>
-        <translation type="unfinished"/>
+        <translation>Contingut extra al final del document.</translation>
     </message>
     <message>
         <source>Invalid entity value.</source>
-        <translation type="unfinished"/>
+        <translation>Valor de l'entitat no és vàlida.</translation>
     </message>
     <message>
         <source>Invalid XML character.</source>
-        <translation type="unfinished"/>
+        <translation>Caràcter XML no és vàlid.</translation>
     </message>
     <message>
         <source>Sequence ']]>' not allowed in content.</source>
-        <translation type="unfinished"/>
+        <translation>La seqüència ']]>' no es permet en el contingut.</translation>
     </message>
     <message>
         <source>Encountered incorrectly encoded content.</source>
@@ -12398,11 +12633,11 @@ failed: </source>
     </message>
     <message>
         <source>Illegal namespace declaration.</source>
-        <translation type="unfinished"/>
+        <translation>Declaració il·legal de l'espai de noms.</translation>
     </message>
     <message>
         <source>Attribute redefined.</source>
-        <translation type="unfinished"/>
+        <translation>Atribut redefinit.</translation>
     </message>
     <message>
         <source>Unexpected character '%1' in public id literal.</source>
@@ -12446,11 +12681,11 @@ failed: </source>
     </message>
     <message>
         <source>Expected </source>
-        <translation type="unfinished"/>
+        <translation>S'esperat</translation>
     </message>
     <message>
         <source>, but got '</source>
-        <translation type="unfinished"/>
+        <translation>Inesperat '</translation>
     </message>
     <message>
         <source>Unexpected '</source>
@@ -12458,7 +12693,7 @@ failed: </source>
     </message>
     <message>
         <source>Expected character data.</source>
-        <translation type="unfinished"/>
+        <translation>Dades de caràcters esperats.</translation>
     </message>
 </context>
 <context>
@@ -12528,11 +12763,11 @@ failed: </source>
     </message>
     <message>
         <source>Mirrored-flat-slash</source>
-        <translation type="unfinished"/>
+        <translation>Mig bemoll barrat</translation>
     </message>
     <message>
         <source>Flat-flat-slash</source>
-        <translation type="unfinished"/>
+        <translation>Doble bemoll barrat</translation>
     </message>
     <message>
         <source>Sharp-slash</source>
@@ -12560,7 +12795,7 @@ failed: </source>
     </message>
     <message>
         <source>Sharp arrow both</source>
-        <translation type="unfinished"/>
+        <translation>Sostingut ambdues fletxes</translation>
     </message>
     <message>
         <source>Flat arrow up</source>
@@ -12572,7 +12807,7 @@ failed: </source>
     </message>
     <message>
         <source>Flat arrow both</source>
-        <translation type="unfinished"/>
+        <translation>Bemoll ambdues fletxes</translation>
     </message>
     <message>
         <source>Natural arrow up</source>
@@ -12584,7 +12819,7 @@ failed: </source>
     </message>
     <message>
         <source>Natural arrow both</source>
-        <translation type="unfinished"/>
+        <translation>Becaire ambdues fletxes</translation>
     </message>
     <message>
         <source>Sori</source>
@@ -12659,7 +12894,7 @@ failed: </source>
     </message>
     <message>
         <source>Save a copy of the score in various formats</source>
-        <translation type="unfinished"/>
+        <translation>Guardar una còpia de la partitura en diversos formats</translation>
     </message>
     <message>
         <source>Export Parts...</source>
@@ -13590,10 +13825,6 @@ failed: </source>
         <translation>Barres en angle, més ràpid</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paleta</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Panell de reproducció</translation>
     </message>
@@ -13630,10 +13861,6 @@ failed: </source>
         <translation>Afegir lletra</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Indicadors del tempo...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Afegir indicadors del tempo</translation>
     </message>
@@ -13990,10 +14217,6 @@ failed: </source>
         <translation>Repeteix selecció</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Activa/desactiva moure la partitura</translation>
     </message>
@@ -14083,11 +14306,11 @@ failed: </source>
     </message>
     <message>
         <source>Layers...</source>
-        <translation type="unfinished"/>
+        <translation>Capes...</translation>
     </message>
     <message>
         <source>Layers</source>
-        <translation type="unfinished"/>
+        <translation>Capes</translation>
     </message>
     <message>
         <source>Next Score</source>
@@ -14223,7 +14446,7 @@ failed: </source>
     </message>
     <message>
         <source>Enter rest (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Insereix silenci (TAB)</translation>
     </message>
     <message>
         <source>Select string above (TAB only)</source>
@@ -14423,11 +14646,11 @@ failed: </source>
     </message>
     <message>
         <source>All Similar Elements in Range Selection</source>
-        <translation type="unfinished"/>
+        <translation>Tots els elements similars en el rang de selecció</translation>
     </message>
     <message>
         <source>Select all similar elements in the range selection</source>
-        <translation type="unfinished"/>
+        <translation>Seleccionar tots els elements similars en el rang de selecció</translation>
     </message>
     <message>
         <source>Add brackets to element</source>
@@ -14695,7 +14918,7 @@ failed: </source>
     </message>
     <message>
         <source>Move Down</source>
-        <translation type="unfinished"/>
+        <translation>Moure cap avall</translation>
     </message>
     <message>
         <source>Previous Chord</source>
@@ -15055,7 +15278,7 @@ failed: </source>
     </message>
     <message>
         <source>Repeat Last Command</source>
-        <translation type="unfinished"/>
+        <translation>Repetiu l'últim ordre</translation>
     </message>
     <message>
         <source>Toggle system break</source>
@@ -15231,11 +15454,11 @@ failed: </source>
     </message>
     <message>
         <source>Loop In</source>
-        <translation type="unfinished"/>
+        <translation>Inici bucle</translation>
     </message>
     <message>
         <source>Loop Out</source>
-        <translation type="unfinished"/>
+        <translation>Final bucle</translation>
     </message>
     <message>
         <source>Set loop out position</source>
@@ -15387,11 +15610,11 @@ failed: </source>
     </message>
     <message>
         <source>Bold Face</source>
-        <translation type="unfinished"/>
+        <translation>Negreta</translation>
     </message>
     <message>
         <source>Bold face</source>
-        <translation type="unfinished"/>
+        <translation>Negreta</translation>
     </message>
     <message>
         <source>Italic</source>
@@ -15439,7 +15662,7 @@ failed: </source>
     </message>
     <message>
         <source>Longa Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Avançar longa (Baix xifrat/Símbol d'acord)</translation>
     </message>
     <message>
         <source>Advance of a longa (Figured bass/Chord symbol only)</source>
@@ -15447,7 +15670,7 @@ failed: </source>
     </message>
     <message>
         <source>Breve Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Avançar quadrada (Baix xifrat/Símbol d'acord)</translation>
     </message>
     <message>
         <source>Advance of a double whole note (Figured bass/Chord symbol only)</source>
@@ -15455,7 +15678,7 @@ failed: </source>
     </message>
     <message>
         <source>Whole Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Avançar rodona (Baix xifrat/Símbol d'acord)</translation>
     </message>
     <message>
         <source>Advance of a whole note (Figured bass/Chord symbol only)</source>
@@ -15463,7 +15686,7 @@ failed: </source>
     </message>
     <message>
         <source>Half Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Avançar blanca (Baix xifrat/Símbol d'acord)</translation>
     </message>
     <message>
         <source>Advance of a half note (Figured bass/Chord symbol only)</source>
@@ -15471,7 +15694,7 @@ failed: </source>
     </message>
     <message>
         <source>Quarter Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Avançar negra (Baix xifrat/Símbol d'acord)</translation>
     </message>
     <message>
         <source>Advance of a quarter note (Figured bass/Chord symbol only)</source>
@@ -15479,7 +15702,7 @@ failed: </source>
     </message>
     <message>
         <source>Eighth Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Avançar corxera (Baix xifrat/Símbol d'acord)</translation>
     </message>
     <message>
         <source>Advance of an eighth note (Figured bass/Chord symbol only)</source>
@@ -15487,7 +15710,7 @@ failed: </source>
     </message>
     <message>
         <source>16th Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Avançar semicorxera (Baix xifrat/Símbol d'acord)</translation>
     </message>
     <message>
         <source>Advance of a 16th note (Figured bass/Chord symbol only)</source>
@@ -15495,7 +15718,7 @@ failed: </source>
     </message>
     <message>
         <source>32nd Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Avançar fusa (Baix xifrat/Símbol d'acord)</translation>
     </message>
     <message>
         <source>Advance of a 32nd note (Figured bass/Chord symbol only)</source>
@@ -15503,7 +15726,7 @@ failed: </source>
     </message>
     <message>
         <source>64th Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Avançar semifusa (Baix xifrat/Símbol d'acord)</translation>
     </message>
     <message>
         <source>Advance of a 64th note (Figured bass/Chord symbol only)</source>
@@ -15557,6 +15780,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation>Fixar el punt d'entrada del bucle</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -15669,7 +15908,7 @@ El compàs no és buit</translation>
     </message>
     <message>
         <source>Ouvert</source>
-        <translation type="unfinished"/>
+        <translation>Obert</translation>
     </message>
     <message>
         <source>Stopped/Pizzicato left hand</source>
@@ -15749,15 +15988,15 @@ El compàs no és buit</translation>
     </message>
     <message>
         <source>Tapping</source>
-        <translation type="unfinished"/>
+        <translation>Tapping</translation>
     </message>
     <message>
         <source>Slapping</source>
-        <translation type="unfinished"/>
+        <translation>Slapping</translation>
     </message>
     <message>
         <source>Popping</source>
-        <translation type="unfinished"/>
+        <translation>Popping</translation>
     </message>
     <message>
         <source>Thumb pos.</source>
@@ -15927,603 +16166,603 @@ El compàs no és buit</translation>
     </message>
     <message>
         <source>Half doubling on low G</source>
-        <translation type="unfinished"/>
+        <translation>Half doubling on low G</translation>
     </message>
     <message>
         <source>Half doubling on low A</source>
-        <translation type="unfinished"/>
+        <translation>Half doubling on low A</translation>
     </message>
     <message>
         <source>Half doubling on B</source>
-        <translation type="unfinished"/>
+        <translation>Half doubling on B</translation>
     </message>
     <message>
         <source>Half doubling on C</source>
-        <translation type="unfinished"/>
+        <translation>Half doubling on C</translation>
     </message>
     <message>
         <source>Half doubling on D</source>
-        <translation type="unfinished"/>
+        <translation>Half doubling on D</translation>
     </message>
     <message>
         <source>Half doubling on E</source>
-        <translation type="unfinished"/>
+        <translation>Half doubling on E</translation>
     </message>
     <message>
         <source>Half doubling on F</source>
-        <translation type="unfinished"/>
+        <translation>Half doubling on F</translation>
     </message>
     <message>
         <source>Doubling on high G</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on high G</translation>
     </message>
     <message>
         <source>Doubling on high A</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on high A</translation>
     </message>
     <message>
         <source>Half strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on low A</translation>
     </message>
     <message>
         <source>Half strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on B</translation>
     </message>
     <message>
         <source>Half strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on C</translation>
     </message>
     <message>
         <source>Half strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on D</translation>
     </message>
     <message>
         <source>Half strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on E</translation>
     </message>
     <message>
         <source>Half strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on F</translation>
     </message>
     <message>
         <source>Half strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on high G</translation>
     </message>
     <message>
         <source>Grip</source>
-        <translation type="unfinished"/>
+        <translation>Grip</translation>
     </message>
     <message>
         <source>Half D throw</source>
-        <translation type="unfinished"/>
+        <translation>Half D throw</translation>
     </message>
     <message>
         <source>Doubling on low G</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on low G</translation>
     </message>
     <message>
         <source>Doubling on low A</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on low A</translation>
     </message>
     <message>
         <source>Doubling on B</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on B</translation>
     </message>
     <message>
         <source>Doubling on C</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on C</translation>
     </message>
     <message>
         <source>Doubling on D</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on D</translation>
     </message>
     <message>
         <source>Doubling on E</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on E</translation>
     </message>
     <message>
         <source>Doubling on F</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on F</translation>
     </message>
     <message>
         <source>Thumb doubling on low G</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on low G</translation>
     </message>
     <message>
         <source>Thumb doubling on low A</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on low A</translation>
     </message>
     <message>
         <source>Thumb doubling on B</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on B</translation>
     </message>
     <message>
         <source>Thumb doubling on C</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on C</translation>
     </message>
     <message>
         <source>Thumb doubling on D</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on D</translation>
     </message>
     <message>
         <source>Thumb doubling on E</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on E</translation>
     </message>
     <message>
         <source>Thumb doubling on F</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on F</translation>
     </message>
     <message>
         <source>G grace note on low A</source>
-        <translation type="unfinished"/>
+        <translation>G grace note on low A</translation>
     </message>
     <message>
         <source>G grace note on B</source>
-        <translation type="unfinished"/>
+        <translation>G grace note on B</translation>
     </message>
     <message>
         <source>G grace note on C</source>
-        <translation type="unfinished"/>
+        <translation>G grace note on C</translation>
     </message>
     <message>
         <source>G grace note on D</source>
-        <translation type="unfinished"/>
+        <translation>G grace note on D</translation>
     </message>
     <message>
         <source>G grace note on E</source>
-        <translation type="unfinished"/>
+        <translation>G grace note on E</translation>
     </message>
     <message>
         <source>G grace note on F</source>
-        <translation type="unfinished"/>
+        <translation>G grace note on F</translation>
     </message>
     <message>
         <source>Double strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on low A</translation>
     </message>
     <message>
         <source>Double strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on B</translation>
     </message>
     <message>
         <source>Double strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on C</translation>
     </message>
     <message>
         <source>Double strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on D</translation>
     </message>
     <message>
         <source>Double strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on E</translation>
     </message>
     <message>
         <source>Double strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on F</translation>
     </message>
     <message>
         <source>Double strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on high G</translation>
     </message>
     <message>
         <source>Double strike on high A</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on high A</translation>
     </message>
     <message>
         <source>Thumb strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on low A</translation>
     </message>
     <message>
         <source>Thumb strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on B</translation>
     </message>
     <message>
         <source>Thumb strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on C</translation>
     </message>
     <message>
         <source>Thumb strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on D</translation>
     </message>
     <message>
         <source>Thumb strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on E</translation>
     </message>
     <message>
         <source>Thumb strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on F</translation>
     </message>
     <message>
         <source>Thumb strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on high G</translation>
     </message>
     <message>
         <source>Birl</source>
-        <translation type="unfinished"/>
+        <translation>Birl</translation>
     </message>
     <message>
         <source>D throw</source>
-        <translation type="unfinished"/>
+        <translation>D throw</translation>
     </message>
     <message>
         <source>Half heavy D throw</source>
-        <translation type="unfinished"/>
+        <translation>Half heavy D throw</translation>
     </message>
     <message>
         <source>Taorluath</source>
-        <translation type="unfinished"/>
+        <translation>Taorluath</translation>
     </message>
     <message>
         <source>Bubly</source>
-        <translation type="unfinished"/>
+        <translation>Bubly</translation>
     </message>
     <message>
         <source>Heavy D throw</source>
-        <translation type="unfinished"/>
+        <translation>Heavy D throw</translation>
     </message>
     <message>
         <source>Half double strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on low A</translation>
     </message>
     <message>
         <source>Half double strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on B</translation>
     </message>
     <message>
         <source>Half double strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on C</translation>
     </message>
     <message>
         <source>Half double strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on D</translation>
     </message>
     <message>
         <source>Half double strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on E</translation>
     </message>
     <message>
         <source>Half double strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on F</translation>
     </message>
     <message>
         <source>Half double strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on high G</translation>
     </message>
     <message>
         <source>Half double strike on high A</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on high A</translation>
     </message>
     <message>
         <source>Half grip on low A</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on low A</translation>
     </message>
     <message>
         <source>Half grip on B</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on B</translation>
     </message>
     <message>
         <source>Half grip on C</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on C</translation>
     </message>
     <message>
         <source>Half grip on D</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on D</translation>
     </message>
     <message>
         <source>Half grip on E</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on E</translation>
     </message>
     <message>
         <source>Half grip on F</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on F</translation>
     </message>
     <message>
         <source>Half grip on high G</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on high G</translation>
     </message>
     <message>
         <source>Half grip on high A</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on high A</translation>
     </message>
     <message>
         <source>Half pele on low A</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on low A</translation>
     </message>
     <message>
         <source>Half pele on B</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on B</translation>
     </message>
     <message>
         <source>Half pele on C</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on C</translation>
     </message>
     <message>
         <source>Half pele on D</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on D</translation>
     </message>
     <message>
         <source>Half pele on E</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on E</translation>
     </message>
     <message>
         <source>Half pele on F</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on F</translation>
     </message>
     <message>
         <source>Half pele on high G</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on high G</translation>
     </message>
     <message>
         <source>G grace note grip on low A</source>
-        <translation type="unfinished"/>
+        <translation>G grace note grip on low A</translation>
     </message>
     <message>
         <source>G grace note grip on B</source>
-        <translation type="unfinished"/>
+        <translation>G grace note grip on B</translation>
     </message>
     <message>
         <source>G grace note grip on C</source>
-        <translation type="unfinished"/>
+        <translation>G grace note grip on C</translation>
     </message>
     <message>
         <source>G grace note grip on D</source>
-        <translation type="unfinished"/>
+        <translation>G grace note grip on D</translation>
     </message>
     <message>
         <source>G grace note grip on E</source>
-        <translation type="unfinished"/>
+        <translation>G grace note grip on E</translation>
     </message>
     <message>
         <source>G grace note grip on F</source>
-        <translation type="unfinished"/>
+        <translation>G grace note grip on F</translation>
     </message>
     <message>
         <source>Thumb grip on low A</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on low A</translation>
     </message>
     <message>
         <source>Thumb grip on B</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on B</translation>
     </message>
     <message>
         <source>Thumb grip on C</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on C</translation>
     </message>
     <message>
         <source>Thumb grip on D</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on D</translation>
     </message>
     <message>
         <source>Thumb grip on E</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on E</translation>
     </message>
     <message>
         <source>Thumb grip on F</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on F</translation>
     </message>
     <message>
         <source>Thumb grip on high G</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on high G</translation>
     </message>
     <message>
         <source>Pele on low A</source>
-        <translation type="unfinished"/>
+        <translation>Pele on low A</translation>
     </message>
     <message>
         <source>Pele on B</source>
-        <translation type="unfinished"/>
+        <translation>Pele on B</translation>
     </message>
     <message>
         <source>Pele on C</source>
-        <translation type="unfinished"/>
+        <translation>Pele on C</translation>
     </message>
     <message>
         <source>Pele on D</source>
-        <translation type="unfinished"/>
+        <translation>Pele on D</translation>
     </message>
     <message>
         <source>Pele on E</source>
-        <translation type="unfinished"/>
+        <translation>Pele on E</translation>
     </message>
     <message>
         <source>Pele on F</source>
-        <translation type="unfinished"/>
+        <translation>Pele on F</translation>
     </message>
     <message>
         <source>Thumb grace note pele on low A</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on low A</translation>
     </message>
     <message>
         <source>Thumb grace note pele on B</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on B</translation>
     </message>
     <message>
         <source>Thumb grace note pele on C</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on C</translation>
     </message>
     <message>
         <source>Thumb grace note pele on D</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on D</translation>
     </message>
     <message>
         <source>Thumb grace note pele on E</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on E</translation>
     </message>
     <message>
         <source>Thumb grace note pele on F</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on F</translation>
     </message>
     <message>
         <source>Thumb grace note pele on high G</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on high G</translation>
     </message>
     <message>
         <source>G grace note double strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>G grace note double strike on low A</translation>
     </message>
     <message>
         <source>G grace note double strike on B</source>
-        <translation type="unfinished"/>
+        <translation>G grace note double strike on B</translation>
     </message>
     <message>
         <source>G grace note double strike on C</source>
-        <translation type="unfinished"/>
+        <translation>G grace note double strike on C</translation>
     </message>
     <message>
         <source>G grace note double strike on D</source>
-        <translation type="unfinished"/>
+        <translation>G grace note double strike on D</translation>
     </message>
     <message>
         <source>G grace note double strike on E</source>
-        <translation type="unfinished"/>
+        <translation>G grace note double strike on E</translation>
     </message>
     <message>
         <source>G grace note double strike on F</source>
-        <translation type="unfinished"/>
+        <translation>G grace note double strike on F</translation>
     </message>
     <message>
         <source>Thumb double strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on low A</translation>
     </message>
     <message>
         <source>Thumb double strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on B</translation>
     </message>
     <message>
         <source>Thumb double strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on C</translation>
     </message>
     <message>
         <source>Thumb double strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on D</translation>
     </message>
     <message>
         <source>Thumb double strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on E</translation>
     </message>
     <message>
         <source>Thumb double strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on F</translation>
     </message>
     <message>
         <source>Thumb double strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on high G</translation>
     </message>
     <message>
         <source>Triple strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on low A</translation>
     </message>
     <message>
         <source>Triple strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on B</translation>
     </message>
     <message>
         <source>Triple strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on C</translation>
     </message>
     <message>
         <source>Triple strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on D</translation>
     </message>
     <message>
         <source>Triple strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on E</translation>
     </message>
     <message>
         <source>Triple strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on F</translation>
     </message>
     <message>
         <source>Triple strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on high G</translation>
     </message>
     <message>
         <source>Triple strike on high A</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on high A</translation>
     </message>
     <message>
         <source>Half triple strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on low A</translation>
     </message>
     <message>
         <source>Half triple strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on B</translation>
     </message>
     <message>
         <source>Half triple strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on C</translation>
     </message>
     <message>
         <source>Half triple strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on D</translation>
     </message>
     <message>
         <source>Half triple strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on E</translation>
     </message>
     <message>
         <source>Half triple strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on F</translation>
     </message>
     <message>
         <source>Half triple strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on high G</translation>
     </message>
     <message>
         <source>Half triple strike on high A</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on high A</translation>
     </message>
     <message>
         <source>G grace note triple strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>G grace note triple strike on low A</translation>
     </message>
     <message>
         <source>G grace note triple strike on B</source>
-        <translation type="unfinished"/>
+        <translation>G grace note triple strike on B</translation>
     </message>
     <message>
         <source>G grace note triple strike on C</source>
-        <translation type="unfinished"/>
+        <translation>G grace note triple strike on C</translation>
     </message>
     <message>
         <source>G grace note triple strike on D</source>
-        <translation type="unfinished"/>
+        <translation>G grace note triple strike on D</translation>
     </message>
     <message>
         <source>G grace note triple strike on E</source>
-        <translation type="unfinished"/>
+        <translation>G grace note triple strike on E</translation>
     </message>
     <message>
         <source>G grace note triple strike on F</source>
-        <translation type="unfinished"/>
+        <translation>G grace note triple strike on F</translation>
     </message>
     <message>
         <source>Thumb triple strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on low A</translation>
     </message>
     <message>
         <source>Thumb triple strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on B</translation>
     </message>
     <message>
         <source>Thumb triple strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on C</translation>
     </message>
     <message>
         <source>Thumb triple strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on D</translation>
     </message>
     <message>
         <source>Thumb triple strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on E</translation>
     </message>
     <message>
         <source>Thumb triple strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on F</translation>
     </message>
     <message>
         <source>Thumb triple strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on high G</translation>
     </message>
 </context>
 <context>
@@ -16608,6 +16847,10 @@ El compàs no és buit</translation>
         <source>Tablature2</source>
         <translation>Tabulatura2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17154,7 +17397,7 @@ El compàs no és buit</translation>
     </message>
     <message>
         <source>Stem Slash</source>
-        <translation type="unfinished"/>
+        <translation>Plica barrada</translation>
     </message>
     <message>
         <source>Key Signature</source>
@@ -17170,7 +17413,7 @@ El compàs no és buit</translation>
     </message>
     <message>
         <source>Chord Line</source>
-        <translation type="unfinished"/>
+        <translation>Línia d'acord</translation>
     </message>
     <message>
         <source>Figured Bass</source>
@@ -17190,7 +17433,7 @@ El compàs no és buit</translation>
     </message>
     <message>
         <source>Hairpin Segment</source>
-        <translation type="unfinished"/>
+        <translation>Segment reguladors</translation>
     </message>
     <message>
         <source>Ottava Segment</source>
@@ -17214,11 +17457,11 @@ El compàs no és buit</translation>
     </message>
     <message>
         <source>Layout Break</source>
-        <translation type="unfinished"/>
+        <translation>Salt del disseny</translation>
     </message>
     <message>
         <source>Staff State</source>
-        <translation type="unfinished"/>
+        <translation>Estat del pentagrama</translation>
     </message>
     <message>
         <source>Ledger Line</source>
@@ -17230,19 +17473,19 @@ El compàs no és buit</translation>
     </message>
     <message>
         <source>Note Dot</source>
-        <translation type="unfinished"/>
+        <translation>Nota amb punt</translation>
     </message>
     <message>
         <source>Shadow Note</source>
-        <translation type="unfinished"/>
+        <translation>Nota invisible</translation>
     </message>
     <message>
         <source>Tab Duration Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Símbol de durada de la tabulatura</translation>
     </message>
     <message>
         <source>Font Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Símbol de tipografía</translation>
     </message>
     <message>
         <source>Hairpin</source>
@@ -17254,7 +17497,7 @@ El compàs no és buit</translation>
     </message>
     <message>
         <source>Note Line</source>
-        <translation type="unfinished"/>
+        <translation>Línia de nota</translation>
     </message>
     <message>
         <source>Element List</source>
@@ -17306,15 +17549,15 @@ El compàs no és buit</translation>
     </message>
     <message>
         <source>Melisma Line</source>
-        <translation type="unfinished"/>
+        <translation>Línia de melisma</translation>
     </message>
     <message>
         <source>Glissando Segment</source>
-        <translation type="unfinished"/>
+        <translation>Segment de Glissando</translation>
     </message>
     <message>
         <source>Melisma Line Segment</source>
-        <translation type="unfinished"/>
+        <translation>Segment línia de melisma</translation>
     </message>
 </context>
 <context>
@@ -17530,7 +17773,7 @@ El compàs no és buit</translation>
     </message>
     <message>
         <source>Alt. Brevis</source>
-        <translation type="unfinished"/>
+        <translation>Alt. Brevis</translation>
     </message>
 </context>
 <context>
@@ -17646,7 +17889,7 @@ El compàs no és buit</translation>
     </message>
     <message>
         <source>Breath Marks</source>
-        <translation type="unfinished"/>
+        <translation>Marques de respiració</translation>
     </message>
     <message>
         <source>Voice 1</source>
@@ -17719,10 +17962,6 @@ El compàs no és buit</translation>
         <source>Prallprall line</source>
         <translation>Línia del trinat breu</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Línia ondulada</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_ca at valencia.ts b/share/locale/mscore_ca at valencia.ts
index 44df7c9..6da17e9 100644
--- a/share/locale/mscore_ca at valencia.ts
+++ b/share/locale/mscore_ca at valencia.ts
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Inspector Glissando</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpegio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproduïx</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar valor Reproduïx</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Restaura valor Expansio temporal</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Estil Ornaments</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Per defecte</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barroc</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Restaura valor Tipo Estil Ornaments</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproduïx</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar valor Reproduïx</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Inspector Glissando</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Estirar - Bend</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproduïx</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar valor Reproduïx</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Vore text</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Estil</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Restaura valor Estil</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Reproduïx Estil</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Cromatic</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Tecles blanques</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Tecles negres</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonic</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproduïx</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar valor Reproduïx</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Inspector Text del Caixo</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Caixo Text</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Buit inferior</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Marge de dalt</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Restaurar valor</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Restaura valor Buit Superior</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Restaura valor Buit Inferior</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Marge esquerro</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Marge de baix</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Restaura valor marge dret</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Marge dret</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Restaura valor Marge de baix</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Restaura valor Marge de dalt</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Restaura valor Marge esquerro</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Buit superior</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Mordent Doble</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Llínea en forma d'on</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Restaurar valor</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Estil Ornaments</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Direccio</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Per defecte</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barroc</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Restaura valor Tipo Estil Ornaments</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproduïx</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar valor Reproduïx</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6048,14 +6249,6 @@ errat: </translation>
         <translation>el $ indica a si mateixa</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>rótul meta-senyes</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Rótuls disponibles i els seus valors actuals</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Aplica a totes les Parts</translation>
     </message>
@@ -6071,6 +6264,14 @@ errat: </translation>
         <source>page number, if there is more than one page</source>
         <translation>número de plana, si n'hi ha més de una</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>rótul meta-senyes, vore davall</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Rótuls meta-senyes disponibles i els seus valors actuals:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7200,6 +7401,10 @@ per favor elegix un atre nom:</translation>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation>Esta partitura no es pot guardar on-line. Per favor corregix els compassos roins i fes de nou</translation>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Pregunta per a l'Ajuda</translation>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7683,10 +7888,6 @@ erro: %2</translation>
         <translation>Escriu Estil errat: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>archiu no trobat</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Sense seleccio</translation>
     </message>
@@ -7698,6 +7899,10 @@ erro: %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Compas %1, pentagrama %2, veu %3 massa llarga. S'aguarda: %4; Trobat: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>Erro al llegir XML en la llínea %1 columna %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8011,6 +8216,12 @@ Per favor selecciona el ranc de compassos a juntar i ho fas de nou</translation>
         <source>Transparent background</source>
         <translation>Fondo transparent</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>No es pot dividir el compas ací:
+Primer colp del compas</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10411,6 +10622,14 @@ erro: </translation>
         <source>Filter</source>
         <translation>Filtre</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Exportar RPNs</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10737,7 +10956,7 @@ Ves a la <a href="http://musescore.org">website de MuseScore<
     </message>
     <message>
         <source>Do you want to try to load this file anyway?</source>
-        <translation type="unfinished"/>
+        <translation>¿Vols intentar pujar este achiu de totes formes?</translation>
     </message>
 </context>
 <context>
@@ -11269,6 +11488,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation>Marca de sistema</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Busca...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Borrar</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13322,11 +13549,11 @@ erro: </translation>
     </message>
     <message>
         <source>Timewise delete</source>
-        <translation>Borrar a lo llarc del temps</translation>
+        <translation>Eliminar a lo llarc del temps</translation>
     </message>
     <message>
         <source>Timewise Delete</source>
-        <translation>Borrar a lo Llarc del Temps</translation>
+        <translation>eliminar a lo Llarc del Temps</translation>
     </message>
     <message>
         <source>Delete element and duration</source>
@@ -13617,10 +13844,6 @@ erro: </translation>
         <translation>Barra en àngul, més rapit</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paleta</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Panel de reproduccio</translation>
     </message>
@@ -13657,10 +13880,6 @@ erro: </translation>
         <translation>Afig lletres</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Indicacio de Tempo...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Afig Indicacio de Tempo</translation>
     </message>
@@ -14017,10 +14236,6 @@ erro: </translation>
         <translation>Repetix seleccio</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Piano-roll panoramic</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Commuta piano-roll panoramic</translation>
     </message>
@@ -15584,6 +15799,22 @@ erro: </translation>
         <source>Set loop in position</source>
         <translation>Establix lloc inici bucle</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Paletes</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Indicacio de Tempo</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16635,6 +16866,10 @@ El compas no esta buit</translation>
         <source>Tablature2</source>
         <translation>Tab 2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Clau de Sol 8vb opcional</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17746,10 +17981,6 @@ El compas no esta buit</translation>
         <source>Prallprall line</source>
         <translation>Regló mordent doble</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Llínea en forma d'ona</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_cs.ts b/share/locale/mscore_cs.ts
index 6543446..b2228fa 100644
--- a/share/locale/mscore_cs.ts
+++ b/share/locale/mscore_cs.ts
@@ -182,7 +182,7 @@ p, li { white-space: pre-wrap; }
     <name>ArticulationProperties</name>
     <message>
         <source>MuseScore: Articulations Properties</source>
-        <translation>MuseScore: Vlastnosti artikulací</translation>
+        <translation>MuseScore: Vlastnosti artikulace</translation>
     </message>
     <message>
         <source>Appearance</source>
@@ -206,7 +206,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Anchor:</source>
-        <translation>Kotva:</translation>
+        <translation>Ukotvení:</translation>
     </message>
     <message>
         <source>Channel</source>
@@ -218,23 +218,23 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Above Staff</source>
-        <translation>Osnova nad</translation>
+        <translation>Nad osnovou</translation>
     </message>
     <message>
         <source>Below Staff</source>
-        <translation>Osnova pod</translation>
+        <translation>Pod osnovou</translation>
     </message>
     <message>
         <source>Chord Automatic</source>
-        <translation>Automatický akord</translation>
+        <translation>Automaticky nad/pod akordem</translation>
     </message>
     <message>
         <source>Above Chord</source>
-        <translation>Akord nad</translation>
+        <translation>Nad akordem</translation>
     </message>
     <message>
         <source>Below Chord</source>
-        <translation>Akord pod</translation>
+        <translation>Pod akordem</translation>
     </message>
 </context>
 <context>
@@ -310,7 +310,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Add line breaks at end of each system</source>
-        <translation>Přidat zalomení řádků na konec každé osnovy</translation>
+        <translation>Přidat zalomení řádků na konec každého systému</translation>
     </message>
     <message>
         <source>Remove current line breaks</source>
@@ -371,7 +371,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Triangle</source>
-        <translation>Triangl</translation>
+        <translation>Trojúhelník</translation>
     </message>
     <message>
         <source>Mi</source>
@@ -379,11 +379,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Slash</source>
-        <translation>Šikmá čára</translation>
+        <translation>Lomítko</translation>
     </message>
     <message>
         <source>XCircle</source>
-        <translation>XKruh</translation>
+        <translation>X kroužek</translation>
     </message>
     <message>
         <source>Do</source>
@@ -1178,11 +1178,11 @@ p, li { white-space: pre-wrap; }
     <name>EditStaffBase</name>
     <message>
         <source>MuseScore: Edit Staff/Part Properties</source>
-        <translation>MuseScore: Upravit vlastnosti osnovy/hlasu skladby</translation>
+        <translation>MuseScore: Upravit vlastnosti osnovy/partu</translation>
     </message>
     <message>
         <source>Part Properties</source>
-        <translation>Vlastnosti hlasu skladby</translation>
+        <translation>Vlastnosti partu</translation>
     </message>
     <message>
         <source>Change Instrument...</source>
@@ -1206,107 +1206,107 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>0 - Perfect Unison</source>
-        <translation>0 - Čistá prima</translation>
+        <translation>0 - čistá prima</translation>
     </message>
     <message>
         <source>1 - Augmented Unison</source>
-        <translation>1 - Zvětšená prima</translation>
+        <translation>1 - zvětšená prima</translation>
     </message>
     <message>
         <source>0 - Diminished Second</source>
-        <translation>0 - Zmenšená sekunda</translation>
+        <translation>0 - zmenšená sekunda</translation>
     </message>
     <message>
         <source>1 - Minor Second</source>
-        <translation>1 - Malá sekunda</translation>
+        <translation>1 - malá sekunda</translation>
     </message>
     <message>
         <source>2 - Major Second</source>
-        <translation>2 - Velká sekunda</translation>
+        <translation>2 - velká sekunda</translation>
     </message>
     <message>
         <source>3 - Augmented Second</source>
-        <translation>3 - Zvětšená sekunda</translation>
+        <translation>3 - zvětšená sekunda</translation>
     </message>
     <message>
         <source>2 - Diminished Third</source>
-        <translation>2 - Zmenšená tercie</translation>
+        <translation>2 - zmenšená tercie</translation>
     </message>
     <message>
         <source>3 - Minor Third</source>
-        <translation>3 - Malá tercie</translation>
+        <translation>3 - malá tercie</translation>
     </message>
     <message>
         <source>4 - Major Third</source>
-        <translation>4 - Velká tercie</translation>
+        <translation>4 - velká tercie</translation>
     </message>
     <message>
         <source>5 - Augmented Third</source>
-        <translation>5 - Zvětšená tercie</translation>
+        <translation>5 - zvětšená tercie</translation>
     </message>
     <message>
         <source>4 - Diminished Fourth</source>
-        <translation>4 - Zmenšená kvarta</translation>
+        <translation>4 - zmenšená kvarta</translation>
     </message>
     <message>
         <source>5 - Perfect Fourth</source>
-        <translation>5 - Čistá kvarta</translation>
+        <translation>5 - čistá kvarta</translation>
     </message>
     <message>
         <source>6 - Augmented Fourth</source>
-        <translation>6 - Zvětšená kvarta</translation>
+        <translation>6 - zvětšená kvarta</translation>
     </message>
     <message>
         <source>6 - Diminished Fifth</source>
-        <translation>6 - Zmenšená kvinta</translation>
+        <translation>6 - zmenšená kvinta</translation>
     </message>
     <message>
         <source>7 - Perfect Fifth</source>
-        <translation>7 - Čistá kvinta</translation>
+        <translation>7 - čistá kvinta</translation>
     </message>
     <message>
         <source>8 - Augmented Fifth</source>
-        <translation>8 - Zvětšená kvinta</translation>
+        <translation>8 - zvětšená kvinta</translation>
     </message>
     <message>
         <source>7 - Diminished Sixth</source>
-        <translation>7 - Zmenšená sexta</translation>
+        <translation>7 - zmenšená sexta</translation>
     </message>
     <message>
         <source>8 - Minor Sixth</source>
-        <translation>8 - Malá sexta</translation>
+        <translation>8 - malá sexta</translation>
     </message>
     <message>
         <source>9 - Major Sixth</source>
-        <translation>9 - Velká sexta</translation>
+        <translation>9 - velká sexta</translation>
     </message>
     <message>
         <source>10 - Augmented Sixth</source>
-        <translation>10 - Zvětšená sexta</translation>
+        <translation>10 - zvětšená sexta</translation>
     </message>
     <message>
         <source>9 - Diminished Seventh</source>
-        <translation>9 - Zmenšená septima</translation>
+        <translation>9 - zmenšená septima</translation>
     </message>
     <message>
         <source>10 - Minor Seventh</source>
-        <translation>10 - Malá septima</translation>
+        <translation>10 - malá septima</translation>
     </message>
     <message>
         <source>11 - Major Seventh</source>
-        <translation>11 - Velká septima</translation>
+        <translation>11 - velká septima</translation>
     </message>
     <message>
         <source>12 - Augmented Seventh</source>
-        <translation>12 - Zvětšená septima</translation>
+        <translation>12 - zvětšená septima</translation>
     </message>
     <message>
         <source>11 - Diminished Octave</source>
-        <translation>11 - Zmenšená oktáva</translation>
+        <translation>11 - zmenšená oktáva</translation>
     </message>
     <message>
         <source>12 - Perfect Octave</source>
-        <translation>12 - Čistá oktáva</translation>
+        <translation>12 - čistá oktáva</translation>
     </message>
     <message>
         <source>Number of strings:</source>
@@ -1334,7 +1334,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Part name:</source>
-        <translation>Název nástroje/hlasu:</translation>
+        <translation>Název nástroje/partu:</translation>
     </message>
     <message>
         <source>Long instrument name:</source>
@@ -1350,11 +1350,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Play transposition:</source>
-        <translation>Přehrát transpozici:</translation>
+        <translation>Transpozice nástroje</translation>
     </message>
     <message>
         <source>+ Octave:</source>
-        <translation>+ oktávu:</translation>
+        <translation>+ oktáva:</translation>
     </message>
     <message>
         <source>Up</source>
@@ -1366,7 +1366,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Edit String Data...</source>
-        <translation>Upravit data struny...</translation>
+        <translation>Upravit údaje o strunách...</translation>
     </message>
     <message>
         <source>Show time signature</source>
@@ -1386,7 +1386,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Lines:</source>
-        <translation>Linky:</translation>
+        <translation>Počet linek:</translation>
     </message>
     <message>
         <source>Line distance:</source>
@@ -1394,7 +1394,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Extra distance above staff:</source>
-        <translation>Zvláštní vzdálenost nad osnovou:</translation>
+        <translation>Prostor navíc nad osnovou:</translation>
     </message>
     <message>
         <source>Never hide</source>
@@ -1402,7 +1402,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Do not hide if system is empty</source>
-        <translation>Neskrývat, pokud je osnova prázdná</translation>
+        <translation>Neskrývat, pokud je systém prázdný</translation>
     </message>
     <message>
         <source>Scale</source>
@@ -1418,7 +1418,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Hide system barline</source>
-        <translation>Skrýt taktovou čáru osnovy</translation>
+        <translation>Skrýt taktovou čáru systému</translation>
     </message>
 </context>
 <context>
@@ -1429,7 +1429,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Lines:</source>
-        <translation>Linky:</translation>
+        <translation>Počet linek:</translation>
     </message>
     <message>
         <source>sp</source>
@@ -1485,23 +1485,23 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Bez konce</translation>
+        <translation>Nepřerušené</translation>
     </message>
     <message>
         <source>Broken</source>
-        <translation>Přerušeny</translation>
+        <translation>Přerušené</translation>
     </message>
     <message>
         <source>Note Values</source>
-        <translation>Hodnoty not</translation>
+        <translation>Délky not</translation>
     </message>
     <message>
         <source>Shown as:</source>
-        <translation>Ukázány jako:</translation>
+        <translation>Ukázat jako:</translation>
     </message>
     <message>
         <source>None</source>
-        <translation>Žádný</translation>
+        <translation>Žádné</translation>
     </message>
     <message>
         <source>Stems and beams</source>
@@ -1513,23 +1513,23 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Beside staff</source>
-        <translation>Vedle notové osnovy</translation>
+        <translation>Mimo osnovu</translation>
     </message>
     <message>
         <source>Through staff</source>
-        <translation>Přes notovou osnovu</translation>
+        <translation>Přes osnovu</translation>
     </message>
     <message>
         <source>Stem position:</source>
-        <translation>Poloha nožičky:</translation>
+        <translation>Umístění nožiček:</translation>
     </message>
     <message>
         <source>Above</source>
-        <translation>Nad</translation>
+        <translation>Nad osnovou</translation>
     </message>
     <message>
         <source>Below</source>
-        <translation>Pod</translation>
+        <translation>Pod osnovou</translation>
     </message>
     <message>
         <source>Half notes:</source>
@@ -1569,7 +1569,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>On lines</source>
-        <translation>Na linkách</translation>
+        <translation>V linkách</translation>
     </message>
     <message>
         <source>Above lines</source>
@@ -1577,7 +1577,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Note symbols</source>
-        <translation>Značky not</translation>
+        <translation>Noty</translation>
     </message>
     <message>
         <source>Upside down</source>
@@ -1609,7 +1609,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>< Reset to Template</source>
-        <translation>< Nastavit znovu na předlohu</translation>
+        <translation>< Nastavit znovu podle předlohy</translation>
     </message>
     <message>
         <source>Repeat:</source>
@@ -1621,11 +1621,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>At new system</source>
-        <translation>Na nové osnově</translation>
+        <translation>V novém systému</translation>
     </message>
     <message>
         <source>At new meas.</source>
-        <translation>Na novém taktu</translation>
+        <translation>V novém taktu</translation>
     </message>
     <message>
         <source>Always</source>
@@ -1636,7 +1636,7 @@ p, li { white-space: pre-wrap; }
     <name>EditStringDataBase</name>
     <message>
         <source>String Data</source>
-        <translation>Data strun</translation>
+        <translation>Údaje o strunách</translation>
     </message>
     <message>
         <source>Strings Tuning:</source>
@@ -1688,7 +1688,7 @@ p, li { white-space: pre-wrap; }
     <message>
         <source>System</source>
         <extracomment>a music system, a line of music</extracomment>
-        <translation>Osnova</translation>
+        <translation>Notový systém</translation>
     </message>
     <message>
         <source>Measure</source>
@@ -1724,11 +1724,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Hairpins, Volta, Ottava</source>
-        <translation>Crecendo, Decrescendo, Volta, Oktáva</translation>
+        <translation>Cresc. a decresc., volta, 8va</translation>
     </message>
     <message>
         <source>Pedal, Trill</source>
-        <translation>Pedál, trylek</translation>
+        <translation>Pedál a trylek</translation>
     </message>
     <message>
         <source>Figured Bass</source>
@@ -1748,7 +1748,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Display in concert pitch</source>
-        <translation>Zobrazit v koncertním ladění</translation>
+        <translation>Zobrazit ve znějící výšce</translation>
     </message>
     <message>
         <source>Minimum width of measure:</source>
@@ -1771,7 +1771,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Don't hide empty staves in first system</source>
-        <translation>Neskrývat prázdné notové osnovy v první osnově</translation>
+        <translation>Neskrývat prázdné osnovy v prvním systému</translation>
     </message>
     <message>
         <source>Display note values across measure bar (EXPERIMENTAL, early music only!)</source>
@@ -1783,7 +1783,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Create clef for all systems</source>
-        <translation>Vytvořit klíč pro všechny osnovy</translation>
+        <translation>Vytvořit klíč pro všechny notové systémy</translation>
     </message>
     <message>
         <source>Music bottom margin:</source>
@@ -1799,7 +1799,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Min. system distance:</source>
-        <translation>Nejmenší vzdálenost osnovy:</translation>
+        <translation>Nejmenší vzdálenost mezi systémy:</translation>
     </message>
     <message>
         <source>Lyrics top margin:</source>
@@ -1823,11 +1823,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Create courtesy time signatures</source>
-        <translation>Vytvořit upozornění na taktová označení</translation>
+        <translation>Vytvořit upozornění na změnu taktového označení</translation>
     </message>
     <message>
         <source>Create key signature for all systems</source>
-        <translation>Vytvořit předznamenání pro všechny osnovy</translation>
+        <translation>Vytvořit předznamenání pro všechny notové systémy</translation>
     </message>
     <message>
         <source>Create courtesy key signatures</source>
@@ -1839,11 +1839,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Max. system distance:</source>
-        <translation>Největší vzdálenost osnovy:</translation>
+        <translation>Největší vzdálenost mezi systémy:</translation>
     </message>
     <message>
         <source>Last system fill threshold:</source>
-        <translation>Míra naplnění poslední osnovy:</translation>
+        <translation>Míra naplnění posledního systému:</translation>
     </message>
     <message>
         <source>Show first</source>
@@ -1879,11 +1879,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Every system</source>
-        <translation>Každá osnova</translation>
+        <translation>Každý systém</translation>
     </message>
     <message>
         <source>System bracket distance:</source>
-        <translation>Odstup závorky velké osnovy:</translation>
+        <translation>Odsazení svorky systému:</translation>
     </message>
     <message>
         <source>Brace distance:</source>
@@ -2324,7 +2324,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Swing Settings</source>
-        <translation>Nastavení Swingu</translation>
+        <translation>Nastavení swingu</translation>
     </message>
     <message>
         <source>Off</source>
@@ -2392,7 +2392,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>System bracket thickness:</source>
-        <translation>Tloušťka závorky velké osnovy:</translation>
+        <translation>Tloušťka svorky systému:</translation>
     </message>
     <message>
         <source>Brace thickness:</source>
@@ -2404,7 +2404,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Bez konce</translation>
+        <translation>Spojitá</translation>
     </message>
     <message>
         <source>Dashed</source>
@@ -2543,7 +2543,7 @@ space unit</extracomment>
     <name>ExcerptsDialog</name>
     <message>
         <source>MuseScore: Parts</source>
-        <translation>MuseScore: Výtahy hlasů</translation>
+        <translation>MuseScore: Party</translation>
     </message>
     <message>
         <source>Instrument:</source>
@@ -2563,15 +2563,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Part title:</source>
-        <translation>Název výtahu hlasu:</translation>
+        <translation>Název partu:</translation>
     </message>
     <message>
         <source>Edit Part</source>
-        <translation>Upravit výtah hlasu</translation>
+        <translation>Upravit part</translation>
     </message>
     <message>
         <source>Select Part</source>
-        <translation>Vybrat výtah hlasu</translation>
+        <translation>Vybrat part</translation>
     </message>
 </context>
 <context>
@@ -3043,6 +3043,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Dohlížitel na glissando</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Přehrávání</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nastavit znovu přehrávání</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3054,7 +3073,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Anchor</source>
-        <translation>Kotva</translation>
+        <translation>Ukotvení</translation>
     </message>
     <message>
         <source>Chord Automatic</source>
@@ -3102,12 +3121,36 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Anchor value</source>
-        <translation>Nastavit znovu kotvu</translation>
+        <translation>Nastavit znovu ukotvení</translation>
     </message>
     <message>
         <source>Reset Time stretch value</source>
         <translation>Nastavit znovu protáhnutí času</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Styl ozdoby</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Výchozí</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barokní</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Nastavit znovu typ ozdoby</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Přehrávání</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nastavit znovu přehrávání</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3121,19 +3164,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Span from:</source>
-        <translation>Roztažení od:</translation>
+        <translation>Odsazení nahoře:</translation>
     </message>
     <message>
         <source>Spanned staves:</source>
-        <translation>Roztažené osnovy:</translation>
+        <translation>Propojení osnov:</translation>
     </message>
     <message>
         <source>Span to:</source>
-        <translation>Roztažení do:</translation>
+        <translation>Odsazení dole:</translation>
     </message>
     <message>
         <source>Span preset:</source>
-        <translation>Přednastavení roztažení:</translation>
+        <translation>Přednastavení odsazení:</translation>
     </message>
     <message>
         <source>Barline Inspector</source>
@@ -3149,35 +3192,35 @@ space unit</extracomment>
     </message>
     <message>
         <source>Span from</source>
-        <translation>Natáhnout od</translation>
+        <translation>Odsazení nahoře</translation>
     </message>
     <message>
         <source>Span</source>
-        <translation>Natáhnout</translation>
+        <translation>Odsazení</translation>
     </message>
     <message>
         <source>Span to</source>
-        <translation>Natáhnout po</translation>
+        <translation>Odsazení dole</translation>
     </message>
     <message>
         <source>Reset Span value</source>
-        <translation>Nastavit znovu protažení</translation>
+        <translation>Nastavit znovu odsazení</translation>
     </message>
     <message>
         <source>Reset Span from value</source>
-        <translation>Nastavit znovu protažení od</translation>
+        <translation>Nastavit znovu odsazení nahoře</translation>
     </message>
     <message>
         <source>Reset Span to value</source>
-        <translation>Nastavit znovu protažení do</translation>
+        <translation>Nastavit znovu odsazení dole</translation>
     </message>
     <message>
         <source>Spantype</source>
-        <translation>Typ natažení</translation>
+        <translation>Typ odsazení</translation>
     </message>
     <message>
         <source>Reset Span type value</source>
-        <translation>Nastavit znovu typ protažení</translation>
+        <translation>Nastavit znovu typ odsazení</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -3256,19 +3299,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Grow right</source>
-        <translation>Roztáhnout vpravo</translation>
+        <translation>Rozevřít vpravo</translation>
     </message>
     <message>
         <source>Grow left</source>
-        <translation>Roztáhnout vlevo</translation>
+        <translation>Rozevřít vlevo</translation>
     </message>
     <message>
         <source>Reset Grow right value</source>
-        <translation>Nastavit znovu roztáhnutí vpravo</translation>
+        <translation>Nastavit znovu rozevření vpravo</translation>
     </message>
     <message>
         <source>Reset Grow left value</source>
-        <translation>Nastavit znovu roztáhnutí vlevo</translation>
+        <translation>Nastavit znovu rozevření vlevo</translation>
     </message>
     <message>
         <source>Local relayout</source>
@@ -3280,6 +3323,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Dohlížitel na glissando</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Změna</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Přehrávání</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nastavit znovu přehrávání</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3409,11 +3471,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Part</source>
-        <translation>Hlas skladby</translation>
+        <translation>Part</translation>
     </message>
     <message>
         <source>System</source>
-        <translation>Velká osnova</translation>
+        <translation>Notový systém</translation>
     </message>
     <message>
         <source>Dynamic Inspector</source>
@@ -3560,6 +3622,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Ukázat text</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Styl</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Nastavit znovu styl</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Styl přehrávání</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Chromatická</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Bílé klávesy</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Černé klávesy</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonická</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Přehrávání</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nastavit znovu přehrávání</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -3652,11 +3750,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Part</source>
-        <translation>Hlas skladby</translation>
+        <translation>Part</translation>
     </message>
     <message>
         <source>System</source>
-        <translation>Velká osnova</translation>
+        <translation>Notový systém</translation>
     </message>
     <message>
         <source>Velocity change</source>
@@ -3924,7 +4022,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Bez konce</translation>
+        <translation>Spojitá</translation>
     </message>
     <message>
         <source>Dashed</source>
@@ -4331,7 +4429,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Bez konce</translation>
+        <translation>Spojitá</translation>
     </message>
     <message>
         <source>Dotted</source>
@@ -4367,6 +4465,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Dohlížitel na textové rámečky</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Textový rámeček</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Dolní mezera</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Horní okraj</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Nastavit hodnotu znovu</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Nastavit znovu horní mezeru</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Nastavit znovu dolní mezeru</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Levý okraj</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation> mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Dolní okraj</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Nastavit znovu pravý okraj</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Pravý okraj</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Nastavit znovu dolní okraj</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Nastavit znovu horní okraj</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Nastavit znovu levý okraj</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Horní mezera</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation> sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4497,13 +4667,37 @@ space unit</extracomment>
         <translation>Trylek</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Vlnitá čára</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Nastavit hodnotu znovu</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Styl ozdoby</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Směr</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Výchozí</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barokní</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Nastavit znovu typ ozdoby</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Přehrávání</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nastavit znovu přehrávání</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4517,7 +4711,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Relation</source>
-        <translation>Vztah</translation>
+        <translation>Poměr</translation>
     </message>
     <message>
         <source>Nothing</source>
@@ -4529,7 +4723,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Bracket</source>
-        <translation>Závorka</translation>
+        <translation>Svorka</translation>
     </message>
     <message>
         <source>Direction</source>
@@ -4565,7 +4759,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Bracket type value</source>
-        <translation>Nastavit znovu typ závorek</translation>
+        <translation>Nastavit znovu typ svorek</translation>
     </message>
     <message>
         <source>Number type</source>
@@ -4573,7 +4767,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Bracket type</source>
-        <translation>Typ závorek</translation>
+        <translation>Typ svorek</translation>
     </message>
 </context>
 <context>
@@ -4880,6 +5074,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonální</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -5144,7 +5345,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Detect swing</source>
-        <translation>Zjistit rytmus</translation>
+        <translation>Zjistit swing</translation>
     </message>
     <message>
         <source>None (1:1)</source>
@@ -5152,7 +5353,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Swing (2:1)</source>
-        <translation>Rytmus (2:1)</translation>
+        <translation>Swing (2:1)</translation>
     </message>
     <message>
         <source>Shuffle (3:1)</source>
@@ -5399,7 +5600,7 @@ Chcete %2 najít nyní?</translation>
     </message>
     <message>
         <source>Brackets</source>
-        <translation>Závorky</translation>
+        <translation>Svorky</translation>
     </message>
     <message>
         <source>Articulations & Ornaments</source>
@@ -5495,7 +5696,7 @@ Rytmická notová skupina by takt přepsala</translation>
     </message>
     <message>
         <source>Visible</source>
-        <translation>Viditelná</translation>
+        <translation>Viditelný</translation>
     </message>
     <message>
         <source>Stemless</source>
@@ -5984,7 +6185,7 @@ se nezdařilo:</translation>
     </message>
     <message>
         <source>Anchor</source>
-        <translation>Kotva</translation>
+        <translation>Ukotvení</translation>
     </message>
     <message>
         <source>Above Staff</source>
@@ -6051,16 +6252,8 @@ se nezdařilo:</translation>
         <translation>značka $</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>Značka popisu</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Dostupné značky a jejich nynější hodnoty:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
-        <translation>Použít na všechny hlasy</translation>
+        <translation>Použít na všechny party</translation>
     </message>
     <message>
         <source>last modification time</source>
@@ -6074,6 +6267,14 @@ se nezdařilo:</translation>
         <source>page number, if there is more than one page</source>
         <translation>Číslo strany, pokud je více než jedna strana</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>Značka popisu, viz níže</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Dostupné značky popisu a jejich nynější hodnoty:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -6606,7 +6807,7 @@ do notového zápisu "%1"?</translation>
     </message>
     <message>
         <source>MuseScore: Export Parts</source>
-        <translation>MuseScore: Vyvést výtahy hlasů</translation>
+        <translation>MuseScore: Vyvést party</translation>
     </message>
     <message>
         <source>"%1" already exists.
@@ -6633,7 +6834,7 @@ Chcete jej nahradit?</translation>
     </message>
     <message>
         <source>Parts were successfully exported</source>
-        <translation>Výtahy hlasů byly úspěšně vyvedeny</translation>
+        <translation>Party byly úspěšně vyvedeny</translation>
     </message>
     <message>
         <source>MuseScore: Save a Copy</source>
@@ -6721,7 +6922,7 @@ Chcete jej nahradit?</translation>
     </message>
     <message>
         <source>System Text</source>
-        <translation>Text osnovy</translation>
+        <translation>Text notového systému</translation>
     </message>
     <message>
         <source>Instrument</source>
@@ -6787,7 +6988,7 @@ Vyberte, prosím, nějaký takt a zkuste to znovu</translation>
     </message>
     <message>
         <source>Concert Pitch</source>
-        <translation>Koncertní ladění</translation>
+        <translation>Ve znějící výšce</translation>
     </message>
     <message>
         <source>&File</source>
@@ -7038,7 +7239,7 @@ Vyberte, prosím, jiný název:</translation>
     </message>
     <message>
         <source>System text</source>
-        <translation>Text velké osnovy</translation>
+        <translation>Text notového systému</translation>
     </message>
     <message>
         <source>Rehearsal mark</source>
@@ -7086,7 +7287,7 @@ Vyberte, prosím, jiný název:</translation>
     </message>
     <message>
         <source>Score_and_Parts</source>
-        <translation>Notový zápis a hlasy</translation>
+        <translation>Notový zápis a party</translation>
     </message>
     <message>
         <source>Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5 *.GPX)</source>
@@ -7204,6 +7405,10 @@ Vyberte, prosím, jiný název:</translation>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation>Tento notový zápis nelze uložit na internet. Opravte, prosím, poškozené takty a zkuste to znovu.</translation>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Požádat o pomoc</translation>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7261,7 +7466,7 @@ Vyberte, prosím, jiný název:</translation>
     </message>
     <message>
         <source>Create Time Signature</source>
-        <translation>Vytvořte taktové označení:</translation>
+        <translation>Vytvořit taktové označení</translation>
     </message>
 </context>
 <context>
@@ -7519,7 +7724,7 @@ Uložit před zavřením?</translation>
     </message>
     <message>
         <source>Choose Default Style for Parts</source>
-        <translation>Vybrat výchozí styl pro výtahy hlasů</translation>
+        <translation>Vybrat výchozí styl pro party</translation>
     </message>
     <message>
         <source>Choose Instrument List</source>
@@ -7688,10 +7893,6 @@ se nezdařilo: %2</translation>
         <translation>Zápis stylu se nezdařil: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>Soubor nebyl nalezen</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Žádný výběr</translation>
     </message>
@@ -7703,6 +7904,11 @@ se nezdařilo: %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Takt %1 Osnova %2, hlas %3 příliš dlouhý. Očekáváno: %4; Nalezeno: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>Chyba při čtení XML na řádku %1, sloupec %2: %3
+</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7928,7 +8134,7 @@ Vyberte, prosím, nějaký takt a zkuste to znovu</translation>
     </message>
     <message>
         <source>System Text Properties...</source>
-        <translation>Vlastnosti textu velké osnovy...</translation>
+        <translation>Vlastnosti textu notového systému</translation>
     </message>
     <message>
         <source>Resolution (%1 DPI)...</source>
@@ -8016,6 +8222,12 @@ Vyberte, prosím, rozsah taktů k připojení a zkuste to ještě jednou</transl
         <source>Transparent background</source>
         <translation>Průhledné pozadí</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Zde nelze rozdělit takt:
+První doba taktu</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -8084,7 +8296,7 @@ Vyberte, prosím, rozsah taktů k připojení a zkuste to ještě jednou</transl
     </message>
     <message>
         <source>MuseScore: System Text Properties</source>
-        <translation>MuseScore: Vlastnosti textu velké osnovy</translation>
+        <translation>MuseScore: Vlastnosti textu notového systému</translation>
     </message>
     <message>
         <source>MuseScore: Staff Text Properties</source>
@@ -8193,7 +8405,7 @@ Vyberte, prosím, jiný název:</translation>
     </message>
     <message>
         <source>Apply to all Parts</source>
-        <translation>Použít na všechny hlasy</translation>
+        <translation>Použít na všechny party</translation>
     </message>
     <message>
         <source>Text style name:</source>
@@ -8347,7 +8559,7 @@ Vyberte, prosím, jiný název:</translation>
     <name>Ms::Workspace</name>
     <message>
         <source>Advanced</source>
-        <translation>Pokročilé</translation>
+        <translation>Pokročilá</translation>
     </message>
     <message>
         <source>Basic</source>
@@ -8625,7 +8837,7 @@ Vyberte, prosím, jiný název:</translation>
     </message>
     <message>
         <source>Apply to all Parts</source>
-        <translation>Použít na všechny hlasy</translation>
+        <translation>Použít na všechny party</translation>
     </message>
     <message>
         <source>Distance between two lines on a standard 5-line staff</source>
@@ -8993,11 +9205,11 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>MIDI sound for part</source>
-        <translation>Zvuková banka MIDI pro hlas skladby/nástroj</translation>
+        <translation>Zvuková banka MIDI pro hlas part/nástroj</translation>
     </message>
     <message>
         <source>Part name</source>
-        <translation>Název hlasu</translation>
+        <translation>Název partu</translation>
     </message>
     <message>
         <source>Panorama position</source>
@@ -9009,7 +9221,7 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Part Name</source>
-        <translation>Název výtahu hlasu skladby</translation>
+        <translation>Název partu</translation>
     </message>
     <message>
         <source>Use arrows to modify</source>
@@ -9297,7 +9509,7 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Canvas</source>
-        <translation>Plátno</translation>
+        <translation>Povrch</translation>
     </message>
     <message>
         <source>Background</source>
@@ -9333,7 +9545,7 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Color notes outside of usable pitch range</source>
-        <translation>Barvit noty mimo použitelný rozsah výšky tónu</translation>
+        <translation>Barvit noty mimo použitelný rozsah tónů</translation>
     </message>
     <message>
         <source>16th note</source>
@@ -9505,7 +9717,7 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Import system and page breaks</source>
-        <translation>Zavést zalomení osnov a stran</translation>
+        <translation>Zavést zalomení systémů a stran</translation>
     </message>
     <message>
         <source>MIDI</source>
@@ -9561,11 +9773,11 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Export manually added system and page breaks only</source>
-        <translation>Vyvést pouze ručně přidaná zalomení osnov a stran</translation>
+        <translation>Vyvést pouze ručně přidaná zalomení systémů osnov a stran</translation>
     </message>
     <message>
         <source>Do not export system or page breaks</source>
-        <translation>Nevyvádět zalomení osnov a stran</translation>
+        <translation>Nevyvádět zalomení systémů osnov a stran</translation>
     </message>
     <message>
         <source>Shortcuts</source>
@@ -9689,7 +9901,7 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Style for part:</source>
-        <translation>Styl pro výtahy hlasů:</translation>
+        <translation>Styl pro part:</translation>
     </message>
     <message>
         <source>ALSA audio</source>
@@ -9721,7 +9933,7 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Proximity for selecting elements:</source>
-        <translation>Poloměr odchytu pro výběr prvků v pixelech
+        <translation>Poloměr odchytu při výběr prvků v obrazových bodech
 (vyšší hodnota rovná se větší poloměr):</translation>
     </message>
     <message>
@@ -9887,7 +10099,7 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Canvas Tab</source>
-        <translation>Karta pro plátno</translation>
+        <translation>Karta pro povrch</translation>
     </message>
     <message>
         <source>Background Wallpaper</source>
@@ -10087,19 +10299,19 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Style for part</source>
-        <translation>Styl pro výtahy hlasů</translation>
+        <translation>Styl pro part</translation>
     </message>
     <message>
         <source>Insert path to style file for part</source>
-        <translation>Vložit cestu pro soubor se stylem pro výtahy hlasů</translation>
+        <translation>Vložit cestu pro soubor se stylem pro part</translation>
     </message>
     <message>
         <source>Choose style for part</source>
-        <translation>Vybrat styl pro výtahy hlasů</translation>
+        <translation>Vybrat styl pro part</translation>
     </message>
     <message>
         <source>Opens a file dialog for selecting a style file for part</source>
-        <translation>Otevře souborový dialog pro výběr souboru se stylem pro výtahy hlasů</translation>
+        <translation>Otevře souborový dialog pro výběr souboru se stylem pro part</translation>
     </message>
     <message>
         <source>Instrument list 2</source>
@@ -10417,6 +10629,14 @@ se nezdařil:</translation>
         <source>Filter</source>
         <translation>Filtr</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Vyvést RPNs</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10851,7 +11071,7 @@ Chcete ji nahradit?</translation>
     </message>
     <message>
         <source>SoundFont installed. Please go to View > Synthesizer to add it and View > Mixer to choose an instrument sound.</source>
-        <translation>Zvuková banka nainstalována. Jděte, prosím, do Pohled -> Syntetizátor pro její přidání a do Pohled -> Směšovač pro výběr zvuku nějakého nástroje.</translation>
+        <translation>Zvuková banka nainstalována. Jděte, prosím, do Pohled -> Syntetizátor pro její přidání a do Pohled -> Směšovač pro výběr zvuku hudebního nástroje.</translation>
     </message>
 </context>
 <context>
@@ -10970,7 +11190,7 @@ Chcete ji nahradit?</translation>
     </message>
     <message>
         <source>Same system</source>
-        <translation>Stejná velká osnova</translation>
+        <translation>Stejný systém osnov</translation>
     </message>
     <message>
         <source>Replace selection</source>
@@ -11086,7 +11306,7 @@ Chcete ji nahradit?</translation>
     <name>SplitStaff</name>
     <message>
         <source>MuseScore: Edit Staff/Part Properties</source>
-        <translation>MuseScore: Vlastnosti osnovy/hlasu skladby</translation>
+        <translation>MuseScore: Vlastnosti osnovy/partu</translation>
     </message>
     <message>
         <source>Split Staff</source>
@@ -11188,7 +11408,7 @@ Chcete ji nahradit?</translation>
     </message>
     <message>
         <source>Swing Settings</source>
-        <translation>Nastavení Swingu</translation>
+        <translation>Nastavení swingu</translation>
     </message>
     <message>
         <source>Swing:</source>
@@ -11274,6 +11494,14 @@ Chcete ji nahradit?</translation>
         <source>System flag</source>
         <translation>Systémový příznak</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Hledat...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Vyprázdnit</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11632,7 +11860,7 @@ Chcete ji nahradit?</translation>
     </message>
     <message>
         <source>Instrument Name (Part)</source>
-        <translation>Název nástroje (hlas)</translation>
+        <translation>Název nástroje (part)</translation>
     </message>
     <message>
         <source>Dynamics</source>
@@ -11664,7 +11892,7 @@ Chcete ji nahradit?</translation>
     </message>
     <message>
         <source>System</source>
-        <translation>Velká osnova</translation>
+        <translation>Notový systém</translation>
     </message>
     <message>
         <source>Staff</source>
@@ -12306,15 +12534,15 @@ Chcete ji nahradit?</translation>
     </message>
     <message>
         <source>Bracket</source>
-        <translation>Závorka</translation>
+        <translation>Svorka</translation>
     </message>
     <message>
         <source>Relation:</source>
-        <translation>Vztah:</translation>
+        <translation>Poměr:</translation>
     </message>
     <message>
         <source>Relation</source>
-        <translation>Vztah</translation>
+        <translation>Poměr</translation>
     </message>
     <message>
         <source>Nothing</source>
@@ -12322,7 +12550,7 @@ Chcete ji nahradit?</translation>
     </message>
     <message>
         <source>Auto bracket</source>
-        <translation>Automatické závorky</translation>
+        <translation>Automatické svorky</translation>
     </message>
 </context>
 <context>
@@ -12695,11 +12923,11 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Export Parts...</source>
-        <translation>Vyvést výtahy hlasů...</translation>
+        <translation>Vyvést party...</translation>
     </message>
     <message>
         <source>Save a copy of the score's parts in various formats</source>
-        <translation>Uložit kopie výtahů hlasů notového zápisu v různých formátech</translation>
+        <translation>Uložit kopie výtahů partů notového zápisu v různých formátech</translation>
     </message>
     <message>
         <source>Close</source>
@@ -13615,15 +13843,11 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Feathered beam, slower</source>
-        <translation>Opeřený trámec, pomalejší</translation>
+        <translation>Vidlicovitý trámec, zpomalení </translation>
     </message>
     <message>
         <source>Feathered beam, faster</source>
-        <translation>Opeřený trámec, rychlejší</translation>
-    </message>
-    <message>
-        <source>Palette</source>
-        <translation>Palety</translation>
+        <translation>Vidlicovitý trámec, zrychlení</translation>
     </message>
     <message>
         <source>Play Panel</source>
@@ -13662,20 +13886,16 @@ se nezdařil:</translation>
         <translation>Přidat text písně</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Označení tempa...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Přidat označení tempa</translation>
     </message>
     <message>
         <source>System Text</source>
-        <translation>Text velké osnovy</translation>
+        <translation>Text notového systému</translation>
     </message>
     <message>
         <source>Add system text</source>
-        <translation>Přidat text pro velkou osnovu</translation>
+        <translation>Přidat text notového systému</translation>
     </message>
     <message>
         <source>Staff Text</source>
@@ -13879,11 +14099,11 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Concert Pitch</source>
-        <translation>Koncertní ladění</translation>
+        <translation>Ve znějící výšce</translation>
     </message>
     <message>
         <source>Display in concert pitch</source>
-        <translation>Zobrazit v koncertním ladění</translation>
+        <translation>Zobrazit ve znějící výšce</translation>
     </message>
     <message>
         <source>Repeat last command</source>
@@ -13899,7 +14119,7 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Toggle System Break</source>
-        <translation>Zapnout/Vypnout zalomení osnovy</translation>
+        <translation>Zapnout/Vypnout zalomení systému </translation>
     </message>
     <message>
         <source>Toggle Page Break</source>
@@ -14022,10 +14242,6 @@ se nezdařil:</translation>
         <translation>Opakovat výběr</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Projíždět válečkem klavíru</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Zapnout/Vypnout projíždění válečkem klavíru</translation>
     </message>
@@ -14051,11 +14267,11 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Parts...</source>
-        <translation>Výtahy hlasů...</translation>
+        <translation>Party...</translation>
     </message>
     <message>
         <source>Manage parts</source>
-        <translation>Spravovat výtahy hlasů</translation>
+        <translation>Spravovat party</translation>
     </message>
     <message>
         <source>Enharmonic up</source>
@@ -14463,7 +14679,7 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Add brackets to element</source>
-        <translation>Přidat závorky k prvku</translation>
+        <translation>Přidat svorky k prvku</translation>
     </message>
     <message>
         <source>Selection Filter</source>
@@ -14547,11 +14763,11 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Part Name</source>
-        <translation>Název výtahu hlasu skladby</translation>
+        <translation>Název partu</translation>
     </message>
     <message>
         <source>Add part name</source>
-        <translation>Přidat název hlasu</translation>
+        <translation>Přidat název partu</translation>
     </message>
     <message>
         <source>Save Online...</source>
@@ -14663,7 +14879,7 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Export parts</source>
-        <translation>Vyvést výtahy hlasů</translation>
+        <translation>Vyvést party</translation>
     </message>
     <message>
         <source>File: Close</source>
@@ -15003,11 +15219,11 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Feathered Beam, Slower</source>
-        <translation>Opeřený trámec, pomalejší</translation>
+        <translation>Vidlicovitý trámec, zpomalení</translation>
     </message>
     <message>
         <source>Feathered Beam, Faster</source>
-        <translation>Opeřený trámec, rychlejší</translation>
+        <translation>Vidlicovitý trámec, zrychlení</translation>
     </message>
     <message>
         <source>Play panel</source>
@@ -15027,7 +15243,7 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Zoom Canvas</source>
-        <translation>Zvětšit plátno</translation>
+        <translation>Zvětšit notový list</translation>
     </message>
     <message>
         <source>Play previous chord</source>
@@ -15091,7 +15307,7 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Toggle system break</source>
-        <translation>Přepnout zalomení osnovy</translation>
+        <translation>Zapnout/Vypnout zalomení systému</translation>
     </message>
     <message>
         <source>Toggle page break</source>
@@ -15411,7 +15627,7 @@ se nezdařil:</translation>
     </message>
     <message>
         <source>Add Brackets to Element</source>
-        <translation>Přidat závorky k prvku</translation>
+        <translation>Přidat svorky k prvku</translation>
     </message>
     <message>
         <source>Toggle Create Multimeasure Rest</source>
@@ -15589,6 +15805,22 @@ se nezdařil:</translation>
         <source>Set loop in position</source>
         <translation>Určit začátek smyčky</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Palety</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Označení tempa</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Zvětšit na 100 %</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Projíždět válečkem klavíru</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16640,6 +16872,10 @@ Takt není prázdný</translation>
         <source>Tablature2</source>
         <translation>Tabulatura 2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Houslový klíč volitelný 8vb</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17142,7 +17378,7 @@ Takt není prázdný</translation>
     </message>
     <message>
         <source>System</source>
-        <translation>Osnova</translation>
+        <translation>Notový systém</translation>
     </message>
     <message>
         <source>Compound</source>
@@ -17751,10 +17987,6 @@ Takt není prázdný</translation>
         <source>Prallprall line</source>
         <translation>Trylková linka</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Vlnitá linka</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_sl.ts b/share/locale/mscore_cy.ts
similarity index 85%
copy from share/locale/mscore_sl.ts
copy to share/locale/mscore_cy.ts
index aff6a23..4d9b1bf 100644
--- a/share/locale/mscore_sl.ts
+++ b/share/locale/mscore_cy.ts
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?><!DOCTYPE TS><TS language="sl" version="2.1">
+<?xml version="1.0" ?><!DOCTYPE TS><TS language="cy" version="2.1">
 <context>
     <name>AboutBox</name>
     <message>
         <source>About MuseScore</source>
-        <translation>O programu MuseScore</translation>
+        <translation>Ynglŷn â MuseScore</translation>
     </message>
     <message>
         <source>Copy revision number</source>
@@ -26,7 +26,7 @@ p, li { white-space: pre-wrap; }
     <name>AboutMusicXMLBox</name>
     <message>
         <source>About MusicXML</source>
-        <translation>O MusicXML</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
@@ -41,38 +41,38 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>The MusicXML Public License:</source>
-        <translation type="unfinished"/>
+        <translation>Trwydded Cyhoeusu: MusicXML.</translation>
     </message>
 </context>
 <context>
     <name>AeolusGui</name>
     <message>
         <source>Azimuth</source>
-        <translation type="unfinished"/>
+        <translation>Asimwth</translation>
     </message>
     <message>
         <source>Width</source>
-        <translation type="unfinished"/>
+        <translation>lled</translation>
     </message>
     <message>
         <source>Reflect</source>
-        <translation type="unfinished"/>
+        <translation>Adlewyrchu</translation>
     </message>
     <message>
         <source>Reverb</source>
-        <translation type="unfinished"/>
+        <translation>adleisio</translation>
     </message>
     <message>
         <source>Delay</source>
-        <translation type="unfinished"/>
+        <translation>oediad</translation>
     </message>
     <message>
         <source>Time</source>
-        <translation type="unfinished"/>
+        <translation>amser</translation>
     </message>
     <message>
         <source>Direct</source>
-        <translation type="unfinished"/>
+        <translation>uniongyrchol</translation>
     </message>
     <message>
         <source>III</source>
@@ -80,7 +80,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>II</source>
-        <translation>II</translation>
+        <translation>2</translation>
     </message>
     <message>
         <source>I</source>
@@ -92,247 +92,247 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Position</source>
-        <translation type="unfinished"/>
+        <translation>lleoliad</translation>
     </message>
 </context>
 <context>
     <name>AlbumManager</name>
     <message>
         <source>MuseScore: Album Manager</source>
-        <translation>MuseScore: Urejanje albuma</translation>
+        <translation>MuseScore: Albwm Rheolwr</translation>
     </message>
     <message>
         <source>Add Score</source>
-        <translation type="unfinished"/>
+        <translation>Ychwanegu Sgôr</translation>
     </message>
     <message>
         <source>Remove Score</source>
-        <translation type="unfinished"/>
+        <translation>Symud Score</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Dol</translation>
+        <translation>i lawr</translation>
     </message>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>New</source>
-        <translation>Novo</translation>
+        <translation>Newydd</translation>
     </message>
     <message>
         <source>Load</source>
-        <translation>Naloži</translation>
+        <translation>llwytho</translation>
     </message>
     <message>
         <source>Print Album</source>
-        <translation>Natisni album</translation>
+        <translation>Print Albwm</translation>
     </message>
     <message>
         <source>Join Scores</source>
-        <translation type="unfinished"/>
+        <translation>Uno Scorau</translation>
     </message>
     <message>
         <source>Album name:</source>
-        <translation>Naslov albuma:</translation>
+        <translation>Enw Albwm</translation>
     </message>
     <message>
         <source>Move current score down in list</source>
-        <translation type="unfinished"/>
+        <translation>Symud y sgôr y rhestr presenol i lawr</translation>
     </message>
     <message>
         <source>Move current score up in list</source>
-        <translation type="unfinished"/>
+        <translation>Symud y sgôr y rhestr presenol i fynu</translation>
     </message>
     <message>
         <source>Album name</source>
-        <translation>Naslov albuma</translation>
+        <translation>Enw albwm</translation>
     </message>
     <message>
         <source>Remove current score</source>
-        <translation type="unfinished"/>
+        <translation>Symudiad ymaith sgôr</translation>
     </message>
     <message>
         <source>Create new album</source>
-        <translation>Ustvari novi album</translation>
+        <translation>Creu albwm newydd</translation>
     </message>
     <message>
         <source>Load an existing album</source>
-        <translation>Naloži obstoječi album</translation>
+        <translation>Llwytho albwnpresennol</translation>
     </message>
 </context>
 <context>
     <name>ArticulationProperties</name>
     <message>
         <source>MuseScore: Articulations Properties</source>
-        <translation>MuseScore: Artikulacijske lastnosti</translation>
+        <translation> Priodweddu canu glân MuseScore:</translation>
     </message>
     <message>
         <source>Appearance</source>
-        <translation type="unfinished"/>
+        <translation>Ymddangosiadau</translation>
     </message>
     <message>
         <source>Direction:</source>
-        <translation type="unfinished"/>
+        <translation>Cyfarwyddyd</translation>
     </message>
     <message>
         <source>Auto</source>
-        <translation type="unfinished"/>
+        <translation>Awtodrefnu </translation>
     </message>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Dol</translation>
+        <translation>i lawr</translation>
     </message>
     <message>
         <source>Anchor:</source>
-        <translation type="unfinished"/>
+        <translation>Angor </translation>
     </message>
     <message>
         <source>Channel</source>
-        <translation>Kanal</translation>
+        <translation>Culfor</translation>
     </message>
     <message>
         <source>MIDI Action</source>
-        <translation>MIDI dogodek</translation>
+        <translation>Gweithred MIDI</translation>
     </message>
     <message>
         <source>Above Staff</source>
-        <translation type="unfinished"/>
+        <translation>Uwchben Staff</translation>
     </message>
     <message>
         <source>Below Staff</source>
-        <translation type="unfinished"/>
+        <translation>Islaw Staff</translation>
     </message>
     <message>
         <source>Chord Automatic</source>
-        <translation type="unfinished"/>
+        <translation>Tant Awtomatig</translation>
     </message>
     <message>
         <source>Above Chord</source>
-        <translation type="unfinished"/>
+        <translation>Uwch Tant</translation>
     </message>
     <message>
         <source>Below Chord</source>
-        <translation type="unfinished"/>
+        <translation>Islaw Tant</translation>
     </message>
 </context>
 <context>
     <name>Awl::ColorLabel</name>
     <message>
         <source>MuseScore: Select Color</source>
-        <translation>MuseScore: Izberi barvo</translation>
+        <translation>Dewis Lliw: MuseScore</translation>
     </message>
 </context>
 <context>
     <name>BarLineBase</name>
     <message>
         <source>custom subtype</source>
-        <translation type="unfinished"/>
+        <translation>Is fath arfer</translation>
     </message>
     <message>
         <source>custom span</source>
-        <translation type="unfinished"/>
+        <translation>Rhychwant arferiad </translation>
     </message>
 </context>
 <context>
     <name>BendDialog</name>
     <message>
         <source>MuseScore: Bend Properties</source>
-        <translation type="unfinished"/>
+        <translation>Celfi Cerddorfa: MuseScore</translation>
     </message>
     <message>
         <source>Bend type:</source>
-        <translation type="unfinished"/>
+        <translation>Math cerddorfa</translation>
     </message>
     <message>
         <source>Click to add or remove some points</source>
-        <translation type="unfinished"/>
+        <translation>Clic i symud neu dileu pwint</translation>
     </message>
     <message>
         <source>Bend</source>
-        <translation type="unfinished"/>
+        <translation>Cerddorfa</translation>
     </message>
     <message>
         <source>Bend/Release</source>
-        <translation type="unfinished"/>
+        <translation>Rhyddhad Cerddorfa</translation>
     </message>
     <message>
         <source>Bend/Release/Bend</source>
-        <translation type="unfinished"/>
+        <translation>Cerddorfa/Rhyddhad/Cerddorfa</translation>
     </message>
     <message>
         <source>Prebend</source>
-        <translation type="unfinished"/>
+        <translation>Prebend</translation>
     </message>
     <message>
         <source>Prebend/Release</source>
-        <translation type="unfinished"/>
+        <translation>Ryddhad/Prebend</translation>
     </message>
 </context>
 <context>
     <name>BreaksDialog</name>
     <message>
         <source>MuseScore: Add/Remove Line Breaks</source>
-        <translation type="unfinished"/>
+        <translation>Rhyddhau/ategy/dileu llinell: MuseScore</translation>
     </message>
     <message>
         <source>Break lines every</source>
-        <translation type="unfinished"/>
+        <translation>Dileu llinellau pob</translation>
     </message>
     <message>
         <source>Number of measures</source>
-        <translation type="unfinished"/>
+        <translation>Rhif y mesurau</translation>
     </message>
     <message>
         <source>measures</source>
-        <translation>Takti</translation>
+        <translation>Mesurau</translation>
     </message>
     <message>
         <source>Add line breaks at end of each system</source>
-        <translation type="unfinished"/>
+        <translation>Ategu toriad ar ddiwedd eich system</translation>
     </message>
     <message>
         <source>Remove current line breaks</source>
-        <translation type="unfinished"/>
+        <translation>Gwyriad y linell presenol</translation>
     </message>
     <message>
         <source>Break lines every X measures</source>
-        <translation type="unfinished"/>
+        <translation>Tori llinellau  X y mesur </translation>
     </message>
 </context>
 <context>
     <name>ChordBase</name>
     <message>
         <source>Glissando end</source>
-        <translation type="unfinished"/>
+        <translation>Diwedd Glissando </translation>
     </message>
 </context>
 <context>
     <name>ChordStyleEditor</name>
     <message>
         <source>Name</source>
-        <translation>Ime</translation>
+        <translation>Enw</translation>
     </message>
     <message>
         <source>Tab 1</source>
-        <translation type="unfinished"/>
+        <translation>Tab 1</translation>
     </message>
     <message>
         <source>Tab 2</source>
-        <translation type="unfinished"/>
+        <translation>Tab 2</translation>
     </message>
     <message>
         <source>Save As</source>
-        <translation>Shrani kot</translation>
+        <translation>Cadw fel</translation>
     </message>
     <message>
         <source>Load</source>
-        <translation>Naloži</translation>
+        <translation>llwytho</translation>
     </message>
     <message>
         <source>ID</source>
@@ -343,19 +343,19 @@ p, li { white-space: pre-wrap; }
     <name>EditDrumset</name>
     <message>
         <source>Normal</source>
-        <translation type="unfinished"/>
+        <translation>Normal</translation>
     </message>
     <message>
         <source>Cross</source>
-        <translation type="unfinished"/>
+        <translation>Traws</translation>
     </message>
     <message>
         <source>Diamond</source>
-        <translation type="unfinished"/>
+        <translation>Diemwnt</translation>
     </message>
     <message>
         <source>Triangle</source>
-        <translation>Trikot</translation>
+        <translation>Triongl</translation>
     </message>
     <message>
         <source>Mi</source>
@@ -363,11 +363,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Slash</source>
-        <translation type="unfinished"/>
+        <translation>Slaes</translation>
     </message>
     <message>
         <source>XCircle</source>
-        <translation type="unfinished"/>
+        <translation>XCylch</translation>
     </message>
     <message>
         <source>Do</source>
@@ -394,47 +394,47 @@ p, li { white-space: pre-wrap; }
     <name>EditDrumsetBase</name>
     <message>
         <source>MuseScore: Edit Drumset</source>
-        <translation>MuseScore: Tolkala</translation>
+        <translation>Golygu Dwrm Set: MuseScore</translation>
     </message>
     <message>
         <source>Name:</source>
-        <translation>Ime:</translation>
+        <translation>Enw</translation>
     </message>
     <message>
         <source>Load</source>
-        <translation>Naloži</translation>
+        <translation>llwytho</translation>
     </message>
     <message>
         <source>Save</source>
-        <translation>Shrani</translation>
+        <translation>Cadw </translation>
     </message>
     <message>
         <source>No.</source>
-        <translation type="unfinished"/>
+        <translation>Rhif</translation>
     </message>
     <message>
         <source>Note</source>
-        <translation>Nota</translation>
+        <translation>Nodyn</translation>
     </message>
     <message>
         <source>Shortcut</source>
-        <translation>Bližnjica</translation>
+        <translation>llwybr byr</translation>
     </message>
     <message>
         <source>Name</source>
-        <translation>Ime</translation>
+        <translation>Enw</translation>
     </message>
     <message>
         <source>Auto</source>
-        <translation type="unfinished"/>
+        <translation>Awtodrefnu </translation>
     </message>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Dol</translation>
+        <translation>i lawr</translation>
     </message>
     <message>
         <source>1</source>
@@ -454,7 +454,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Shortcut:</source>
-        <translation>Bližnjica:</translation>
+        <translation>llwybr byr</translation>
     </message>
     <message>
         <source>A</source>
@@ -462,7 +462,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>B</source>
-        <translation>H</translation>
+        <translation>B</translation>
     </message>
     <message>
         <source>C</source>
@@ -490,113 +490,113 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Staff line:</source>
-        <translation>ÄŒrta:</translation>
+        <translation>Llinell staff:</translation>
     </message>
     <message>
         <source>Stem direction:</source>
-        <translation>Smer vratu:</translation>
+        <translation>Coes nodyn:</translation>
     </message>
     <message>
         <source>Default voice:</source>
-        <translation>Privzet glas:</translation>
+        <translation>Llais rhagosodedig</translation>
     </message>
     <message>
         <source>Note head:</source>
-        <translation>Notna glavica:</translation>
+        <translation>Pen nodyn</translation>
     </message>
 </context>
 <context>
     <name>EditInstrumentBase</name>
     <message>
         <source>MuseScore: Edit Instrument Properties</source>
-        <translation>MuseScore: Lastnosti inštrumentov</translation>
+        <translation>Golygu Priodweddau offeryn: MuseScore</translation>
     </message>
     <message>
         <source>Instrument Properties</source>
-        <translation>Lastnosti inštrumenta</translation>
+        <translation>Priodweddau offeryn</translation>
     </message>
     <message>
         <source>OK</source>
-        <translation>V redu</translation>
+        <translation>OK</translation>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Prekliči</translation>
+        <translation>Dileu</translation>
     </message>
     <message>
         <source>Name:</source>
-        <translation>Ime:</translation>
+        <translation>Enw:</translation>
     </message>
     <message>
         <source>Pitch:</source>
-        <translation>Višina</translation>
+        <translation>Cywair:</translation>
     </message>
     <message>
         <source>Transpose:</source>
-        <translation>Transponiraj:</translation>
+        <translation>Trawsnodi:</translation>
     </message>
     <message>
         <source>Staves:</source>
-        <translation type="unfinished"/>
+        <translation>Erwyddau:</translation>
     </message>
     <message>
         <source>Short name:</source>
-        <translation type="unfinished"/>
+        <translation>Enw byr</translation>
     </message>
     <message>
         <source>MIDI program:</source>
-        <translation>MIDI program:</translation>
+        <translation>Rhaglen MIDI</translation>
     </message>
 </context>
 <context>
     <name>EditPitchBase</name>
     <message>
         <source>Note Selection</source>
-        <translation>Izbor note</translation>
+        <translation>Dewis nodyn</translation>
     </message>
     <message>
         <source>Select Note:</source>
-        <translation>Izberi noto:</translation>
+        <translation>Dewis nodyn:</translation>
     </message>
     <message>
         <source>Octave 8</source>
-        <translation>Oktava 8</translation>
+        <translation>Wythfed 8</translation>
     </message>
     <message>
         <source>Octave 7</source>
-        <translation>Oktava 7</translation>
+        <translation>Wythfed 7</translation>
     </message>
     <message>
         <source>Octave 6</source>
-        <translation>Oktava 6</translation>
+        <translation>Wythfed 6</translation>
     </message>
     <message>
         <source>Octave 5</source>
-        <translation>Oktava 5</translation>
+        <translation>Wythfed 5</translation>
     </message>
     <message>
         <source>Octave 4</source>
-        <translation>Oktava 4</translation>
+        <translation>Wythfed 4</translation>
     </message>
     <message>
         <source>Octave 3</source>
-        <translation>Oktava 3</translation>
+        <translation>Wythfed 3</translation>
     </message>
     <message>
         <source>Octave 2</source>
-        <translation>Oktava 2</translation>
+        <translation>Wythfed 2</translation>
     </message>
     <message>
         <source>Octave 1</source>
-        <translation>Oktava 1</translation>
+        <translation>Wythfed 1</translation>
     </message>
     <message>
         <source>Octave 0</source>
-        <translation>Oktava 0</translation>
+        <translation>Wythfed 0</translation>
     </message>
     <message>
         <source>Octave -1</source>
-        <translation>Oktava -1</translation>
+        <translation>Wythfed - 1</translation>
     </message>
     <message>
         <source>C</source>
@@ -624,7 +624,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>B</source>
-        <translation>H</translation>
+        <translation>B</translation>
     </message>
     <message>
         <source>C 8</source>
@@ -652,7 +652,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>B 8</source>
-        <translation>H 8</translation>
+        <translation>B 8</translation>
     </message>
     <message>
         <source>C 7</source>
@@ -680,7 +680,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>B 7</source>
-        <translation>H 7</translation>
+        <translation>B 7</translation>
     </message>
     <message>
         <source>C 6</source>
@@ -708,7 +708,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>B 6</source>
-        <translation>H 6</translation>
+        <translation>B 6</translation>
     </message>
     <message>
         <source>C 5</source>
@@ -736,7 +736,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>B 5</source>
-        <translation>H 5</translation>
+        <translation>B 5</translation>
     </message>
     <message>
         <source>C 4</source>
@@ -764,7 +764,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>B 4</source>
-        <translation>H 4</translation>
+        <translation>B 4</translation>
     </message>
     <message>
         <source>C 3</source>
@@ -792,7 +792,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>B 3</source>
-        <translation>H 3</translation>
+        <translation>B 3</translation>
     </message>
     <message>
         <source>C 2</source>
@@ -820,7 +820,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>B 2</source>
-        <translation>H 2</translation>
+        <translation>B 2</translation>
     </message>
     <message>
         <source>C 1</source>
@@ -848,7 +848,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>B 1</source>
-        <translation>H 1</translation>
+        <translation>B 1</translation>
     </message>
     <message>
         <source>C 0</source>
@@ -876,7 +876,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>B 0</source>
-        <translation>H 0</translation>
+        <translation>B 0</translation>
     </message>
     <message>
         <source>C -1</source>
@@ -904,7 +904,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>B -1</source>
-        <translation>H -1</translation>
+        <translation>B -1</translation>
     </message>
     <message>
         <source>C♯</source>
@@ -924,7 +924,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Bâ™­</source>
-        <translation>B</translation>
+        <translation>Bâ™­</translation>
     </message>
     <message>
         <source>C♯ 8</source>
@@ -944,7 +944,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Bâ™­ 8</source>
-        <translation>B 8</translation>
+        <translation>Bâ™­ 8</translation>
     </message>
     <message>
         <source>C♯ 7</source>
@@ -964,7 +964,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Bâ™­ 7</source>
-        <translation>B 7</translation>
+        <translation>Bâ™­ 7</translation>
     </message>
     <message>
         <source>C♯ 6</source>
@@ -984,7 +984,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Bâ™­ 6</source>
-        <translation>B 6</translation>
+        <translation>Bâ™­ 6</translation>
     </message>
     <message>
         <source>C♯ 5</source>
@@ -1004,7 +1004,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Bâ™­ 5</source>
-        <translation>B 5</translation>
+        <translation>Bâ™­ 5</translation>
     </message>
     <message>
         <source>C♯ 4</source>
@@ -1024,7 +1024,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Bâ™­ 4</source>
-        <translation>B 4</translation>
+        <translation>Bâ™­ 4</translation>
     </message>
     <message>
         <source>C♯ 3</source>
@@ -1044,7 +1044,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Bâ™­ 3</source>
-        <translation>B3</translation>
+        <translation>Bâ™­ 3</translation>
     </message>
     <message>
         <source>C♯ 2</source>
@@ -1064,7 +1064,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Bâ™­ 2</source>
-        <translation>B 2</translation>
+        <translation>Bâ™­ 2</translation>
     </message>
     <message>
         <source>C♯ 1</source>
@@ -1084,7 +1084,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Bâ™­ 1</source>
-        <translation>B 1</translation>
+        <translation>Bâ™­ 1</translation>
     </message>
     <message>
         <source>C♯ 0</source>
@@ -1104,7 +1104,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Bâ™­ 0</source>
-        <translation>B 0</translation>
+        <translation>Bâ™­ 0</translation>
     </message>
     <message>
         <source>C♯ -1</source>
@@ -1124,7 +1124,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Bâ™­ -1</source>
-        <translation>B -1</translation>
+        <translation>Bâ™­ -1</translation>
     </message>
     <message>
         <source>»C</source>
@@ -1135,7 +1135,7 @@ p, li { white-space: pre-wrap; }
     <name>EditRaster</name>
     <message>
         <source>1 / </source>
-        <translation>1 / </translation>
+        <translation>1/</translation>
     </message>
     <message>
         <source>sp</source>
@@ -1143,42 +1143,42 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>MuseScore: Edit Grid</source>
-        <translation>MuseScore: Uredi mrežo</translation>
+        <translation>MuseScore: Golygu Grid</translation>
     </message>
     <message>
         <source>Edit Grid</source>
-        <translation>Uredi mrežo</translation>
+        <translation>Golygu Grid</translation>
     </message>
     <message>
         <source>Horizontal grid:</source>
-        <translation>Vodoravna mreža:</translation>
+        <translation>Llorwedd gris:</translation>
     </message>
     <message>
         <source>Vertical  grid:</source>
-        <translation>Navpična mreža</translation>
+        <translation>Fertigol grid</translation>
     </message>
 </context>
 <context>
     <name>EditStaffBase</name>
     <message>
         <source>MuseScore: Edit Staff/Part Properties</source>
-        <translation>MuseScore: Lastnosti črtovja/dela</translation>
+        <translation>MuseScore: Golygu Staff/Rhauau Celfi</translation>
     </message>
     <message>
         <source>Part Properties</source>
-        <translation>Lastnosti dela</translation>
+        <translation>Rhan Celfi</translation>
     </message>
     <message>
         <source>Change Instrument...</source>
-        <translation>Spremeni inštrument ...</translation>
+        <translation>Newid Offeryn</translation>
     </message>
     <message>
         <source>Instrument:</source>
-        <translation>Inštrument:</translation>
+        <translation>Offeryn</translation>
     </message>
     <message>
         <source>Amateur:</source>
-        <translation>Začetnik:</translation>
+        <translation>Amatur:</translation>
     </message>
     <message>
         <source>-</source>
@@ -1186,127 +1186,127 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Professional:</source>
-        <translation>Profesionalec:</translation>
+        <translation>Proffesiynol:</translation>
     </message>
     <message>
         <source>0 - Perfect Unison</source>
-        <translation type="unfinished"/>
+        <translation>0 - preffaith unsain</translation>
     </message>
     <message>
         <source>1 - Augmented Unison</source>
-        <translation type="unfinished"/>
+        <translation>1 - Estynedig Unsain</translation>
     </message>
     <message>
         <source>0 - Diminished Second</source>
-        <translation type="unfinished"/>
+        <translation>0 - Ail Gywasg</translation>
     </message>
     <message>
         <source>1 - Minor Second</source>
-        <translation type="unfinished"/>
+        <translation>1 - Ail Lleiaf</translation>
     </message>
     <message>
         <source>2 - Major Second</source>
-        <translation type="unfinished"/>
+        <translation>2 - Ail Mwyaf</translation>
     </message>
     <message>
         <source>3 - Augmented Second</source>
-        <translation type="unfinished"/>
+        <translation>3 - Ail estynedig</translation>
     </message>
     <message>
         <source>2 - Diminished Third</source>
-        <translation type="unfinished"/>
+        <translation>2 - Trydydd Cywasg</translation>
     </message>
     <message>
         <source>3 - Minor Third</source>
-        <translation type="unfinished"/>
+        <translation>3 - Rydydd lleiaf</translation>
     </message>
     <message>
         <source>4 - Major Third</source>
-        <translation type="unfinished"/>
+        <translation>4 - Trydydd Pennaf</translation>
     </message>
     <message>
         <source>5 - Augmented Third</source>
-        <translation type="unfinished"/>
+        <translation>5 - Trydydd Estynedig</translation>
     </message>
     <message>
         <source>4 - Diminished Fourth</source>
-        <translation type="unfinished"/>
+        <translation>4 - Pedwerydd Cywasg</translation>
     </message>
     <message>
         <source>5 - Perfect Fourth</source>
-        <translation type="unfinished"/>
+        <translation>5 - Pedwaredd Perffaith</translation>
     </message>
     <message>
         <source>6 - Augmented Fourth</source>
-        <translation type="unfinished"/>
+        <translation>6 - Pedwaredd Estynedig</translation>
     </message>
     <message>
         <source>6 - Diminished Fifth</source>
-        <translation type="unfinished"/>
+        <translation>6 - Puned Cywasg</translation>
     </message>
     <message>
         <source>7 - Perfect Fifth</source>
-        <translation type="unfinished"/>
+        <translation>7 - Pumed Perffaith</translation>
     </message>
     <message>
         <source>8 - Augmented Fifth</source>
-        <translation type="unfinished"/>
+        <translation>8 - Pumed Estynedig</translation>
     </message>
     <message>
         <source>7 - Diminished Sixth</source>
-        <translation type="unfinished"/>
+        <translation>7 - Chweched Cywasg</translation>
     </message>
     <message>
         <source>8 - Minor Sixth</source>
-        <translation type="unfinished"/>
+        <translation>8 - Chweched Lleiaf</translation>
     </message>
     <message>
         <source>9 - Major Sixth</source>
-        <translation type="unfinished"/>
+        <translation>9 - Chweched Fwyaf</translation>
     </message>
     <message>
         <source>10 - Augmented Sixth</source>
-        <translation type="unfinished"/>
+        <translation>10 - Chweched Estynedig</translation>
     </message>
     <message>
         <source>9 - Diminished Seventh</source>
-        <translation type="unfinished"/>
+        <translation>9 - Seithfed Cywasg</translation>
     </message>
     <message>
         <source>10 - Minor Seventh</source>
-        <translation type="unfinished"/>
+        <translation>10 - Seithfed Lleiaf</translation>
     </message>
     <message>
         <source>11 - Major Seventh</source>
-        <translation type="unfinished"/>
+        <translation>11 Seithfed Mwyaf</translation>
     </message>
     <message>
         <source>12 - Augmented Seventh</source>
-        <translation type="unfinished"/>
+        <translation>12 - Seithfed Estynedig</translation>
     </message>
     <message>
         <source>11 - Diminished Octave</source>
-        <translation type="unfinished"/>
+        <translation>11 - Cywasg Wythfed</translation>
     </message>
     <message>
         <source>12 - Perfect Octave</source>
-        <translation type="unfinished"/>
+        <translation>12 - Wythfed Perffaith</translation>
     </message>
     <message>
         <source>Number of strings:</source>
-        <translation type="unfinished"/>
+        <translation>Rhifa y Llinynnau:</translation>
     </message>
     <message>
         <source>Staff Properties</source>
-        <translation>Lastnosti črtovja</translation>
+        <translation>Staff celfi</translation>
     </message>
     <message>
         <source>Invisible staff lines</source>
-        <translation type="unfinished"/>
+        <translation>Anweledig linellau staff</translation>
     </message>
     <message>
         <source>Small staff</source>
-        <translation type="unfinished"/>
+        <translation>Staff Bach</translation>
     </message>
     <message>
         <source>sp</source>
@@ -1314,83 +1314,83 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Staff line color:</source>
-        <translation type="unfinished"/>
+        <translation>Staff Liw y llinell:</translation>
     </message>
     <message>
         <source>Part name:</source>
-        <translation type="unfinished"/>
+        <translation>Rhan Enw:</translation>
     </message>
     <message>
         <source>Long instrument name:</source>
-        <translation>Ime inštrumenta:</translation>
+        <translation>Enw hir offeryn:</translation>
     </message>
     <message>
         <source>Short instrument name:</source>
-        <translation>Skrajšano ime inštrumenta:</translation>
+        <translation>Enw bur offeryn:</translation>
     </message>
     <message>
         <source>Usable pitch range:</source>
-        <translation type="unfinished"/>
+        <translation>Defnyddiol cywair amrediad:</translation>
     </message>
     <message>
         <source>Play transposition:</source>
-        <translation type="unfinished"/>
+        <translation>Chware trawsddodiad:</translation>
     </message>
     <message>
         <source>+ Octave:</source>
-        <translation>+ Oktava:</translation>
+        <translation>+ Wythfed:</translation>
     </message>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Dol</translation>
+        <translation>i lawr</translation>
     </message>
     <message>
         <source>Edit String Data...</source>
-        <translation type="unfinished"/>
+        <translation>Golygu Data Tant </translation>
     </message>
     <message>
         <source>Show time signature</source>
-        <translation>Prikaži taktovski način</translation>
+        <translation>Dangos arwydd-dôn</translation>
     </message>
     <message>
         <source>Style group:</source>
-        <translation type="unfinished"/>
+        <translation>Arddull grŵp</translation>
     </message>
     <message>
         <source>Show barlines</source>
-        <translation type="unfinished"/>
+        <translation>Dangos llinellau bar</translation>
     </message>
     <message>
         <source>Show clef</source>
-        <translation>Prikaži ključ</translation>
+        <translation>Dangos cleff</translation>
     </message>
     <message>
         <source>Lines:</source>
-        <translation>ÄŒrte</translation>
+        <translation>Llinellau:</translation>
     </message>
     <message>
         <source>Line distance:</source>
-        <translation type="unfinished"/>
+        <translation>Llinell pellter</translation>
     </message>
     <message>
         <source>Extra distance above staff:</source>
-        <translation type="unfinished"/>
+        <translation> Rhagor o bellder uwch ataff:</translation>
     </message>
     <message>
         <source>Never hide</source>
-        <translation>Nikoli ne skrij</translation>
+        <translation>Byth cuddio</translation>
     </message>
     <message>
         <source>Do not hide if system is empty</source>
-        <translation type="unfinished"/>
+        <translation>Dim cyddio os yw y system yn wag</translation>
     </message>
     <message>
         <source>Scale</source>
-        <translation>Lestvica</translation>
+        <translation>Graddfa</translation>
     </message>
     <message>
         <source>%</source>
@@ -1398,22 +1398,22 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Advanced Style Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Uwchradd pob priodwedd</translation>
     </message>
     <message>
         <source>Hide system barline</source>
-        <translation type="unfinished"/>
+        <translation>Cyddied system llinellau bar</translation>
     </message>
 </context>
 <context>
     <name>EditStaffType</name>
     <message>
         <source>MuseScore: Edit Staff Type</source>
-        <translation type="unfinished"/>
+        <translation>Golygu math staff: MuseScore</translation>
     </message>
     <message>
         <source>Lines:</source>
-        <translation>ÄŒrte</translation>
+        <translation>Llinellau:</translation>
     </message>
     <message>
         <source>sp</source>
@@ -1421,11 +1421,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>STANDARD STAFF</source>
-        <translation type="unfinished"/>
+        <translation>STAFF SAFONOL</translation>
     </message>
     <message>
         <source>Stemless</source>
-        <translation>Brez vratu</translation>
+        <translation>Distên</translation>
     </message>
     <message>
         <source>Create a new staff type of current group.</source>
@@ -1433,15 +1433,15 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Fret Marks</source>
-        <translation type="unfinished"/>
+        <translation>Marc Cribell</translation>
     </message>
     <message>
         <source>Font:</source>
-        <translation type="unfinished"/>
+        <translation>Ffont:</translation>
     </message>
     <message>
         <source>Size:</source>
-        <translation>Velikost:</translation>
+        <translation>Maint:</translation>
     </message>
     <message>
         <source>pt</source>
@@ -1453,159 +1453,159 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Numbers</source>
-        <translation type="unfinished"/>
+        <translation>Rhifa</translation>
     </message>
     <message>
         <source>Letters</source>
-        <translation type="unfinished"/>
+        <translation>Llythrena</translation>
     </message>
     <message>
         <source>Marks are drawn:</source>
-        <translation type="unfinished"/>
+        <translation>Marciau wedi eu tynnu:</translation>
     </message>
     <message>
         <source>Lines are:</source>
-        <translation type="unfinished"/>
+        <translation>Llinellau sydd:</translation>
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Nadaljevanje</translation>
+        <translation>Parhaol</translation>
     </message>
     <message>
         <source>Broken</source>
-        <translation type="unfinished"/>
+        <translation>Drylliog</translation>
     </message>
     <message>
         <source>Note Values</source>
-        <translation type="unfinished"/>
+        <translation>Gwerth Nodyn</translation>
     </message>
     <message>
         <source>Shown as:</source>
-        <translation type="unfinished"/>
+        <translation>Dangos fel:</translation>
     </message>
     <message>
         <source>None</source>
-        <translation>brez</translation>
+        <translation>Dim</translation>
     </message>
     <message>
         <source>Stems and beams</source>
-        <translation type="unfinished"/>
+        <translation>Steam a trawstiau</translation>
     </message>
     <message>
         <source>Stem style:</source>
-        <translation type="unfinished"/>
+        <translation>Steam arddull</translation>
     </message>
     <message>
         <source>Beside staff</source>
-        <translation type="unfinished"/>
+        <translation>Gerbron staff</translation>
     </message>
     <message>
         <source>Through staff</source>
-        <translation type="unfinished"/>
+        <translation>Drwy staff</translation>
     </message>
     <message>
         <source>Stem position:</source>
-        <translation type="unfinished"/>
+        <translation>Lleoliad bôn</translation>
     </message>
     <message>
         <source>Above</source>
-        <translation>Zgoraj</translation>
+        <translation>Uwch</translation>
     </message>
     <message>
         <source>Below</source>
-        <translation>Spodaj</translation>
+        <translation>Islaw</translation>
     </message>
     <message>
         <source>Half notes:</source>
-        <translation type="unfinished"/>
+        <translation>Haner nodyn</translation>
     </message>
     <message>
         <source>As short stem</source>
-        <translation type="unfinished"/>
+        <translation>Fel stem bur</translation>
     </message>
     <message>
         <source>As slashed stem</source>
-        <translation type="unfinished"/>
+        <translation>Fel stem slaesio</translation>
     </message>
     <message>
         <source>Preview</source>
-        <translation>Predogled</translation>
+        <translation>Rhagolwg</translation>
     </message>
     <message>
         <source>Line distance:</source>
-        <translation type="unfinished"/>
+        <translation>Llinell pellter</translation>
     </message>
     <message>
         <source>Show clef</source>
-        <translation>Prikaži ključ</translation>
+        <translation>Dangos cleff</translation>
     </message>
     <message>
         <source>Show time signature</source>
-        <translation>Prikaži taktovski način</translation>
+        <translation>Dangos arwydd-dôn</translation>
     </message>
     <message>
         <source>Show barlines</source>
-        <translation type="unfinished"/>
+        <translation>Dangos llinellau bar</translation>
     </message>
     <message>
         <source>Vertical offset:</source>
-        <translation type="unfinished"/>
+        <translation>Fertigol yn erbyn</translation>
     </message>
     <message>
         <source>On lines</source>
-        <translation type="unfinished"/>
+        <translation>Ar linell</translation>
     </message>
     <message>
         <source>Above lines</source>
-        <translation type="unfinished"/>
+        <translation>Uwch ben linell</translation>
     </message>
     <message>
         <source>Note symbols</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn symbol</translation>
     </message>
     <message>
         <source>Upside down</source>
-        <translation type="unfinished"/>
+        <translation>Wyneb i waered</translation>
     </message>
     <message>
         <source>Show rests</source>
-        <translation>Prikaži pavze</translation>
+        <translation>Dangos seibiant</translation>
     </message>
     <message>
         <source>Add to Templates</source>
-        <translation type="unfinished"/>
+        <translation>Ategu at templed</translation>
     </message>
     <message>
         <source>Template:</source>
-        <translation>Predloga:</translation>
+        <translation>Templed</translation>
     </message>
     <message>
         <source>Show key signature</source>
-        <translation type="unfinished"/>
+        <translation>Dangosir  arwyddiant allwedd</translation>
     </message>
     <message>
         <source>Show ledger lines</source>
-        <translation type="unfinished"/>
+        <translation>Dangos llinella ledjer</translation>
     </message>
     <message>
         <source>Show Key signature</source>
-        <translation type="unfinished"/>
+        <translation>Dangos allwedd llofnod</translation>
     </message>
     <message>
         <source>< Reset to Template</source>
-        <translation type="unfinished"/>
+        <translation><Ailosod y templed</translation>
     </message>
     <message>
         <source>Repeat:</source>
-        <translation type="unfinished"/>
+        <translation>Ailadroddiad:</translation>
     </message>
     <message>
         <source>Never</source>
-        <translation>Nikoli</translation>
+        <translation>Byth</translation>
     </message>
     <message>
         <source>At new system</source>
-        <translation type="unfinished"/>
+        <translation>Wrth system newydd</translation>
     </message>
     <message>
         <source>At new meas.</source>
@@ -1613,82 +1613,82 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Always</source>
-        <translation type="unfinished"/>
+        <translation>Yn wastad</translation>
     </message>
 </context>
 <context>
     <name>EditStringDataBase</name>
     <message>
         <source>String Data</source>
-        <translation type="unfinished"/>
+        <translation>Tant Data</translation>
     </message>
     <message>
         <source>Strings Tuning:</source>
-        <translation type="unfinished"/>
+        <translation>Tant Tyweirio</translation>
     </message>
     <message>
         <source>New String...</source>
-        <translation type="unfinished"/>
+        <translation>Tant Newydd</translation>
     </message>
     <message>
         <source>Edit String...</source>
-        <translation type="unfinished"/>
+        <translation>Golygu tant</translation>
     </message>
     <message>
         <source>Delete String</source>
-        <translation type="unfinished"/>
+        <translation>Diwally Tant</translation>
     </message>
     <message>
         <source>Number of frets:</source>
-        <translation type="unfinished"/>
+        <translation>Nifer o Cribellau:</translation>
     </message>
     <message>
         <source>Open</source>
-        <translation>Odpri ...</translation>
+        <translation>Agor</translation>
     </message>
     <message>
         <source>Pitch</source>
-        <translation>Višina</translation>
+        <translation>Cywair</translation>
     </message>
 </context>
 <context>
     <name>EditStyleBase</name>
     <message>
         <source>MuseScore: Edit Style</source>
-        <translation>MuseScore: Slog</translation>
+        <translation>MuseScore: Golygu Steil</translation>
     </message>
     <message>
         <source>Score</source>
-        <translation>Skladba</translation>
+        <translation>Sgôr</translation>
     </message>
     <message>
         <source>Page</source>
-        <translation>Stran</translation>
+        <translation>Tudalen</translation>
     </message>
     <message>
         <source>Header, Footer, Numbers</source>
-        <translation type="unfinished"/>
+        <translation>Pennawd, Troedyn, Rhifau</translation>
     </message>
     <message>
         <source>System</source>
         <extracomment>a music system, a line of music</extracomment>
-        <translation>Sistem</translation>
+        <translation>System</translation>
     </message>
     <message>
         <source>Measure</source>
-        <translation>Takt</translation>
+        <translation>Mesur</translation>
     </message>
     <message>
         <source>Barlines</source>
-        <translation>Taktnice</translation>
+        <translation>Llinellau bar</translation>
     </message>
     <message>
         <source>Notes</source>
-        <translation>Note</translation>
+        <translation>Nodiadau</translation>
     </message>
     <message>
         <source>Clefs</source>
-        <translation>Ključi</translation>
+        <translation>Cleffiau</translation>
     </message>
     <message>
         <source>Arpeggios</source>
@@ -1696,47 +1696,47 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Beams</source>
-        <translation>Prečke</translation>
+        <translation>Trawstiau</translation>
     </message>
     <message>
         <source>Slurs/Ties</source>
-        <translation type="unfinished"/>
+        <translation>Llithriadau/Rhwymun</translation>
     </message>
     <message>
         <source>Sizes</source>
-        <translation>Velikosti</translation>
+        <translation>Meintiau</translation>
     </message>
     <message>
         <source>Hairpins, Volta, Ottava</source>
-        <translation type="unfinished"/>
+        <translation>Hairpinau, Foltedd, Ottafa</translation>
     </message>
     <message>
         <source>Pedal, Trill</source>
-        <translation type="unfinished"/>
+        <translation>Pedal, Trill</translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation type="unfinished"/>
+        <translation>Bas Rhifoledig</translation>
     </message>
     <message>
         <source>Articulations, Ornaments</source>
-        <translation>Artikulacije, Ornamenti</translation>
+        <translation>Ynganiadau, Addurniadau</translation>
     </message>
     <message>
         <source>Accidentals</source>
-        <translation>Predznaki</translation>
+        <translation>Anhapon</translation>
     </message>
     <message>
         <source>Tuplets</source>
-        <translation>Ritmične posebnosti</translation>
+        <translation>Tuplets</translation>
     </message>
     <message>
         <source>Display in concert pitch</source>
-        <translation>Prikaži v koncertni višini</translation>
+        <translation>Arddangosiad mewn cywair cyngerdd</translation>
     </message>
     <message>
         <source>Minimum width of measure:</source>
-        <translation type="unfinished"/>
+        <translation>Lleiaf lled o fesur:</translation>
     </message>
     <message>
         <source>sp</source>
@@ -1747,15 +1747,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Minimum number of empty measures:</source>
-        <translation type="unfinished"/>
+        <translation>Lleiaf rhif o fesurau gwag:</translation>
     </message>
     <message>
         <source>Hide empty staves</source>
-        <translation type="unfinished"/>
+        <translation>Cyddio stafes gwag</translation>
     </message>
     <message>
         <source>Don't hide empty staves in first system</source>
-        <translation type="unfinished"/>
+        <translation>Paid cyddio stafs yn y system cyntaf</translation>
     </message>
     <message>
         <source>Display note values across measure bar (EXPERIMENTAL, early music only!)</source>
@@ -1763,275 +1763,275 @@ space unit</extracomment>
     </message>
     <message>
         <source>Music top margin:</source>
-        <translation type="unfinished"/>
+        <translation>Cerddoriaeth ffin uchaf:</translation>
     </message>
     <message>
         <source>Create clef for all systems</source>
-        <translation>Prikaži ključ v vseh sistemih</translation>
+        <translation>Creu cleff ar gyfer pob systemau</translation>
     </message>
     <message>
         <source>Music bottom margin:</source>
-        <translation type="unfinished"/>
+        <translation>Miwsig gweulod ffin:</translation>
     </message>
     <message>
         <source>Staff distance:</source>
-        <translation type="unfinished"/>
+        <translation>Staff pellter:</translation>
     </message>
     <message>
         <source>Grand staff distance:</source>
-        <translation type="unfinished"/>
+        <translation>Uchel staff pellter:</translation>
     </message>
     <message>
         <source>Min. system distance:</source>
-        <translation type="unfinished"/>
+        <translation>Lleif, system pellder</translation>
     </message>
     <message>
         <source>Lyrics top margin:</source>
-        <translation type="unfinished"/>
+        <translation>Telynegion uwch pellter:</translation>
     </message>
     <message>
         <source>Lyrics bottom margin:</source>
-        <translation type="unfinished"/>
+        <translation>Telynegion pellder isaf</translation>
     </message>
     <message>
         <source>Vertical frame top margin:</source>
-        <translation type="unfinished"/>
+        <translation>Ffram uchaf fertigol ffin:</translation>
     </message>
     <message>
         <source>Vertical frame bottom margin:</source>
-        <translation type="unfinished"/>
+        <translation>Ffram isaf ffin fertigol</translation>
     </message>
     <message>
         <source>Create courtesy clefs</source>
-        <translation type="unfinished"/>
+        <translation>Creu cyrtsi cleffiau</translation>
     </message>
     <message>
         <source>Create courtesy time signatures</source>
-        <translation>Prikaži nov taktovski način v prejšnjem sistemu</translation>
+        <translation>Creu cyrtsi amseriad arwyddiant</translation>
     </message>
     <message>
         <source>Create key signature for all systems</source>
-        <translation>Ustvari tonaliteto za vse sisteme</translation>
+        <translation>Creu arwydd allwedd ar gyfer holl systemau</translation>
     </message>
     <message>
         <source>Create courtesy key signatures</source>
-        <translation>Prikaži nove predznake v prejšnjem sistemu</translation>
+        <translation>Creu cwrteisi arwydd allweddau</translation>
     </message>
     <message>
         <source>Lyrics line height:</source>
-        <translation type="unfinished"/>
+        <translation>Telynegion llinell uchaf:</translation>
     </message>
     <message>
         <source>Max. system distance:</source>
-        <translation type="unfinished"/>
+        <translation>System uchafu. pellter:</translation>
     </message>
     <message>
         <source>Last system fill threshold:</source>
-        <translation>Prag za zapolnitev zadnjega sistema</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show first</source>
-        <translation type="unfinished"/>
+        <translation>Arddangos gynta</translation>
     </message>
     <message>
         <source>Odd/Even</source>
-        <translation type="unfinished"/>
+        <translation>Od/gyson</translation>
     </message>
     <message>
         <source>Left</source>
-        <translation>Levo</translation>
+        <translation>Chwith</translation>
     </message>
     <message>
         <source>Middle</source>
-        <translation>V sredini</translation>
+        <translation>Canol</translation>
     </message>
     <message>
         <source>Right</source>
-        <translation>Desno</translation>
+        <translation>De</translation>
     </message>
     <message>
         <source>Even</source>
-        <translation type="unfinished"/>
+        <translation>Cyfartal</translation>
     </message>
     <message>
         <source>Odd</source>
-        <translation type="unfinished"/>
+        <translation>Od</translation>
     </message>
     <message>
         <source>All staves</source>
-        <translation type="unfinished"/>
+        <translation>Holl erwyddi</translation>
     </message>
     <message>
         <source>Every system</source>
-        <translation type="unfinished"/>
+        <translation>Pob system:</translation>
     </message>
     <message>
         <source>System bracket distance:</source>
-        <translation type="unfinished"/>
+        <translation>System braced pellter:</translation>
     </message>
     <message>
         <source>Brace distance:</source>
-        <translation type="unfinished"/>
+        <translation>Pellter cyplysnod:</translation>
     </message>
     <message>
         <source>Spacing (1=tight):</source>
-        <translation type="unfinished"/>
+        <translation>Bylchiad (1=tight):</translation>
     </message>
     <message>
         <source>Minimum measure width:</source>
-        <translation type="unfinished"/>
+        <translation>Mesir isafbwynt lled:</translation>
     </message>
     <message>
         <source>Note to barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn i linell bar pellter:</translation>
     </message>
     <message>
         <source>Barline to note distance:</source>
-        <translation type="unfinished"/>
+        <translation>Llinell bar Nodyn pellter:</translation>
     </message>
     <message>
         <source>Clef left margin:</source>
-        <translation type="unfinished"/>
+        <translation>Cleff chwith pellter:</translation>
     </message>
     <message>
         <source>Minimum note distance:</source>
-        <translation type="unfinished"/>
+        <translation>Lleiaf nodyn pellter:</translation>
     </message>
     <message>
         <source>Key signature left margin:</source>
-        <translation type="unfinished"/>
+        <translation>Arwydd cywair ffin chwith: </translation>
     </message>
     <message>
         <source>Time signature left margin:</source>
-        <translation type="unfinished"/>
+        <translation> Arwydd amseriad ffin chwith:</translation>
     </message>
     <message>
         <source>Clef/Key right margin:</source>
-        <translation type="unfinished"/>
+        <translation>Allwedd cleff  ffin dde:</translation>
     </message>
     <message>
         <source>Clef to barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>Cleff ir bar linall pellter:</translation>
     </message>
     <message>
         <source>Staff line thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Trwch linall trwch:</translation>
     </message>
     <message>
         <source>Barline to accidental distance:</source>
-        <translation type="unfinished"/>
+        <translation>Llinell bar ir hapnod pellter:</translation>
     </message>
     <message>
         <source>Show repeat bar tips ("winged" repeats)</source>
-        <translation>Prikaži namige ob ponavljajih</translation>
+        <translation>Dangos ailadroddiad bar tipiadau ("winged" repeats)</translation>
     </message>
     <message>
         <source>Barline at start of single staff</source>
-        <translation>Taktnica ob začetku enojnega črtovja</translation>
+        <translation>Llinell bar ar ddechrau staff sengl</translation>
     </message>
     <message>
         <source>Barline at start of multiple staves</source>
-        <translation>Taktnica ob začetku sistema črtovij</translation>
+        <translation>Llinell bar ar ddechrau lluosog stafes</translation>
     </message>
     <message>
         <source>Barline thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Trwch llinall bar:</translation>
     </message>
     <message>
         <source>End barline thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Diwedd bar llinell  trwch:</translation>
     </message>
     <message>
         <source>End barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>Diwedd bar llinall pellder:</translation>
     </message>
     <message>
         <source>Double barline thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Dwbwl bar llinall trwch</translation>
     </message>
     <message>
         <source>Double barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>Dwbwl bar llinell pellter:</translation>
     </message>
     <message>
         <source>Shorten stems</source>
-        <translation type="unfinished"/>
+        <translation>Byrhau bonion</translation>
     </message>
     <message>
         <source>Progression:</source>
-        <translation type="unfinished"/>
+        <translation>Dilyniant:</translation>
     </message>
     <message>
         <source>Shortest stem:</source>
-        <translation type="unfinished"/>
+        <translation>Byrraf stem:</translation>
     </message>
     <message>
         <source>Accidental note distance:</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn hapnod pellter:</translation>
     </message>
     <message>
         <source>Accidental distance:</source>
-        <translation type="unfinished"/>
+        <translation>Hapnod pellter:</translation>
     </message>
     <message>
         <source>Note dot distance:</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn dot pellter:</translation>
     </message>
     <message>
         <source>Dot dot distance:</source>
-        <translation type="unfinished"/>
+        <translation>Dot dot pellter:</translation>
     </message>
     <message>
         <source>Ledger line thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Llinell estyngedig trwch:</translation>
     </message>
     <message>
         <source>Ledger line length:</source>
-        <translation type="unfinished"/>
+        <translation>Llinell estyngedig hyd:</translation>
     </message>
     <message>
         <source>Stem thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Bôn tewder:</translation>
     </message>
     <message>
         <source>Dot size:</source>
-        <translation>Velikost pike:</translation>
+        <translation>Maint dot:</translation>
     </message>
     <message>
         <source>Distance to note:</source>
-        <translation type="unfinished"/>
+        <translation>Pellter at nodyn:</translation>
     </message>
     <message>
         <source>Line thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Trwch llinell:</translation>
     </message>
     <message>
         <source>Hook length:</source>
-        <translation type="unfinished"/>
+        <translation>Bachyn hyd:</translation>
     </message>
     <message>
         <source>Beam thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Trwch trawst:</translation>
     </message>
     <message>
         <source>Beam distance (in beam thickness units):</source>
-        <translation type="unfinished"/>
+        <translation>Trawst pellder (yn uned trawst trwch):</translation>
     </message>
     <message>
         <source>Broken beam minimum length:</source>
-        <translation type="unfinished"/>
+        <translation>Toredig trawst lleiaf hyd:</translation>
     </message>
     <message>
         <source>Flatten all beams</source>
-        <translation type="unfinished"/>
+        <translation>Fflatio pob trawst</translation>
     </message>
     <message>
         <source>Line thickness at end:</source>
-        <translation type="unfinished"/>
+        <translation>Llines trwchus ar ddiwedd:</translation>
     </message>
     <message>
         <source>Line thickness middle:</source>
-        <translation type="unfinished"/>
+        <translation>Llines trwchus cannol:</translation>
     </message>
     <message>
         <source>Dotted line thickness:</source>
@@ -2039,31 +2039,31 @@ space unit</extracomment>
     </message>
     <message>
         <source>Small staff size:</source>
-        <translation type="unfinished"/>
+        <translation>Maint staff bach:</translation>
     </message>
     <message>
         <source>Small note size:</source>
-        <translation type="unfinished"/>
+        <translation>Maint nodyn bach:</translation>
     </message>
     <message>
         <source>Grace note size:</source>
-        <translation type="unfinished"/>
+        <translation>Maint addurnod:</translation>
     </message>
     <message>
         <source>Small clef size:</source>
-        <translation type="unfinished"/>
+        <translation>Maint cleff bach:</translation>
     </message>
     <message>
         <source>Hairpins</source>
-        <translation>ÄŒrte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Height:</source>
-        <translation type="unfinished"/>
+        <translation>Uchder:</translation>
     </message>
     <message>
         <source>Default vertical position:</source>
-        <translation type="unfinished"/>
+        <translation>Rhagosodiad lleoliad fertigol:</translation>
     </message>
     <message>
         <source>Volta</source>
@@ -2071,11 +2071,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Hook height:</source>
-        <translation type="unfinished"/>
+        <translation>Uchder bach:</translation>
     </message>
     <message>
         <source>Line style:</source>
-        <translation>Slog črte:</translation>
+        <translation>Arddull Llinall:</translation>
     </message>
     <message>
         <source>Ottava</source>
@@ -2083,7 +2083,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Pedal Line</source>
-        <translation type="unfinished"/>
+        <translation>Llinell pedal</translation>
     </message>
     <message>
         <source>Trill Line</source>
@@ -2091,31 +2091,31 @@ space unit</extracomment>
     </message>
     <message>
         <source>Appearance</source>
-        <translation type="unfinished"/>
+        <translation>Ymddangosiadau</translation>
     </message>
     <message>
         <source>Standard</source>
-        <translation type="unfinished"/>
+        <translation>Safonol</translation>
     </message>
     <message>
         <source>Jazz</source>
-        <translation>Jazz</translation>
+        <translation>Jas</translation>
     </message>
     <message>
         <source>Custom</source>
-        <translation type="unfinished"/>
+        <translation>Arfer</translation>
     </message>
     <message>
         <source>Load chords.xml</source>
-        <translation type="unfinished"/>
+        <translation>Llwytho rhifoli cordiau.xml</translation>
     </message>
     <message>
         <source>German</source>
-        <translation type="unfinished"/>
+        <translation>Almaenaidd</translation>
     </message>
     <message>
         <source>Solfeggio</source>
-        <translation>Solfedžo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Lower case minor chords</source>
@@ -2123,7 +2123,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Positioning</source>
-        <translation type="unfinished"/>
+        <translation>Gosod</translation>
     </message>
     <message>
         <source>Minimum chord spacing:</source>
@@ -2131,11 +2131,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Font:</source>
-        <translation type="unfinished"/>
+        <translation>Ffont</translation>
     </message>
     <message>
         <source>Size:</source>
-        <translation>Velikost:</translation>
+        <translation>Maint</translation>
     </message>
     <message>
         <source>pt</source>
@@ -2143,43 +2143,43 @@ space unit</extracomment>
     </message>
     <message>
         <source>Line height:</source>
-        <translation type="unfinished"/>
+        <translation>Uchder llinell:</translation>
     </message>
     <message>
         <source>Vertical position:</source>
-        <translation type="unfinished"/>
+        <translation>Sefyllfa fertigol:</translation>
     </message>
     <message>
         <source>from top of staff</source>
-        <translation type="unfinished"/>
+        <translation>O dop y staff</translation>
     </message>
     <message>
         <source>of font height</source>
-        <translation type="unfinished"/>
+        <translation>Y uchdwr ffont</translation>
     </message>
     <message>
         <source>Alignment</source>
-        <translation type="unfinished"/>
+        <translation>Aliniad</translation>
     </message>
     <message>
         <source>Top</source>
-        <translation>Vrh</translation>
+        <translation>Top</translation>
     </message>
     <message>
         <source>Bottom</source>
-        <translation>Dno</translation>
+        <translation>Gweulod</translation>
     </message>
     <message>
         <source>Style</source>
-        <translation>Slog</translation>
+        <translation>Arddull</translation>
     </message>
     <message>
         <source>Modern</source>
-        <translation type="unfinished"/>
+        <translation>Diweddar</translation>
     </message>
     <message>
         <source>Historic</source>
-        <translation type="unfinished"/>
+        <translation>Hanesyddol</translation>
     </message>
     <message>
         <source>sp</source>
@@ -2188,23 +2188,23 @@ space unit</extracomment>
     </message>
     <message>
         <source>Articulation distance:</source>
-        <translation type="unfinished"/>
+        <translation>Ynganiad pellder:</translation>
     </message>
     <message>
         <source>Note head distance:</source>
-        <translation type="unfinished"/>
+        <translation>Pen nodyn pellder:</translation>
     </message>
     <message>
         <source>Articulation size:</source>
-        <translation type="unfinished"/>
+        <translation>Maint ynganiad:</translation>
     </message>
     <message>
         <source>Accidental</source>
-        <translation type="unfinished"/>
+        <translation>Hapnod</translation>
     </message>
     <message>
         <source>Maximum slope:</source>
-        <translation type="unfinished"/>
+        <translation>Llethr uchafrif</translation>
     </message>
     <message>
         <source>Vertical distance from stem:</source>
@@ -2212,7 +2212,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Avoid the staves</source>
-        <translation type="unfinished"/>
+        <translation>Ysgoi yr erwyddau</translation>
     </message>
     <message>
         <source>Distance before the stem of the first note:</source>
@@ -2232,11 +2232,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Distance to fretboard diagram:</source>
-        <translation>Razdalja do Slik prijemov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Chord Symbols</source>
-        <translation>Simboli akordov</translation>
+        <translation>Symbolau tant</translation>
     </message>
     <message>
         <source>Chord symbols style file:</source>
@@ -2268,11 +2268,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Chord Symbols, Fretboard Diagrams</source>
-        <translation>Simboli akordov, Slike prijemov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Fretboard Diagrams</source>
-        <translation>Slike prijemov</translation>
+        <translation>Bwrddcribell Diagramau</translation>
     </message>
     <message>
         <source>Fret offset number font size:</source>
@@ -2280,31 +2280,31 @@ space unit</extracomment>
     </message>
     <message>
         <source>Position:</source>
-        <translation type="unfinished"/>
+        <translation>Safle:</translation>
     </message>
     <message>
         <source>Minimum tie length:</source>
-        <translation type="unfinished"/>
+        <translation>Isafswm cwlwm hyd:</translation>
     </message>
     <message>
         <source>Interval:</source>
-        <translation>Interval:</translation>
+        <translation>Ysbaid:</translation>
     </message>
     <message>
         <source>Hide instrument name if there is only 1 instrument</source>
-        <translation type="unfinished"/>
+        <translation>Cydd enw offeryn of oes ond 1 offeryn</translation>
     </message>
     <message>
         <source>Maximum barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>Mwyaf llinell bar pellter:</translation>
     </message>
     <message>
         <source>Standard TAB clef</source>
-        <translation type="unfinished"/>
+        <translation>Safonol TAB cleff</translation>
     </message>
     <message>
         <source>Serif TAB clef</source>
-        <translation type="unfinished"/>
+        <translation>Seriff TAB cleff</translation>
     </message>
     <message>
         <source>Swing Settings</source>
@@ -2312,15 +2312,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Off</source>
-        <translation type="unfinished"/>
+        <translation>Ddiffodd</translation>
     </message>
     <message>
         <source>Eighth Note</source>
-        <translation>Osminka</translation>
+        <translation>Un ar bymtheg Nodyn</translation>
     </message>
     <message>
         <source>Sixteenth Note</source>
-        <translation type="unfinished"/>
+        <translation>Un ar bymtheg Nodyn</translation>
     </message>
     <message>
         <source>%</source>
@@ -2328,11 +2328,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Musical symbols font:</source>
-        <translation type="unfinished"/>
+        <translation>symbolau ffont cerddorol:</translation>
     </message>
     <message>
         <source>Swing:</source>
-        <translation type="unfinished"/>
+        <translation>Siglen</translation>
     </message>
     <message>
         <source>Select swing ratio:</source>
@@ -2340,7 +2340,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Musical text font:</source>
-        <translation type="unfinished"/>
+        <translation>Cerddorol ffont testun:</translation>
     </message>
     <message>
         <source>Emmentaler Text</source>
@@ -2356,23 +2356,23 @@ space unit</extracomment>
     </message>
     <message>
         <source>Show header also on first page</source>
-        <translation type="unfinished"/>
+        <translation>Dangos pennawd hefyd ar y dudalen cynta</translation>
     </message>
     <message>
         <source>Show footer also on first page</source>
-        <translation type="unfinished"/>
+        <translation>Dangos troedyn hefyd ar y dudalen cynta</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Use odd/even page header</source>
-        <translation type="unfinished"/>
+        <translation>Defnydd od/hwyr pennawd tudalen</translation>
     </message>
     <message>
         <source>Use odd/even page footer</source>
-        <translation type="unfinished"/>
+        <translation>Defnydd od/hwyr troedyn tudalen</translation>
     </message>
     <message>
         <source>System bracket thickness:</source>
@@ -2380,15 +2380,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Brace thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Cyplysnod trwch:</translation>
     </message>
     <message>
         <source>Continue height:</source>
-        <translation type="unfinished"/>
+        <translation>Parhau uchder:</translation>
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Nadaljevanje</translation>
+        <translation>Parhaol</translation>
     </message>
     <message>
         <source>Dashed</source>
@@ -2396,11 +2396,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Dotted</source>
-        <translation type="unfinished"/>
+        <translation>Tawnod unpwynt</translation>
     </message>
     <message>
         <source>Dash-dotted</source>
-        <translation type="unfinished"/>
+        <translation>Dot llinell doriad</translation>
     </message>
     <message>
         <source>Dash-dot-dotted</source>
@@ -2408,47 +2408,47 @@ space unit</extracomment>
     </message>
     <message>
         <source>Numbers only</source>
-        <translation type="unfinished"/>
+        <translation>Rhifau yn unig</translation>
     </message>
     <message>
         <source>Header Text</source>
-        <translation type="unfinished"/>
+        <translation>Testun peniad</translation>
     </message>
     <message>
         <source>Footer Text</source>
-        <translation type="unfinished"/>
+        <translation>Testun Troedyn</translation>
     </message>
     <message>
         <source>Measure Numbers</source>
-        <translation type="unfinished"/>
+        <translation>Rhifa mesurau</translation>
     </message>
     <message>
         <source>Default TAB Clef</source>
-        <translation type="unfinished"/>
+        <translation>Diffig TAB Cleff</translation>
     </message>
     <message>
         <source>Naturals in Key Signatures</source>
-        <translation type="unfinished"/>
+        <translation>Naturiolau yn Arwydd Cywir</translation>
     </message>
     <message>
         <source>Vertical Distance from the Notes</source>
-        <translation type="unfinished"/>
+        <translation>Fertigol Pellter oddi wrth y Nodau</translation>
     </message>
     <message>
         <source>Horizontal Distance from the Notes</source>
-        <translation type="unfinished"/>
+        <translation> Llorwedd Pellter oddi wrth y Nodau</translation>
     </message>
     <message>
         <source>Only for a change to C Maj / A min</source>
-        <translation type="unfinished"/>
+        <translation>Unig am y newid i C mwyaf/ A lleiaf</translation>
     </message>
     <message>
         <source>Create multimeasure rests</source>
-        <translation>Napiši pavze čez več taktov</translation>
+        <translation>Creu lluosrif tawnodau</translation>
     </message>
     <message>
         <source>Multimeasure rest margin:</source>
-        <translation type="unfinished"/>
+        <translation>Lluosrif tawnodau ffin:</translation>
     </message>
     <message>
         <source>Before key signature if changing to fewer sharps or flats</source>
@@ -2464,11 +2464,12 @@ space unit</extracomment>
     </message>
     <message>
         <source>A, B, H, C, Cis</source>
-        <translation>A, B, H, C, Cis</translation>
+        <translation>
+A, B, H, C, Cis</translation>
     </message>
     <message>
         <source>Full German</source>
-        <translation type="unfinished"/>
+        <translation>Llawn Almaenaidd</translation>
     </message>
     <message>
         <source>Do, Do♯, Re♭, Re, ...</source>
@@ -2480,35 +2481,35 @@ space unit</extracomment>
     </message>
     <message>
         <source>French</source>
-        <translation type="unfinished"/>
+        <translation>Ffrengig</translation>
     </message>
     <message>
         <source>Lower case bass notes</source>
-        <translation type="unfinished"/>
+        <translation>Cas is nodiadau bas </translation>
     </message>
     <message>
         <source>All caps note names</source>
-        <translation type="unfinished"/>
+        <translation>holl priflythrennau enwau nodau</translation>
     </message>
     <message>
         <source>Note Spelling</source>
-        <translation type="unfinished"/>
+        <translation>Sillafu nodyn </translation>
     </message>
     <message>
         <source>Automatic Capitalization</source>
-        <translation type="unfinished"/>
+        <translation>Awtomatig Priflythrennu</translation>
     </message>
     <message>
         <source>Vertical frame upper margin</source>
-        <translation type="unfinished"/>
+        <translation>Ffram fertigol uchaf ffin</translation>
     </message>
     <message>
         <source>Vertical frame lower margin</source>
-        <translation type="unfinished"/>
+        <translation>Ffram fertigol isaf ffin</translation>
     </message>
     <message>
         <source>Scale:</source>
-        <translation>Povečava:</translation>
+        <translation>Graddfa:</translation>
     </message>
     <message>
         <source>Barré line thickness:</source>
@@ -2527,54 +2528,54 @@ space unit</extracomment>
     <name>ExcerptsDialog</name>
     <message>
         <source>MuseScore: Parts</source>
-        <translation>MuseScore: Parti</translation>
+        <translation>MuseScore: Rhannau</translation>
     </message>
     <message>
         <source>Instrument:</source>
-        <translation>Inštrument:</translation>
+        <translation>Offeryn</translation>
     </message>
     <message>
         <source>Delete</source>
-        <translation>Izbriši</translation>
+        <translation>Dileu</translation>
     </message>
     <message>
         <source>New All</source>
-        <translation type="unfinished"/>
+        <translation>Oll newydd</translation>
     </message>
     <message>
         <source>New</source>
-        <translation>Novo</translation>
+        <translation>Newydd</translation>
     </message>
     <message>
         <source>Part title:</source>
-        <translation type="unfinished"/>
+        <translation>Rhan teitl:</translation>
     </message>
     <message>
         <source>Edit Part</source>
-        <translation type="unfinished"/>
+        <translation>Golygu Rhannau</translation>
     </message>
     <message>
         <source>Select Part</source>
-        <translation type="unfinished"/>
+        <translation>Dethol Rhanau</translation>
     </message>
 </context>
 <context>
     <name>FluidGui</name>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Dol</translation>
+        <translation>i lawr</translation>
     </message>
     <message>
         <source>Delete</source>
-        <translation>Izbriši</translation>
+        <translation>Dileu</translation>
     </message>
     <message>
         <source>Add</source>
-        <translation>Dodaj</translation>
+        <translation>Ategu</translation>
     </message>
     <message>
         <source>MuseScore</source>
@@ -2582,67 +2583,67 @@ space unit</extracomment>
     </message>
     <message>
         <source>Sound Fonts</source>
-        <translation type="unfinished"/>
+        <translation>Ffont Sain</translation>
     </message>
     <message>
         <source>SoundFont %1 already loaded</source>
-        <translation>SoundFont %1 je že naložen</translation>
+        <translation>FfontSain %1 eisoes lwythog</translation>
     </message>
     <message>
         <source>Cannot load SoundFont %1</source>
-        <translation>Ne morem naložiti SoundFont %1</translation>
+        <translation>Methu agor Sain ffont %1</translation>
     </message>
 </context>
 <context>
     <name>FretDiagramProperties</name>
     <message>
         <source>Strings:</source>
-        <translation type="unfinished"/>
+        <translation>Llinynnau</translation>
     </message>
     <message>
         <source>Frets:</source>
-        <translation type="unfinished"/>
+        <translation>Cribellau</translation>
     </message>
     <message>
         <source>MuseScore: Fretboard Diagram Properties</source>
-        <translation>MuseScore: Nastavitve za Slike prijemov</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>GlissandoProperties</name>
     <message>
         <source>MuseScore: Glissando Properties</source>
-        <translation>MuseScore: Lastnosti glissanda</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show Text</source>
-        <translation>Prikaži besedilo</translation>
+        <translation>Arddangos testun</translation>
     </message>
     <message>
         <source>Text:</source>
-        <translation>Besedilo</translation>
+        <translation>Testun:</translation>
     </message>
 </context>
 <context>
     <name>GreendotButton</name>
     <message>
         <source>Record</source>
-        <translation>snemaj</translation>
+        <translation>Record</translation>
     </message>
 </context>
 <context>
     <name>ImportMidiPanel</name>
     <message>
         <source>Close MIDI import panel</source>
-        <translation type="unfinished"/>
+        <translation>Cau MIDI mewnforio panel</translation>
     </message>
     <message>
         <source>Move track up</source>
-        <translation type="unfinished"/>
+        <translation>Symud llwybr i fynu</translation>
     </message>
     <message>
         <source>Move track down</source>
-        <translation type="unfinished"/>
+        <translation>Symud llwybr i lawr</translation>
     </message>
     <message>
         <source>Text charset:</source>
@@ -2650,34 +2651,34 @@ space unit</extracomment>
     </message>
     <message>
         <source>Apply MIDI import operations</source>
-        <translation type="unfinished"/>
+        <translation>Gwneud cais MIDI mewnforyn Gweithrediadau </translation>
     </message>
     <message>
         <source>Apply</source>
-        <translation>Uveljavi</translation>
+        <translation>Cais</translation>
     </message>
     <message>
         <source>Cancel not applied MIDI import operations</source>
-        <translation type="unfinished"/>
+        <translation>Dileu na cymhwyswyd MIDI mewnforyn Gweithrediadau </translation>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Prekliči</translation>
+        <translation>dileu</translation>
     </message>
 </context>
 <context>
     <name>InsertMeasuresDialogBase</name>
     <message>
         <source>Mscore: Insert Measures</source>
-        <translation>MuseScore: Vstavi takte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>OK</source>
-        <translation>V redu</translation>
+        <translation>OK</translation>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Prekliči</translation>
+        <translation>dileu</translation>
     </message>
     <message>
         <source>Insert empty measures</source>
@@ -2685,37 +2686,37 @@ space unit</extracomment>
     </message>
     <message>
         <source>Number of measures to insert:</source>
-        <translation type="unfinished"/>
+        <translation>Rhif mesurau i mewnosod:</translation>
     </message>
 </context>
 <context>
     <name>InspectorAccidental</name>
     <message>
         <source>Accidental</source>
-        <translation type="unfinished"/>
+        <translation>Hapnod</translation>
     </message>
     <message>
         <source>Small</source>
-        <translation type="unfinished"/>
+        <translation>Bach</translation>
     </message>
     <message>
         <source>Accidental Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Arolygwr Hapnod</translation>
     </message>
     <message>
         <source>Reset Small value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod bychan gwerth</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
 </context>
 <context>
     <name>InspectorAmbitus</name>
     <message>
         <source>Head group</source>
-        <translation type="unfinished"/>
+        <translation>Gwerth Pen </translation>
     </message>
     <message>
         <source>sp</source>
@@ -2723,7 +2724,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Bottom note</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn gwaelod</translation>
     </message>
     <message>
         <source>Câ™­â™­</source>
@@ -2767,7 +2768,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Eâ™­â™­</source>
-        <translation>Eâ™­â™­</translation>
+        <translation>D♯♯</translation>
     </message>
     <message>
         <source>Eâ™­</source>
@@ -2823,7 +2824,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>G♯♯</source>
-        <translation>G♯♯</translation>
+        <translation>G♯</translation>
     </message>
     <message>
         <source>Aâ™­â™­</source>
@@ -2855,19 +2856,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>B</source>
-        <translation>H</translation>
+        <translation>B</translation>
     </message>
     <message>
         <source>B♯</source>
-        <translation>H♯</translation>
+        <translation>B♯</translation>
     </message>
     <message>
         <source>B♯♯</source>
-        <translation>H♯♯</translation>
+        <translation>B♯♯</translation>
     </message>
     <message>
         <source>Oct </source>
-        <translation>Oct </translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Has line</source>
@@ -2875,51 +2876,51 @@ space unit</extracomment>
     </message>
     <message>
         <source>Top note</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn uchaf</translation>
     </message>
     <message>
         <source>Auto</source>
-        <translation type="unfinished"/>
+        <translation>Awtodrefnu </translation>
     </message>
     <message>
         <source>Whole</source>
-        <translation type="unfinished"/>
+        <translation>Cyfan</translation>
     </message>
     <message>
         <source>Half</source>
-        <translation type="unfinished"/>
+        <translation>Hanner</translation>
     </message>
     <message>
         <source>Quarter</source>
-        <translation>ÄŒetrtinka</translation>
+        <translation>Chwarter</translation>
     </message>
     <message>
         <source>Breve</source>
-        <translation type="unfinished"/>
+        <translation>Brîf</translation>
     </message>
     <message>
         <source>Head type</source>
-        <translation type="unfinished"/>
+        <translation>Pen math</translation>
     </message>
     <message>
         <source>Update Range</source>
-        <translation type="unfinished"/>
+        <translation>Diweddaru rhes</translation>
     </message>
     <message>
         <source>Direction</source>
-        <translation type="unfinished"/>
+        <translation>Dyfeiriad</translation>
     </message>
     <message>
         <source>Upright</source>
-        <translation type="unfinished"/>
+        <translation>Cywir</translation>
     </message>
     <message>
         <source>Leaning Left</source>
-        <translation type="unfinished"/>
+        <translation>Gogwyddo i'r chwith</translation>
     </message>
     <message>
         <source>Leaning Right</source>
-        <translation type="unfinished"/>
+        <translation>Gogwyddo i'r dde</translation>
     </message>
     <message>
         <source>Ambitus Inspector</source>
@@ -2927,7 +2928,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Oct</source>
-        <translation>Oct </translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Reset Has line value</source>
@@ -2935,43 +2936,43 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Head group value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod Pen gwerth grŵp</translation>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod  cyfeiriad gwerth</translation>
     </message>
     <message>
         <source>Update range</source>
-        <translation type="unfinished"/>
+        <translation> Diweddaru amrediad</translation>
     </message>
     <message>
         <source>Reset Head type value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod  Pen math gwerth</translation>
     </message>
     <message>
         <source>Normal</source>
-        <translation type="unfinished"/>
+        <translation>Normal</translation>
     </message>
     <message>
         <source>Cross</source>
-        <translation type="unfinished"/>
+        <translation>Traws</translation>
     </message>
     <message>
         <source>Diamond</source>
-        <translation type="unfinished"/>
+        <translation>Diemwnt</translation>
     </message>
     <message>
         <source>Triangle</source>
-        <translation>Trikot</translation>
+        <translation>Triongl</translation>
     </message>
     <message>
         <source>Slash</source>
-        <translation type="unfinished"/>
+        <translation>Slaes</translation>
     </message>
     <message>
         <source>XCircle</source>
-        <translation type="unfinished"/>
+        <translation>XCylch</translation>
     </message>
     <message>
         <source>Do</source>
@@ -2987,11 +2988,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Fa</source>
-        <translation>Fa</translation>
+        <translation>La</translation>
     </message>
     <message>
         <source>Sol</source>
-        <translation>So</translation>
+        <translation>Sol</translation>
     </message>
     <message>
         <source>La</source>
@@ -3007,19 +3008,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Line thickness</source>
-        <translation>Debelina črte</translation>
+        <translation>Trwch llinell</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Reset Line thickness value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod Llinell trwch gwerth</translation>
     </message>
     <message>
         <source>[Undefined]</source>
-        <translation type="unfinished"/>
+        <translation>[Amhenodol]</translation>
     </message>
     <message>
         <source>Ambitus</source>
@@ -3027,62 +3028,81 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Chwarae</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
-        <translation type="unfinished"/>
+        <translation>Canu Glân</translation>
     </message>
     <message>
         <source>Direction</source>
-        <translation type="unfinished"/>
+        <translation>Dyfeiriad</translation>
     </message>
     <message>
         <source>Anchor</source>
-        <translation type="unfinished"/>
+        <translation>Angor</translation>
     </message>
     <message>
         <source>Chord Automatic</source>
-        <translation type="unfinished"/>
+        <translation>Tant Awtomatig</translation>
     </message>
     <message>
         <source>Auto</source>
-        <translation type="unfinished"/>
+        <translation>Awtodrefnu </translation>
     </message>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Dol</translation>
+        <translation>i lawr</translation>
     </message>
     <message>
         <source>Above Staff</source>
-        <translation type="unfinished"/>
+        <translation>Uwchben Staff</translation>
     </message>
     <message>
         <source>Below Staff</source>
-        <translation type="unfinished"/>
+        <translation>Islaw Staff</translation>
     </message>
     <message>
         <source>Above Chord</source>
-        <translation type="unfinished"/>
+        <translation>Uwch Tant</translation>
     </message>
     <message>
         <source>Below Chord</source>
-        <translation type="unfinished"/>
+        <translation>Islaw Tant</translation>
     </message>
     <message>
         <source>Time stretch</source>
-        <translation type="unfinished"/>
+        <translation>Ymestyniad amser</translation>
     </message>
     <message>
         <source>Articulation Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Canu glân Archwiliwr</translation>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod  cyfeiriad gwerth</translation>
     </message>
     <message>
         <source>Reset Anchor value</source>
@@ -3092,6 +3112,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Chwarae</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3101,7 +3145,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Style:</source>
-        <translation>Slog.</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Span from:</source>
@@ -3125,7 +3169,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Type</source>
-        <translation>Tip</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Reset Type value</source>
@@ -3165,30 +3209,30 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
 </context>
 <context>
     <name>InspectorBeam</name>
     <message>
         <source>Beam</source>
-        <translation type="unfinished"/>
+        <translation>Trawst</translation>
     </message>
     <message>
         <source>Auto</source>
-        <translation type="unfinished"/>
+        <translation>Awtodrefnu </translation>
     </message>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Dol</translation>
+        <translation>i lawr</translation>
     </message>
     <message>
         <source>Direction</source>
-        <translation type="unfinished"/>
+        <translation>Dyfeiriad</translation>
     </message>
     <message>
         <source>sp</source>
@@ -3196,7 +3240,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Position</source>
-        <translation type="unfinished"/>
+        <translation>lleoliad</translation>
     </message>
     <message>
         <source>Horizontal</source>
@@ -3212,7 +3256,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod  cyfeiriad gwerth</translation>
     </message>
     <message>
         <source>Vertical position offset right</source>
@@ -3232,11 +3276,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Left</source>
-        <translation>Levo</translation>
+        <translation>Chwith</translation>
     </message>
     <message>
         <source>Right</source>
-        <translation>Desno</translation>
+        <translation>De</translation>
     </message>
     <message>
         <source>Grow right</source>
@@ -3264,6 +3308,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Cerddorfa</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Chwarae</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3271,14 +3334,14 @@ space unit</extracomment>
     </message>
     <message>
         <source>Layout Break</source>
-        <translation type="unfinished"/>
+        <translation>Gosodiad Toriad</translation>
     </message>
 </context>
 <context>
     <name>InspectorChord</name>
     <message>
         <source>Chord</source>
-        <translation>Akord</translation>
+        <translation>Tant</translation>
     </message>
     <message>
         <source>Stem direction</source>
@@ -3286,15 +3349,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Auto</source>
-        <translation type="unfinished"/>
+        <translation>Awtodrefnu </translation>
     </message>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Dol</translation>
+        <translation>i lawr</translation>
     </message>
     <message>
         <source>Vertical offset</source>
@@ -3311,11 +3374,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Small</source>
-        <translation type="unfinished"/>
+        <translation>Bach</translation>
     </message>
     <message>
         <source>Stemless</source>
-        <translation>Brez vratu</translation>
+        <translation>Distên</translation>
     </message>
     <message>
         <source>Chord Inspector</source>
@@ -3347,14 +3410,14 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
 </context>
 <context>
     <name>InspectorClef</name>
     <message>
         <source>Clef</source>
-        <translation>Ključ</translation>
+        <translation>Cleff</translation>
     </message>
     <message>
         <source>Show courtesy</source>
@@ -3370,14 +3433,14 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
 </context>
 <context>
     <name>InspectorDynamic</name>
     <message>
         <source>Dynamic</source>
-        <translation type="unfinished"/>
+        <translation>Dynamig</translation>
     </message>
     <message>
         <source>Dynamic Range</source>
@@ -3389,15 +3452,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Staff</source>
-        <translation>Sistem</translation>
+        <translation>Staff</translation>
     </message>
     <message>
         <source>Part</source>
-        <translation type="unfinished"/>
+        <translation>Rhan</translation>
     </message>
     <message>
         <source>System</source>
-        <translation>Sistem</translation>
+        <translation>System</translation>
     </message>
     <message>
         <source>Dynamic Inspector</source>
@@ -3413,7 +3476,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Dynamic range</source>
@@ -3424,7 +3487,7 @@ space unit</extracomment>
     <name>InspectorElement</name>
     <message>
         <source>Element</source>
-        <translation type="unfinished"/>
+        <translation>Elfen</translation>
     </message>
     <message>
         <source>Vertical offset</source>
@@ -3437,7 +3500,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Color</source>
-        <translation>Barva</translation>
+        <translation>Lliw</translation>
     </message>
     <message>
         <source>Horizontal offset</source>
@@ -3445,7 +3508,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Visible</source>
-        <translation>Vidno</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Element Inspector</source>
@@ -3476,7 +3539,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Nothing selected</source>
-        <translation>Nič ni izbrano</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -3487,11 +3550,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Scale</source>
-        <translation>Lestvica</translation>
+        <translation>Graddfa</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Reset Type value</source>
@@ -3499,22 +3562,22 @@ space unit</extracomment>
     </message>
     <message>
         <source>Fretboard Diagram</source>
-        <translation>Slike prijemov</translation>
+        <translation>Bwrddfret Diagram</translation>
     </message>
 </context>
 <context>
     <name>InspectorGlissando</name>
     <message>
         <source>Glissando</source>
-        <translation>Glissando</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Text</source>
-        <translation>Besedilo</translation>
+        <translation>Testyn</translation>
     </message>
     <message>
         <source>Type</source>
-        <translation>Tip</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Glissando Inspector</source>
@@ -3542,7 +3605,43 @@ space unit</extracomment>
     </message>
     <message>
         <source>Show text</source>
-        <translation>Prikaži besedilo</translation>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Style</source>
+        <translation>Arddull</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Chwarae</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -3557,11 +3656,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Set Visible</source>
-        <translation type="unfinished"/>
+        <translation>Gosod weledig</translation>
     </message>
     <message>
         <source>Set Invisible</source>
-        <translation type="unfinished"/>
+        <translation>Gosod Anweledig</translation>
     </message>
     <message>
         <source>Element Group Inspector</source>
@@ -3569,14 +3668,14 @@ space unit</extracomment>
     </message>
     <message>
         <source>Color</source>
-        <translation>Barva</translation>
+        <translation>Lliw</translation>
     </message>
 </context>
 <context>
     <name>InspectorHBox</name>
     <message>
         <source>Horizontal Frame</source>
-        <translation type="unfinished"/>
+        <translation>Ffram Llorweddol</translation>
     </message>
     <message>
         <source>sp</source>
@@ -3585,7 +3684,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Width</source>
-        <translation type="unfinished"/>
+        <translation>lled</translation>
     </message>
     <message>
         <source>Horizontal Frame Inspector</source>
@@ -3593,7 +3692,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Right gap</source>
@@ -3616,15 +3715,15 @@ space unit</extracomment>
     <name>InspectorHairpin</name>
     <message>
         <source>Hairpin</source>
-        <translation type="unfinished"/>
+        <translation>Pin gwallt</translation>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Uchdwr</translation>
     </message>
     <message>
         <source>Type</source>
-        <translation>Tip</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Dynamic range</source>
@@ -3632,15 +3731,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Staff</source>
-        <translation>Sistem</translation>
+        <translation>Staff</translation>
     </message>
     <message>
         <source>Part</source>
-        <translation type="unfinished"/>
+        <translation>Rhan</translation>
     </message>
     <message>
         <source>System</source>
-        <translation>Sistem</translation>
+        <translation>System</translation>
     </message>
     <message>
         <source>Velocity change</source>
@@ -3692,7 +3791,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Reset Continue height value</source>
@@ -3703,15 +3802,15 @@ space unit</extracomment>
     <name>InspectorImage</name>
     <message>
         <source>Image</source>
-        <translation>Slika</translation>
+        <translation>Delwedd</translation>
     </message>
     <message>
         <source>Size</source>
-        <translation>Velikost</translation>
+        <translation>Maint</translation>
     </message>
     <message>
         <source>Scale</source>
-        <translation>Lestvica</translation>
+        <translation>Graddfa</translation>
     </message>
     <message>
         <source>Image Inspector</source>
@@ -3723,11 +3822,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Uchdwr</translation>
     </message>
     <message>
         <source>Width</source>
-        <translation type="unfinished"/>
+        <translation>lled</translation>
     </message>
     <message>
         <source>Scale Width</source>
@@ -3766,7 +3865,7 @@ space unit</extracomment>
     <name>InspectorJump</name>
     <message>
         <source>Jump</source>
-        <translation type="unfinished"/>
+        <translation>Naid</translation>
     </message>
     <message>
         <source>Jump to</source>
@@ -3801,7 +3900,7 @@ space unit</extracomment>
     <name>InspectorKeySig</name>
     <message>
         <source>Key Signature</source>
-        <translation>Predznaki</translation>
+        <translation>Allewdd Arwyddiant</translation>
     </message>
     <message>
         <source>Show courtesy</source>
@@ -3817,18 +3916,18 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
 </context>
 <context>
     <name>InspectorLasso</name>
     <message>
         <source>Lasso</source>
-        <translation type="unfinished"/>
+        <translation>Lasŵ</translation>
     </message>
     <message>
         <source>Position</source>
-        <translation type="unfinished"/>
+        <translation>lleoliad</translation>
     </message>
     <message>
         <source>mm</source>
@@ -3836,7 +3935,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Size</source>
-        <translation>Velikost</translation>
+        <translation>Maint</translation>
     </message>
     <message>
         <source>Lasso Inspector</source>
@@ -3848,11 +3947,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Uchdwr</translation>
     </message>
     <message>
         <source>Width</source>
-        <translation type="unfinished"/>
+        <translation>lled</translation>
     </message>
     <message>
         <source>Horizontal Position</source>
@@ -3863,7 +3962,7 @@ space unit</extracomment>
     <name>InspectorLine</name>
     <message>
         <source>Line</source>
-        <translation>ÄŒrta</translation>
+        <translation>Llinell</translation>
     </message>
     <message>
         <source>sp</source>
@@ -3872,11 +3971,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Line color</source>
-        <translation>Barva črte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Line style</source>
-        <translation>Slog črte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Allow diagonal</source>
@@ -3900,15 +3999,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Line thickness</source>
-        <translation>Debelina črte</translation>
+        <translation>Trwch llinell</translation>
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Nadaljevanje</translation>
+        <translation>Parhaol</translation>
     </message>
     <message>
         <source>Dashed</source>
@@ -3916,11 +4015,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Dotted</source>
-        <translation type="unfinished"/>
+        <translation>Tawnod unpwynt</translation>
     </message>
     <message>
         <source>Dash-dotted</source>
-        <translation type="unfinished"/>
+        <translation>Dot llinell doriad</translation>
     </message>
     <message>
         <source>Dash-dot-dotted</source>
@@ -3928,7 +4027,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Line thickness value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod Llinell trwch gwerth</translation>
     </message>
     <message>
         <source>Reset Line visible value</source>
@@ -3943,7 +4042,7 @@ space unit</extracomment>
     <name>InspectorMarker</name>
     <message>
         <source>Marker</source>
-        <translation type="unfinished"/>
+        <translation>Nodwr</translation>
     </message>
     <message>
         <source>Label</source>
@@ -3951,23 +4050,23 @@ space unit</extracomment>
     </message>
     <message>
         <source>Segno</source>
-        <translation type="unfinished"/>
+        <translation>Sago</translation>
     </message>
     <message>
         <source>Coda</source>
-        <translation type="unfinished"/>
+        <translation>Coda</translation>
     </message>
     <message>
         <source>Codetta</source>
-        <translation type="unfinished"/>
+        <translation>Codeta</translation>
     </message>
     <message>
         <source>Fine</source>
-        <translation type="unfinished"/>
+        <translation>Diwedd</translation>
     </message>
     <message>
         <source>To Coda</source>
-        <translation type="unfinished"/>
+        <translation>I Coda</translation>
     </message>
     <message>
         <source>Marker type</source>
@@ -3999,18 +4098,18 @@ space unit</extracomment>
     </message>
     <message>
         <source>Custom</source>
-        <translation type="unfinished"/>
+        <translation>Arfer</translation>
     </message>
 </context>
 <context>
     <name>InspectorNote</name>
     <message>
         <source>Note</source>
-        <translation>Nota</translation>
+        <translation>Nodyn</translation>
     </message>
     <message>
         <source>Play</source>
-        <translation>Zaigraj</translation>
+        <translation>Chwarae</translation>
     </message>
     <message>
         <source>Tuning</source>
@@ -4026,31 +4125,31 @@ space unit</extracomment>
     </message>
     <message>
         <source>Auto</source>
-        <translation type="unfinished"/>
+        <translation>Awtodrefnu </translation>
     </message>
     <message>
         <source>Top</source>
-        <translation>Vrh</translation>
+        <translation>Top</translation>
     </message>
     <message>
         <source>Bottom</source>
-        <translation>Dno</translation>
+        <translation>Gweulod</translation>
     </message>
     <message>
         <source>Whole</source>
-        <translation type="unfinished"/>
+        <translation>Cyfan</translation>
     </message>
     <message>
         <source>Half</source>
-        <translation type="unfinished"/>
+        <translation>Hanner</translation>
     </message>
     <message>
         <source>Quarter</source>
-        <translation>ÄŒetrtinka</translation>
+        <translation>Chwarter</translation>
     </message>
     <message>
         <source>Breve</source>
-        <translation type="unfinished"/>
+        <translation>Brîf</translation>
     </message>
     <message>
         <source>Offset</source>
@@ -4062,11 +4161,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Head type</source>
-        <translation type="unfinished"/>
+        <translation>Pen math</translation>
     </message>
     <message>
         <source>Head group</source>
-        <translation type="unfinished"/>
+        <translation>Gwerth Pen </translation>
     </message>
     <message>
         <source>Dot position</source>
@@ -4078,15 +4177,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Left</source>
-        <translation>Levo</translation>
+        <translation>Chwith</translation>
     </message>
     <message>
         <source>Right</source>
-        <translation>Desno</translation>
+        <translation>De</translation>
     </message>
     <message>
         <source>Small </source>
-        <translation type="unfinished"/>
+        <translation>Bach</translation>
     </message>
     <message>
         <source>Note Inspector</source>
@@ -4102,7 +4201,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Head type value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod  Pen math gwerth</translation>
     </message>
     <message>
         <source>Reset Velocity value</source>
@@ -4114,15 +4213,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Small</source>
-        <translation type="unfinished"/>
+        <translation>Bach</translation>
     </message>
     <message>
         <source>Reset Head group value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod Pen gwerth grŵp</translation>
     </message>
     <message>
         <source>Reset Small value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod bychan gwerth</translation>
     </message>
     <message>
         <source>Reset Tuning value</source>
@@ -4134,7 +4233,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Reset Dot position value</source>
@@ -4142,7 +4241,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Line</source>
-        <translation>ÄŒrta</translation>
+        <translation>Llinell</translation>
     </message>
     <message>
         <source>Fix to line</source>
@@ -4165,7 +4264,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Type</source>
-        <translation>Tip</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Placement</source>
@@ -4177,27 +4276,27 @@ space unit</extracomment>
     </message>
     <message>
         <source>15ma</source>
-        <translation>15ma</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>8vb</source>
-        <translation>8vb</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>15mb</source>
-        <translation>15mb</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>22ma</source>
-        <translation>22ma</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>22mb</source>
-        <translation>22mb</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Numbers only</source>
-        <translation type="unfinished"/>
+        <translation>Rhifau yn unig</translation>
     </message>
     <message>
         <source>Ottava Inspector</source>
@@ -4213,15 +4312,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Above</source>
-        <translation>Zgoraj</translation>
+        <translation>Uwch</translation>
     </message>
     <message>
         <source>Below</source>
-        <translation>Spodaj</translation>
+        <translation>Islaw</translation>
     </message>
     <message>
         <source>Reset Numbers only value</source>
@@ -4232,11 +4331,11 @@ space unit</extracomment>
     <name>InspectorRest</name>
     <message>
         <source>Rest</source>
-        <translation>Pavza</translation>
+        <translation>Gorffwys</translation>
     </message>
     <message>
         <source>Small</source>
-        <translation type="unfinished"/>
+        <translation>Bach</translation>
     </message>
     <message>
         <source>Rest Inspector</source>
@@ -4244,18 +4343,18 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Small value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod bychan gwerth</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
 </context>
 <context>
     <name>InspectorSegment</name>
     <message>
         <source>Segment</source>
-        <translation type="unfinished"/>
+        <translation>Segment</translation>
     </message>
     <message>
         <source>sp</source>
@@ -4284,7 +4383,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
 </context>
 <context>
@@ -4311,15 +4410,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Nadaljevanje</translation>
+        <translation>Parhaol</translation>
     </message>
     <message>
         <source>Dotted</source>
-        <translation type="unfinished"/>
+        <translation>Tawnod unpwynt</translation>
     </message>
     <message>
         <source>Dashed</source>
@@ -4330,11 +4429,11 @@ space unit</extracomment>
     <name>InspectorSpacer</name>
     <message>
         <source>Spacer</source>
-        <translation type="unfinished"/>
+        <translation>Gwahanydd</translation>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Uchdwr</translation>
     </message>
     <message>
         <source>sp</source>
@@ -4351,10 +4450,82 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Ffram Testun</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Ailosod gwerth</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
-        <translation type="unfinished"/>
+        <translation>Marc Amseriad</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -4378,7 +4549,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Reset Follow text value</source>
@@ -4389,11 +4560,11 @@ space unit</extracomment>
     <name>InspectorText</name>
     <message>
         <source>Text</source>
-        <translation>Besedilo</translation>
+        <translation>Testyn</translation>
     </message>
     <message>
         <source>Style</source>
-        <translation>Slog</translation>
+        <translation>Arddull</translation>
     </message>
     <message>
         <source>Text Inspector</source>
@@ -4405,7 +4576,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Reset Text to Style</source>
@@ -4416,7 +4587,7 @@ space unit</extracomment>
     <name>InspectorTextLine</name>
     <message>
         <source>Text Line</source>
-        <translation type="unfinished"/>
+        <translation>Llinell Testun</translation>
     </message>
     <message>
         <source>Text Line Inspector</source>
@@ -4427,7 +4598,7 @@ space unit</extracomment>
     <name>InspectorTimeSig</name>
     <message>
         <source>Time Signature</source>
-        <translation>Določi taktovski način:</translation>
+        <translation>Amseriad Arwyddiant</translation>
     </message>
     <message>
         <source>Show courtesy</source>
@@ -4443,18 +4614,18 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
 </context>
 <context>
     <name>InspectorTrill</name>
     <message>
         <source>Trill</source>
-        <translation>Trilček</translation>
+        <translation>Tril</translation>
     </message>
     <message>
         <source>Type</source>
-        <translation>Tip</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Trill Inspector</source>
@@ -4481,11 +4652,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
+        <translation>Ailosod gwerth</translation>
+    </message>
+    <message>
+        <source>Ornament Style</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Direction</source>
+        <translation>Dyfeiriad</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Chwarae</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4493,19 +4688,19 @@ space unit</extracomment>
     <name>InspectorTuplet</name>
     <message>
         <source>Tuplet</source>
-        <translation>Ritmična posebnost</translation>
+        <translation>Tuplet</translation>
     </message>
     <message>
         <source>Number</source>
-        <translation>Å¡tevilka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Relation</source>
-        <translation>razmerje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Nothing</source>
-        <translation>prazno</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Automatic</source>
@@ -4513,35 +4708,35 @@ space unit</extracomment>
     </message>
     <message>
         <source>Bracket</source>
-        <translation>prečka</translation>
+        <translation>Braced</translation>
     </message>
     <message>
         <source>Direction</source>
-        <translation type="unfinished"/>
+        <translation>Dyfeiriad</translation>
     </message>
     <message>
         <source>Auto</source>
-        <translation type="unfinished"/>
+        <translation>Awtodrefnu </translation>
     </message>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Dol</translation>
+        <translation>i lawr</translation>
     </message>
     <message>
         <source>Tuplet Inspector</source>
-        <translation>Pregledovalnik ritmična posebnosti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod  cyfeiriad gwerth</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Reset Number type value</source>
@@ -4564,7 +4759,7 @@ space unit</extracomment>
     <name>InspectorVBox</name>
     <message>
         <source>Vertical Frame</source>
-        <translation type="unfinished"/>
+        <translation>Ffrâm Fertigol</translation>
     </message>
     <message>
         <source>mm</source>
@@ -4577,7 +4772,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Uchdwr</translation>
     </message>
     <message>
         <source>Vertical Frame Inspector</source>
@@ -4585,7 +4780,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
     <message>
         <source>Right margin</source>
@@ -4644,7 +4839,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Open</source>
-        <translation>Odpri ...</translation>
+        <translation>Agor</translation>
     </message>
     <message>
         <source>Closed</source>
@@ -4652,7 +4847,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Type</source>
-        <translation>Tip</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Volta Inspector</source>
@@ -4664,7 +4859,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Ailosod gwerth</translation>
     </message>
 </context>
 <context>
@@ -4679,23 +4874,23 @@ space unit</extracomment>
     </message>
     <message>
         <source>Clear</source>
-        <translation>Počisti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add</source>
-        <translation>Dodaj</translation>
+        <translation>Ategu</translation>
     </message>
     <message>
         <source>Remove</source>
-        <translation>Odstrani</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Dol</translation>
+        <translation>i lawr</translation>
     </message>
     <message>
         <source>Add Staff</source>
@@ -4742,30 +4937,30 @@ space unit</extracomment>
     </message>
     <message>
         <source>MuseScore: Instruments</source>
-        <translation>MuseScore: Glasbila</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Load</source>
-        <translation>Naloži</translation>
+        <translation>llwytho</translation>
     </message>
     <message>
         <source>Save</source>
-        <translation>Shrani</translation>
+        <translation>Cadw </translation>
     </message>
     <message>
         <source>OK</source>
-        <translation>V redu</translation>
+        <translation>OK</translation>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Prekliči</translation>
+        <translation>dileu</translation>
     </message>
 </context>
 <context>
     <name>InstrumentsWidget</name>
     <message>
         <source>MuseScore: Instruments</source>
-        <translation>MuseScore: Glasbila</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Instrument List</source>
@@ -4777,23 +4972,23 @@ space unit</extracomment>
     </message>
     <message>
         <source>Clear</source>
-        <translation>Počisti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add</source>
-        <translation>Dodaj</translation>
+        <translation>Ategu</translation>
     </message>
     <message>
         <source>Remove</source>
-        <translation>Odstrani</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Dol</translation>
+        <translation>i lawr</translation>
     </message>
     <message>
         <source>Add Staff</source>
@@ -4805,15 +5000,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Staves</source>
-        <translation>ÄŒrtovja</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Visible</source>
-        <translation>Vidno</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Clef</source>
-        <translation>Ključ</translation>
+        <translation>Cleff</translation>
     </message>
     <message>
         <source>Linked</source>
@@ -4848,26 +5043,33 @@ space unit</extracomment>
     <name>KeyEdit</name>
     <message>
         <source>Create Key Signature</source>
-        <translation>Ustvari tonaliteto</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Clear</source>
-        <translation>Pobriši</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add</source>
-        <translation>Dodaj</translation>
+        <translation>Ategu</translation>
     </message>
     <message>
         <source>Add time signature to palette</source>
-        <translation>Dodaj taktovski način v paleto</translation>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
-        <translation>MuseScore: Plasti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Layer</source>
@@ -4875,11 +5077,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Create</source>
-        <translation>Ustvari</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Delete</source>
-        <translation>Izbriši</translation>
+        <translation>Dileu</translation>
     </message>
     <message>
         <source>Tags</source>
@@ -4911,111 +5113,111 @@ space unit</extracomment>
     </message>
     <message>
         <source>5</source>
-        <translation>5</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>6</source>
-        <translation>6</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>7</source>
-        <translation>7</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>8</source>
-        <translation>8</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>9</source>
-        <translation>9</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>10</source>
-        <translation>10</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>11</source>
-        <translation>11</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>12</source>
-        <translation>12</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>13</source>
-        <translation>13</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>14</source>
-        <translation>14</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>15</source>
-        <translation>15</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>16</source>
-        <translation>16</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>17</source>
-        <translation>17</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>18</source>
-        <translation>18</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>19</source>
-        <translation>19</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>20</source>
-        <translation>20</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>21</source>
-        <translation>21</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>22</source>
-        <translation>22</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>23</source>
-        <translation>23</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>24</source>
-        <translation>24</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>25</source>
-        <translation>25</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>26</source>
-        <translation>26</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>27</source>
-        <translation>27</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>28</source>
-        <translation>28</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>29</source>
-        <translation>29</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>30</source>
-        <translation>30</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>31</source>
-        <translation>31</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Tag</source>
@@ -5030,23 +5232,23 @@ space unit</extracomment>
     <name>LinePropertiesDialog</name>
     <message>
         <source>MuseScore: Line Properties</source>
-        <translation>MuseScore: Lastnosti črt</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Begin</source>
-        <translation>Začetek</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Above</source>
-        <translation>Zgoraj</translation>
+        <translation>Uwch</translation>
     </message>
     <message>
         <source>Below</source>
-        <translation>Spodaj</translation>
+        <translation>Islaw</translation>
     </message>
     <message>
         <source>Left</source>
-        <translation>Levo</translation>
+        <translation>Chwith</translation>
     </message>
     <message>
         <source>sp</source>
@@ -5054,27 +5256,27 @@ space unit</extracomment>
     </message>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>90°</source>
-        <translation>90°</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>45°</source>
-        <translation>45°</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Continue</source>
-        <translation>Nadaljevanje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>End</source>
-        <translation>Zaključek</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Place:</source>
-        <translation>mesto:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Hook:</source>
@@ -5082,49 +5284,49 @@ space unit</extracomment>
     </message>
     <message>
         <source>Text:</source>
-        <translation>Besedilo</translation>
+        <translation>Testun:</translation>
     </message>
 </context>
 <context>
     <name>LoginDialog</name>
     <message>
         <source>Log in to MuseScore</source>
-        <translation>Prijavite se v MuseScore</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Username or email</source>
-        <translation>Uporabniško ime ali e-pošta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Password</source>
-        <translation>Geslo</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>MIDI import operations</name>
     <message>
         <source>Quarter</source>
-        <translation>ÄŒetrtinka</translation>
+        <translation>Chwarter</translation>
     </message>
     <message>
         <source>Eighth</source>
-        <translation>Osmikna</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>16th</source>
-        <translation>16-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>32nd</source>
-        <translation>32-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>64th</source>
-        <translation>64-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>128th</source>
-        <translation>128-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Detect swing</source>
@@ -5144,7 +5346,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Import</source>
-        <translation>Uvoz</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Staff name</source>
@@ -5152,11 +5354,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Sound</source>
-        <translation>Zvok</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Lyrics</source>
-        <translation>Besedilo</translation>
+        <translation>Telyneg</translation>
     </message>
     <message>
         <source>2-plets</source>
@@ -5184,7 +5386,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Tuplets</source>
-        <translation>Ritmične posebnosti</translation>
+        <translation>Tuplets</translation>
     </message>
     <message>
         <source>2</source>
@@ -5200,43 +5402,43 @@ space unit</extracomment>
     </message>
     <message>
         <source>5</source>
-        <translation>5</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>6</source>
-        <translation>6</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>7</source>
-        <translation>7</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>9</source>
-        <translation>9</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>12</source>
-        <translation>12</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>15</source>
-        <translation>15</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>21</source>
-        <translation>21</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>8</source>
-        <translation>8</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>16</source>
-        <translation>16</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>32</source>
-        <translation>32</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Time signature</source>
@@ -5296,11 +5498,11 @@ pickup measure</source>
     </message>
     <message>
         <source>Channel</source>
-        <translation>Kanal</translation>
+        <translation>Culfor</translation>
     </message>
     <message>
         <source>MuseScore instrument</source>
-        <translation>MuseScore glasbila</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show
@@ -5312,18 +5514,18 @@ chord symbols</source>
     <name>MIDI import: tracks model</name>
     <message>
         <source>All</source>
-        <translation>Vse</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>MP3Exporter</name>
     <message>
         <source>Where is %1 ?</source>
-        <translation>Kje je %1 ?</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Save as MP3</source>
-        <translation>Shrani kot MP3</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore does not export MP3 files directly, but instead uses the freely available LAME library.  You must obtain %1 separately (for details check the handbook), and then locate the file for MuseScore.
@@ -5337,59 +5539,59 @@ Would you like to locate %2 now?</source>
     <name>MasterPalette</name>
     <message>
         <source>MuseScore: Master Palette</source>
-        <translation>MuseScore: Glavna paleta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Grace Notes</source>
-        <translation>Okrasne note</translation>
+        <translation>Nodiadau gras</translation>
     </message>
     <message>
         <source>Clefs</source>
-        <translation>Ključi</translation>
+        <translation>Cleffiau</translation>
     </message>
     <message>
         <source>Key Signatures</source>
-        <translation>Tonalitete</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Time Signatures</source>
-        <translation>Taktovski načini</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Barlines</source>
-        <translation>Taktnice</translation>
+        <translation>Llinellau bar</translation>
     </message>
     <message>
         <source>Lines</source>
-        <translation>ÄŒrte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Breaths & Pauses</source>
-        <translation>Dihi in cezure</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Brackets</source>
-        <translation>Prečke sistema</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Articulations & Ornaments</source>
-        <translation>Artikulacije in okraski</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Accidentals</source>
-        <translation>Predznaki</translation>
+        <translation>Anhapon</translation>
     </message>
     <message>
         <source>Dynamics</source>
-        <translation>Dinamika</translation>
+        <translation>Dynameg</translation>
     </message>
     <message>
         <source>Fingering</source>
-        <translation>Prstni red</translation>
+        <translation>Byseddu</translation>
     </message>
     <message>
         <source>Note Heads</source>
-        <translation>Notne glavice</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Tremolo</source>
@@ -5401,35 +5603,35 @@ Would you like to locate %2 now?</source>
     </message>
     <message>
         <source>Text</source>
-        <translation>Besedilo</translation>
+        <translation>Testyn</translation>
     </message>
     <message>
         <source>Beam Properties</source>
-        <translation>Prečke vratov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Frames & Measures</source>
-        <translation>Okvirji in takti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Symbols</source>
-        <translation>Simboli</translation>
+        <translation>Symbolau</translation>
     </message>
     <message>
         <source>Arpeggios & Glissandi</source>
-        <translation>KotHarfa in ZvočniZdrs</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Breaks & Spacers</source>
-        <translation>Prelomi in razmiki</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Bagpipe Embellishments</source>
-        <translation>Glasbeni okraski</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Repeats & Jumps</source>
-        <translation>Ponavljanja</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -5441,35 +5643,34 @@ Would you like to locate %2 now?</source>
     <message>
         <source>cannot change measure length:
 tuplet would cross measure</source>
-        <translation>ne morem sprmeniti dolžino takta
-ritmična posebnost bo prečkala takt</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>MeasurePropertiesBase</name>
     <message>
         <source>MuseScore: Measure Properties</source>
-        <translation>MuseScore: Lastnosti takta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Staves</source>
-        <translation>ÄŒrtovja</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>New Row</source>
-        <translation>Nova vrstica</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Staff</source>
-        <translation>ÄŒrtovje</translation>
+        <translation>Staff</translation>
     </message>
     <message>
         <source>Visible</source>
-        <translation>Vidno</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Stemless</source>
-        <translation>Brez vratu</translation>
+        <translation>Distên</translation>
     </message>
     <message>
         <source>a</source>
@@ -5477,7 +5678,7 @@ ritmična posebnost bo prečkala takt</translation>
     </message>
     <message>
         <source>visible</source>
-        <translation>vidno</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>c</source>
@@ -5485,11 +5686,11 @@ ritmična posebnost bo prečkala takt</translation>
     </message>
     <message>
         <source>Measure Duration</source>
-        <translation>Trajanje takta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>/</source>
-        <translation>/</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>1</source>
@@ -5505,23 +5706,23 @@ ritmična posebnost bo prečkala takt</translation>
     </message>
     <message>
         <source>8</source>
-        <translation>8</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>16</source>
-        <translation>16</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>32</source>
-        <translation>32</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>64</source>
-        <translation>64</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Other</source>
-        <translation>Drugo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Exclude from measure count</source>
@@ -5541,11 +5742,11 @@ ritmična posebnost bo prečkala takt</translation>
     </message>
     <message>
         <source>Nominal:</source>
-        <translation>nominalno</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Actual:</source>
-        <translation>dejansko</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add to measure number:</source>
@@ -5553,7 +5754,7 @@ ritmična posebnost bo prečkala takt</translation>
     </message>
     <message>
         <source>Do not count</source>
-        <translation>brez Å¡tetja</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Automatic</source>
@@ -5573,7 +5774,7 @@ ritmična posebnost bo prečkala takt</translation>
     </message>
     <message>
         <source>Go to next measure</source>
-        <translation>Pojdi na naslednji takt</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Break multimeasure rest</source>
@@ -5584,15 +5785,15 @@ ritmična posebnost bo prečkala takt</translation>
     <name>MeasuresDialogBase</name>
     <message>
         <source>Mscore: Append Measures</source>
-        <translation>MuseScore: Dodaj takte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>OK</source>
-        <translation>V redu</translation>
+        <translation>OK</translation>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Prekliči</translation>
+        <translation>dileu</translation>
     </message>
     <message>
         <source>Append empty measures</source>
@@ -5600,7 +5801,7 @@ ritmična posebnost bo prečkala takt</translation>
     </message>
     <message>
         <source>Number of measures to append:</source>
-        <translation>Å tevilo taktov</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -5638,14 +5839,14 @@ ritmična posebnost bo prečkala takt</translation>
     <name>MenuNotes</name>
     <message>
         <source>&Notes</source>
-        <translation>&Note</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>MetaEditDialog</name>
     <message>
         <source>MuseScore Version:</source>
-        <translation>MuseScore različica:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Revision:</source>
@@ -5657,11 +5858,11 @@ ritmična posebnost bo prečkala takt</translation>
     </message>
     <message>
         <source>New</source>
-        <translation>Novo</translation>
+        <translation>Newydd</translation>
     </message>
     <message>
         <source>MuseScore: Score Information</source>
-        <translation>MuseScore: Podatki o notnem črtovju</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -5691,7 +5892,7 @@ ritmična posebnost bo prečkala takt</translation>
     </message>
     <message>
         <source>Version: </source>
-        <translation>Različica</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Revision: %1</source>
@@ -5709,15 +5910,15 @@ ritmična posebnost bo prečkala takt</translation>
     <name>Ms::AccessibleSearchBox</name>
     <message>
         <source>Measure</source>
-        <translation>Takt</translation>
+        <translation>Mesur</translation>
     </message>
     <message>
         <source>Page</source>
-        <translation>Stran</translation>
+        <translation>Tudalen</translation>
     </message>
     <message>
         <source>Rehearsal Mark</source>
-        <translation>Vadbene oznake</translation>
+        <translation>Marc Rihyrsal</translation>
     </message>
     <message>
         <source>Not found </source>
@@ -5728,19 +5929,19 @@ ritmična posebnost bo prečkala takt</translation>
     <name>Ms::AlbumManager</name>
     <message>
         <source>MuseScore: Add Score</source>
-        <translation>MuseScore: Dodaj partituro</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Load Album</source>
-        <translation>MuseScore: Odpri album</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore Files (*.mscz *.mscx)</source>
-        <translation>MuseScore datoteke (*.mscz *.mscx)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore Album Files (*.album)</source>
-        <translation>MuseScore Album datoteke (*.album)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Error while creating score from album.</source>
@@ -5780,46 +5981,46 @@ ritmična posebnost bo prečkala takt</translation>
     </message>
     <message>
         <source>Breath</source>
-        <translation type="unfinished"/>
+        <translation>Anadl</translation>
     </message>
 </context>
 <context>
     <name>Ms::ChordRest</name>
     <message>
         <source>Duplet</source>
-        <translation>Duola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Triplet</source>
-        <translation>Triola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Quadruplet</source>
-        <translation>Kvadrola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Sextuplet</source>
-        <translation>Sekstola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Septuplet</source>
-        <translation>Septiola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Octuplet</source>
-        <translation>Oktiola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Custom Tuplet</source>
-        <translation>Ritmične posebnosti po meri</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Quintuplet</source>
-        <translation>Kvintola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Nonuplet</source>
-        <translation>Noniola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>%1 Start of %2</source>
@@ -5892,22 +6093,22 @@ ritmična posebnost bo prečkala takt</translation>
     </message>
     <message>
         <source>Pitch:</source>
-        <translation>Višina</translation>
+        <translation>Cywair</translation>
     </message>
     <message>
         <source>MuseScore: <%1> Staff: %2</source>
-        <translation>MuseScore: <%1> Notno črtovje: %2</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>Ms::EditDrumset</name>
     <message>
         <source>invalid</source>
-        <translation type="unfinished"/>
+        <translation>annilys</translation>
     </message>
     <message>
         <source>MuseScore: Open File</source>
-        <translation>MuseScore: Odpri datoteko</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Write File failed: </source>
@@ -5936,43 +6137,43 @@ failed: </source>
     <message>
         <source>Open</source>
         <comment>string data</comment>
-        <translation>Odpri ...</translation>
+        <translation>Agor</translation>
     </message>
     <message>
         <source>Pitch</source>
         <comment>string data</comment>
-        <translation>Višina</translation>
+        <translation>Cywair</translation>
     </message>
 </context>
 <context>
     <name>Ms::EditStyle</name>
     <message>
         <source>Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Symbol</translation>
     </message>
     <message>
         <source>Anchor</source>
-        <translation type="unfinished"/>
+        <translation>Angor</translation>
     </message>
     <message>
         <source>Above Staff</source>
-        <translation type="unfinished"/>
+        <translation>Uwchben Staff</translation>
     </message>
     <message>
         <source>Below Staff</source>
-        <translation type="unfinished"/>
+        <translation>Islaw Staff</translation>
     </message>
     <message>
         <source>Chord Automatic</source>
-        <translation type="unfinished"/>
+        <translation>Tant Awtomatig</translation>
     </message>
     <message>
         <source>Above Chord</source>
-        <translation type="unfinished"/>
+        <translation>Uwch Tant</translation>
     </message>
     <message>
         <source>Below Chord</source>
-        <translation type="unfinished"/>
+        <translation>Islaw Tant</translation>
     </message>
     <message>
         <source>Special symbols in header/footer</source>
@@ -5992,7 +6193,7 @@ failed: </source>
     </message>
     <message>
         <source>file name</source>
-        <translation>ime datoteke</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>file path+name</source>
@@ -6008,38 +6209,38 @@ failed: </source>
     </message>
     <message>
         <source>copyright, on first page only</source>
-        <translation>avtorske pravice, samo na prvi strani</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>copyright, on all pages</source>
-        <translation>avtorske pravice, na vseh straneh</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>the $ sign itself</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
-        <translation>Uporabi za vse parte</translation>
+        <source>last modification date</source>
+        <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -6071,18 +6272,18 @@ failed: </source>
     </message>
     <message>
         <source>Custom</source>
-        <translation type="unfinished"/>
+        <translation>Arfer</translation>
     </message>
 </context>
 <context>
     <name>Ms::Harmony</name>
     <message>
         <source>sharp</source>
-        <translation>Višaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>flat</source>
-        <translation>Nižaj</translation>
+        <translation>fflat</translation>
     </message>
 </context>
 <context>
@@ -6096,7 +6297,7 @@ failed: </source>
     <name>Ms::Inspector</name>
     <message>
         <source>Inspector</source>
-        <translation>Struktura dokumenta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Inspector Subwindow</source>
@@ -6107,7 +6308,7 @@ failed: </source>
     <name>Ms::InspectorBase</name>
     <message>
         <source>Inspector</source>
-        <translation>Struktura dokumenta</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -6118,7 +6319,7 @@ failed: </source>
     </message>
     <message>
         <source>Notes</source>
-        <translation>Note</translation>
+        <translation>Nodiadau</translation>
     </message>
     <message>
         <source>Rests</source>
@@ -6145,19 +6346,19 @@ failed: </source>
     </message>
     <message>
         <source>Hook</source>
-        <translation type="unfinished"/>
+        <translation>Bachyn</translation>
     </message>
     <message>
         <source>Stem</source>
-        <translation type="unfinished"/>
+        <translation>Bôn</translation>
     </message>
     <message>
         <source>Beam</source>
-        <translation type="unfinished"/>
+        <translation>Trawst</translation>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Ritmična posebnost</translation>
+        <translation>Tuplet</translation>
     </message>
 </context>
 <context>
@@ -6168,14 +6369,14 @@ failed: </source>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Ritmična posebnost</translation>
+        <translation>Tuplet</translation>
     </message>
 </context>
 <context>
     <name>Ms::InstrumentsDialog</name>
     <message>
         <source>MuseScore: Save Instrument List</source>
-        <translation>MuseScore: Shrani seznam glasbil</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Write Style failed: </source>
@@ -6183,15 +6384,15 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore: Write Style</source>
-        <translation>MuseScore: Napiši slog</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Load Instrument List</source>
-        <translation>MuseScore: Odpri  seznam glasbil</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Open Instruments File</source>
-        <translation>MuseScore: Odpri datoteko z glasbili</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Open Instruments File
@@ -6201,22 +6402,22 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore Instruments (*.xml)</source>
-        <translation>MuseScore Glasbila (*.xml)</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>Ms::InstrumentsWidget</name>
     <message>
         <source>Staff %1</source>
-        <translation type="unfinished"/>
+        <translation>Staff %1</translation>
     </message>
     <message>
         <source>Staves</source>
-        <translation>ÄŒrtovja</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Clef</source>
-        <translation>Ključ</translation>
+        <translation>Cleff</translation>
     </message>
     <message>
         <source>Staff type</source>
@@ -6224,7 +6425,7 @@ failed: </source>
     </message>
     <message>
         <source>Visible</source>
-        <translation>Vidno</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Linked</source>
@@ -6235,7 +6436,7 @@ failed: </source>
     <name>Ms::KeyEditor</name>
     <message>
         <source>MuseScore: Key Signatures</source>
-        <translation>MuseScore: Taktovski način</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -6260,7 +6461,7 @@ failed: </source>
     <name>Ms::LoginDialog</name>
     <message>
         <source><a href="%1">Create an account</a></source>
-        <translation><a href="%1">Ustvari račun</a></translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source><a href="%1">Forgot password?</a></source>
@@ -6323,7 +6524,7 @@ failed: </source>
     </message>
     <message>
         <source>Please check your Internet connection</source>
-        <translation>Prosim preverite spletno povezavo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>The local time on your device is not set right. Please check it and adjust. It's advised to set the time/timezone to automatic. If you still can't log in, <a href="%1">contact us</a>.</source>
@@ -6341,18 +6542,18 @@ failed: </source>
     <name>Ms::MagBox</name>
     <message>
         <source>Zoom</source>
-        <translation type="unfinished"/>
+        <translation>Chyddo</translation>
     </message>
 </context>
 <context>
     <name>Ms::MeasureProperties</name>
     <message>
         <source>MuseScore: Measure Properties for Measure %1</source>
-        <translation>MuseScore: Lastnosti takta za takt %1</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>visible</source>
-        <translation>vidno</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>stemless</source>
@@ -6381,7 +6582,7 @@ failed: </source>
     <name>Ms::Mixer</name>
     <message>
         <source>MuseScore: Mixer</source>
-        <translation>MuseScore: Mešalec</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -6417,19 +6618,19 @@ before closing?</source>
     </message>
     <message>
         <source>MuseScore Files (*.mscz *.mscx);;</source>
-        <translation>MuseScore datoteke (*.mscz *.mscx);;</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MusicXML Files (*.xml *.mxl);;</source>
-        <translation>MusicXML datoteke (*.xml *.mxl);;</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MIDI Files (*.mid *.midi *.kar);;</source>
-        <translation>MIDI datoteke (*.mid *.midi *.kar);;</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Muse Data Files (*.md);;</source>
-        <translation>Muse podatkovne datoteke (*.md);;</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Capella Files (*.cap *.capx);;</source>
@@ -6449,31 +6650,31 @@ before closing?</source>
     </message>
     <message>
         <source>MuseScore: Load Score</source>
-        <translation>MuseScore: Odpri partituro</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Save Score</source>
-        <translation>MuseScore: Shrani partituro</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Save File</source>
-        <translation>MuseScore: Shrani datoteko</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Untitled</source>
-        <translation>Brez naslova</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Load Style</source>
-        <translation>MuseScore: Odpri slog</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Save Style</source>
-        <translation>MuseScore: Shrani slog</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore Style File (*.mss)</source>
-        <translation>MuseScore Slog (*.mss)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>PDF Scan File (*.pdf);;All (*)</source>
@@ -6493,51 +6694,51 @@ before closing?</source>
     </message>
     <message>
         <source>MuseScore: Save Image</source>
-        <translation>MuseScore: Shrani sliko</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Load Palette</source>
-        <translation>MuseScore: Odpri paleto</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Save Palette</source>
-        <translation>MuseScore: Shrani paleto</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore Palette (*.mpal)</source>
-        <translation>MuseScore Paleta (*.mpal)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Load Plugin</source>
-        <translation>MuseScore: Odpri vtičnik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Save Plugin</source>
-        <translation>MuseScore: Shrani vtičnik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore Plugin File (*.qml)</source>
-        <translation>MuseScore vtičnik (*.qml)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Load Drumset</source>
-        <translation>MuseScore: Odpri tolkala</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Save Drumset</source>
-        <translation>MuseScore: Shrani tolkala</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore Drumset File (*.drm)</source>
-        <translation>MuseScore tolkala (*.drm)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Standard MIDI File (*.mid)</source>
-        <translation>Standard MIDI datoteka (*.mid)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>PDF File (*.pdf)</source>
-        <translation>PDF datoteka (*.pdf)</translation>
+        <translation> Fil PDF (*.pdf)</translation>
     </message>
     <message>
         <source>PNG Bitmap Graphic (*.png)</source>
@@ -6561,15 +6762,15 @@ before closing?</source>
     </message>
     <message>
         <source>MuseScore: Export</source>
-        <translation>MuseScore: Izvozi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Save As</source>
-        <translation>MuseScore: Shrani kot</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Export Parts</source>
-        <translation>MuseScore: Izvozi parte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>"%1" already exists.
@@ -6599,15 +6800,15 @@ Do you want to replace it?
     </message>
     <message>
         <source>MuseScore: Save a Copy</source>
-        <translation>MuseScore: Shrani kopijo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Save Selection</source>
-        <translation>MuseScore: Shrani izbor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Save Selected</source>
-        <translation>MuseScore: Shrani izbrano</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Images (*.jpg *.jpeg *.png);;All (*)</source>
@@ -6647,7 +6848,7 @@ Do you want to replace it?
     </message>
     <message>
         <source>Bracket</source>
-        <translation>prečka</translation>
+        <translation>Braced</translation>
     </message>
     <message>
         <source>Brace</source>
@@ -6659,11 +6860,11 @@ Do you want to replace it?
     </message>
     <message>
         <source>Line</source>
-        <translation>ÄŒrta</translation>
+        <translation>Llinell</translation>
     </message>
     <message>
         <source>Breath</source>
-        <translation type="unfinished"/>
+        <translation>Anadl</translation>
     </message>
     <message>
         <source>Caesura</source>
@@ -6675,15 +6876,15 @@ Do you want to replace it?
     </message>
     <message>
         <source>Glissando</source>
-        <translation>Glissando</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Staff Text</source>
-        <translation>Napis nad črtovje</translation>
+        <translation>Staff Testun </translation>
     </message>
     <message>
         <source>System Text</source>
-        <translation>Napis nad sistemom</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Instrument</source>
@@ -6699,23 +6900,23 @@ Do you want to replace it?
     </message>
     <message>
         <source>&Add</source>
-        <translation>D&odaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>&Measures</source>
-        <translation>&Takti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>&Frames</source>
-        <translation>&Okvirji</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>&Text</source>
-        <translation>&Besedilo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>&Lines</source>
-        <translation>Č&rte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>No measure selected:
@@ -6724,7 +6925,7 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>synthesizer</source>
-        <translation>Sintetizator</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>audio track</source>
@@ -6740,35 +6941,35 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>Page View</source>
-        <translation>Pogled po straneh</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Continuous View</source>
-        <translation>Neprekinjen pogled</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Concert Pitch</source>
-        <translation>Koncertna višina</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>&File</source>
-        <translation>&Datoteka</translation>
+        <translation>&Fil</translation>
     </message>
     <message>
         <source>Open &Recent</source>
-        <translation>Odpri nedavne</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>&Edit</source>
-        <translation>&Uredi</translation>
+        <translation>&Golygu</translation>
     </message>
     <message>
         <source>&Measure</source>
-        <translation>&Takt</translation>
+        <translation>&Mesur</translation>
     </message>
     <message>
         <source>&Voices</source>
-        <translation>&Glasovi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>W&orkspaces</source>
@@ -6776,19 +6977,19 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>&Preferences...</source>
-        <translation>&Nastavitve...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>&View</source>
-        <translation>Po&gled</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add N&ote</source>
-        <translation>Dodaj n&oto</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add &Interval</source>
-        <translation>Dodaj interval</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>T&uplets</source>
@@ -6796,27 +6997,27 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>&Layout</source>
-        <translation>Pos&tavitev</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>&Style</source>
-        <translation>S&log</translation>
+        <translation>&Style</translation>
     </message>
     <message>
         <source>&Plugins</source>
-        <translation>&Vtičniki</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>&Help</source>
-        <translation>&Pomoč</translation>
+        <translation>&Help</translation>
     </message>
     <message>
         <source>&Online Handbook</source>
-        <translation>Spletni priročnik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Check for &Update</source>
-        <translation>Preveri za posodobitvami</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>The previous session quit unexpectedly.
@@ -6830,23 +7031,23 @@ Restore session?</source>
     </message>
     <message>
         <source>MuseScore: Tuplet Error</source>
-        <translation>MuseScore: ritmična posebnost - napaka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Cannot create tuplet with ratio %1 for duration %2</source>
-        <translation>Ne morem ustvariti ritmično posebnost z razmerjem %1 za trajanje %2</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Delete</source>
-        <translation>Izbriši</translation>
+        <translation>Dileu</translation>
     </message>
     <message>
         <source>Undo Changes</source>
-        <translation>Prekliči spremembe</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Read Workspace Name</source>
-        <translation>MuseScore:  preberi ime delovnega prostora</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>'%1' does already exist,
@@ -6859,7 +7060,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>MuseScore: Choose Ogg Audio File</source>
-        <translation>MuseScore: Izberi Ogg datoteko</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>FLAC Audio (*.flac)</source>
@@ -6871,24 +7072,24 @@ please choose a different name:</source>
     </message>
     <message>
         <source>MuseScore: Load Chord Symbols Style</source>
-        <translation>MuseScore: Naloži slog za Simbole akordov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Save Chord Symbols Style</source>
-        <translation>MuseScore: Shrani slog za Simbole akordov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Insert Image</source>
-        <translation>MuseScore: Vstavi sliko</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Report a Bug</source>
-        <translation>Poročaj o hroščih</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>System</source>
         <extracomment>The default language of the operating system. NOT a music system.</extracomment>
-        <translation>Sistem</translation>
+        <translation>System</translation>
     </message>
     <message>
         <source>Please select one or more measures</source>
@@ -6913,7 +7114,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>MuseScore: Warning</source>
-        <translation>MuseScore: Opozorilo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>PDF Files <experimental OMR> (*.pdf);;</source>
@@ -6921,11 +7122,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>New...</source>
-        <translation>Nova skladba ...</translation>
+        <translation>Newydd</translation>
     </message>
     <message>
         <source>Clear Recent Files</source>
-        <translation>Izbriši nedavne datoteke</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</source>
@@ -6937,7 +7138,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Zoom</source>
-        <translation type="unfinished"/>
+        <translation>Chyddo</translation>
     </message>
     <message>
         <source>View Mode</source>
@@ -6949,31 +7150,31 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Key Signatures</source>
-        <translation>Tonalitete</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Time Signatures</source>
-        <translation>Taktovski načini</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Symbols</source>
-        <translation>Simboli</translation>
+        <translation>Symbolau</translation>
     </message>
     <message>
         <source>Cannot create tuplet: Note value is too short</source>
-        <translation>Ne morem ustvariti ritmično posebnost: notna vrednost je prekratka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore File (*.mscz)</source>
-        <translation>MuseScore datoteka (*.mscz)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Uncompressed MuseScore File (*.mscx)</source>
-        <translation>Nestisnjena MuseScore datoteka  (*.mscx)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MusicXML File (*.xml)</source>
-        <translation>MusicXML datoteka (*.xml)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Compressed MusicXML File (*.mxl)</source>
@@ -7017,11 +7218,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Change instrument</source>
-        <translation>Spremeni glasbilo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Fretboard diagram</source>
-        <translation>Slike prijemov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Measure:Beat:Tick</source>
@@ -7037,27 +7238,27 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Workspace name:</source>
-        <translation>Ime delovnega prostora</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Score_and_Parts</source>
-        <translation>Partiture_in_parti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5 *.GPX)</source>
-        <translation>Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5 *.GPX)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore Styles (*.mss)</source>
-        <translation>MuseScore Slogi (*.mss)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore Plugin (*.qml)</source>
-        <translation>MuseScore Vtičniki (*.qml)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore Drumset (*.drm)</source>
-        <translation>MuseScore tolkala (*.drm)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>RH Guitar Fingering %1</source>
@@ -7073,7 +7274,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>&Tools</source>
-        <translation>&Orodja</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>No score</source>
@@ -7097,7 +7298,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Play</source>
-        <translation>Zaigraj</translation>
+        <translation>Chwarae</translation>
     </message>
     <message>
         <source>Score locked</source>
@@ -7105,19 +7306,19 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Manual</source>
-        <translation>ne najdem datoteke</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>&About...</source>
-        <translation>O progr&amu...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>About &Qt...</source>
-        <translation>O &Qt...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>About &MusicXML...</source>
-        <translation>O &MusicXML...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Image Capture</source>
@@ -7125,11 +7326,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Note Input</source>
-        <translation>Vnos not</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Note input mode</source>
-        <translation>Način za vnos not</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Drum input mode</source>
@@ -7159,6 +7360,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7183,25 +7388,25 @@ please choose a different name:</source>
     <name>Ms::NewWizard</name>
     <message>
         <source>MuseScore: Create New Score</source>
-        <translation>MuseScore: Ustvari novo notno črtovje</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>Ms::NewWizardPage1</name>
     <message>
         <source>Create New Score</source>
-        <translation>Ustvari novo partituro</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>This wizard creates a new score</source>
-        <translation>Ta čarovnik ustvari novo partituro</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>Ms::NewWizardPage2</name>
     <message>
         <source>Create New Score</source>
-        <translation>Ustvari novo partituro</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Define a set of instruments. Each instrument is represented by one or more staves</source>
@@ -7212,18 +7417,18 @@ please choose a different name:</source>
     <name>Ms::NewWizardPage3</name>
     <message>
         <source>Create New Score</source>
-        <translation>Ustvari novo partituro</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Create Time Signature</source>
-        <translation>Ustvari taktovski način</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>Ms::NewWizardPage4</name>
     <message>
         <source>Create New Score</source>
-        <translation>Ustvari novo partituro</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Select Template File:</source>
@@ -7234,7 +7439,7 @@ please choose a different name:</source>
     <name>Ms::NewWizardPage5</name>
     <message>
         <source>Create New Score</source>
-        <translation>Ustvari novo partituro</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Select Key Signature and Tempo:</source>
@@ -7242,7 +7447,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Key Signature</source>
-        <translation>Predznaki</translation>
+        <translation>Allewdd Arwyddiant</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -7250,7 +7455,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>BPM:</source>
-        <translation>Udarcev / minuto:</translation>
+        <translation>BPM:</translation>
     </message>
     <message>
         <source>Beats per minute</source>
@@ -7261,7 +7466,7 @@ please choose a different name:</source>
     <name>Ms::NoEffectGui</name>
     <message>
         <source>No Plugin</source>
-        <translation>Ni vtičnika</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -7280,15 +7485,15 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Invalid note</source>
-        <translation>Napačna nota</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Note</source>
-        <translation>Nota</translation>
+        <translation>Nodyn</translation>
     </message>
     <message>
         <source>Voice: %1</source>
-        <translation>Glas: %1</translation>
+        <translation>Llais: %1</translation>
     </message>
     <message>
         <source>Acciaccatura</source>
@@ -7326,7 +7531,7 @@ please choose a different name:</source>
     <name>Ms::Palette</name>
     <message>
         <source>Clear</source>
-        <translation>Počisti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Properties...</source>
@@ -7341,11 +7546,11 @@ please choose a different name:</source>
     <name>Ms::PaletteBox</name>
     <message>
         <source>Palettes</source>
-        <translation>Palete</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Select workspace</source>
-        <translation>Izberi delovni prostor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>+</source>
@@ -7353,7 +7558,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Add new workspace</source>
-        <translation>Dodaj novi delovni prostor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>new Palette</source>
@@ -7392,11 +7597,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Load Palette</source>
-        <translation>Naloži paleto</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Delete Palette</source>
-        <translation>Izbriši paleto</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -7410,7 +7615,7 @@ please choose a different name:</source>
     <name>Ms::PianoTools</name>
     <message>
         <source>Piano Keyboard</source>
-        <translation>Klaviatura</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -7429,15 +7634,15 @@ please choose a different name:</source>
     </message>
     <message>
         <source>untitled</source>
-        <translation>brez naslova</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Manual</source>
-        <translation>ne najdem datoteke</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore Plugin Creator</source>
-        <translation>MuseScore Ustvarjalec vtičnika</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Plugin "%1" has changes.
@@ -7446,7 +7651,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>MuseScore: Save Plugin</source>
-        <translation>MuseScore: Shrani vtičnik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Cannot determine file type</source>
@@ -7457,7 +7662,7 @@ Save before closing?</source>
     <name>Ms::PreferenceDialog</name>
     <message>
         <source>The language will be changed once you restart MuseScore.</source>
-        <translation>Srememba jezika bo vidna po vnovičnem zagonu MuseScore.</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Choose Notepaper</source>
@@ -7465,15 +7670,15 @@ Save before closing?</source>
     </message>
     <message>
         <source>Choose Background Wallpaper</source>
-        <translation>Izberi tapeto za ozadje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Choose Default Style</source>
-        <translation>Izberi privzeti slog</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Choose Default Style for Parts</source>
-        <translation>Izberi privzeti slog za parte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Choose Instrument List</source>
@@ -7489,7 +7694,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>MuseScore Shortcuts</source>
-        <translation>MuseScore Bližnjice</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Print Shortcuts</source>
@@ -7513,7 +7718,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>Choose Plugin Folder</source>
-        <translation>Izberi mapo za vtičnik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Choose Image Folder</source>
@@ -7529,7 +7734,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>MuseScore Files (*.mscz *.mscx);;All (*)</source>
-        <translation>MuseScore Datoteke (*.mscz *.mscx);;Vse (*)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>SoundFont Folders</source>
@@ -7540,23 +7745,23 @@ Save before closing?</source>
     <name>Ms::ResourceManager</name>
     <message>
         <source>Languages</source>
-        <translation>Jeziki</translation>
+        <translation>Ieithoedd</translation>
     </message>
     <message>
         <source>%1 KB</source>
-        <translation type="unfinished"/>
+        <translation>%1 KB</translation>
     </message>
     <message>
         <source>Update</source>
-        <translation>Posodobitve</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>No update</source>
-        <translation>Ni posodobitev</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Updating</source>
-        <translation>Posodabljam</translation>
+        <translation>Diweddaru</translation>
     </message>
     <message>
         <source>Failed, try again</source>
@@ -7564,14 +7769,14 @@ Save before closing?</source>
     </message>
     <message>
         <source>Updated</source>
-        <translation>Posodobljeno</translation>
+        <translation>Dyddiad diweddariad</translation>
     </message>
 </context>
 <context>
     <name>Ms::Rest</name>
     <message>
         <source>Voice: %1</source>
-        <translation>Glas: %1</translation>
+        <translation>Llais: %1</translation>
     </message>
     <message>
         <source>%1; Duration: %2; %3</source>
@@ -7582,7 +7787,7 @@ Save before closing?</source>
     <name>Ms::Score</name>
     <message>
         <source>The style file is not compatible with this version of MuseScore.</source>
-        <translation>Datoteka ni združljiva s to različico MuseScore.</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>The following file is locked: 
@@ -7599,7 +7804,7 @@ failed: %2</source>
     </message>
     <message>
         <source>MuseScore: Save File failed: %1</source>
-        <translation>MuseScore: Shranjevanje datoteke ni uspelo: %1</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Renaming temp. file <%1> to <%2> failed:
@@ -7629,10 +7834,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7644,6 +7845,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7665,7 +7870,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Measure: %1</source>
-        <translation type="unfinished"/>
+        <translation>Mesur: %1</translation>
     </message>
     <message>
         <source>Start Measure: %1; Start Beat: %2</source>
@@ -7677,7 +7882,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Staff %1</source>
-        <translation type="unfinished"/>
+        <translation>Staff %1</translation>
     </message>
 </context>
 <context>
@@ -7688,7 +7893,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Create New Score</source>
-        <translation>Ustvari novo partituro</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Custom Templates</source>
@@ -7707,7 +7912,7 @@ failed: %2</source>
     </message>
     <message>
         <source>MuseScore: Set Output Resolution</source>
-        <translation>MuseScore: Nastavi ločljivost za izpis</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>PNG Bitmap Graphic (*.png)</source>
@@ -7715,7 +7920,7 @@ failed: %2</source>
     </message>
     <message>
         <source>PDF File (*.pdf)</source>
-        <translation>PDF datoteka (*.pdf)</translation>
+        <translation> Fil PDF (*.pdf)</translation>
     </message>
     <message>
         <source>Scalable Vector Graphic (*.svg)</source>
@@ -7723,7 +7928,7 @@ failed: %2</source>
     </message>
     <message>
         <source>MuseScore: Save As</source>
-        <translation>MuseScore: Shrani kot</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Layer</source>
@@ -7743,7 +7948,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Add</source>
-        <translation>Dodaj</translation>
+        <translation>Ategu</translation>
     </message>
     <message>
         <source>Volta Properties...</source>
@@ -7767,7 +7972,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Staff</source>
-        <translation>ÄŒrtovje</translation>
+        <translation>Staff</translation>
     </message>
     <message>
         <source>Staff Properties...</source>
@@ -7775,7 +7980,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Measure</source>
-        <translation>Takt</translation>
+        <translation>Mesur</translation>
     </message>
     <message>
         <source>Measure Properties...</source>
@@ -7795,7 +8000,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Change Instrument...</source>
-        <translation>Spremeni inštrument ...</translation>
+        <translation>Newid Offeryn</translation>
     </message>
     <message>
         <source>Glissando Properties...</source>
@@ -7807,11 +8012,11 @@ failed: %2</source>
     </message>
     <message>
         <source>More...</source>
-        <translation type="unfinished"/>
+        <translation>Mwy</translation>
     </message>
     <message>
         <source>Help</source>
-        <translation type="unfinished"/>
+        <translation>Cymorth</translation>
     </message>
     <message>
         <source>Debugger</source>
@@ -7850,7 +8055,7 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>Fretboard Diagram Properties...</source>
-        <translation>Nastavitve za Slike prijemov...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Set output resolution for PNG/SVG</source>
@@ -7896,8 +8101,7 @@ Please select a chord/rest and try again</source>
     <message>
         <source>Cannot split measure here:
 Cannot split tuplet</source>
-        <translation>Ne morem razdeliti takt:
-ne morem razdeliti ritmično posebnost</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>No measures selected:
@@ -7918,7 +8122,7 @@ Please select a range of measures to join and try again</source>
     </message>
     <message>
         <source>Please select the complete tuplet/tremolo and retry the command</source>
-        <translation>Prosim izberi celotno ritmično posebnost / tremolo in poskusi znova</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Image Capture</source>
@@ -7942,15 +8146,20 @@ Please select a range of measures to join and try again</source>
     </message>
     <message>
         <source>Cannot paste into tuplet</source>
-        <translation>Ne morem prilepiti v ritmično posebnost</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Tuplet cannot cross barlines</source>
-        <translation>Ritmična posebnost ne sme prečkati takt</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Transparent background</source>
-        <translation>Prosojno ozadje</translation>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -7983,7 +8192,7 @@ Please select a range of measures to join and try again</source>
     <name>Ms::SelectionListWidget</name>
     <message>
         <source>Selection filter</source>
-        <translation type="unfinished"/>
+        <translation>Detholiad hidlen</translation>
     </message>
     <message>
         <source>Use Tab and Backtab to move through the check boxes</source>
@@ -7994,7 +8203,7 @@ Please select a range of measures to join and try again</source>
     <name>Ms::SelectionWindow</name>
     <message>
         <source>Selection</source>
-        <translation>Izbor</translation>
+        <translation>Detholiad</translation>
     </message>
 </context>
 <context>
@@ -8020,25 +8229,25 @@ Please select a range of measures to join and try again</source>
     </message>
     <message>
         <source>MuseScore: System Text Properties</source>
-        <translation>MuseScore: Nastavitve sistemskega besedila</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Staff Text Properties</source>
-        <translation>MuseScore: Lastnosti besedila črtovja</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>Ms::StartDialog</name>
     <message>
         <source>MuseScore Startup Dialog</source>
-        <translation>MuseScore pogovorno okno ob zagonu</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>Ms::SymbolDialog</name>
     <message>
         <source>MuseScore: Symbols</source>
-        <translation>MuseScore: Simboli</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -8068,11 +8277,11 @@ Please select a range of measures to join and try again</source>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Italig</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Tanlinellu</translation>
     </message>
     <message>
         <source>Align left</source>
@@ -8112,14 +8321,14 @@ Please select a range of measures to join and try again</source>
     <name>Ms::TextProperties</name>
     <message>
         <source>MuseScore: Text Properties</source>
-        <translation>MuseScore: Nastavitve besedila</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>Ms::TextStyleDialog</name>
     <message>
         <source>MuseScore: Read Style Name</source>
-        <translation>MuseScore: Preberi ime sloga</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>'%1' does already exist,
@@ -8128,7 +8337,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Apply to all Parts</source>
-        <translation>Uporabi za vse parte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Text style name:</source>
@@ -8151,11 +8360,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Italig</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Tanlinellu</translation>
     </message>
     <message>
         <source>Subscript</source>
@@ -8170,7 +8379,7 @@ please choose a different name:</source>
     <name>Ms::TimeDialog</name>
     <message>
         <source>MuseScore: Time Signatures</source>
-        <translation>MuseScore: Taktovski način</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -8185,22 +8394,22 @@ please choose a different name:</source>
     </message>
     <message>
         <source>%1/%2 time</source>
-        <translation type="unfinished"/>
+        <translation>%1/%2 amser</translation>
     </message>
 </context>
 <context>
     <name>Ms::UpdateChecker</name>
     <message>
         <source>An update for MuseScore is available: <a href="%1">MuseScore %2 r.%3</a></source>
-        <translation>Na voljo je posodobitev za MuseScore: <a href="%1">MuseScore %2 r.%3</a></translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Update Available</source>
-        <translation>Posodobitve so na voljo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>No Update Available</source>
-        <translation>Ni novih posodobitev</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -8275,29 +8484,29 @@ please choose a different name:</source>
     </message>
     <message>
         <source>[<a href="%1">link</a>]</source>
-        <translation type="unfinished"/>
+        <translation>[<a href="%1">link</a>]</translation>
     </message>
 </context>
 <context>
     <name>Ms::Workspace</name>
     <message>
         <source>Advanced</source>
-        <translation>Izboljšano</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Basic</source>
-        <translation>Osnovno</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>Multi value editor</name>
     <message>
         <source>All</source>
-        <translation>Vse</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>OK</source>
-        <translation>V redu</translation>
+        <translation>OK</translation>
     </message>
 </context>
 <context>
@@ -8371,27 +8580,27 @@ please choose a different name:</source>
     <name>NewWizard</name>
     <message>
         <source>Title:</source>
-        <translation>Naslov:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Subtitle:</source>
-        <translation>Podnaslov:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Composer:</source>
-        <translation>Skladatelj:</translation>
+        <translation>Cyfansoddwr:</translation>
     </message>
     <message>
         <source>Lyricist:</source>
-        <translation>Besedilopisec:</translation>
+        <translation>Tenynogyst:</translation>
     </message>
     <message>
         <source>Copyright:</source>
-        <translation>Avtorstvo:</translation>
+        <translation>Hawlfraint:</translation>
     </message>
     <message>
         <source>Title</source>
-        <translation>Naslov</translation>
+        <translation>Pennawd</translation>
     </message>
     <message>
         <source>Insert title here</source>
@@ -8399,7 +8608,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Subtitle</source>
-        <translation>Podnaslov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Insert subtitle here</source>
@@ -8407,7 +8616,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Composer</source>
-        <translation>Skladatelj</translation>
+        <translation>Cyfansoddwr</translation>
     </message>
     <message>
         <source>Insert composer's name here</source>
@@ -8415,19 +8624,19 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Lyricist</source>
-        <translation>Besedilopisec</translation>
+        <translation>Telynegion</translation>
     </message>
     <message>
         <source>Insert lyricist's name here</source>
-        <translation>Vstavi ime besedilopisca</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Copyright</source>
-        <translation>Avtorske pravice</translation>
+        <translation>Hawlfraint</translation>
     </message>
     <message>
         <source>Insert copyright here</source>
-        <translation>Vstavi avtorske pravice</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -8438,19 +8647,19 @@ please choose a different name:</source>
     </message>
     <message>
         <source>1/16</source>
-        <translation type="unfinished"/>
+        <translation>1/16</translation>
     </message>
     <message>
         <source>1/32</source>
-        <translation type="unfinished"/>
+        <translation>1/32</translation>
     </message>
     <message>
         <source>1/8</source>
-        <translation type="unfinished"/>
+        <translation>1/8</translation>
     </message>
     <message>
         <source>Reset</source>
-        <translation>Ponastavi</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -8477,7 +8686,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Show lines</source>
-        <translation>Prikaži črte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Distance between two lines on a standard 5-line staff</source>
@@ -8492,27 +8701,27 @@ please choose a different name:</source>
     <name>PageSettingsBase</name>
     <message>
         <source>MuseScore: Page Settings</source>
-        <translation>MuseScore: Nastavitve strani</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Page Size</source>
-        <translation>Velikost strani</translation>
+        <translation>Maint Tudalen</translation>
     </message>
     <message>
         <source>Landscape</source>
-        <translation>Ležeče</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Height:</source>
-        <translation type="unfinished"/>
+        <translation>Uchder:</translation>
     </message>
     <message>
         <source>Width:</source>
-        <translation>Debelina:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Scaling</source>
-        <translation>Povečava</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>mm</source>
@@ -8520,7 +8729,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>inch</source>
-        <translation>inč</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Printable Area</source>
@@ -8528,31 +8737,31 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Odd Page Margins</source>
-        <translation>Lihe strani</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Even Page Margins</source>
-        <translation>Sode strani</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Preview</source>
-        <translation>Predogled</translation>
+        <translation>Rhagolwg</translation>
     </message>
     <message>
         <source>Apply</source>
-        <translation>Uveljavi</translation>
+        <translation>Gwneud cais</translation>
     </message>
     <message>
         <source>OK</source>
-        <translation>V redu</translation>
+        <translation>Iawn</translation>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Prekliči</translation>
+        <translation>dileu</translation>
     </message>
     <message>
         <source>Two sided</source>
-        <translation>Dvostransko</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>First page number:</source>
@@ -8560,7 +8769,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Apply to all Parts</source>
-        <translation>Uporabi za vse parte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Distance between two lines on a standard 5-line staff</source>
@@ -8575,31 +8784,31 @@ please choose a different name:</source>
     <name>Palette</name>
     <message>
         <source>Beam Properties</source>
-        <translation>Prečke vratov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Dynamics</source>
-        <translation>Dinamika</translation>
+        <translation>Dynameg</translation>
     </message>
     <message>
         <source>Key Signatures</source>
-        <translation>Tonalitete</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Accidentals</source>
-        <translation>Predznaki</translation>
+        <translation>Anhapon</translation>
     </message>
     <message>
         <source>Barlines</source>
-        <translation>Taktnice</translation>
+        <translation>Llinellau bar</translation>
     </message>
     <message>
         <source>Breaks && Spacers</source>
-        <translation>Prelomi in razmiki</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Fingering</source>
-        <translation>Prstni red</translation>
+        <translation>Byseddu</translation>
     </message>
     <message>
         <source>Tremolo</source>
@@ -8607,27 +8816,27 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Note Heads</source>
-        <translation>Notne glavice</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Brackets</source>
-        <translation>Prečke sistema</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Breaths && Pauses</source>
-        <translation>Dihi in cezure</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Clefs</source>
-        <translation>Ključi</translation>
+        <translation>Cleffiau</translation>
     </message>
     <message>
         <source>Grace Notes</source>
-        <translation>Okrasne note</translation>
+        <translation>Nodiadau gras</translation>
     </message>
     <message>
         <source>Lines</source>
-        <translation>ÄŒrte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Diminuendo</source>
@@ -8655,27 +8864,27 @@ please choose a different name:</source>
     </message>
     <message>
         <source>8vb</source>
-        <translation>8vb</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>15ma</source>
-        <translation>15ma</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>15mb</source>
-        <translation>15mb</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>22ma</source>
-        <translation>22ma</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>22mb</source>
-        <translation>22mb</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Pedal</source>
-        <translation type="unfinished"/>
+        <translation>Pedal</translation>
     </message>
     <message>
         <source>Text line</source>
@@ -8683,7 +8892,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Line</source>
-        <translation>ÄŒrta</translation>
+        <translation>Llinell</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -8691,11 +8900,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Text</source>
-        <translation>Besedilo</translation>
+        <translation>Testyn</translation>
     </message>
     <message>
         <source>Time Signatures</source>
-        <translation>Taktovski načini</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Staff Changes</source>
@@ -8703,19 +8912,19 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Arpeggios && Glissandi</source>
-        <translation>KotHarfa in ZvočniZdrs</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Bagpipe Embellishments</source>
-        <translation>Glasbeni okraski</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Frames && Measures</source>
-        <translation>Okvirji in takti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Articulations && Ornaments</source>
-        <translation>Artikulacije in okraski</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Ambitus</source>
@@ -8757,7 +8966,7 @@ failed: </source>
     </message>
     <message>
         <source>Repeats && Jumps</source>
-        <translation>Ponavljanja</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Normal barline</source>
@@ -8793,7 +9002,7 @@ failed: </source>
     </message>
     <message>
         <source>Fretboard Diagrams</source>
-        <translation>Slike prijemov</translation>
+        <translation>Bwrddcribell Diagramau</translation>
     </message>
 </context>
 <context>
@@ -8804,11 +9013,11 @@ failed: </source>
     </message>
     <message>
         <source>Palette Cell Properties</source>
-        <translation>Lastnosti celice palete</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Name:</source>
-        <translation>Ime:</translation>
+        <translation>Enw</translation>
     </message>
     <message>
         <source>sp</source>
@@ -8839,11 +9048,11 @@ failed: </source>
     <name>PaletteProperties</name>
     <message>
         <source>MuseScore: Palette Properties</source>
-        <translation>MuseScore: Lastnosti palete</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Name:</source>
-        <translation>Ime:</translation>
+        <translation>Enw</translation>
     </message>
     <message>
         <source>sp</source>
@@ -8851,27 +9060,27 @@ failed: </source>
     </message>
     <message>
         <source>Scale:</source>
-        <translation>Povečava:</translation>
+        <translation>Graddfa:</translation>
     </message>
     <message>
         <source>Width:</source>
-        <translation>Debelina:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Height:</source>
-        <translation type="unfinished"/>
+        <translation>Uchder:</translation>
     </message>
     <message>
         <source>Cell size:</source>
-        <translation>Velikost celice:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Element offset:</source>
-        <translation>Odmik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show grid</source>
-        <translation>Prikaži mrežo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show 'More Elements...'</source>
@@ -8882,51 +9091,51 @@ failed: </source>
     <name>PartEditBase</name>
     <message>
         <source>Volume</source>
-        <translation>Glasnost</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Reverb</source>
-        <translation type="unfinished"/>
+        <translation>adleisio</translation>
     </message>
     <message>
         <source>Chorus</source>
-        <translation>Odmev</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Vol</source>
-        <translation>Vol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Pan</source>
-        <translation>Pan</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Rev</source>
-        <translation>Rev</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Cho</source>
-        <translation>Cho</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Mute</source>
-        <translation>Utišaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Solo</source>
-        <translation>Solo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Drumset</source>
-        <translation>Tolkala</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Sound:</source>
-        <translation>Zvok:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MIDI sound for part</source>
-        <translation>MIDI zvok za part</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Part name</source>
@@ -8942,7 +9151,7 @@ failed: </source>
     </message>
     <message>
         <source>Part Name</source>
-        <translation>Ime parta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Use arrows to modify</source>
@@ -8950,7 +9159,7 @@ failed: </source>
     </message>
     <message>
         <source>Sound</source>
-        <translation>Zvok</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -8961,11 +9170,11 @@ failed: </source>
     </message>
     <message>
         <source>Delete</source>
-        <translation>Izbriši</translation>
+        <translation>Dileu</translation>
     </message>
     <message>
         <source>Add</source>
-        <translation>Dodaj</translation>
+        <translation>Ategu</translation>
     </message>
 </context>
 <context>
@@ -9004,7 +9213,7 @@ failed: </source>
     </message>
     <message>
         <source>Pitch:</source>
-        <translation>Višina</translation>
+        <translation>Cywair</translation>
     </message>
     <message>
         <source>OnTime:</source>
@@ -9016,26 +9225,26 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore: <%1> Staff: %2</source>
-        <translation>MuseScore: <%1> Notno črtovje: %2</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>PlayPanelBase</name>
     <message>
         <source>MuseScore: Play Panel</source>
-        <translation>MuseScore: Predvajalna plošča</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>001.01</source>
-        <translation>001.01</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>h:mm:s</source>
-        <translation>h:mm:s</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>0:00:00</source>
-        <translation>0:00:00</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Relative tempo</source>
@@ -9043,12 +9252,12 @@ failed: </source>
     </message>
     <message>
         <source>Master volume</source>
-        <translation>Glavna glasnost</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Volume</source>
         <extracomment>short text for volume slider</extracomment>
-        <translation>Glasnost</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Actual tempo</source>
@@ -9065,11 +9274,11 @@ failed: </source>
     </message>
     <message>
         <source>Measure.Beat</source>
-        <translation>takt.doba</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Playback Position</source>
-        <translation>Položaj predvajanja</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Relative Tempo to 120 beats per minute</source>
@@ -9081,7 +9290,7 @@ failed: </source>
     </message>
     <message>
         <source>Master Volume</source>
-        <translation>Glavna Glasnost</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Relative tempo to 120 beats per minute</source>
@@ -9104,7 +9313,7 @@ failed: </source>
     </message>
     <message>
         <source>Help</source>
-        <translation type="unfinished"/>
+        <translation>Cymorth</translation>
     </message>
     <message>
         <source>Edit</source>
@@ -9112,27 +9321,27 @@ failed: </source>
     </message>
     <message>
         <source>New</source>
-        <translation>Novo</translation>
+        <translation>Newydd</translation>
     </message>
     <message>
         <source>Open</source>
-        <translation>Odpri ...</translation>
+        <translation>Agor</translation>
     </message>
     <message>
         <source>Save</source>
-        <translation>Shrani</translation>
+        <translation>Cadw </translation>
     </message>
     <message>
         <source>Manual</source>
-        <translation>ne najdem datoteke</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Undo</source>
-        <translation>Razveljavi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Redo</source>
-        <translation>Uveljavi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>R</source>
@@ -9140,18 +9349,18 @@ failed: </source>
     </message>
     <message>
         <source>Reload current plugin source</source>
-        <translation>Znova naloži trenutni vir za vtičnik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Close Plugin Creator</source>
-        <translation>Zapri Ustvarjalca vtičnika</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>PluginManager</name>
     <message>
         <source>Plugin Manager</source>
-        <translation>Upravljalec vtičnika</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Define Shortcut</source>
@@ -9167,11 +9376,11 @@ failed: </source>
     </message>
     <message>
         <source>Name:</source>
-        <translation>Ime:</translation>
+        <translation>Enw</translation>
     </message>
     <message>
         <source>Shortcut:</source>
-        <translation>Bližnjica:</translation>
+        <translation>llwybr byr</translation>
     </message>
     <message>
         <source>Clear Shortcut</source>
@@ -9182,35 +9391,35 @@ failed: </source>
     <name>PrefsDialogBase</name>
     <message>
         <source>MuseScore: Preferences</source>
-        <translation>MuseScore: Nastavitve</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore Preferences</source>
-        <translation>MuseScore nastavitve</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Reset All Preferences to Default</source>
-        <translation>Obnovi privzete nastavitve</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>General</source>
-        <translation>Splošno</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Language</source>
-        <translation>Jezik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Program Start</source>
-        <translation>Zagon programa</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Auto Save</source>
-        <translation>Samodejno shranjevanje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>minutes</source>
-        <translation>minut</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>OSC remote control</source>
@@ -9218,7 +9427,7 @@ failed: </source>
     </message>
     <message>
         <source>Style</source>
-        <translation>Slog</translation>
+        <translation>Arddull</translation>
     </message>
     <message>
         <source>Icon size:</source>
@@ -9230,19 +9439,19 @@ failed: </source>
     </message>
     <message>
         <source>Canvas</source>
-        <translation>Platno</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Background</source>
-        <translation>Ozadje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Wallpaper</source>
-        <translation>Tapeta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Color</source>
-        <translation>Barva</translation>
+        <translation>Lliw</translation>
     </message>
     <message>
         <source>Paper</source>
@@ -9254,35 +9463,35 @@ failed: </source>
     </message>
     <message>
         <source>Enable MIDI input</source>
-        <translation>Omogoči MIDI</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Play notes when editing</source>
-        <translation>Zaigraj vstavljeno noto</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>ms</source>
-        <translation>ms</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Color notes outside of usable pitch range</source>
-        <translation>Pobarvaj note izven uporabnega obsega inštrumenta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>16th note</source>
-        <translation>16-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>32nd note</source>
-        <translation>32-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Clear</source>
-        <translation>Počisti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Score</source>
-        <translation>Skladba</translation>
+        <translation>Sgôr</translation>
     </message>
     <message>
         <source>View</source>
@@ -9294,15 +9503,15 @@ failed: </source>
     </message>
     <message>
         <source>Default Files</source>
-        <translation>Privzete datoteke</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Style:</source>
-        <translation>Slog.</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>I/O</source>
-        <translation>V/I</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Use JACK MIDI</source>
@@ -9310,7 +9519,7 @@ failed: </source>
     </message>
     <message>
         <source>Remember last connection(s)</source>
-        <translation>Zapomni si zadnje povezave</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>PulseAudio</source>
@@ -9326,99 +9535,99 @@ failed: </source>
     </message>
     <message>
         <source>Device:</source>
-        <translation>Naprava:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>default</source>
-        <translation>Privzeto</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>192000</source>
-        <translation>192000</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>96000</source>
-        <translation>96000</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>88200</source>
-        <translation>88200</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>48000</source>
-        <translation>48000</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>44100</source>
-        <translation>44100</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>32000</source>
-        <translation>32000</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>22050</source>
-        <translation>22050</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Fragments:</source>
-        <translation>Å t. fragmentov:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Period Size:</source>
-        <translation>Dolžina okna:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>4096</source>
-        <translation>4096</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>2048</source>
-        <translation>2048</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>1024</source>
-        <translation>1024</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>512</source>
-        <translation>512</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>256</source>
-        <translation>256</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>128</source>
-        <translation>128</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>64</source>
-        <translation>64</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Attention: Any changes on this page require a restart of MuseScore.</source>
-        <translation>Pozor: Vsakršna sprememba na tej strani zahteva ponovni zagon MuseScore.</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Import</source>
-        <translation>Uvoz</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Style Used for Import</source>
-        <translation>Slog uporabljen za uvoz</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Built in style</source>
-        <translation>Vgrajen slog</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Use style file:</source>
-        <translation>Uporabi datoteko s slogom:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Browse...</source>
-        <translation>...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Overture import character set:</source>
@@ -9446,27 +9655,27 @@ failed: </source>
     </message>
     <message>
         <source>Quarter</source>
-        <translation>ÄŒetrtinka</translation>
+        <translation>Chwarter</translation>
     </message>
     <message>
         <source>Eighth</source>
-        <translation>Osmikna</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>16th</source>
-        <translation>16-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>32nd</source>
-        <translation>32-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>64th</source>
-        <translation>64-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Export</source>
-        <translation>Izvoz</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>PNG/SVG</source>
@@ -9474,7 +9683,7 @@ failed: </source>
     </message>
     <message>
         <source>Transparent background</source>
-        <translation>Prosojno ozadje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Expand repeats</source>
@@ -9502,71 +9711,71 @@ failed: </source>
     </message>
     <message>
         <source>Shortcuts</source>
-        <translation>Bližnjice</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Action</source>
-        <translation>Akcija</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Shortcut</source>
-        <translation>Bližnjica</translation>
+        <translation>llwybr byr</translation>
     </message>
     <message>
         <source>Reset Shortcut to Default</source>
-        <translation>Obnovi privzete bližnjice</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Define...</source>
-        <translation>Izberi ...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Print</source>
-        <translation>Natisni</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Update</source>
-        <translation>Posodobitve</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Automatic Update Check</source>
-        <translation>Samodejno preverjanje posodobitev</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Start empty</source>
-        <translation>Začni s prazno skladbo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Continue last session</source>
-        <translation>Nadaljuj prejšnjo sejo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Start with new score</source>
-        <translation>Začni z novo skladbo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Start with score:</source>
-        <translation>Začni s skladbo:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show splash screen</source>
-        <translation>Prikaži uvodni zaslon</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Disable antialiased drawing</source>
-        <translation>Onemogoči mehčanje robov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Uncheck this to speed up drawing</source>
-        <translation>Izklopite to možnost za hitrejši izris</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Draw antialiased</source>
-        <translation>Mehčanje robov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Default duration:</source>
-        <translation>Privzeto trajane</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MIDI remote control</source>
@@ -9574,7 +9783,7 @@ failed: </source>
     </message>
     <message>
         <source>Rewind</source>
-        <translation>Previj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Toggle play</source>
@@ -9582,31 +9791,31 @@ failed: </source>
     </message>
     <message>
         <source>Whole note</source>
-        <translation>Celinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Half note</source>
-        <translation>Polovinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Quarter note</source>
-        <translation>ÄŒetrtinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Rest</source>
-        <translation>Pavza</translation>
+        <translation>Gorffwys</translation>
     </message>
     <message>
         <source>Augmentation dot</source>
-        <translation>Pika</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Tie</source>
-        <translation>Vezaj</translation>
+        <translation>Clwm</translation>
     </message>
     <message>
         <source>Play</source>
-        <translation>Zaigraj</translation>
+        <translation>Chwarae</translation>
     </message>
     <message>
         <source>Stop</source>
@@ -9630,7 +9839,7 @@ failed: </source>
     </message>
     <message>
         <source>Sample rate:</source>
-        <translation>Frekvenca vzorčenja:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>JACK audio server</source>
@@ -9646,19 +9855,19 @@ failed: </source>
     </message>
     <message>
         <source>Double augmentation dot</source>
-        <translation>Dvojna pika</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Save every:</source>
-        <translation>Shrani vsakih</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Proximity for selecting elements:</source>
-        <translation>Prag natančnosti za izbiro elementa</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Default zoom:</source>
-        <translation>Privzeti zum:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Resolution DPI:</source>
@@ -9687,7 +9896,7 @@ failed: </source>
     </message>
     <message>
         <source>Apply</source>
-        <translation>Uveljavi</translation>
+        <translation>Gwneud cais</translation>
     </message>
     <message>
         <source>Preferences Tab Manager</source>
@@ -9703,7 +9912,7 @@ failed: </source>
     </message>
     <message>
         <source>The language will be changed once you restart MuseScore.</source>
-        <translation>Srememba jezika bo vidna po vnovičnem zagonu MuseScore.</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Start with score</source>
@@ -9783,15 +9992,15 @@ failed: </source>
     </message>
     <message>
         <source>Plugin folder</source>
-        <translation>Mapa za vtičnik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Insert path to plugin folder</source>
-        <translation>Vstavi pot do mape za vtičnik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Choose plugin folder</source>
-        <translation>Izberi mapo za vtičnik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Opens a folder dialog for selecting the plugin folder</source>
@@ -9823,23 +10032,23 @@ failed: </source>
     </message>
     <message>
         <source>Background Wallpaper</source>
-        <translation>Tapeta za ozadje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Background Color</source>
-        <translation>Barva ozadja</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Background wallpaper path</source>
-        <translation>Pot do tapete za ozadje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Insert path to background wallpaper file</source>
-        <translation>Vnesi pot do datoteke za ozadje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Choose Background wallpaper file</source>
-        <translation>Izberi datoteko za tapeto za ozadje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Opens a file dialog for selecting the wallpaper file</source>
@@ -9847,11 +10056,11 @@ failed: </source>
     </message>
     <message>
         <source>Select background color</source>
-        <translation>Izberi barvo ozadja</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Opens a dialog for selecting the background color</source>
-        <translation>Odpre pogovorno okno za izbor barve ozadja</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Paper wallpaper path</source>
@@ -9883,11 +10092,11 @@ failed: </source>
     </message>
     <message>
         <source>Enable MIDI Input</source>
-        <translation>Omogoči MIDI</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Default duration</source>
-        <translation>Privzeto trajane</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Rewind is active</source>
@@ -9987,7 +10196,7 @@ failed: </source>
     </message>
     <message>
         <source>Default zoom</source>
-        <translation>Privzeti zum</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Choose Instrument list 1</source>
@@ -10059,7 +10268,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI Input</source>
-        <translation type="unfinished"/>
+        <translation>Mewnbwn MIDI</translation>
     </message>
     <message>
         <source>Choose MIDI Input</source>
@@ -10155,7 +10364,7 @@ failed: </source>
     </message>
     <message>
         <source>Reset Shortcut to default</source>
-        <translation>Obnovi privzete bližnjice</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Define</source>
@@ -10167,7 +10376,7 @@ failed: </source>
     </message>
     <message>
         <source>Eighth note</source>
-        <translation>Osminka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Quarter note is active</source>
@@ -10187,7 +10396,7 @@ failed: </source>
     </message>
     <message>
         <source>64th note</source>
-        <translation>64-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>64th note is active</source>
@@ -10219,7 +10428,7 @@ failed: </source>
     </message>
     <message>
         <source>Update translations</source>
-        <translation>Posodobi prevod</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Dark</source>
@@ -10239,7 +10448,7 @@ failed: </source>
     </message>
     <message>
         <source>Record</source>
-        <translation>snemaj</translation>
+        <translation>Record</translation>
     </message>
     <message>
         <source>Default scale for new score views</source>
@@ -10275,11 +10484,11 @@ failed: </source>
     </message>
     <message>
         <source>Undo</source>
-        <translation>Razveljavi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Play whole chord when adding note</source>
-        <translation>Zaigraj celotni akord, kadar se dodaja nota</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>SoundFont folders</source>
@@ -10299,7 +10508,7 @@ failed: </source>
     </message>
     <message>
         <source>Note Input</source>
-        <translation>Vnos not</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Note input</source>
@@ -10335,7 +10544,7 @@ failed: </source>
     </message>
     <message>
         <source>Plugins:</source>
-        <translation>Vtičniki:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>SoundFonts:</source>
@@ -10343,12 +10552,20 @@ failed: </source>
     </message>
     <message>
         <source>Check for new version of MuseScore</source>
-        <translation>Preveri za MuseScore posodobitvami</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10395,7 +10612,7 @@ Please select a single note or rest and retry operation
     <name>QObject</name>
     <message>
         <source>Standard</source>
-        <translation type="unfinished"/>
+        <translation>Safonol</translation>
     </message>
     <message>
         <source>Perc. 3 lines</source>
@@ -10463,7 +10680,7 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Load Error</source>
-        <translation>MuseScore: Napaka pri odpiranju</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Internal error: MusicXML schema is invalid
@@ -10505,7 +10722,7 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>Custom</source>
-        <translation type="unfinished"/>
+        <translation>Arfer</translation>
     </message>
     <message>
         <source>Long</source>
@@ -10513,39 +10730,39 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>Breve</source>
-        <translation type="unfinished"/>
+        <translation>Brîf</translation>
     </message>
     <message>
         <source>Whole</source>
-        <translation type="unfinished"/>
+        <translation>Cyfan</translation>
     </message>
     <message>
         <source>Half</source>
-        <translation type="unfinished"/>
+        <translation>Hanner</translation>
     </message>
     <message>
         <source>Quarter</source>
-        <translation>ÄŒetrtinka</translation>
+        <translation>Chwarter</translation>
     </message>
     <message>
         <source>Eighth</source>
-        <translation>Osmikna</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>16th</source>
-        <translation>16-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>32nd</source>
-        <translation>32-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>64th</source>
-        <translation>64-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>128th</source>
-        <translation>128-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>256th</source>
@@ -10565,7 +10782,7 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>Measure</source>
-        <translation>Takt</translation>
+        <translation>Mesur</translation>
     </message>
     <message>
         <source>Invalid</source>
@@ -10573,25 +10790,24 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>double flat</source>
-        <translation>Dvojni nižaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>flat</source>
-        <translation>Nižaj</translation>
+        <translation>Fflat</translation>
     </message>
     <message>
         <source>sharp</source>
-        <translation>Višaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>double sharp</source>
-        <translation>Dvojni višaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Internal error: Could not open resource musicxml.xsd
 </source>
-        <translation>Notranja napaka: ne morem odpreti musicxml.xsd
-</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Tab. balalaika</source>
@@ -10658,19 +10874,19 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     <name>QWidget</name>
     <message>
         <source>MuseScore: Save Album into Score</source>
-        <translation>MuseScore: Shrani album v notno črtovje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Save File</source>
-        <translation>MuseScore: Shrani datoteko</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Quit</source>
-        <translation>Izhod</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Save Album</source>
-        <translation>MuseScore: Shrani Album</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Write Album failed: </source>
@@ -10678,15 +10894,15 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Write Album</source>
-        <translation>MuseScore: Napiši Album</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Untitled</source>
-        <translation>Brez naslova</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Import Capella</source>
-        <translation>MuseScore: Capella uvoz</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Load failed: </source>
@@ -10694,27 +10910,27 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Import Guitar Pro</source>
-        <translation>MuseScore: Uvozi Guitar Pro</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Load MIDI</source>
-        <translation>MuseScore: naloži midi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Load Style Failed</source>
-        <translation>MuseScore: Odpiranje sloga ni uspelo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Load Languages Failed:</source>
-        <translation>MuseScore: Odpiranje jezika ni uspelo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Invalid Command</source>
-        <translation>MuseScore: neveljaven ukaz</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore: Open Album failed</source>
-        <translation>MuseScore: Odpiranje albuma ni uspelo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Open Album File
@@ -10724,15 +10940,15 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore: Open Album File</source>
-        <translation>MuseScore: Odpri album</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore File (*.mscz)</source>
-        <translation>MuseScore datoteka (*.mscz)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MuseScore Files (*.album)</source>
-        <translation>MuseScore datoteke (*.album)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Overwrite?</source>
@@ -10764,61 +10980,61 @@ Do you want to overwrite it?</source>
     <name>RecordButton</name>
     <message>
         <source>Record</source>
-        <translation>snemaj</translation>
+        <translation>Record</translation>
     </message>
 </context>
 <context>
     <name>Resource</name>
     <message>
         <source>MuseScore Resources</source>
-        <translation>MuseScore: Viri</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Tab 1</source>
-        <translation type="unfinished"/>
+        <translation>Tab 1</translation>
     </message>
     <message>
         <source>Language</source>
-        <translation>Jezik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Filename</source>
-        <translation>Ime datoteke</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>File Size</source>
-        <translation>Velikost datoteke</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Install/Update</source>
-        <translation>Namesti/Posodobi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Tab 2</source>
-        <translation type="unfinished"/>
+        <translation>Tab 2</translation>
     </message>
 </context>
 <context>
     <name>ScorePreview</name>
     <message>
         <source>Form</source>
-        <translation>Form</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Size:</source>
-        <translation>Velikost:</translation>
+        <translation>Maint</translation>
     </message>
     <message>
         <source>Created: </source>
-        <translation>Ustvarjeno:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Name:</source>
-        <translation>Ime:</translation>
+        <translation>Enw</translation>
     </message>
     <message>
         <source>Nothing selected</source>
-        <translation>Nič ni izbrano</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -10848,11 +11064,11 @@ Do you want to overwrite it?</source>
     <name>SelectDialog</name>
     <message>
         <source>MuseScore: Select</source>
-        <translation>MuseScore: Izbor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Action</source>
-        <translation>Akcija</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Select</source>
@@ -10884,7 +11100,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Add to selection</source>
-        <translation>Dodaj v izbor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Search in selection</source>
@@ -10903,7 +11119,7 @@ Do you want to overwrite it?</source>
     <name>SelectInstrument</name>
     <message>
         <source>MuseScore: Select Instrument</source>
-        <translation>MuseScore: Izberi glasbilo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>0</source>
@@ -10915,7 +11131,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Clear</source>
-        <translation>Počisti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Current instrument:</source>
@@ -10944,7 +11160,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>New shortcut:</source>
-        <translation>Nova bližnjica:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Type to set shortcut</source>
@@ -10953,11 +11169,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Clear</source>
-        <translation>Počisti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add</source>
-        <translation>Dodaj</translation>
+        <translation>Ategu</translation>
     </message>
     <message>
         <source>Replace</source>
@@ -10965,7 +11181,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Prekliči</translation>
+        <translation>dileu</translation>
     </message>
     <message>
         <source>Enter Shortcut Sequence</source>
@@ -10992,11 +11208,11 @@ Do you want to overwrite it?</source>
     <name>SplitStaff</name>
     <message>
         <source>MuseScore: Edit Staff/Part Properties</source>
-        <translation>MuseScore: Lastnosti črtovja/dela</translation>
+        <translation>MuseScore: Golygu Staff/Rhauau Celfi</translation>
     </message>
     <message>
         <source>Split Staff</source>
-        <translation>Razdeli črtovje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Split point:</source>
@@ -11007,11 +11223,11 @@ Do you want to overwrite it?</source>
     <name>Staff type group name</name>
     <message>
         <source>Standard</source>
-        <translation type="unfinished"/>
+        <translation>Safonol</translation>
     </message>
     <message>
         <source>Percussion</source>
-        <translation type="unfinished"/>
+        <translation>Taro</translation>
     </message>
     <message>
         <source>Tablature</source>
@@ -11046,7 +11262,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Name</source>
-        <translation>Ime</translation>
+        <translation>Enw</translation>
     </message>
     <message>
         <source>Description</source>
@@ -11062,7 +11278,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>III</source>
-        <translation>III</translation>
+        <translation>3</translation>
     </message>
     <message>
         <source>Principal
@@ -11084,11 +11300,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>MIDI Action</source>
-        <translation>MIDI dogodek</translation>
+        <translation>Gweithred MIDI</translation>
     </message>
     <message>
         <source>Voice:</source>
-        <translation>Glas:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Swing Settings</source>
@@ -11096,11 +11312,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Swing:</source>
-        <translation type="unfinished"/>
+        <translation>Siglen</translation>
     </message>
     <message>
         <source>Off</source>
-        <translation type="unfinished"/>
+        <translation>Ddiffodd</translation>
     </message>
     <message>
         <source>Select swing ratio:</source>
@@ -11112,7 +11328,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Eighth note</source>
-        <translation>Osminka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Sixteenth note</source>
@@ -11142,7 +11358,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Create New Score</source>
-        <translation>Ustvari novo partituro</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Load Score</source>
@@ -11165,25 +11381,33 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Close</source>
-        <translation>Zapri</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>SymbolDialogBase</name>
     <message>
         <source>Font:</source>
-        <translation type="unfinished"/>
+        <translation>Ffont</translation>
     </message>
     <message>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
     <message>
         <source>Synthesizer</source>
-        <translation>Sintetizator</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Save to Score</source>
@@ -11195,7 +11419,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Vol</source>
-        <translation>Jakost</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Master Effects</source>
@@ -11216,7 +11440,7 @@ Do you want to overwrite it?</source>
     <message>
         <source>Hz</source>
         <extracomment>Frequency Herz</extracomment>
-        <translation>Hz</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Change Tuning</source>
@@ -11224,11 +11448,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Master volume</source>
-        <translation>Glavna glasnost</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Set as Default</source>
-        <translation>Nastavi kot privzeto</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Load Default</source>
@@ -11275,7 +11499,7 @@ Do you want to overwrite it?</source>
     <name>TextPaletteBase</name>
     <message>
         <source>MuseScore: Special Characters</source>
-        <translation>MuseScore: Posebni znaki</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Code Page:</source>
@@ -11287,30 +11511,30 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>All</source>
-        <translation>Vse</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>TextProperties</name>
     <message>
         <source>Style:</source>
-        <translation>Slog.</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Text</source>
-        <translation>Besedilo</translation>
+        <translation>Testyn</translation>
     </message>
     <message>
         <source>Font:</source>
-        <translation type="unfinished"/>
+        <translation>Ffont</translation>
     </message>
     <message>
         <source>Size:</source>
-        <translation>Velikost:</translation>
+        <translation>Maint</translation>
     </message>
     <message>
         <source>Color:</source>
-        <translation>Barva:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>System flag</source>
@@ -11360,11 +11584,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Background color:</source>
-        <translation>Barva ozadja:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Alignment</source>
-        <translation type="unfinished"/>
+        <translation>Aliniad</translation>
     </message>
     <message>
         <source>Reset to Style</source>
@@ -11392,15 +11616,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Italig</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Tanlinellu</translation>
     </message>
     <message>
         <source>Text color</source>
-        <translation>Barva besedila</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Horizontal offset to reference point</source>
@@ -11468,7 +11692,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Text background color</source>
-        <translation>Barva ozadja besedila</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Frame color</source>
@@ -11500,19 +11724,19 @@ Do you want to overwrite it?</source>
     <name>TextStyle</name>
     <message>
         <source>Title</source>
-        <translation>Naslov</translation>
+        <translation>Pennawd</translation>
     </message>
     <message>
         <source>Subtitle</source>
-        <translation>Podnaslov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Composer</source>
-        <translation>Skladatelj</translation>
+        <translation>Cyfansoddwr</translation>
     </message>
     <message>
         <source>Lyricist</source>
-        <translation>Besedilopisec</translation>
+        <translation>Telynegion</translation>
     </message>
     <message>
         <source>Lyrics Odd Lines</source>
@@ -11524,7 +11748,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Fingering</source>
-        <translation>Prstni red</translation>
+        <translation>Byseddu</translation>
     </message>
     <message>
         <source>Instrument Name (Long)</source>
@@ -11540,7 +11764,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Dynamics</source>
-        <translation>Dinamika</translation>
+        <translation>Dynameg</translation>
     </message>
     <message>
         <source>Technique</source>
@@ -11552,7 +11776,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Metronome</source>
-        <translation>Metronom</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Measure Number</source>
@@ -11564,23 +11788,23 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Ritmična posebnost</translation>
+        <translation>Tuplet</translation>
     </message>
     <message>
         <source>System</source>
-        <translation>Sistem</translation>
+        <translation>System</translation>
     </message>
     <message>
         <source>Staff</source>
-        <translation>ÄŒrtovje</translation>
+        <translation>Staff</translation>
     </message>
     <message>
         <source>Chord Symbol</source>
-        <translation>Simboli akordov</translation>
+        <translation>Simbol Tant</translation>
     </message>
     <message>
         <source>Rehearsal Mark</source>
-        <translation>Vadbene oznake</translation>
+        <translation>Marc Rihyrsal</translation>
     </message>
     <message>
         <source>Repeat Text Left</source>
@@ -11604,11 +11828,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Text Line</source>
-        <translation type="unfinished"/>
+        <translation>Llinell Testun</translation>
     </message>
     <message>
         <source>Glissando</source>
-        <translation>Glissando</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>String Number</source>
@@ -11620,7 +11844,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Bend</source>
-        <translation type="unfinished"/>
+        <translation>Cerddorfa</translation>
     </message>
     <message>
         <source>Header</source>
@@ -11632,11 +11856,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Instrument Change</source>
-        <translation type="unfinished"/>
+        <translation>Newid Offeryn</translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation type="unfinished"/>
+        <translation>Bas Rhifoledig</translation>
     </message>
     <message>
         <source>LH Guitar Fingering</source>
@@ -11648,32 +11872,32 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Pedal</source>
-        <translation type="unfinished"/>
+        <translation>Pedal</translation>
     </message>
 </context>
 <context>
     <name>TextStyleDialog</name>
     <message>
         <source>MuseScore: Edit Text Styles</source>
-        <translation>MuseScore: Slogi besedila</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>New</source>
-        <translation>Novo</translation>
+        <translation>Newydd</translation>
     </message>
 </context>
 <context>
     <name>Time signature editor</name>
     <message>
         <source>OK</source>
-        <translation>V redu</translation>
+        <translation>OK</translation>
     </message>
 </context>
 <context>
     <name>TimeDialogBase</name>
     <message>
         <source>Create Time Signature</source>
-        <translation>Ustvari taktovski način</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Value:</source>
@@ -11681,7 +11905,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>/</source>
-        <translation>/</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>1</source>
@@ -11697,31 +11921,31 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>8</source>
-        <translation>8</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>16</source>
-        <translation>16</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>32</source>
-        <translation>32</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>64</source>
-        <translation>64</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Text:</source>
-        <translation>Besedilo</translation>
+        <translation>Testun:</translation>
     </message>
     <message>
         <source>Add</source>
-        <translation>Dodaj</translation>
+        <translation>Ategu</translation>
     </message>
     <message>
         <source>Add time signature to palette</source>
-        <translation>Dodaj taktovski način v paleto</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -11732,11 +11956,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>/</source>
-        <translation>/</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Text:</source>
-        <translation>Besedilo</translation>
+        <translation>Testun:</translation>
     </message>
     <message>
         <source>Note Groups</source>
@@ -11748,11 +11972,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Appearance</source>
-        <translation type="unfinished"/>
+        <translation>Ymddangosiadau</translation>
     </message>
     <message>
         <source>Other:</source>
-        <translation>Drugo:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Global value:</source>
@@ -11767,11 +11991,11 @@ Do you want to overwrite it?</source>
     <name>TimesigWizard</name>
     <message>
         <source>Enter Time Signature:</source>
-        <translation>Določi taktovski način:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>/</source>
-        <translation>/</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>1</source>
@@ -11787,23 +12011,23 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>8</source>
-        <translation>8</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>16</source>
-        <translation>16</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>32</source>
-        <translation>32</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>64</source>
-        <translation>64</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Pickup Measure</source>
-        <translation>Predtakt</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Duration:</source>
@@ -11811,11 +12035,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Enter Number of Measures:</source>
-        <translation>Določi število taktov:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Measures:</source>
-        <translation>Takti:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Cut time</source>
@@ -11843,7 +12067,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Measures</source>
-        <translation>Takti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Cut Time</source>
@@ -11862,143 +12086,143 @@ Do you want to overwrite it?</source>
     <name>TransposeDialogBase</name>
     <message>
         <source>MuseScore: Transpose</source>
-        <translation>MuseScore: Transpozicija</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>F major / D minor</source>
-        <translation>F-dur / d-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>C major / A minor</source>
-        <translation>C-dur / a-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>G major / E minor</source>
-        <translation>G-dur / e-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>D major / B minor</source>
-        <translation>D-dur / h-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Dol</translation>
+        <translation>i lawr</translation>
     </message>
     <message>
         <source>Closest</source>
-        <translation>Najbliže</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Perfect Unison</source>
-        <translation>ÄŒista prima</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Augmented Unison</source>
-        <translation>Zvečana prima</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Diminished Second</source>
-        <translation>Zmanjšana sekunda</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Minor Second</source>
-        <translation>Mala sekunda</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Major Second</source>
-        <translation>Velika sekunda</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Augmented Second</source>
-        <translation>Zvečana sekunda</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Diminished Third</source>
-        <translation>Zmanjšana terca</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Minor Third</source>
-        <translation>Mala terca</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Major Third</source>
-        <translation>Velika Terca</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Augmented Third</source>
-        <translation>Zvečana kvarta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Diminished Fourth</source>
-        <translation>Zmanjšana kvarta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Perfect Fourth</source>
-        <translation>ÄŒista kvarta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Augmented Fourth</source>
-        <translation>Zvečana kvarta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Diminished Fifth</source>
-        <translation>Zmanjšana kvinta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Perfect Fifth</source>
-        <translation>ÄŒista kvinta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Augmented Fifth</source>
-        <translation>Zvečana kvinta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Diminished Sixth</source>
-        <translation>Zmanjšana seksta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Minor Sixth</source>
-        <translation>Mala seksta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Major Sixth</source>
-        <translation>Velika seksta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Augmented Sixth</source>
-        <translation>Zvečana seksta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Diminished Seventh</source>
-        <translation>Zmanjšana septima</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Minor Seventh</source>
-        <translation>Mala septima</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Major Seventh</source>
-        <translation>Velika septima</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Augmented Seventh</source>
-        <translation>Zvečana septima</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Diminished Octave</source>
-        <translation>Zmanjšana oktava</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Perfect Octave</source>
-        <translation>ÄŒista oktava</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Transpose key signatures</source>
-        <translation>Tranponiraj predznake</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Second</source>
@@ -12030,55 +12254,55 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Options</source>
-        <translation>Možnosti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Transpose chord symbols</source>
-        <translation>Transponiraj simbole akordov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Câ™­ major / Aâ™­ minor</source>
-        <translation>Ces-dur / as-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Gâ™­ major / Eâ™­ minor</source>
-        <translation>Ges-dur / es-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Dâ™­ major / Bâ™­ minor</source>
-        <translation>Des-dur / b-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Aâ™­ major / F minor</source>
-        <translation>As-dur / f-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Eâ™­ major / C minor</source>
-        <translation> Es-dur / c-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Bâ™­ major / G minor</source>
-        <translation> B-dur / g-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>A major / F♯ minor</source>
-        <translation>A-dur / fis-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>E major / C♯ minor</source>
-        <translation>E-dur / cis-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>B major / G♯ minor</source>
-        <translation> H-dur / gis-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>F♯ major / D♯ minor</source>
-        <translation>Fis-dur / dis-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>C♯ major / A♯ minor</source>
-        <translation>Cis-dur / ais-mol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Single Sharps and Flats Only</source>
@@ -12090,7 +12314,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Transpose Chromatically</source>
-        <translation>Transponiraj kromatično</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>By Key</source>
@@ -12102,7 +12326,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Transpose Diatonically</source>
-        <translation>Transponiraj diatonično</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -12144,11 +12368,11 @@ Do you want to overwrite it?</source>
     <name>TremoloBarDialog</name>
     <message>
         <source>Bend type:</source>
-        <translation type="unfinished"/>
+        <translation>Math cerddorfa</translation>
     </message>
     <message>
         <source>Click to add or remove some points</source>
-        <translation type="unfinished"/>
+        <translation>Clic i symud neu dileu pwint</translation>
     </message>
     <message>
         <source>Dip</source>
@@ -12183,34 +12407,34 @@ Do you want to overwrite it?</source>
     <name>TupletBase</name>
     <message>
         <source>Tuplet</source>
-        <translation>Ritmična posebnost</translation>
+        <translation>Tuplet</translation>
     </message>
 </context>
 <context>
     <name>TupletDialog</name>
     <message>
         <source>MuseScore: Create Tuplet</source>
-        <translation>MuseScore: Ustvari ritmično posebnost</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Type</source>
-        <translation>Tip</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>/</source>
-        <translation>/</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Format</source>
-        <translation>Zapis</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Number</source>
-        <translation>Å tevilka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Bracket</source>
-        <translation>prečka</translation>
+        <translation>Braced</translation>
     </message>
     <message>
         <source>Relation:</source>
@@ -12218,15 +12442,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Relation</source>
-        <translation>razmerje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Nothing</source>
-        <translation>prazno</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Auto bracket</source>
-        <translation>samodejno</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -12253,7 +12477,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Title</source>
-        <translation>Naslov</translation>
+        <translation>Pennawd</translation>
     </message>
     <message>
         <source>Description</source>
@@ -12269,7 +12493,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Update the existing score </source>
-        <translation>Posodobi obstoječo partituro</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Make this score private</source>
@@ -12284,26 +12508,24 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Text:</source>
-        <translation>Besedilo</translation>
+        <translation>Testun:</translation>
     </message>
     <message>
         <source>Repeat list:</source>
-        <translation>Seznam ponavljanj:</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
     <name>Workspace</name>
     <message>
         <source>MuseScore: Writing Workspace File</source>
-        <translation>MuseScore: zapisujem datoteko delovnega prostora</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Writing Workspace File
 %1
 failed: </source>
-        <translation>Zapisovanje datoteke delovnega prostora
-%1
-ni bilo uspešno:</translation>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -12401,11 +12623,11 @@ ni bilo uspešno:</translation>
     <name>ZerberusGui</name>
     <message>
         <source>Delete</source>
-        <translation>Izbriši</translation>
+        <translation>Dileu</translation>
     </message>
     <message>
         <source>Add</source>
-        <translation>Dodaj</translation>
+        <translation>Ategu</translation>
     </message>
     <message>
         <source>MuseScore</source>
@@ -12413,38 +12635,38 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>SoundFont %1 already loaded</source>
-        <translation>SoundFont %1 je že naložen</translation>
+        <translation>FfontSain %1 eisoes lwythog</translation>
     </message>
     <message>
         <source>Cannot load SoundFont %1</source>
-        <translation>Ne morem naložiti SoundFont %1</translation>
+        <translation>Methu agor Sain ffont %1</translation>
     </message>
 </context>
 <context>
     <name>accidental</name>
     <message>
         <source>None</source>
-        <translation>brez</translation>
+        <translation>Dim</translation>
     </message>
     <message>
         <source>Sharp</source>
-        <translation>Višaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Flat</source>
-        <translation>Nižaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Double sharp</source>
-        <translation>Dvojni višaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Double flat</source>
-        <translation>Dvojni nižaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Natural</source>
-        <translation>Razvezaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Flat-slash</source>
@@ -12535,43 +12757,43 @@ ni bilo uspešno:</translation>
     <name>action</name>
     <message>
         <source>Local Handbook...</source>
-        <translation>Priročnik...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Local handbook</source>
-        <translation>Priročnik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show local handbook</source>
-        <translation>Prikaži priročnik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Open...</source>
-        <translation>Odpri ...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Load score from file</source>
-        <translation>Naloži skladbo iz datoteke</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Save</source>
-        <translation>Shrani</translation>
+        <translation>Cadw </translation>
     </message>
     <message>
         <source>Save score to file</source>
-        <translation>Shrani skladbo v datoteko</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Save As...</source>
-        <translation>Shrani kot ...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Save score under a new file name</source>
-        <translation>Shrani skladbo v novo datoteko</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Save Selection...</source>
-        <translation>Shrani izbor...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Save current selection as new score</source>
@@ -12579,15 +12801,15 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Save a Copy...</source>
-        <translation>Shrani kopijo ...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Save a copy of the score in addition to the current file</source>
-        <translation>Shrani kopijo skladbe poleg trenutne datoteke</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Export...</source>
-        <translation>Izvozi...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Export score</source>
@@ -12599,7 +12821,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Export Parts...</source>
-        <translation>Izvozi parte...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Save a copy of the score's parts in various formats</source>
@@ -12607,207 +12829,207 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Close</source>
-        <translation>Zapri</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Close current score</source>
-        <translation>Zapri trenutno skladbo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>New...</source>
-        <translation>Nova skladba ...</translation>
+        <translation>Newydd</translation>
     </message>
     <message>
         <source>Create new score</source>
-        <translation>Ustvari novo skladbo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Print...</source>
-        <translation>Natisni ...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Print</source>
-        <translation>Natisni</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Print score</source>
-        <translation>Natisni skladbo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Undo</source>
-        <translation>Razveljavi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Undo last change</source>
-        <translation>Razveljavi zadnjo spremembo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Redo</source>
-        <translation>Uveljavi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Redo last undo</source>
-        <translation>Uveljavi zadnjo razveljavitev</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Cut</source>
-        <translation>Izreži</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Copy</source>
-        <translation>Kopiraj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Paste</source>
-        <translation>Prilepi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Instruments...</source>
-        <translation>Glasb&ila...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show instruments dialog</source>
-        <translation>Prikaži okno z glasbili</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Note Input</source>
-        <translation>Vnos not</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Unison Above</source>
-        <translation>Prima gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter unison above</source>
-        <translation>Vnesi primo gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Second Above</source>
-        <translation>Sekunda gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter second above</source>
-        <translation>Vnesi sekundo gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Third Above</source>
-        <translation>Terca gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter third above</source>
-        <translation>Vnesi terco gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Fourth Above</source>
-        <translation>Kvarta gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter fourth above</source>
-        <translation>Vnesi kvarto gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Fifth Above</source>
-        <translation>Kvinta gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter fifth above</source>
-        <translation>Vnesi kvinto gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Sixth Above</source>
-        <translation>Seksta gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter sixth above</source>
-        <translation>Vnesi seksto gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Seventh Above</source>
-        <translation>Septima gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter seventh above</source>
-        <translation>Vnesi septimo gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Octave Above</source>
-        <translation>Oktava gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter octave above</source>
-        <translation>Vnesi oktavo gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Ninth Above</source>
-        <translation>Nona gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter ninth above</source>
-        <translation>Vnesi nono gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Second Below</source>
-        <translation>Sekunda dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter second below</source>
-        <translation>Vnesi sekundo dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Third Below</source>
-        <translation>Terca dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter third below</source>
-        <translation>Vnesi terco dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Fourth Below</source>
-        <translation>Kvarta dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter fourth below</source>
-        <translation>Vnesi kvarto dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Fifth Below</source>
-        <translation>Kvinta dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter fifth below</source>
-        <translation>Vnesi kvinto dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Sixth Below</source>
-        <translation>Seksta dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter sixth below</source>
-        <translation>Vnesi seksto dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Seventh Below</source>
-        <translation>Septima dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter seventh below</source>
-        <translation>Vnesi septimo dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Octave Below</source>
-        <translation>Oktava dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter octave below</source>
-        <translation>Vnesi oktavo dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Ninth Below</source>
-        <translation>Nona dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Enter ninth below</source>
-        <translation>Vnesi nono dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>A</source>
@@ -12815,15 +13037,15 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Enter note A</source>
-        <translation>Vnesi noto A</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>B</source>
-        <translation>H</translation>
+        <translation>B</translation>
     </message>
     <message>
         <source>Enter note B</source>
-        <translation>Vnesi noto H</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>C</source>
@@ -12831,7 +13053,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Enter note C</source>
-        <translation>Vnesi noto C</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>D</source>
@@ -12839,7 +13061,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Enter note D</source>
-        <translation>Vnesi noto D</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>E</source>
@@ -12847,7 +13069,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Enter note E</source>
-        <translation>Vnesi noto E</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>F</source>
@@ -12855,7 +13077,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Enter note F</source>
-        <translation>Vnesi noto F</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>G</source>
@@ -12863,63 +13085,63 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Enter note G</source>
-        <translation>Vnesi noto G</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add A</source>
-        <translation>Dodaj A</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add note A to chord</source>
-        <translation>Dodaj noto A v akord</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add B</source>
-        <translation>Dodaj H</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add note B to chord</source>
-        <translation>Dodaj noto H v akord</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add C</source>
-        <translation>Dodaj C</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add note C to chord</source>
-        <translation>Dodaj noto C v akord</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add D</source>
-        <translation>Dodaj D</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add note D to chord</source>
-        <translation>Dodaj noto D v akord</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add E</source>
-        <translation>Dodaj E</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add note E to chord</source>
-        <translation>Dodaj noto E v akord</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add F</source>
-        <translation>Dodaj F</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add note F to chord</source>
-        <translation>Dodaj noto F v akord</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add G</source>
-        <translation>Dodaj G</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add note G to chord</source>
-        <translation>Dodaj noto G v akord</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Insert A</source>
@@ -12979,31 +13201,31 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Rest</source>
-        <translation>Pavza</translation>
+        <translation>Gorffwys</translation>
     </message>
     <message>
         <source>Enter rest</source>
-        <translation>Vstavi pavzo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Staccato</source>
-        <translation>Staccato</translation>
+        <translation>Bur</translation>
     </message>
     <message>
         <source>Tenuto</source>
-        <translation type="unfinished"/>
+        <translation>Dal</translation>
     </message>
     <message>
         <source>Trill</source>
-        <translation>Trilček</translation>
+        <translation>Tril</translation>
     </message>
     <message>
         <source>Marcato</source>
-        <translation type="unfinished"/>
+        <translation>Acennog</translation>
     </message>
     <message>
         <source>Reset Beam Mode</source>
-        <translation>Privzet način prečke</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Reset beam mode</source>
@@ -13011,15 +13233,15 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Reset beam mode of selected measures</source>
-        <translation>Ponastavi način prečke za izbrane takte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Flip direction</source>
-        <translation>Obrni smer</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Up</source>
-        <translation>Gor</translation>
+        <translation>i fyny</translation>
     </message>
     <message>
         <source>Pitch up or move text or articulation up</source>
@@ -13031,11 +13253,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Up Octave</source>
-        <translation>Gor oktavo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Pitch up octave</source>
-        <translation>Višina gor za oktavo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Pitch up by an octave or move text or articulation up</source>
@@ -13043,27 +13265,27 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Up Note in Chord</source>
-        <translation>Povišaj noto v akordu</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Go to higher pitched note in chord</source>
-        <translation>Pojdi na višjo noto v akordu</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Top Note in Chord</source>
-        <translation>Najvišja nota v akordu</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Go to top note in chord</source>
-        <translation>Pojdi na zgornjo noto v akordu</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Move up</source>
-        <translation>Premakni gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Down</source>
-        <translation>Dol</translation>
+        <translation>i lawr</translation>
     </message>
     <message>
         <source>Pitch down or move text or articulation down</source>
@@ -13075,7 +13297,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Pitch down octave</source>
-        <translation>Višina dol za oktavo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Pitch down by an octave or move text or articulation down</source>
@@ -13083,23 +13305,23 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Down Note in Chord</source>
-        <translation>Znižaj noto v akordu</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Go to lower pitched note in chord</source>
-        <translation>Pojdi na nižjo noto v akordu</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Bottom Note in Chord</source>
-        <translation>Najnižja nota v akordu</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Go to bottom note in chord</source>
-        <translation>Pojdi na najnižjo noto v akordu</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Move down</source>
-        <translation>Premakni dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Go to previous chord or move text left</source>
@@ -13115,15 +13337,15 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Go to next chord or move text right</source>
-        <translation>Pojdi na naslednji akord ali premakni besedilo v desno</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Go to next measure or move text right</source>
-        <translation>Pojdi na naslednji takt ali premakni besedilo v desno</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Next staff or voice</source>
-        <translation>Naslednje notno črtovje ali glas</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add previous chord to selection</source>
@@ -13135,11 +13357,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Add next chord to selection</source>
-        <translation>Dodaj naslednji akord v izbor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Select Section</source>
-        <translation>Izberi skupino</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Move chord/rest right</source>
@@ -13179,7 +13401,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Slur</source>
-        <translation type="unfinished"/>
+        <translation>Llithriad</translation>
     </message>
     <message>
         <source>Add slur</source>
@@ -13223,11 +13445,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Delete</source>
-        <translation>Izbriši</translation>
+        <translation>Dileu</translation>
     </message>
     <message>
         <source>Delete contents of the selected measures</source>
-        <translation>Izbriši vsebino izbranih taktov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Timewise delete</source>
@@ -13235,15 +13457,15 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Timewise Delete</source>
-        <translation>ÄŒasovno brisanje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Delete element and duration</source>
-        <translation>Izbriši element in trajanje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Delete Selected Measures</source>
-        <translation>Izbriši izbrane takte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Append One Measure</source>
@@ -13251,27 +13473,27 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Append Measures...</source>
-        <translation>Dodaj takte ...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Append measures</source>
-        <translation>Dodaj takte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Insert One Measure</source>
-        <translation>Vstavi en takt</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Insert Measures...</source>
-        <translation>Vstavi takte ...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Insert measures</source>
-        <translation>Vstavi takte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Insert Horizontal Frame</source>
-        <translation>Vstavi vodoravni okvir</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Insert Text Frame</source>
@@ -13283,79 +13505,79 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Insert Vertical Frame</source>
-        <translation>Vstavi navpični okvir</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Append Horizontal Frame</source>
-        <translation>Dodaj vodoravni okvir</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Append Vertical Frame</source>
-        <translation>Dodaj navpični okvir</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Duplet</source>
-        <translation>Duola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Triplet</source>
-        <translation>Triola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Quadruplet</source>
-        <translation>Kvadrola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Quintuplet</source>
-        <translation>Kvintola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Sextuplet</source>
-        <translation>Sekstola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Septuplet</source>
-        <translation>Septiola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Octuplet</source>
-        <translation>Oktiola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Nonuplet</source>
-        <translation>Noniola</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Other...</source>
-        <translation>Drugo ...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Other tuplets</source>
-        <translation>Druge ritmične posebnosti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Longa</source>
-        <translation>Dolginka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Double whole note</source>
-        <translation>Dvojna celinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Whole note</source>
-        <translation>Celinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Half note</source>
-        <translation>Polovinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Quarter note</source>
-        <translation>ÄŒetrtinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>16th note</source>
-        <translation>16-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Note duration: 16th</source>
@@ -13363,7 +13585,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>32nd note</source>
-        <translation>32-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Note duration: 32nd</source>
@@ -13371,7 +13593,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>64th note</source>
-        <translation>64-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Note duration: 64th</source>
@@ -13379,7 +13601,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>128th note</source>
-        <translation>128-tinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Note duration: 128th</source>
@@ -13395,35 +13617,35 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Augmentation dot</source>
-        <translation>Pika</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Double augmentation dot</source>
-        <translation>Dvojna pika</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Tie</source>
-        <translation>Vezaj</translation>
+        <translation>Clwm</translation>
     </message>
     <message>
         <source>Double sharp</source>
-        <translation>Dvojni višaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Sharp</source>
-        <translation>Višaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Natural</source>
-        <translation>Razvezaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Flat</source>
-        <translation>Nižaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Double flat</source>
-        <translation>Dvojni nižaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Acciaccatura</source>
@@ -13467,7 +13689,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Voice 1</source>
-        <translation>1. glas</translation>
+        <translation>Llais 1</translation>
     </message>
     <message>
         <source>2</source>
@@ -13475,7 +13697,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Voice 2</source>
-        <translation>2. glas</translation>
+        <translation>Llais 2</translation>
     </message>
     <message>
         <source>3</source>
@@ -13483,7 +13705,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Voice 3</source>
-        <translation>3. glas</translation>
+        <translation>Llais 3</translation>
     </message>
     <message>
         <source>4</source>
@@ -13491,11 +13713,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Voice 4</source>
-        <translation>4. glas</translation>
+        <translation>LlaIs 4</translation>
     </message>
     <message>
         <source>Enable MIDI input</source>
-        <translation>Omogoči MIDI</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Beam start</source>
@@ -13526,16 +13748,12 @@ ni bilo uspešno:</translation>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paleta</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
-        <translation>Predvajalna plošča</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Navigator</source>
-        <translation>Navigator</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>MIDI Import Panel</source>
@@ -13543,30 +13761,26 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Mixer</source>
-        <translation>Mešalnik</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Status Bar</source>
-        <translation>Vrstica stanja</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Quit</source>
-        <translation>Zaključi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Zoom canvas</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Lyrics</source>
-        <translation>Besedilo</translation>
-    </message>
-    <message>
-        <source>Add lyrics</source>
-        <translation type="unfinished"/>
+        <source>Lyrics</source>
+        <translation>Telyneg</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
+        <source>Add lyrics</source>
         <translation type="unfinished"/>
     </message>
     <message>
@@ -13575,7 +13789,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>System Text</source>
-        <translation>Napis nad sistemom</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add system text</source>
@@ -13583,15 +13797,15 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Staff Text</source>
-        <translation>Napis nad črtovje</translation>
+        <translation>Staff Testun </translation>
     </message>
     <message>
         <source>Add staff text</source>
-        <translation>Dodaj napis nad črtovje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Text</source>
-        <translation>Besedilo</translation>
+        <translation>Testyn</translation>
     </message>
     <message>
         <source>Add frame text</source>
@@ -13599,7 +13813,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Title</source>
-        <translation>Naslov</translation>
+        <translation>Pennawd</translation>
     </message>
     <message>
         <source>Add title text</source>
@@ -13607,7 +13821,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Subtitle</source>
-        <translation>Podnaslov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add subtitle text</source>
@@ -13615,7 +13829,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Composer</source>
-        <translation>Skladatelj</translation>
+        <translation>Cyfansoddwr</translation>
     </message>
     <message>
         <source>Add composer text</source>
@@ -13623,15 +13837,15 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Lyricist</source>
-        <translation>Besedilopisec</translation>
+        <translation>Telynegion</translation>
     </message>
     <message>
         <source>Add lyricist text</source>
-        <translation>Dodaj besedilo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Rehearsal Mark</source>
-        <translation>Vadbene oznake</translation>
+        <translation>Marc Rihyrsal</translation>
     </message>
     <message>
         <source>Add rehearsal mark</source>
@@ -13643,19 +13857,19 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Add picture</source>
-        <translation>Dodaj sliko</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Play</source>
-        <translation>Zaigraj</translation>
+        <translation>Chwarae</translation>
     </message>
     <message>
         <source>Player play</source>
-        <translation>Predvajalnik predvajaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Start or stop playback</source>
-        <translation>Začni ali ustavi predvajanje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Play Previous Chord</source>
@@ -13667,11 +13881,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Play Next Chord</source>
-        <translation>Predvajaj naslednji akord</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Play Next Measure</source>
-        <translation>Predvajaj naslednji takt</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Player Seek to Begin</source>
@@ -13679,15 +13893,15 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Rewind</source>
-        <translation>Previj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Player rewind</source>
-        <translation>Predvajalnik prevrti</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Rewind to start position</source>
-        <translation>Prevrti na začetek</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Player Seek to End</source>
@@ -13695,7 +13909,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Play repeats</source>
-        <translation>Predvajaj ponavljanja</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Toggle repeats playback</source>
@@ -13703,7 +13917,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Pan</source>
-        <translation>Pan</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Toggle pan score</source>
@@ -13711,35 +13925,35 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Pan score during playback</source>
-        <translation>Sledi notnemu zapisu med predvajanjem</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Load Style...</source>
-        <translation>Naloži slog ...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Load style</source>
-        <translation>Naloži slog</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Save Style...</source>
-        <translation>Shrani slog ...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Save style</source>
-        <translation>Shrani slog</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Select All</source>
-        <translation>Izberi vse</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>&Transpose...</source>
-        <translation>&Transponiraj...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Transpose</source>
-        <translation>Transponiraj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Treble Clef</source>
@@ -13747,7 +13961,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Add treble clef</source>
-        <translation>Dodaj violinski ključ</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Bass Clef</source>
@@ -13755,43 +13969,43 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Add bass clef</source>
-        <translation>Dodaj basovski ključ</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Exchange Voice 1-2</source>
-        <translation>Zamenjaj glasova 1-2</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Exchange Voice 1-3</source>
-        <translation>Zamenjaj glasova 1-3</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Exchange Voice 1-4</source>
-        <translation>Zamenjaj glasova 1-4</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Exchange Voice 2-3</source>
-        <translation>Zamenjaj glasova 2-3</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Exchange Voice 2-4</source>
-        <translation>Zamenjaj glasova 2-4</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Exchange Voice 3-4</source>
-        <translation>Zamenjaj glasova 3-4</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Concert Pitch</source>
-        <translation>Koncertna višina</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Display in concert pitch</source>
-        <translation>Prikaži v koncertni višini</translation>
+        <translation>Arddangosiad mewn cywair cyngerdd</translation>
     </message>
     <message>
         <source>Repeat last command</source>
-        <translation>Ponovi zadnji ukaz</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Info...</source>
@@ -13803,11 +14017,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Toggle System Break</source>
-        <translation>Preklapljaj prelom sistema</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Toggle Page Break</source>
-        <translation>Preklapljaj prelom strani</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Toggle Section Break</source>
@@ -13815,11 +14029,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Edit Element</source>
-        <translation>Urejanje elementa</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Reset</source>
-        <translation>Ponastavi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Reset user settings</source>
@@ -13831,7 +14045,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Reset Stretch</source>
-        <translation>Privzet razteg</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Reset measure stretch</source>
@@ -13839,19 +14053,19 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Show Invisible</source>
-        <translation>Prikaži nevidne</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show Unprintable</source>
-        <translation>Prikaži nenatisljivo</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show Frames</source>
-        <translation>Prikaži okvire</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show Page Margins</source>
-        <translation>Prikaži robove strani</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Insert Special Characters...</source>
@@ -13859,19 +14073,19 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Backspace</source>
-        <translation>Backspace</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Find</source>
-        <translation>Najdi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Zoom In</source>
-        <translation>Povečaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Zoom Out</source>
-        <translation>Pomanjšaj</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Mirror note head</source>
@@ -13879,7 +14093,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>General...</source>
-        <translation>Splošno...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Edit general style</source>
@@ -13887,7 +14101,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Text...</source>
-        <translation>Besedilo...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Edit text style</source>
@@ -13895,23 +14109,23 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>All Similar Elements</source>
-        <translation>Vsi podobni elementi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Select all similar elements</source>
-        <translation>Izberi vse podobne elemente</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>All Similar Elements in Same Staff</source>
-        <translation>Vsi podobni elementi v istem črtovju</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Select all similar elements in same staff</source>
-        <translation>Izberi vse podobne elemente v istem črtovju</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Synthesizer</source>
-        <translation>Sintetizator</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Double duration</source>
@@ -13923,10 +14137,6 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Repeat selection</source>
-        <translation>Ponavljaj izbor</translation>
-    </message>
-    <message>
-        <source>Pan piano roll</source>
         <translation type="unfinished"/>
     </message>
     <message>
@@ -13939,7 +14149,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Documents Side by Side</source>
-        <translation>Skladbe druga ob drugi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Display documents side by side</source>
@@ -13947,7 +14157,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Documents Stacked</source>
-        <translation>Skladbe v sklad</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Display documents stacked</source>
@@ -13955,7 +14165,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Parts...</source>
-        <translation>Parti...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Manage parts</source>
@@ -13979,7 +14189,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Full Screen</source>
-        <translation>Celozaslonski način</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Re-Pitch Mode</source>
@@ -13991,7 +14201,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Piano Keyboard</source>
-        <translation>Klaviatura</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Additional Media...</source>
@@ -14007,7 +14217,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Page Settings...</source>
-        <translation>Nastavitve strani...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Album...</source>
@@ -14035,7 +14245,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Inspector</source>
-        <translation>Struktura dokumenta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show inspector</source>
@@ -14047,23 +14257,23 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Toggle loop playback</source>
-        <translation>Ponavljaj predvajanje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Loop playback</source>
-        <translation>Ponavljaj predvajanje</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Metronome</source>
-        <translation>Metronom</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Toggle metronome playback</source>
-        <translation>Vključi metronom</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Play metronome during playback</source>
-        <translation>Vključi metronom</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Toggle count-in playback</source>
@@ -14075,7 +14285,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation type="unfinished"/>
+        <translation>Bas Rhifoledig</translation>
     </message>
     <message>
         <source>Add figured bass</source>
@@ -14083,19 +14293,19 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Transpose Up</source>
-        <translation>Transponiraj gor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Transpose Down</source>
-        <translation>Transponiraj dol</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Master Palette...</source>
-        <translation>Glavna paleta...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show master palette</source>
-        <translation>Prikaži glavno paleto</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Toggle View Mode</source>
@@ -14103,7 +14313,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Next syllable</source>
-        <translation>Naslednji zlog</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Previous syllable</source>
@@ -14127,7 +14337,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Longa (TAB)</source>
-        <translation>Dolginka (TAB)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Note duration: 16th (TAB)</source>
@@ -14251,7 +14461,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Insert Fretboard Diagram Frame</source>
-        <translation>Vstavi okvir za Slike prijemov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add quarter grace note</source>
@@ -14259,7 +14469,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Chord Symbols...</source>
-        <translation>Simboli akordov...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Edit chord symbols style</source>
@@ -14267,7 +14477,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Chord Symbol</source>
-        <translation>Simboli akordov</translation>
+        <translation>Simbol Tant</translation>
     </message>
     <message>
         <source>Add chord symbol</source>
@@ -14279,11 +14489,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Next beat (Chord symbol)</source>
-        <translation>Naslednja doba (simbol akorda)</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Respell Pitches</source>
-        <translation>Predvidi višine not</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Full Measure Rest</source>
@@ -14371,11 +14581,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Selection Filter</source>
-        <translation>Prikaži Izbor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Eighth note</source>
-        <translation>Osminka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add Eighth grace note after</source>
@@ -14411,7 +14621,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Symbols...</source>
-        <translation>Simboli...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Show symbol palette</source>
@@ -14435,7 +14645,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Insert one measure</source>
-        <translation>Vstavi en takt</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Insert horizontal frame</source>
@@ -14451,7 +14661,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Part Name</source>
-        <translation>Ime parta</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add part name</source>
@@ -14459,11 +14669,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Save Online...</source>
-        <translation>Shrani na spletu...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Save score on MuseScore.com</source>
-        <translation>Shrani notno črtovje na MuseScore.com</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Explode</source>
@@ -14503,11 +14713,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Increase Stretch</source>
-        <translation>Razširi prostor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Increase stretch</source>
-        <translation>Razširi prostor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Increase stretch of selected measures</source>
@@ -14515,11 +14725,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Decrease Stretch</source>
-        <translation>Zoži prostor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Decrease stretch</source>
-        <translation>Zoži prostor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Decrease stretch of selected measures</source>
@@ -14527,15 +14737,15 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Plugin Creator...</source>
-        <translation>Ustvarjalec vtičnika...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Plugin Manager...</source>
-        <translation>Upravljalec vtičnika...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Resource Manager...</source>
-        <translation>Upravljalec Virov...</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add/Remove Line Breaks...</source>
@@ -14551,7 +14761,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>File: Save online</source>
-        <translation>Datoteka: Shrani na spletu</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>File: Save as</source>
@@ -14559,7 +14769,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Save selection</source>
-        <translation>Shrani izbor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>File: Save a copy</source>
@@ -14567,7 +14777,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Export parts</source>
-        <translation>Izvozi parte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>File: Close</source>
@@ -14583,7 +14793,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Respell pitches</source>
-        <translation>Predvidi višine not</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Flip Direction</source>
@@ -14647,15 +14857,15 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Next Chord</source>
-        <translation>Naslednji akord</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Next Measure</source>
-        <translation>Naslednji takt</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Next Staff or Voice</source>
-        <translation>Naslednje notno črtovje ali glas</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Add Previous Chord to Selection</source>
@@ -14667,11 +14877,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Add Next Chord to Selection</source>
-        <translation>Dodaj naslednji akord v izbor</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Select section</source>
-        <translation>Izberi skupino</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Move Chord/Rest Right</source>
@@ -14711,7 +14921,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Page: Next</source>
-        <translation>Stran: naprej</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Page: Top</source>
@@ -14727,7 +14937,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Delete selected measures</source>
-        <translation>Izbriši izbrane takte</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Append one measure</source>
@@ -14739,7 +14949,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Insert fretboard diagram frame</source>
-        <translation>Vstavi okvir za Slike prijemov</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Append horizontal frame</source>
@@ -14755,7 +14965,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Double Whole Note</source>
-        <translation>Dvojna celinka</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Note duration: Double whole</source>
@@ -14763,147 +14973,147 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Whole Note</source>
-        <translation>Celinka</translation>
+        <translation>Nodyn Llawn</translation>
     </message>
     <message>
         <source>Note duration: Whole</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn parhad: Llawn</translation>
     </message>
     <message>
         <source>Half Note</source>
-        <translation>Polovinka</translation>
+        <translation>Nodyn Hanner</translation>
     </message>
     <message>
         <source>Note duration: Half</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn Parhad: Hanner</translation>
     </message>
     <message>
         <source>Quarter Note</source>
-        <translation>ÄŒetrtinka</translation>
+        <translation>Chwarter Nodyn</translation>
     </message>
     <message>
         <source>Note duration: Quarter</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn Parhad: Chwarter</translation>
     </message>
     <message>
         <source>Eighth Note</source>
-        <translation>Osminka</translation>
+        <translation>Un ar bymtheg Nodyn</translation>
     </message>
     <message>
         <source>Note duration: Eighth</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn Parhad: Wythfed</translation>
     </message>
     <message>
         <source>16th Note</source>
-        <translation>16-tinka</translation>
+        <translation>16th Nodyn</translation>
     </message>
     <message>
         <source>32nd Note</source>
-        <translation>32-tinka</translation>
+        <translation>32nd Nodyn</translation>
     </message>
     <message>
         <source>64th Note</source>
-        <translation>64-tinka</translation>
+        <translation>64th Nodyn</translation>
     </message>
     <message>
         <source>128th Note</source>
-        <translation type="unfinished"/>
+        <translation>128th Nodyn</translation>
     </message>
     <message>
         <source>Increase Active Duration</source>
-        <translation type="unfinished"/>
+        <translation> Ychwanegu Actif Parhad</translation>
     </message>
     <message>
         <source>Decrease Active Duration</source>
-        <translation type="unfinished"/>
+        <translation>Lleihad Actif Parhad</translation>
     </message>
     <message>
         <source>Augmentation Dot</source>
-        <translation>Pika</translation>
+        <translation>Ychwanegiad Dot</translation>
     </message>
     <message>
         <source>Note duration: Augmentation dot</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn estyniad:  Ychwanegiad dot</translation>
     </message>
     <message>
         <source>Double Augmentation Dot</source>
-        <translation>Dvojna pika</translation>
+        <translation>Dwbwl Estyniad dot</translation>
     </message>
     <message>
         <source>Note duration: Double augmentation dot</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn parhad: Dwbwl estyniad dot</translation>
     </message>
     <message>
         <source>Note duration: Tie</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn parhad: Clwm</translation>
     </message>
     <message>
         <source>Note input: Rest</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn Mewnbwn: Tawnod</translation>
     </message>
     <message>
         <source>Double Sharp</source>
-        <translation>Dvojni višaj</translation>
+        <translation>Dwbwl Llonnod</translation>
     </message>
     <message>
         <source>Note input: Double sharp</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn mewnbwn: Dwbwl llonnod</translation>
     </message>
     <message>
         <source>Note input: Sharp</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn mewnbwn: Llonnod</translation>
     </message>
     <message>
         <source>Note input: Natural</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn mewnbwn: Naturiol</translation>
     </message>
     <message>
         <source>Note input: Flat</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn mewnbwn: Fflat</translation>
     </message>
     <message>
         <source>Double Flat</source>
-        <translation>Dvojni nižaj</translation>
+        <translation>Dwbwl Fflat</translation>
     </message>
     <message>
         <source>Note input: Double flat</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn mewnbwn: Dwbwl fflat</translation>
     </message>
     <message>
         <source>Grace: Quarter</source>
-        <translation type="unfinished"/>
+        <translation>Gras: Chwarter</translation>
     </message>
     <message>
         <source>Grace: Eighth after</source>
-        <translation type="unfinished"/>
+        <translation>Gras: Wythfed wedi</translation>
     </message>
     <message>
         <source>MIDI Input</source>
-        <translation type="unfinished"/>
+        <translation>Mewnbwn MIDI</translation>
     </message>
     <message>
         <source>Beam Start</source>
-        <translation type="unfinished"/>
+        <translation>Traws Cychwyn</translation>
     </message>
     <message>
         <source>Beam Middle</source>
-        <translation type="unfinished"/>
+        <translation>Traws Canol</translation>
     </message>
     <message>
         <source>No Beam</source>
-        <translation type="unfinished"/>
+        <translation>Dim Traws</translation>
     </message>
     <message>
         <source>Beam 16th Sub</source>
-        <translation type="unfinished"/>
+        <translation>Traws 16th Sub</translation>
     </message>
     <message>
         <source>Beam 32nd Sub</source>
-        <translation type="unfinished"/>
+        <translation>Traws 32nd Sub</translation>
     </message>
     <message>
         <source>Auto Beam</source>
-        <translation type="unfinished"/>
+        <translation>Awto Trawst</translation>
     </message>
     <message>
         <source>Feathered Beam, Slower</source>
@@ -14915,159 +15125,159 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Play panel</source>
-        <translation type="unfinished"/>
+        <translation>Chware panel</translation>
     </message>
     <message>
         <source>Selection filter</source>
-        <translation type="unfinished"/>
+        <translation>Detholiad hidlen</translation>
     </message>
     <message>
         <source>MIDI import panel</source>
-        <translation type="unfinished"/>
+        <translation>MIDI mewnforio panel</translation>
     </message>
     <message>
         <source>Status bar</source>
-        <translation>Vrstica stanja</translation>
+        <translation>Statws bar</translation>
     </message>
     <message>
         <source>Zoom Canvas</source>
-        <translation type="unfinished"/>
+        <translation>Chwyddo Cynfas</translation>
     </message>
     <message>
         <source>Play previous chord</source>
-        <translation type="unfinished"/>
+        <translation>Chware blaenorol cord</translation>
     </message>
     <message>
         <source>Play previous measure</source>
-        <translation type="unfinished"/>
+        <translation>Chware blaenorol fesur</translation>
     </message>
     <message>
         <source>Play next chord</source>
-        <translation>Predvajaj naslednji akord</translation>
+        <translation>Chware cord nesaf</translation>
     </message>
     <message>
         <source>Play next measure</source>
-        <translation>Predvajaj naslednji takt</translation>
+        <translation>Chware mesur nesaf</translation>
     </message>
     <message>
         <source>Player seek to begin</source>
-        <translation type="unfinished"/>
+        <translation>Chware chwilio at dechrau</translation>
     </message>
     <message>
         <source>Player seek to end</source>
-        <translation type="unfinished"/>
+        <translation>Chware chwilio at diwedd</translation>
     </message>
     <message>
         <source>Play Repeats</source>
-        <translation>Predvajaj ponavljanja</translation>
+        <translation>Chwarae ailadrodd</translation>
     </message>
     <message>
         <source>Select all</source>
-        <translation type="unfinished"/>
+        <translation>Dewis y cyfan</translation>
     </message>
     <message>
         <source>Exchange voice 1-2</source>
-        <translation type="unfinished"/>
+        <translation>Ffeirio llais 1-2</translation>
     </message>
     <message>
         <source>Exchange voice 1-3</source>
-        <translation type="unfinished"/>
+        <translation>Ffeirio llais 1-3</translation>
     </message>
     <message>
         <source>Exchange voice 1-4</source>
-        <translation type="unfinished"/>
+        <translation>Ffeirio llais 1-4</translation>
     </message>
     <message>
         <source>Exchange voice 2-3</source>
-        <translation type="unfinished"/>
+        <translation>Ffeirio llais 2-3</translation>
     </message>
     <message>
         <source>Exchange voice 2-4</source>
-        <translation type="unfinished"/>
+        <translation>Ffeirio llais 2-4</translation>
     </message>
     <message>
         <source>Exchange voice 3-4</source>
-        <translation type="unfinished"/>
+        <translation>Ffeirio llais 3-4</translation>
     </message>
     <message>
         <source>Repeat Last Command</source>
-        <translation type="unfinished"/>
+        <translation>Ailadroddiad Gorchymyn Olaf</translation>
     </message>
     <message>
         <source>Toggle system break</source>
-        <translation type="unfinished"/>
+        <translation>Togl system egwyl</translation>
     </message>
     <message>
         <source>Toggle page break</source>
-        <translation type="unfinished"/>
+        <translation>Togl tudalen egwyl</translation>
     </message>
     <message>
         <source>Toggle section break</source>
-        <translation type="unfinished"/>
+        <translation>Togl trawslun  egwyl</translation>
     </message>
     <message>
         <source>Edit element</source>
-        <translation type="unfinished"/>
+        <translation>Golygu elfen</translation>
     </message>
     <message>
         <source>Show invisible</source>
-        <translation type="unfinished"/>
+        <translation>Dangos anweledig</translation>
     </message>
     <message>
         <source>Show unprintable</source>
-        <translation>Prikaži nenatisljivo</translation>
+        <translation>Dangos anprintiedig</translation>
     </message>
     <message>
         <source>Show frames</source>
-        <translation>Prikaži okvirje</translation>
+        <translation>Dangos ffrâmgell</translation>
     </message>
     <message>
         <source>Show page margins</source>
-        <translation>Prikaži robove strani</translation>
+        <translation>Dangos tudalen ymylon</translation>
     </message>
     <message>
         <source>Insert special characters</source>
-        <translation type="unfinished"/>
+        <translation>Mewnosodiad nod arbennig</translation>
     </message>
     <message>
         <source>Whole Rest</source>
-        <translation type="unfinished"/>
+        <translation>Llawn gorffwys</translation>
     </message>
     <message>
         <source>Note input: Whole rest</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn mewnbwn: Llawn gorffwys</translation>
     </message>
     <message>
         <source>Half Rest</source>
-        <translation type="unfinished"/>
+        <translation>Haner Gorffwys</translation>
     </message>
     <message>
         <source>Note input: Half rest</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn mewnbwn: Haner gorffwys</translation>
     </message>
     <message>
         <source>Quarter Rest</source>
-        <translation type="unfinished"/>
+        <translation>Chwarter gorffwys</translation>
     </message>
     <message>
         <source>Note input: Quarter rest</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn mewnbwn: Chwarter gorffwys</translation>
     </message>
     <message>
         <source>Eighth Rest</source>
-        <translation type="unfinished"/>
+        <translation>Wythfed Gorffwys</translation>
     </message>
     <message>
         <source>Note input: Eighth rest</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn mewnbwn: Wythfed gorffwys</translation>
     </message>
     <message>
         <source>Zoom in</source>
-        <translation type="unfinished"/>
+        <translation>Chwyddo mewn</translation>
     </message>
     <message>
         <source>Zoom out</source>
-        <translation type="unfinished"/>
+        <translation>Chwyddo allan</translation>
     </message>
     <message>
         <source>Mirror Note Head</source>
@@ -15075,51 +15285,51 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Double Duration</source>
-        <translation type="unfinished"/>
+        <translation>Dwbl Parhad</translation>
     </message>
     <message>
         <source>Half Duration</source>
-        <translation type="unfinished"/>
+        <translation>Haner Parhad</translation>
     </message>
     <message>
         <source>Repeat Selection</source>
-        <translation type="unfinished"/>
+        <translation>Ail-wneud Dewisiad</translation>
     </message>
     <message>
         <source>Enharmonic Up</source>
-        <translation type="unfinished"/>
+        <translation>Enharmonig Fynu</translation>
     </message>
     <message>
         <source>Enharmonic Down</source>
-        <translation type="unfinished"/>
+        <translation>Enharmonig Dawr</translation>
     </message>
     <message>
         <source>Create New Revision</source>
-        <translation type="unfinished"/>
+        <translation>Creu Newydd Cywiriad</translation>
     </message>
     <message>
         <source>Toggle Image Capture</source>
-        <translation>Določi zajem zaslona</translation>
+        <translation>Togl Delwedd Daliad  </translation>
     </message>
     <message>
         <source>Toggle image capture</source>
-        <translation>Določi zajem zaslona</translation>
+        <translation>Togl delwedd daliad  </translation>
     </message>
     <message>
         <source>Show OMR Image</source>
-        <translation type="unfinished"/>
+        <translation>Dangos delwedd OMR</translation>
     </message>
     <message>
         <source>Full screen</source>
-        <translation>Celozaslonski način</translation>
+        <translation>Scrin llawn</translation>
     </message>
     <message>
         <source>Enable Snap to Horizontal Grid</source>
-        <translation type="unfinished"/>
+        <translation>Galluogi Snap i llorweddol Grid</translation>
     </message>
     <message>
         <source>Enable Snap to Vertical Grid</source>
-        <translation type="unfinished"/>
+        <translation>Galluogi snap i Fertigol Grid</translation>
     </message>
     <message>
         <source>Configure Grid</source>
@@ -15127,55 +15337,55 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Piano keyboard</source>
-        <translation>Klaviatura</translation>
+        <translation>Bysellfwrdd piano</translation>
     </message>
     <message>
         <source>Split measure</source>
-        <translation type="unfinished"/>
+        <translation>Mesurau hollti</translation>
     </message>
     <message>
         <source>Join measures</source>
-        <translation type="unfinished"/>
+        <translation>Uno mesurau</translation>
     </message>
     <message>
         <source>Page settings</source>
-        <translation>Nastavitve strani</translation>
+        <translation>Gosodiadau tudalen</translation>
     </message>
     <message>
         <source>Next score</source>
-        <translation type="unfinished"/>
+        <translation>Scor nesaf</translation>
     </message>
     <message>
         <source>Previous score</source>
-        <translation type="unfinished"/>
+        <translation>Scor blaenorol</translation>
     </message>
     <message>
         <source>Plugin creator</source>
-        <translation>Ustvarjalec vtičnika</translation>
+        <translation>Ategyn crëwr</translation>
     </message>
     <message>
         <source>Plugin manager</source>
-        <translation>Upravljalec vtičnika</translation>
+        <translation>Ategyn rheolwr</translation>
     </message>
     <message>
         <source>Resource manager</source>
-        <translation>Upravljalec virov</translation>
+        <translation>Adnodd rheolwr</translation>
     </message>
     <message>
         <source>Show OMR panel</source>
-        <translation type="unfinished"/>
+        <translation>Dangos OMR panel</translation>
     </message>
     <message>
         <source>Loop In</source>
-        <translation type="unfinished"/>
+        <translation>Dolen mewn</translation>
     </message>
     <message>
         <source>Loop Out</source>
-        <translation type="unfinished"/>
+        <translation>Dolen allan</translation>
     </message>
     <message>
         <source>Set loop out position</source>
-        <translation type="unfinished"/>
+        <translation>Penodi dolen allan safle</translation>
     </message>
     <message>
         <source>Count-In</source>
@@ -15183,35 +15393,35 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Transpose up</source>
-        <translation>Transponiraj gor</translation>
+        <translation>Trawsddodyn fyny</translation>
     </message>
     <message>
         <source>Transpose down</source>
-        <translation>Transponiraj dol</translation>
+        <translation>Trawsddodyn lawr</translation>
     </message>
     <message>
         <source>Toggle view mode</source>
-        <translation type="unfinished"/>
+        <translation>Togl golygfa dull</translation>
     </message>
     <message>
         <source>Next Syllable</source>
-        <translation>Naslednji zlog</translation>
+        <translation>Sillaf Nesaf</translation>
     </message>
     <message>
         <source>Previous Syllable</source>
-        <translation type="unfinished"/>
+        <translation> Sillaf Blaenorol</translation>
     </message>
     <message>
         <source>Toggle Visibility</source>
-        <translation type="unfinished"/>
+        <translation>Togl Weledig</translation>
     </message>
     <message>
         <source>Set Visible</source>
-        <translation type="unfinished"/>
+        <translation>Gosod weledig</translation>
     </message>
     <message>
         <source>Set Invisible</source>
-        <translation type="unfinished"/>
+        <translation>Gosod Anweledig</translation>
     </message>
     <message>
         <source>Note Anchored Textline</source>
@@ -15223,7 +15433,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Lock score</source>
-        <translation type="unfinished"/>
+        <translation>Cloi scor</translation>
     </message>
     <message>
         <source>Note duration: Longa (TAB)</source>
@@ -15231,87 +15441,87 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Double Whole Note (TAB)</source>
-        <translation>Dvojna celinka (TAB)</translation>
+        <translation>Nodyn Llawn Dwbl  (TAB)</translation>
     </message>
     <message>
         <source>Note duration: Double whole (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn parhad: Dwbl Llawn (TAB)</translation>
     </message>
     <message>
         <source>Whole Note (TAB)</source>
-        <translation>Celinka (TAB)</translation>
+        <translation>Nodyn Cyfan (TAB)</translation>
     </message>
     <message>
         <source>Note duration: Whole (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn parhad: Llawn (TAB)</translation>
     </message>
     <message>
         <source>Half Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Hanner Nodyn (TAB)</translation>
     </message>
     <message>
         <source>Note duration: Half (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn parhad: Hanner (TAB)</translation>
     </message>
     <message>
         <source>Quarter Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Chwarter Nodyn (TAB)</translation>
     </message>
     <message>
         <source>Note duration: Quarter (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn parhad: Chwarter (TAB)</translation>
     </message>
     <message>
         <source>Eighth Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Wythfed Nodyn (TAB)</translation>
     </message>
     <message>
         <source>Note duration: Eighth (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn parhad: Wythfed (TAB)</translation>
     </message>
     <message>
         <source>16th Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>16th Nodyn (TAB)</translation>
     </message>
     <message>
         <source>32nd Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>32nd Nodyn (TAB)</translation>
     </message>
     <message>
         <source>64th Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>64th Nodyn (TAB)</translation>
     </message>
     <message>
         <source>128th Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>128th Nodyn (TAB)</translation>
     </message>
     <message>
         <source>Increase Active Duration (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Cynnydd Gweithredol Parhad (TAB)</translation>
     </message>
     <message>
         <source>Decrease Active Duration (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Lleihad Gweithredol Parhad (TAB)</translation>
     </message>
     <message>
         <source>Note input: Rest (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn cyfraniad: Seibiant (TAB)</translation>
     </message>
     <message>
         <source>String Above (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Tant Uwch (TAB)</translation>
     </message>
     <message>
         <source>String Below (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Tant Isod (TAB)</translation>
     </message>
     <message>
         <source>Previous Beat (Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Trawiad Blaenorol (Cord Symbol)</translation>
     </message>
     <message>
         <source>Next Beat (Chord Symbol)</source>
-        <translation>Naslednja doba (simbol akorda)</translation>
+        <translation>Trawiad Nesaf (Cord Symbol) </translation>
     </message>
     <message>
         <source>Add Brackets to Element</source>
@@ -15323,35 +15533,35 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Bold Face</source>
-        <translation type="unfinished"/>
+        <translation>Wyneb Trwm</translation>
     </message>
     <message>
         <source>Bold face</source>
-        <translation type="unfinished"/>
+        <translation>Wyneb trwm</translation>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Italig</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Tanlinellu</translation>
     </message>
     <message>
         <source>Move Word Left</source>
-        <translation type="unfinished"/>
+        <translation>Symud Gair Chwith</translation>
     </message>
     <message>
         <source>Move word left</source>
-        <translation type="unfinished"/>
+        <translation>Symud gair chwith</translation>
     </message>
     <message>
         <source>Move Word Right</source>
-        <translation type="unfinished"/>
+        <translation>Symud Gair De</translation>
     </message>
     <message>
         <source>Move word right</source>
-        <translation type="unfinished"/>
+        <translation>Symud gair de</translation>
     </message>
     <message>
         <source>Fill with slashes</source>
@@ -15363,7 +15573,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Add/remove line breaks</source>
-        <translation type="unfinished"/>
+        <translation>Ychwanegyn/gwyriad llinell toriad</translation>
     </message>
     <message>
         <source>Resequence rehearsal marks</source>
@@ -15371,7 +15581,7 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Start center</source>
-        <translation type="unfinished"/>
+        <translation>Cychwyn canol</translation>
     </message>
     <message>
         <source>Longa Advance (F.B./Chord Symbol)</source>
@@ -15447,19 +15657,19 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Previous Measure (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Mesur Blaenorol (F.B./Cord Symbol)</translation>
     </message>
     <message>
         <source>Previous measure (Figured bass/Chord symbol only)</source>
-        <translation type="unfinished"/>
+        <translation>Mesur blaenorol (Bas rhifoledig/Cord symbol yn unig)</translation>
     </message>
     <message>
         <source>Next Measure (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Mesur Nesaf (F.B. Cord Symbol)</translation>
     </message>
     <message>
         <source>Next measure (Figured bass/Chord symbol only)</source>
-        <translation type="unfinished"/>
+        <translation>Mesur Nesaf (Rhifoledig bas/Cord symbol yn unig)</translation>
     </message>
     <message>
         <source>Toggle staccato</source>
@@ -15479,11 +15689,11 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Import PDF...</source>
-        <translation>Uvozi PDF...</translation>
+        <translation>Mewnforio PDF...</translation>
     </message>
     <message>
         <source>Import PDF</source>
-        <translation>Uvozi PDF</translation>
+        <translation>Mewnforio PDF</translation>
     </message>
     <message>
         <source>Import a PDF file with an experimental service on musescore.com</source>
@@ -15491,6 +15701,22 @@ ni bilo uspešno:</translation>
     </message>
     <message>
         <source>Set loop in position</source>
+        <translation>Gosod dolen yn lleoliad</translation>
+    </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Marc Amseriad</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Chwyddo i 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -15503,8 +15729,7 @@ ni bilo uspešno:</translation>
     <message>
         <source>Cannot rewrite measures:
 Tuplet would cross measure</source>
-        <translation>Ne morem zapisati takt:
-ritmična posebnost bi prečkala takt.</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Cannot change local time signature:
@@ -15520,35 +15745,35 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Slide out down</source>
-        <translation type="unfinished"/>
+        <translation>Llithr allan lawr</translation>
     </message>
     <message>
         <source>Slide out up</source>
-        <translation type="unfinished"/>
+        <translation>Llithr allan fyny</translation>
     </message>
     <message>
         <source>Slide in below</source>
-        <translation type="unfinished"/>
+        <translation>Llithr i mewn yn is</translation>
     </message>
     <message>
         <source>Slide in above</source>
-        <translation type="unfinished"/>
+        <translation>llithr i mewn uwch</translation>
     </message>
     <message>
         <source>Fermata</source>
-        <translation type="unfinished"/>
+        <translation>Daliant</translation>
     </message>
     <message>
         <source>Short fermata</source>
-        <translation type="unfinished"/>
+        <translation> Daliant bur</translation>
     </message>
     <message>
         <source>Long fermata</source>
-        <translation type="unfinished"/>
+        <translation> Daliant hir</translation>
     </message>
     <message>
         <source>Very long fermata</source>
-        <translation type="unfinished"/>
+        <translation>Daliant hir iawn</translation>
     </message>
     <message>
         <source>Sforzato</source>
@@ -15556,7 +15781,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Staccato</source>
-        <translation>Staccato</translation>
+        <translation>Bur</translation>
     </message>
     <message>
         <source>Staccatissimo</source>
@@ -15564,7 +15789,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Tenuto</source>
-        <translation type="unfinished"/>
+        <translation>Dal</translation>
     </message>
     <message>
         <source>Portato</source>
@@ -15572,19 +15797,19 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Marcato</source>
-        <translation type="unfinished"/>
+        <translation>Acennog</translation>
     </message>
     <message>
         <source>Fade in</source>
-        <translation type="unfinished"/>
+        <translation>Pylu mewn</translation>
     </message>
     <message>
         <source>Fade out</source>
-        <translation type="unfinished"/>
+        <translation>Pylu allan</translation>
     </message>
     <message>
         <source>Volume swell</source>
-        <translation type="unfinished"/>
+        <translation> Sŵn  chwydd</translation>
     </message>
     <message>
         <source>Wiggle sawtooth</source>
@@ -15628,7 +15853,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Trill</source>
-        <translation>Trilček</translation>
+        <translation>Tril</translation>
     </message>
     <message>
         <source>Prall</source>
@@ -15636,7 +15861,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Mordent</source>
-        <translation type="unfinished"/>
+        <translation>Mordent</translation>
     </message>
     <message>
         <source>Prall prall</source>
@@ -15656,11 +15881,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Up mordent</source>
-        <translation type="unfinished"/>
+        <translation>Uwch ifordent</translation>
     </message>
     <message>
         <source>Down mordent</source>
-        <translation type="unfinished"/>
+        <translation>Is fordent</translation>
     </message>
     <message>
         <source>Prall down</source>
@@ -15716,7 +15941,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Tremolo bar</source>
-        <translation type="unfinished"/>
+        <translation>Tremolo bar</translation>
     </message>
 </context>
 <context>
@@ -15727,35 +15952,35 @@ Measure is not empty</source>
     </message>
     <message>
         <source>c#</source>
-        <translation type="unfinished"/>
+        <translation>c#</translation>
     </message>
     <message>
         <source>d</source>
-        <translation type="unfinished"/>
+        <translation>d</translation>
     </message>
     <message>
         <source>d#</source>
-        <translation type="unfinished"/>
+        <translation>d#</translation>
     </message>
     <message>
         <source>e</source>
-        <translation type="unfinished"/>
+        <translation>e</translation>
     </message>
     <message>
         <source>f</source>
-        <translation type="unfinished"/>
+        <translation>f</translation>
     </message>
     <message>
         <source>f#</source>
-        <translation type="unfinished"/>
+        <translation>f#</translation>
     </message>
     <message>
         <source>g</source>
-        <translation type="unfinished"/>
+        <translation>g</translation>
     </message>
     <message>
         <source>g#</source>
-        <translation type="unfinished"/>
+        <translation>g#</translation>
     </message>
     <message>
         <source>a</source>
@@ -15763,11 +15988,12 @@ Measure is not empty</source>
     </message>
     <message>
         <source>a#</source>
-        <translation type="unfinished"/>
+        <translation>
+a#</translation>
     </message>
     <message>
         <source>b</source>
-        <translation type="unfinished"/>
+        <translation>b</translation>
     </message>
     <message>
         <source>C</source>
@@ -15775,7 +16001,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>C#</translation>
     </message>
     <message>
         <source>D</source>
@@ -15783,7 +16009,8 @@ Measure is not empty</source>
     </message>
     <message>
         <source>D#</source>
-        <translation type="unfinished"/>
+        <translation>
+D#</translation>
     </message>
     <message>
         <source>E</source>
@@ -15795,7 +16022,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>F#</translation>
     </message>
     <message>
         <source>G</source>
@@ -15803,7 +16030,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>G#</source>
-        <translation type="unfinished"/>
+        <translation>G#</translation>
     </message>
     <message>
         <source>A</source>
@@ -15811,11 +16038,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>A#</source>
-        <translation type="unfinished"/>
+        <translation>A#</translation>
     </message>
     <message>
         <source>B</source>
-        <translation>H</translation>
+        <translation>B</translation>
     </message>
 </context>
 <context>
@@ -15846,87 +16073,87 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Single grace F</source>
-        <translation type="unfinished"/>
+        <translation>Sengl gras F</translation>
     </message>
     <message>
         <source>Single grace high G</source>
-        <translation type="unfinished"/>
+        <translation>Sengl gras uwch G</translation>
     </message>
     <message>
         <source>Single grace high A</source>
-        <translation type="unfinished"/>
+        <translation>Sengl gras uwch A</translation>
     </message>
     <message>
         <source>Double grace</source>
-        <translation type="unfinished"/>
+        <translation>Dwbl gras</translation>
     </message>
     <message>
         <source>Half doubling on low G</source>
-        <translation type="unfinished"/>
+        <translation>Haner dyblyg ar is G</translation>
     </message>
     <message>
         <source>Half doubling on low A</source>
-        <translation type="unfinished"/>
+        <translation>Haner dyblyg ar is A</translation>
     </message>
     <message>
         <source>Half doubling on B</source>
-        <translation type="unfinished"/>
+        <translation>Haner dyblyg ar B</translation>
     </message>
     <message>
         <source>Half doubling on C</source>
-        <translation type="unfinished"/>
+        <translation>Haner dyblyg ar C</translation>
     </message>
     <message>
         <source>Half doubling on D</source>
-        <translation type="unfinished"/>
+        <translation>Haner dyblyg ar D</translation>
     </message>
     <message>
         <source>Half doubling on E</source>
-        <translation type="unfinished"/>
+        <translation>Haner dyblyg ar E</translation>
     </message>
     <message>
         <source>Half doubling on F</source>
-        <translation type="unfinished"/>
+        <translation>Haner dyblyg ar F</translation>
     </message>
     <message>
         <source>Doubling on high G</source>
-        <translation type="unfinished"/>
+        <translation>Dyblyg ar G uwch</translation>
     </message>
     <message>
         <source>Doubling on high A</source>
-        <translation type="unfinished"/>
+        <translation>Dyblyg ar uwch A</translation>
     </message>
     <message>
         <source>Half strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Haner taro ar G isaf</translation>
     </message>
     <message>
         <source>Half strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Haner taro ar B</translation>
     </message>
     <message>
         <source>Half strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Haner taro ar C</translation>
     </message>
     <message>
         <source>Half strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Haner taro ar D</translation>
     </message>
     <message>
         <source>Half strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Haner taro ar E</translation>
     </message>
     <message>
         <source>Half strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Haner taro ar Gl</translation>
     </message>
     <message>
         <source>Half strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Haner taro ar G uchel</translation>
     </message>
     <message>
         <source>Grip</source>
-        <translation type="unfinished"/>
+        <translation>Gafael</translation>
     </message>
     <message>
         <source>Half D throw</source>
@@ -15934,23 +16161,23 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Doubling on low G</source>
-        <translation type="unfinished"/>
+        <translation>Dwlu ar is G</translation>
     </message>
     <message>
         <source>Doubling on low A</source>
-        <translation type="unfinished"/>
+        <translation>Dwlu ar is A</translation>
     </message>
     <message>
         <source>Doubling on B</source>
-        <translation type="unfinished"/>
+        <translation>Dwlu ar B</translation>
     </message>
     <message>
         <source>Doubling on C</source>
-        <translation type="unfinished"/>
+        <translation>Dwlu ar C</translation>
     </message>
     <message>
         <source>Doubling on D</source>
-        <translation type="unfinished"/>
+        <translation>Dwlu ar D</translation>
     </message>
     <message>
         <source>Doubling on E</source>
@@ -15958,7 +16185,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Doubling on F</source>
-        <translation type="unfinished"/>
+        <translation>Dwblu ar F</translation>
     </message>
     <message>
         <source>Thumb doubling on low G</source>
@@ -15990,27 +16217,27 @@ Measure is not empty</source>
     </message>
     <message>
         <source>G grace note on low A</source>
-        <translation type="unfinished"/>
+        <translation>G  gras nodyn ar is A</translation>
     </message>
     <message>
         <source>G grace note on B</source>
-        <translation type="unfinished"/>
+        <translation> G gras nodyn ar B</translation>
     </message>
     <message>
         <source>G grace note on C</source>
-        <translation type="unfinished"/>
+        <translation>G  gras nodyn ar C</translation>
     </message>
     <message>
         <source>G grace note on D</source>
-        <translation type="unfinished"/>
+        <translation>G gras nodyn ar D</translation>
     </message>
     <message>
         <source>G grace note on E</source>
-        <translation type="unfinished"/>
+        <translation>G  gras nodyn ar E</translation>
     </message>
     <message>
         <source>G grace note on F</source>
-        <translation type="unfinished"/>
+        <translation>G gras nodyn ar F</translation>
     </message>
     <message>
         <source>Double strike on low A</source>
@@ -16346,162 +16573,162 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Triple strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Taro triphlyg ar isel A</translation>
     </message>
     <message>
         <source>Triple strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Taro triphlyg ar B</translation>
     </message>
     <message>
         <source>Triple strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Taro triphlyg ar C</translation>
     </message>
     <message>
         <source>Triple strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Taro triphlyg ar D</translation>
     </message>
     <message>
         <source>Triple strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Taro triphlyg ar E</translation>
     </message>
     <message>
         <source>Triple strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Taro triphlyg ar F</translation>
     </message>
     <message>
         <source>Triple strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Taro triphlyg ar uchaf G</translation>
     </message>
     <message>
         <source>Triple strike on high A</source>
-        <translation type="unfinished"/>
+        <translation>Taro triphlyg ar uchaf A</translation>
     </message>
     <message>
         <source>Half triple strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on low A</translation>
     </message>
     <message>
         <source>Half triple strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on B</translation>
     </message>
     <message>
         <source>Half triple strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on C</translation>
     </message>
     <message>
         <source>Half triple strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on D</translation>
     </message>
     <message>
         <source>Half triple strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on E</translation>
     </message>
     <message>
         <source>Half triple strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on F</translation>
     </message>
     <message>
         <source>Half triple strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Haner nodyn triphlyg taro ar G</translation>
     </message>
     <message>
         <source>Half triple strike on high A</source>
-        <translation type="unfinished"/>
+        <translation>Haner nodyn triphlyg taro ar A</translation>
     </message>
     <message>
         <source>G grace note triple strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>G gras nodyn triphlyg taro ar is A</translation>
     </message>
     <message>
         <source>G grace note triple strike on B</source>
-        <translation type="unfinished"/>
+        <translation>G gras nodyn triphlyg taro ar B</translation>
     </message>
     <message>
         <source>G grace note triple strike on C</source>
-        <translation type="unfinished"/>
+        <translation>G gras nodyn triphlyg taro ar C</translation>
     </message>
     <message>
         <source>G grace note triple strike on D</source>
-        <translation type="unfinished"/>
+        <translation>G gras nodyn triphlyg taro ar D</translation>
     </message>
     <message>
         <source>G grace note triple strike on E</source>
-        <translation type="unfinished"/>
+        <translation>G gras nodyn triphlyg taro ar E</translation>
     </message>
     <message>
         <source>G grace note triple strike on F</source>
-        <translation type="unfinished"/>
+        <translation>G gras nodyn triphlyg taro ar F</translation>
     </message>
     <message>
         <source>Thumb triple strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Bawd triphlyg taro ar uwch A</translation>
     </message>
     <message>
         <source>Thumb triple strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Bawd triphlyg taro ar uwch B</translation>
     </message>
     <message>
         <source>Thumb triple strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Bawd triphlyg taro ar uwch C</translation>
     </message>
     <message>
         <source>Thumb triple strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Bawd triphlyg taro ar uwch D</translation>
     </message>
     <message>
         <source>Thumb triple strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Bawd triphlyg taro ar uwch E</translation>
     </message>
     <message>
         <source>Thumb triple strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Bawd triphlyg taro ar uwch F</translation>
     </message>
     <message>
         <source>Thumb triple strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Bawd triphlyg taro ar uwch G</translation>
     </message>
 </context>
 <context>
     <name>clefTable</name>
     <message>
         <source>Treble clef</source>
-        <translation type="unfinished"/>
+        <translation>Trebl cleff </translation>
     </message>
     <message>
         <source>Treble clef 8va</source>
-        <translation type="unfinished"/>
+        <translation>Trebl cleff 8vb</translation>
     </message>
     <message>
         <source>Treble clef 15ma</source>
-        <translation type="unfinished"/>
+        <translation>Trebl cleff 15ma</translation>
     </message>
     <message>
         <source>Treble clef 8vb</source>
-        <translation type="unfinished"/>
+        <translation>Trebl cleff 8vb</translation>
     </message>
     <message>
         <source>Bass clef</source>
-        <translation type="unfinished"/>
+        <translation>Bas cleff</translation>
     </message>
     <message>
         <source>Bass clef 8vb</source>
-        <translation type="unfinished"/>
+        <translation>Bas cleff  8vb</translation>
     </message>
     <message>
         <source>Bass clef 15mb</source>
-        <translation type="unfinished"/>
+        <translation>Bas cleff 15mb</translation>
     </message>
     <message>
         <source>Baritone clef (F clef)</source>
-        <translation type="unfinished"/>
+        <translation>Bariton cleff (F cleff)</translation>
     </message>
     <message>
         <source>Subbass clef</source>
-        <translation type="unfinished"/>
+        <translation>Is bas clef</translation>
     </message>
     <message>
         <source>Soprano clef</source>
-        <translation type="unfinished"/>
+        <translation>Soprano cleff</translation>
     </message>
     <message>
         <source>Mezzo-soprano clef</source>
@@ -16509,11 +16736,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Alto clef</source>
-        <translation type="unfinished"/>
+        <translation>Alto cleff</translation>
     </message>
     <message>
         <source>Tenor clef</source>
-        <translation type="unfinished"/>
+        <translation>Tenor cleff</translation>
     </message>
     <message>
         <source>Tablature</source>
@@ -16521,11 +16748,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Percussion</source>
-        <translation type="unfinished"/>
+        <translation>Taro</translation>
     </message>
     <message>
         <source>Baritone clef (C clef)</source>
-        <translation type="unfinished"/>
+        <translation>Bariton cleff (C cleff)</translation>
     </message>
     <message>
         <source>French violin clef</source>
@@ -16533,74 +16760,78 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Bass clef 8va</source>
-        <translation type="unfinished"/>
+        <translation>Cleff Bas 8va</translation>
     </message>
     <message>
         <source>Bass clef 15ma</source>
-        <translation type="unfinished"/>
+        <translation>Cleff Bas 15ma</translation>
     </message>
     <message>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
     <message>
         <source>Acoustic Bass Drum</source>
-        <translation type="unfinished"/>
+        <translation>Bas Drwm Acwstig</translation>
     </message>
     <message>
         <source>Side Stick</source>
-        <translation type="unfinished"/>
+        <translation>Fon Ochr </translation>
     </message>
     <message>
         <source>Tambourine</source>
-        <translation>Tamburin</translation>
+        <translation>Tambwrîn</translation>
     </message>
     <message>
         <source>High Q</source>
-        <translation type="unfinished"/>
+        <translation>Uchel Q</translation>
     </message>
     <message>
         <source>Slap</source>
-        <translation type="unfinished"/>
+        <translation>Slap</translation>
     </message>
     <message>
         <source>Scratch Push</source>
-        <translation type="unfinished"/>
+        <translation>Tynfa Gwthiad</translation>
     </message>
     <message>
         <source>Scratch Pull</source>
-        <translation type="unfinished"/>
+        <translation>Cripiad Tynfa</translation>
     </message>
     <message>
         <source>Sticks</source>
-        <translation type="unfinished"/>
+        <translation>Ffyn</translation>
     </message>
     <message>
         <source>Metronome Click</source>
-        <translation type="unfinished"/>
+        <translation>Clic Metronom</translation>
     </message>
     <message>
         <source>Metronome Bell</source>
-        <translation type="unfinished"/>
+        <translation>Cloch Metronom</translation>
     </message>
     <message>
         <source>Bass Drum 1</source>
-        <translation type="unfinished"/>
+        <translation>Drwm Bas 1</translation>
     </message>
     <message>
         <source>Acoustic Snare</source>
-        <translation type="unfinished"/>
+        <translation>Croglath Acwstig</translation>
     </message>
     <message>
         <source>Hand Clap</source>
-        <translation>Plosk</translation>
+        <translation>Curo Dwylo</translation>
     </message>
     <message>
         <source>Electric Snare</source>
-        <translation type="unfinished"/>
+        <translation>Gwifrau Electrig</translation>
     </message>
     <message>
         <source>Low Floor Tom</source>
@@ -16648,7 +16879,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Cowbell</source>
-        <translation>Kravji zvonec</translation>
+        <translation>Clychau Gwartheg</translation>
     </message>
     <message>
         <source>Vibraslap</source>
@@ -16656,7 +16887,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Low Bongo</source>
-        <translation type="unfinished"/>
+        <translation>Bongo Isaf</translation>
     </message>
     <message>
         <source>Mute Hi Conga</source>
@@ -16668,15 +16899,15 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Low Conga</source>
-        <translation type="unfinished"/>
+        <translation>Conga Isaf</translation>
     </message>
     <message>
         <source>High Timbale</source>
-        <translation type="unfinished"/>
+        <translation>Tympan Uchel</translation>
     </message>
     <message>
         <source>Low Timbale</source>
-        <translation type="unfinished"/>
+        <translation>Tympan Isaf</translation>
     </message>
     <message>
         <source>High Agogo</source>
@@ -16696,11 +16927,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Short Whistle</source>
-        <translation type="unfinished"/>
+        <translation>Chwiban Bur</translation>
     </message>
     <message>
         <source>Long Whistle</source>
-        <translation type="unfinished"/>
+        <translation>Chwiban hir</translation>
     </message>
     <message>
         <source>Short Guiro</source>
@@ -16712,7 +16943,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Claves</source>
-        <translation type="unfinished"/>
+        <translation>Clafiau</translation>
     </message>
     <message>
         <source>Hi Wood Block</source>
@@ -16720,7 +16951,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Low Wood Block</source>
-        <translation type="unfinished"/>
+        <translation>Isel Pren Bloc</translation>
     </message>
     <message>
         <source>Mute Cuica</source>
@@ -16732,19 +16963,19 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Mute Triangle</source>
-        <translation type="unfinished"/>
+        <translation>Mud Triongl</translation>
     </message>
     <message>
         <source>Open Triangle</source>
-        <translation type="unfinished"/>
+        <translation>Agor Triongl</translation>
     </message>
     <message>
         <source>Shaker</source>
-        <translation type="unfinished"/>
+        <translation>Siglwr</translation>
     </message>
     <message>
         <source>Bell Tree</source>
-        <translation type="unfinished"/>
+        <translation>Pren Cloch</translation>
     </message>
     <message>
         <source>Mute Surdo</source>
@@ -16756,19 +16987,19 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ride Cymbal 1</source>
-        <translation type="unfinished"/>
+        <translation>Reid Symbal 1</translation>
     </message>
     <message>
         <source>Chinese Cymbal</source>
-        <translation>Kitejske činele</translation>
+        <translation>Tsieineaidd Symbal</translation>
     </message>
     <message>
         <source>Splash Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Sblash Symbol</translation>
     </message>
     <message>
         <source>Crash Cymbal 2</source>
-        <translation type="unfinished"/>
+        <translation>Symbal Gwrthdrawiad 2</translation>
     </message>
     <message>
         <source>Ride Cymbal 2</source>
@@ -16776,11 +17007,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Castanets</source>
-        <translation>Kastanjete</translation>
+        <translation>Castanedau</translation>
     </message>
     <message>
         <source>Square Click</source>
-        <translation type="unfinished"/>
+        <translation>Sgwâr Clic</translation>
     </message>
     <message>
         <source>Hi Bongo</source>
@@ -16799,7 +17030,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>C#</translation>
     </message>
     <message>
         <source>D</source>
@@ -16807,7 +17038,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Eb</source>
-        <translation type="unfinished"/>
+        <translation>Eb</translation>
     </message>
     <message>
         <source>E</source>
@@ -16819,7 +17050,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>F#</translation>
     </message>
     <message>
         <source>G</source>
@@ -16827,7 +17058,8 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ab</source>
-        <translation type="unfinished"/>
+        <translation>
+Ab</translation>
     </message>
     <message>
         <source>A</source>
@@ -16835,11 +17067,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Bb</source>
-        <translation>H</translation>
+        <translation>Bb</translation>
     </message>
     <message>
         <source>B</source>
-        <translation>H</translation>
+        <translation>B</translation>
     </message>
 </context>
 <context>
@@ -16850,7 +17082,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>C#</translation>
     </message>
     <message>
         <source>D</source>
@@ -16858,7 +17090,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Eb</source>
-        <translation type="unfinished"/>
+        <translation>Eb</translation>
     </message>
     <message>
         <source>E</source>
@@ -16870,7 +17102,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>F#</translation>
     </message>
     <message>
         <source>G</source>
@@ -16878,7 +17110,8 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ab</source>
-        <translation type="unfinished"/>
+        <translation>
+Ab</translation>
     </message>
     <message>
         <source>A</source>
@@ -16886,34 +17119,34 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Bb</source>
-        <translation>H</translation>
+        <translation>Bb</translation>
     </message>
     <message>
         <source>B</source>
-        <translation>H</translation>
+        <translation>B</translation>
     </message>
 </context>
 <context>
     <name>elementName</name>
     <message>
         <source>invalid</source>
-        <translation type="unfinished"/>
+        <translation>annilys</translation>
     </message>
     <message>
         <source>Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Symbol</translation>
     </message>
     <message>
         <source>Text</source>
-        <translation>Besedilo</translation>
+        <translation>Testyn</translation>
     </message>
     <message>
         <source>Line</source>
-        <translation>ÄŒrta</translation>
+        <translation>Llinell</translation>
     </message>
     <message>
         <source>Bracket</source>
-        <translation>prečka</translation>
+        <translation>Braced</translation>
     </message>
     <message>
         <source>Arpeggio</source>
@@ -16921,75 +17154,75 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Accidental</source>
-        <translation type="unfinished"/>
+        <translation>Hapnod</translation>
     </message>
     <message>
         <source>Stem</source>
-        <translation type="unfinished"/>
+        <translation>Bôn</translation>
     </message>
     <message>
         <source>Note</source>
-        <translation>Nota</translation>
+        <translation>Nodyn</translation>
     </message>
     <message>
         <source>Clef</source>
-        <translation>Ključ</translation>
+        <translation>Cleff</translation>
     </message>
     <message>
         <source>Rest</source>
-        <translation>Pavza</translation>
+        <translation>Gorffwys</translation>
     </message>
     <message>
         <source>Breath</source>
-        <translation type="unfinished"/>
+        <translation>Anadl</translation>
     </message>
     <message>
         <source>Glissando</source>
-        <translation>Glissando</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Image</source>
-        <translation>Slika</translation>
+        <translation>Delwedd</translation>
     </message>
     <message>
         <source>Tie</source>
-        <translation>Vezaj</translation>
+        <translation>Clwm</translation>
     </message>
     <message>
         <source>Articulation</source>
-        <translation type="unfinished"/>
+        <translation>Canu Glân</translation>
     </message>
     <message>
         <source>Dynamic</source>
-        <translation type="unfinished"/>
+        <translation>Dynamig</translation>
     </message>
     <message>
         <source>Beam</source>
-        <translation type="unfinished"/>
+        <translation>Trawst</translation>
     </message>
     <message>
         <source>Hook</source>
-        <translation type="unfinished"/>
+        <translation>Bachun</translation>
     </message>
     <message>
         <source>Lyrics</source>
-        <translation>Besedilo</translation>
+        <translation>Telyneg</translation>
     </message>
     <message>
         <source>Marker</source>
-        <translation type="unfinished"/>
+        <translation>Nodwr</translation>
     </message>
     <message>
         <source>Jump</source>
-        <translation type="unfinished"/>
+        <translation>Naid</translation>
     </message>
     <message>
         <source>Fingering</source>
-        <translation>Prstni red</translation>
+        <translation>Byseddu</translation>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Ritmična posebnost</translation>
+        <translation>Tuplet</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -16997,7 +17230,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Bend</source>
-        <translation type="unfinished"/>
+        <translation>Cerddorfa</translation>
     </message>
     <message>
         <source>Volta</source>
@@ -17005,7 +17238,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Spacer</source>
-        <translation type="unfinished"/>
+        <translation>Gwahanydd</translation>
     </message>
     <message>
         <source>Tremolo</source>
@@ -17013,19 +17246,19 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Measure</source>
-        <translation>Takt</translation>
+        <translation>Mesur</translation>
     </message>
     <message>
         <source>Selection</source>
-        <translation>Izbor</translation>
+        <translation>Detholiad</translation>
     </message>
     <message>
         <source>Lasso</source>
-        <translation type="unfinished"/>
+        <translation>Lasŵ</translation>
     </message>
     <message>
         <source>Page</source>
-        <translation>Stran</translation>
+        <translation>Tudalen</translation>
     </message>
     <message>
         <source>Ottava</source>
@@ -17033,39 +17266,39 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Pedal</source>
-        <translation type="unfinished"/>
+        <translation>Pedal</translation>
     </message>
     <message>
         <source>Trill</source>
-        <translation>Trilček</translation>
+        <translation>Tril</translation>
     </message>
     <message>
         <source>Segment</source>
-        <translation type="unfinished"/>
+        <translation>Segment</translation>
     </message>
     <message>
         <source>System</source>
-        <translation>Sistem</translation>
+        <translation>System</translation>
     </message>
     <message>
         <source>Compound</source>
-        <translation type="unfinished"/>
+        <translation>Cyfansawdd</translation>
     </message>
     <message>
         <source>Chord</source>
-        <translation>Akord</translation>
+        <translation>Tant</translation>
     </message>
     <message>
         <source>Slur</source>
-        <translation type="unfinished"/>
+        <translation>Llithriad</translation>
     </message>
     <message>
         <source>Element</source>
-        <translation type="unfinished"/>
+        <translation>Elfen</translation>
     </message>
     <message>
         <source>Icon</source>
-        <translation type="unfinished"/>
+        <translation>Delw</translation>
     </message>
     <message>
         <source>Ossia</source>
@@ -17073,59 +17306,59 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Instrument Name</source>
-        <translation type="unfinished"/>
+        <translation>Enw Offeren</translation>
     </message>
     <message>
         <source>Slur Segment</source>
-        <translation type="unfinished"/>
+        <translation>Darn Llithriad</translation>
     </message>
     <message>
         <source>Staff Lines</source>
-        <translation type="unfinished"/>
+        <translation>Llinell Staff</translation>
     </message>
     <message>
         <source>Bar Line</source>
-        <translation type="unfinished"/>
+        <translation>Llinell Bar</translation>
     </message>
     <message>
         <source>Stem Slash</source>
-        <translation type="unfinished"/>
+        <translation>Stem Slaes</translation>
     </message>
     <message>
         <source>Key Signature</source>
-        <translation>Predznaki</translation>
+        <translation>Allewdd Arwyddiant</translation>
     </message>
     <message>
         <source>Time Signature</source>
-        <translation>Določi taktovski način:</translation>
+        <translation>Amseriad Arwyddiant</translation>
     </message>
     <message>
         <source>Repeat Measure</source>
-        <translation type="unfinished"/>
+        <translation>Ailadroddiad Mesur</translation>
     </message>
     <message>
         <source>Chord Line</source>
-        <translation type="unfinished"/>
+        <translation>Llinell Tant</translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation type="unfinished"/>
+        <translation>Bas Rhifoledig</translation>
     </message>
     <message>
         <source>Staff Text</source>
-        <translation>Napis nad črtovje</translation>
+        <translation>Staff Testun </translation>
     </message>
     <message>
         <source>Rehearsal Mark</source>
-        <translation>Vadbene oznake</translation>
+        <translation>Marc Rihyrsal</translation>
     </message>
     <message>
         <source>Instrument Change</source>
-        <translation type="unfinished"/>
+        <translation>Newid Offeryn</translation>
     </message>
     <message>
         <source>Hairpin Segment</source>
-        <translation type="unfinished"/>
+        <translation>Darn Pingwallt</translation>
     </message>
     <message>
         <source>Ottava Segment</source>
@@ -17137,95 +17370,95 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Text Line Segment</source>
-        <translation type="unfinished"/>
+        <translation>Darn Llinell Testun</translation>
     </message>
     <message>
         <source>Volta Segment</source>
-        <translation type="unfinished"/>
+        <translation>Darn Folta</translation>
     </message>
     <message>
         <source>Pedal Segment</source>
-        <translation type="unfinished"/>
+        <translation>Pedal Darn</translation>
     </message>
     <message>
         <source>Layout Break</source>
-        <translation type="unfinished"/>
+        <translation>Gosodiad Toriad</translation>
     </message>
     <message>
         <source>Staff State</source>
-        <translation type="unfinished"/>
+        <translation>Cyflyrol Staff</translation>
     </message>
     <message>
         <source>Ledger Line</source>
-        <translation type="unfinished"/>
+        <translation>Llinell Ledjer</translation>
     </message>
     <message>
         <source>Note Head</source>
-        <translation type="unfinished"/>
+        <translation>Pen Nodyn</translation>
     </message>
     <message>
         <source>Note Dot</source>
-        <translation type="unfinished"/>
+        <translation>Nodyn Dot</translation>
     </message>
     <message>
         <source>Shadow Note</source>
-        <translation type="unfinished"/>
+        <translation>Cysgod Nodyn </translation>
     </message>
     <message>
         <source>Tab Duration Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Parhad Tab Symbol</translation>
     </message>
     <message>
         <source>Font Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Symbol Ffont</translation>
     </message>
     <message>
         <source>Hairpin</source>
-        <translation type="unfinished"/>
+        <translation>Pin gwallt</translation>
     </message>
     <message>
         <source>Text Line</source>
-        <translation type="unfinished"/>
+        <translation>Llinell Testun</translation>
     </message>
     <message>
         <source>Note Line</source>
-        <translation type="unfinished"/>
+        <translation>Llinell Nodyn</translation>
     </message>
     <message>
         <source>Element List</source>
-        <translation type="unfinished"/>
+        <translation>Rhestr Elfen </translation>
     </message>
     <message>
         <source>Staff List</source>
-        <translation type="unfinished"/>
+        <translation>Rhestr Staff</translation>
     </message>
     <message>
         <source>Measure List</source>
-        <translation type="unfinished"/>
+        <translation>Rhestr Mesur</translation>
     </message>
     <message>
         <source>Horizontal Frame</source>
-        <translation type="unfinished"/>
+        <translation>Ffram Llorweddol</translation>
     </message>
     <message>
         <source>Vertical Frame</source>
-        <translation type="unfinished"/>
+        <translation>Ffrâm Fertigol</translation>
     </message>
     <message>
         <source>Text Frame</source>
-        <translation type="unfinished"/>
+        <translation>Ffram Testun</translation>
     </message>
     <message>
         <source>Fretboard Diagram Frame</source>
-        <translation>Okvir za Slike prijemov</translation>
+        <translation>Ffram Bwrddfret Diagram</translation>
     </message>
     <message>
         <source>Bagpipe Embellishment</source>
-        <translation type="unfinished"/>
+        <translation>Bacbib Addurniad</translation>
     </message>
     <message>
         <source>Fretboard Diagram</source>
-        <translation>Slike prijemov</translation>
+        <translation>Bwrddfret Diagram</translation>
     </message>
     <message>
         <source>Ambitus</source>
@@ -17233,15 +17466,15 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Chord Symbol</source>
-        <translation>Simbol akorda</translation>
+        <translation>Simbol Tant</translation>
     </message>
     <message>
         <source>Tremolo Bar</source>
-        <translation type="unfinished"/>
+        <translation>Bar Tremolo</translation>
     </message>
     <message>
         <source>Melisma Line</source>
-        <translation type="unfinished"/>
+        <translation>Melisma Llinall</translation>
     </message>
     <message>
         <source>Glissando Segment</source>
@@ -17249,83 +17482,83 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Melisma Line Segment</source>
-        <translation type="unfinished"/>
+        <translation>Darn Melisma Llinall</translation>
     </message>
 </context>
 <context>
     <name>fotomode</name>
     <message>
         <source>Resize to A</source>
-        <translation type="unfinished"/>
+        <translation>Ailfeintio i A</translation>
     </message>
     <message>
         <source>Resize to B</source>
-        <translation type="unfinished"/>
+        <translation>Ailfeintio i B</translation>
     </message>
     <message>
         <source>Resize to C</source>
-        <translation type="unfinished"/>
+        <translation>Ailfeintio i C</translation>
     </message>
     <message>
         <source>Resize to D</source>
-        <translation type="unfinished"/>
+        <translation>Ailfeintio i D</translation>
     </message>
     <message>
         <source>Set size A</source>
-        <translation type="unfinished"/>
+        <translation>Set maint A</translation>
     </message>
     <message>
         <source>Set size B</source>
-        <translation type="unfinished"/>
+        <translation>Set maint B</translation>
     </message>
     <message>
         <source>Set size C</source>
-        <translation type="unfinished"/>
+        <translation>Set maint C</translation>
     </message>
     <message>
         <source>Set size D</source>
-        <translation type="unfinished"/>
+        <translation>Set maint D</translation>
     </message>
 </context>
 <context>
     <name>images_directory</name>
     <message>
         <source>Images</source>
-        <translation type="unfinished"/>
+        <translation>Delweddau</translation>
     </message>
 </context>
 <context>
     <name>inspector</name>
     <message>
         <source>Staff default</source>
-        <translation type="unfinished"/>
+        <translation>Rhagosodedig staff </translation>
     </message>
     <message>
         <source>Tick 1</source>
-        <translation type="unfinished"/>
+        <translation>Tipiad 1</translation>
     </message>
     <message>
         <source>Tick 2</source>
-        <translation type="unfinished"/>
+        <translation>Tipiad 2</translation>
     </message>
     <message>
         <source>Short 1</source>
-        <translation type="unfinished"/>
+        <translation>Cwta 1</translation>
     </message>
     <message>
         <source>Short 2</source>
-        <translation type="unfinished"/>
+        <translation>Cwta 2</translation>
     </message>
     <message>
         <source>[Custom]</source>
-        <translation type="unfinished"/>
+        <translation>[Arfer]</translation>
     </message>
 </context>
 <context>
     <name>jumpType</name>
     <message>
         <source>Da Capo</source>
-        <translation type="unfinished"/>
+        <translation>Da Capo</translation>
     </message>
     <message>
         <source>Da Capo al Fine</source>
@@ -17333,26 +17566,26 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Da Capo al Coda</source>
-        <translation type="unfinished"/>
+        <translation>Da Capo al Coda</translation>
     </message>
     <message>
         <source>D.S. al Coda</source>
-        <translation type="unfinished"/>
+        <translation>D.S. al Coda</translation>
     </message>
     <message>
         <source>D.S. al Fine</source>
-        <translation type="unfinished"/>
+        <translation>D.S. al Mân</translation>
     </message>
     <message>
         <source>D.S.</source>
-        <translation type="unfinished"/>
+        <translation>D.S.</translation>
     </message>
 </context>
 <context>
     <name>lines</name>
     <message>
         <source>Slur</source>
-        <translation type="unfinished"/>
+        <translation>Llithriad</translation>
     </message>
     <message>
         <source>Crescendo</source>
@@ -17363,26 +17596,26 @@ Measure is not empty</source>
     <name>magTable</name>
     <message>
         <source>Page Width</source>
-        <translation>Å irina strani</translation>
+        <translation>Lled Tudalen</translation>
     </message>
     <message>
         <source>Whole Page</source>
-        <translation>Celotna stran</translation>
+        <translation>Tudalen Cyfan</translation>
     </message>
     <message>
         <source>Two Pages</source>
-        <translation>Dve strani</translation>
+        <translation>Dwy Tudalen</translation>
     </message>
 </context>
 <context>
     <name>markerType</name>
     <message>
         <source>Segno</source>
-        <translation type="unfinished"/>
+        <translation>Sago</translation>
     </message>
     <message>
         <source>Coda</source>
-        <translation type="unfinished"/>
+        <translation>Coda</translation>
     </message>
     <message>
         <source>Varied coda</source>
@@ -17390,19 +17623,19 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Codetta</source>
-        <translation type="unfinished"/>
+        <translation>Codeta</translation>
     </message>
     <message>
         <source>Fine</source>
-        <translation type="unfinished"/>
+        <translation>Diwedd</translation>
     </message>
     <message>
         <source>To Coda</source>
-        <translation type="unfinished"/>
+        <translation>I Coda</translation>
     </message>
     <message>
         <source>Custom</source>
-        <translation type="unfinished"/>
+        <translation>Arfer</translation>
     </message>
     <message>
         <source>Segno variation</source>
@@ -17413,19 +17646,19 @@ Measure is not empty</source>
     <name>noteheadnames</name>
     <message>
         <source>Normal</source>
-        <translation type="unfinished"/>
+        <translation>Normal</translation>
     </message>
     <message>
         <source>Cross</source>
-        <translation type="unfinished"/>
+        <translation>Traws</translation>
     </message>
     <message>
         <source>Diamond</source>
-        <translation type="unfinished"/>
+        <translation>Diemwnt</translation>
     </message>
     <message>
         <source>Triangle</source>
-        <translation>Trikot</translation>
+        <translation>Triongl</translation>
     </message>
     <message>
         <source>Mi</source>
@@ -17433,11 +17666,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Slash</source>
-        <translation type="unfinished"/>
+        <translation>Slaes</translation>
     </message>
     <message>
         <source>XCircle</source>
-        <translation type="unfinished"/>
+        <translation>XCylch</translation>
     </message>
     <message>
         <source>Do</source>
@@ -17449,7 +17682,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Fa</source>
-        <translation>Fa</translation>
+        <translation>La</translation>
     </message>
     <message>
         <source>La</source>
@@ -17461,7 +17694,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Sol</source>
-        <translation>So</translation>
+        <translation>Sol</translation>
     </message>
     <message>
         <source>Alt. Brevis</source>
@@ -17472,80 +17705,80 @@ Measure is not empty</source>
     <name>plugins_directory</name>
     <message>
         <source>Plugins</source>
-        <translation>Vtičniki</translation>
+        <translation>Ategyn</translation>
     </message>
 </context>
 <context>
     <name>preferences</name>
     <message>
         <source>Never</source>
-        <translation>Nikoli</translation>
+        <translation>Byth</translation>
     </message>
     <message>
         <source>Every Day</source>
-        <translation type="unfinished"/>
+        <translation>Pob Dydd</translation>
     </message>
     <message>
         <source>Every 3 Days</source>
-        <translation type="unfinished"/>
+        <translation>Pob 3 Tridiau </translation>
     </message>
     <message>
         <source>Every Week</source>
-        <translation type="unfinished"/>
+        <translation>Pob Wythnos</translation>
     </message>
     <message>
         <source>Every 2 Weeks</source>
-        <translation type="unfinished"/>
+        <translation>Pob 2 Wythnos</translation>
     </message>
     <message>
         <source>Every Month</source>
-        <translation type="unfinished"/>
+        <translation>Pob Mis</translation>
     </message>
     <message>
         <source>Every 2 Months</source>
-        <translation type="unfinished"/>
+        <translation>Pob 2 Fis</translation>
     </message>
 </context>
 <context>
     <name>scores_directory</name>
     <message>
         <source>Scores</source>
-        <translation type="unfinished"/>
+        <translation>Sgoriau</translation>
     </message>
 </context>
 <context>
     <name>selectionfilter</name>
     <message>
         <source>Dynamics</source>
-        <translation>Dinamika</translation>
+        <translation>Dynameg</translation>
     </message>
     <message>
         <source>Fingering</source>
-        <translation>Prstni red</translation>
+        <translation>Byseddu</translation>
     </message>
     <message>
         <source>Lyrics</source>
-        <translation>Besedilo</translation>
+        <translation>Telyneg</translation>
     </message>
     <message>
         <source>Chord Symbols</source>
-        <translation>Simboli akordov</translation>
+        <translation>Symbolau tant</translation>
     </message>
     <message>
         <source>Other Text</source>
-        <translation type="unfinished"/>
+        <translation>Testun arall</translation>
     </message>
     <message>
         <source>Articulations</source>
-        <translation type="unfinished"/>
+        <translation>Canuon glân</translation>
     </message>
     <message>
         <source>Slurs</source>
-        <translation type="unfinished"/>
+        <translation>Llithriad</translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation type="unfinished"/>
+        <translation>Bas Rhifoledig</translation>
     </message>
     <message>
         <source>Ottava</source>
@@ -17557,19 +17790,19 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Grace Notes</source>
-        <translation>Okrasne note</translation>
+        <translation>Nodiadau gras</translation>
     </message>
     <message>
         <source>Pedal Lines</source>
-        <translation type="unfinished"/>
+        <translation>Llinelli pedal</translation>
     </message>
     <message>
         <source>Other Lines</source>
-        <translation type="unfinished"/>
+        <translation>Llinelli eraill</translation>
     </message>
     <message>
         <source>Arpeggios</source>
-        <translation>Arpeggi</translation>
+        <translation>Arpeggio</translation>
     </message>
     <message>
         <source>Glissandi</source>
@@ -17577,70 +17810,70 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Fretboard Diagrams</source>
-        <translation>Slike prijemov</translation>
+        <translation>Bwrddcribell Diagramau</translation>
     </message>
     <message>
         <source>Breath Marks</source>
-        <translation type="unfinished"/>
+        <translation>Marc anadl</translation>
     </message>
     <message>
         <source>Voice 1</source>
-        <translation>1. glas</translation>
+        <translation>Llais 1</translation>
     </message>
     <message>
         <source>Voice 2</source>
-        <translation>2. glas</translation>
+        <translation>Llais 2</translation>
     </message>
     <message>
         <source>Voice 3</source>
-        <translation>3. glas</translation>
+        <translation>Llais 3</translation>
     </message>
     <message>
         <source>Voice 4</source>
-        <translation>4. glas</translation>
+        <translation>LlaIs 4</translation>
     </message>
 </context>
 <context>
     <name>soundfonts_directory</name>
     <message>
         <source>Soundfonts</source>
-        <translation type="unfinished"/>
+        <translation>Ffonsain</translation>
     </message>
 </context>
 <context>
     <name>staff group header name</name>
     <message>
         <source>STANDARD STAFF</source>
-        <translation type="unfinished"/>
+        <translation>STAFF SAFONOL</translation>
     </message>
     <message>
         <source>PERCUSSION STAFF</source>
-        <translation type="unfinished"/>
+        <translation>STAFF TRAWIAD</translation>
     </message>
     <message>
         <source>TABLATURE STAFF</source>
-        <translation type="unfinished"/>
+        <translation>TABL NODIANT STAFF</translation>
     </message>
 </context>
 <context>
     <name>styles_directory</name>
     <message>
         <source>Styles</source>
-        <translation>Slog</translation>
+        <translation>Steiliau</translation>
     </message>
 </context>
 <context>
     <name>templates_directory</name>
     <message>
         <source>Templates</source>
-        <translation type="unfinished"/>
+        <translation>templedi</translation>
     </message>
 </context>
 <context>
     <name>trillType</name>
     <message>
         <source>Trill line</source>
-        <translation type="unfinished"/>
+        <translation>Llinell tril</translation>
     </message>
     <message>
         <source>Upprall line</source>
@@ -17654,10 +17887,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
@@ -17667,35 +17896,35 @@ Measure is not empty</source>
     </message>
     <message>
         <source>c#</source>
-        <translation type="unfinished"/>
+        <translation>c#</translation>
     </message>
     <message>
         <source>d</source>
-        <translation type="unfinished"/>
+        <translation>d</translation>
     </message>
     <message>
         <source>d#</source>
-        <translation type="unfinished"/>
+        <translation>d#</translation>
     </message>
     <message>
         <source>e</source>
-        <translation type="unfinished"/>
+        <translation>e</translation>
     </message>
     <message>
         <source>f</source>
-        <translation type="unfinished"/>
+        <translation>f</translation>
     </message>
     <message>
         <source>f#</source>
-        <translation type="unfinished"/>
+        <translation>f#</translation>
     </message>
     <message>
         <source>g</source>
-        <translation type="unfinished"/>
+        <translation>g</translation>
     </message>
     <message>
         <source>g#</source>
-        <translation type="unfinished"/>
+        <translation>g#</translation>
     </message>
     <message>
         <source>a</source>
@@ -17703,11 +17932,12 @@ Measure is not empty</source>
     </message>
     <message>
         <source>a#</source>
-        <translation type="unfinished"/>
+        <translation>
+a#</translation>
     </message>
     <message>
         <source>b</source>
-        <translation type="unfinished"/>
+        <translation>b</translation>
     </message>
     <message>
         <source>C</source>
@@ -17715,7 +17945,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>C#</translation>
     </message>
     <message>
         <source>D</source>
@@ -17723,7 +17953,8 @@ Measure is not empty</source>
     </message>
     <message>
         <source>D#</source>
-        <translation type="unfinished"/>
+        <translation>
+D#</translation>
     </message>
     <message>
         <source>E</source>
@@ -17735,7 +17966,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>F#</translation>
     </message>
     <message>
         <source>G</source>
@@ -17743,7 +17974,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>G#</source>
-        <translation type="unfinished"/>
+        <translation>G#</translation>
     </message>
     <message>
         <source>A</source>
@@ -17751,11 +17982,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>A#</source>
-        <translation type="unfinished"/>
+        <translation>A#</translation>
     </message>
     <message>
         <source>B</source>
-        <translation>H</translation>
+        <translation>B</translation>
     </message>
 </context>
 </TS>
\ No newline at end of file
diff --git a/share/locale/mscore_da.ts b/share/locale/mscore_da.ts
index fbc84ea..2be08f6 100644
--- a/share/locale/mscore_da.ts
+++ b/share/locale/mscore_da.ts
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glisando-inspektør</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Afspil</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nulstil afspilningsopsætning </translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Nulstil tidsspredningsværdi</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Ornamenteringsstil</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Standard</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barok</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Nulstil ornamenteringsstil</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Afspil</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nulstil afspilningsopsætning </translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glisando-inspektør</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>BÃ¥nd</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Afspil</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nulstil afspilningsværdi</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Vis tekst</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Layoutstil</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Nulstil layoutstil</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Afspilningsstil</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Kromatisk</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Hvide tangenter</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Sorte tangenter</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonisk</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Afspil</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nulstil afspilningsopsætning</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Tekstramme-inspektør</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Tekstramme</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Bundafstand</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Topmargen</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Nulstil værdi</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Nulstil topafstand</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Nulstil bundafstand</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Venstremargen</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Bundmargen</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Nulstil højremargenværdi</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Højremargen</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Nulstil bundmargenværdi</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Nulstil topmargenværdi</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Nulstil venstremargenværdi</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Topafstand</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Dobbelt praltrille</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Bølgelinje</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Nulstil værdi</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Ornamenteringsstil</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Retning</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Standard</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barok</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Nulstil ornamenteringsstil</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Afspil</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nulstil afspilningsværdi</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6048,14 +6249,6 @@ fejlede:</translation>
         <translation>tegnet $ selv</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>meta data mærke</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Tilgængelige mærker og deres nuværende værdi:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Gør gældende for alle stemmer</translation>
     </message>
@@ -6071,6 +6264,14 @@ fejlede:</translation>
         <source>page number, if there is more than one page</source>
         <translation>Sidenummer hvis der er mere end én side</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>meta data mærke, se nedenfor</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Tilgængelige meta data mærker og deres nuværende værdier:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7199,6 +7400,10 @@ vælg et andet navn:</translation>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation>Nodearket kan ikke gemmes online. Ret de ødelagte takter og prøv igen.</translation>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Bed om hjælp</translation>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7683,10 +7888,6 @@ fejlede: %2</translation>
         <translation>Skriv layoutfil fejlede: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>fil ikke fundet</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Intet valgt</translation>
     </message>
@@ -7698,6 +7899,10 @@ fejlede: %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Takt %1, nodelinje %2, stemme %3 er for lang. Forventet: %4; Fundet: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>XML læsefejl ved linje %1 kolonne %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8010,6 +8215,12 @@ Vælg en serie af takter som skal slås sammen og prøv igen</translation>
         <source>Transparent background</source>
         <translation>Gennemsigtig baggrund</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Kan ikke dele takten her:
+Første slag i takten</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10410,6 +10621,14 @@ mislykkedes:</translation>
         <source>Filter</source>
         <translation>Filter</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Eksporter RPN'er</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10734,7 +10953,7 @@ Besøg <a href="http://musescore.org">MuseScore hjemmesiden og h
     </message>
     <message>
         <source>Do you want to try to load this file anyway?</source>
-        <translation type="unfinished"/>
+        <translation>Vil du alligevel forsøge at indlæse filen? </translation>
     </message>
 </context>
 <context>
@@ -11266,6 +11485,14 @@ Vil du overskrive?</translation>
         <source>System flag</source>
         <translation>Systemflag</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Søg...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Ryd</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13614,10 +13841,6 @@ fejlede:</translation>
         <translation>Fjer-bjælke, hurtigere</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Palette</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Afspilningspanel</translation>
     </message>
@@ -13654,10 +13877,6 @@ fejlede:</translation>
         <translation>Tilføj sangtekst</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Tempomarkering...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Tilføj tempomarkering</translation>
     </message>
@@ -14014,10 +14233,6 @@ fejlede:</translation>
         <translation>Gentag det valgte</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Panorér klaverrulle</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Slå 'panoréring af klaverrulle' til/fra</translation>
     </message>
@@ -15582,6 +15797,22 @@ fejlede:</translation>
         <source>Set loop in position</source>
         <translation>Start ved afspilning i løkke</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Paletter</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Tempomarkering</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Zoom til 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Panorer klaverrulle</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16633,6 +16864,10 @@ Takten er ikke tom</translation>
         <source>Tablature2</source>
         <translation>2. Tabulatur</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Diskantnøgle valgfri 8vb</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17744,10 +17979,6 @@ Takten er ikke tom</translation>
         <source>Prallprall line</source>
         <translation>Dobbelt praltrillelinje</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Bøljelinje</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_de.ts b/share/locale/mscore_de.ts
index 3c77a3a..5c734c3 100644
--- a/share/locale/mscore_de.ts
+++ b/share/locale/mscore_de.ts
@@ -1743,7 +1743,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Tuplets</source>
-        <translation>N-tolen</translation>
+        <translation>N-Tolen Klammern</translation>
     </message>
     <message>
         <source>Display in concert pitch</source>
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissando-Inspekteur</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggien</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Wiedergabe</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Wert für 'Wiedergabe' zurücksetzen</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Wert für 'Zeitdehnung' zurücksetzen</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Ornamentstil</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Voreinstellung</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barock</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Wert für 'Ornamenttyp' zurücksetzen</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Wiedergabe</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Wert für 'Wiedergabe' zurücksetzen</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissando-Inspekteur</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Bending</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Wiedergabe</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Wert für 'Wiedergabe' zurücksetzen</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Text anzeigen</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Stil</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Wert für 'Stil' zurücksetzen</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Wiedergabestil</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Chromatisch</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Weiße Tasten</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Schwarze Tasten</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonisch</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Wiedergabe</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Wert für 'Wiedergabe' zurücksetzen</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -3958,7 +4056,7 @@ space unit</extracomment>
     <name>InspectorMarker</name>
     <message>
         <source>Marker</source>
-        <translation>Markierung</translation>
+        <translation>Sprungmarke</translation>
     </message>
     <message>
         <source>Label</source>
@@ -3986,15 +4084,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Marker type</source>
-        <translation>Markierungsart</translation>
+        <translation>Sprungmarkentyp</translation>
     </message>
     <message>
         <source>Marker Inspector</source>
-        <translation>Markierungsinspekteur</translation>
+        <translation>Sprungmarkeninspekteur</translation>
     </message>
     <message>
         <source>Reset Marker type value</source>
-        <translation>Wert für 'Markierungsart' zurücksetzen</translation>
+        <translation>Wert für 'Sprungmarkentyp' zurücksetzen</translation>
     </message>
     <message>
         <source>Reset Label value</source>
@@ -4002,7 +4100,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Marker Type</source>
-        <translation>Markierungstyp</translation>
+        <translation>Sprungmarkentyp</translation>
     </message>
     <message>
         <source>Segno variation</source>
@@ -4366,10 +4464,82 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Textrahmeninspekteur</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Textrahmen</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Abstand unten</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Oberer Rand</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Wert zurücksetzen</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Wert für 'Abstand oben' zurücksetzen</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Wert für 'Abstand unten' zurücksetzen</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Linker Rand</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Unterer Rand</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Wert für 'Rechter Rand' zurücksetzen</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Rechter Rand</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Wert für 'Unterer Rand' zurücksetzen</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Wert für 'Oberer Rand' zurücksetzen</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Wert für 'Linker Rand' zurücksetzen</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Abstand oben</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
-        <translation>Tempo</translation>
+        <translation>Tempotext</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -4385,7 +4555,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Tempo Marking Inspector</source>
-        <translation>Tempomarkierungsinspekteur</translation>
+        <translation>Tempotextinspekteur</translation>
     </message>
     <message>
         <source>Reset Tempo value</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Triller</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Wellenlinie</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Wert zurücksetzen</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Ornamentstil</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Richtung</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Voreinstellung</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barock</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Wert für 'Ornamenttyp' zurücksetzen</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Wiedergabe</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Wert für 'Wiedergabe' zurücksetzen</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -5199,7 +5400,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Tuplets</source>
-        <translation>N-tolen</translation>
+        <translation>N-Tolen</translation>
     </message>
     <message>
         <source>2</source>
@@ -6048,14 +6249,6 @@ fehlgeschlagen:</translation>
         <translation>das $-Zeichen selbst</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>Metadaten-Marke</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Verfügbare Marken und deren Werte:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Auf alle Auszüge anwenden</translation>
     </message>
@@ -6071,6 +6264,14 @@ fehlgeschlagen:</translation>
         <source>page number, if there is more than one page</source>
         <translation>Seitennummer, wenn es mehr als eine Seite gibt</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>Metadaten-Marke, siehe unten</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Verfügbare Metadaten-Marken und deren aktuellen Werte:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7200,6 +7401,10 @@ bitte wählen Sie einen anderen Namen:</translation>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation>Diese Partitur kann nicht online gespeichert werden. Bitte die korrupten Takte reparieren und dann nochmal versuchen.</translation>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Hilfe erbitten</translation>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7685,10 +7890,6 @@ fehlgeschlagen: %</translation>
         <translation>Datei schreiben schlug fehl: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>Datei nicht gefunden</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Keine Auswahl</translation>
     </message>
@@ -7700,6 +7901,10 @@ fehlgeschlagen: %</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Takt %1, Notenzeile %2, Stimme %3 zu lang. Erwartet: %4; Gefunden: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>XML Lesefehler in Zeile %1 Spalte %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8013,6 +8218,12 @@ Bitte zuerst Takte auswählen und dann nochmal probieren</translation>
         <source>Transparent background</source>
         <translation>Transparenter Hintergrund</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Kann Takt hier nicht aufspalten:
+Erster Schlag des Taktes</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10413,6 +10624,14 @@ fehlgeschlagen: </translation>
         <source>Filter</source>
         <translation>Suchfilter</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Exportiere RPNs</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11273,6 +11492,14 @@ Soll sie überschrieben werden?</translation>
         <source>System flag</source>
         <translation>System</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Suchen...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Löschen</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13621,10 +13848,6 @@ fehlgeschlagen: </translation>
         <translation>Gefächerter Balken, schneller</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Palette</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Wiedergabepult</translation>
     </message>
@@ -13661,12 +13884,8 @@ fehlgeschlagen: </translation>
         <translation>Liedtext hinzufügen</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Tempo…</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
-        <translation>Tempo hinzufügen</translation>
+        <translation>Tempotext hinzufügen</translation>
     </message>
     <message>
         <source>System Text</source>
@@ -14021,10 +14240,6 @@ fehlgeschlagen: </translation>
         <translation>Auswahl wiederholen</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Pianoroll nachführen</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Pianorollnachführung umschalten</translation>
     </message>
@@ -14162,11 +14377,11 @@ fehlgeschlagen: </translation>
     </message>
     <message>
         <source>Toggle count-in playback</source>
-        <translation>Einzählwiedergabe umschalten</translation>
+        <translation>Anzählwiedergabe umschalten</translation>
     </message>
     <message>
         <source>Play count-in at playback start</source>
-        <translation>Einzählen bei Wiedergabebegin</translation>
+        <translation>Anzählen bei Wiedergabebegin</translation>
     </message>
     <message>
         <source>Figured Bass</source>
@@ -15558,7 +15773,7 @@ fehlgeschlagen: </translation>
     </message>
     <message>
         <source>Toggle staccato</source>
-        <translation>Stakkato umschalten</translation>
+        <translation>Staccato umschalten</translation>
     </message>
     <message>
         <source>Toggle tenuto</source>
@@ -15588,6 +15803,22 @@ fehlgeschlagen: </translation>
         <source>Set loop in position</source>
         <translation>Schleifenanfang bestimmen</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Paletten</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Tempotext</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Vergrößerung auf 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Pianoroll nachführen</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -15656,7 +15887,7 @@ Takt ist nicht leer.</translation>
     </message>
     <message>
         <source>Staccatissimo</source>
-        <translation>Stacatissimo</translation>
+        <translation>Staccatissimo</translation>
     </message>
     <message>
         <source>Tenuto</source>
@@ -16639,6 +16870,10 @@ Takt ist nicht leer.</translation>
         <source>Tablature2</source>
         <translation>Tabulatur2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Violinschlüssel optional 8vb</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17073,7 +17308,7 @@ Takt ist nicht leer.</translation>
     </message>
     <message>
         <source>Marker</source>
-        <translation>Markierung</translation>
+        <translation>Sprungmarke</translation>
     </message>
     <message>
         <source>Jump</source>
@@ -17750,10 +17985,6 @@ Takt ist nicht leer.</translation>
         <source>Prallprall line</source>
         <translation>Trillerlinie</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Wellenlinie</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_el.ts b/share/locale/mscore_el.ts
index 2c79360..ac352f5 100644
--- a/share/locale/mscore_el.ts
+++ b/share/locale/mscore_el.ts
@@ -3043,6 +3043,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Ελεγκτής Glissando</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Αρπισμός</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Αναπαραγωγή</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Επαναφορά αξίας Αναπαραγωγής</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3108,6 +3127,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Επαναφορά αξίας έκτασης Χρόνου</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>προκαθορισμένο</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Μπαρόκ</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Αναπαραγωγή</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3280,6 +3323,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Ελεγκτής Glissando</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Αναπαραγωγή</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3560,6 +3622,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Εμφάνιση Κειμένου</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Χρωματικό</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Λευκά πλήκτρα</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Μαύρα πλήκτρα</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Διατονικό</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Αναπαραγωγή</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4367,6 +4465,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4497,13 +4667,37 @@ space unit</extracomment>
         <translation>Διπλή Ανάκρουση</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Κυματιστή Γραμμή</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Επαναφορά αξίας</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Κατεύθνση</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>προκαθορισμένο</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Μπαρόκ</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Αναπαραγωγή</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Επαναφορά αξίας Αναπαραγωγής</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4880,6 +5074,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6052,14 +6253,6 @@ failed: </source>
         <translation>το σύμβολο $ καθεαυτό</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>ετικέτα μετα-δεδομένων</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Διαθέσιμες ετικέτες και οι τωρινές τους αξίες:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Εφαρμογή σε όλα τα Μέρη</translation>
     </message>
@@ -6075,6 +6268,14 @@ failed: </source>
         <source>page number, if there is more than one page</source>
         <translation>αριθμός σελίδας, αν υπάρχουν περισσότερες από μία σελίδες</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7204,6 +7405,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7687,10 +7892,6 @@ failed: %2</source>
         <translation>Στυλ Γραφής απέτυχε: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>Το αρχείο δεν βρέθηκε</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Καμία επιλογή</translation>
     </message>
@@ -7702,6 +7903,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Μέτρο %1, πεντάγραμμο %2, φωνή %3 πολύ μεγάλο. Αναμενόμενο: %4; Βρέθηκε: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8015,6 +8220,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation>Διαφανές παρασκήνιο</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10416,6 +10626,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11271,6 +11489,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation>Σημαία συστήματος</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -12261,7 +12487,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>MuseScore: Tremolo Bar Properties</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Ιδιότητες Μπάρας Τρέμολου</translation>
     </message>
     <message>
         <source>Release(Up)</source>
@@ -13618,10 +13844,6 @@ failed: </source>
         <translation>Φτεροειδής ενωτική γραμμή, πιο γρήγορα</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Παλέτα</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Πίνακας Αναπαραγωγής</translation>
     </message>
@@ -13658,10 +13880,6 @@ failed: </source>
         <translation>Προσθήκη στίχων</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Σήμανση τέμπο</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Προσθήκη ένδειξης tempo</translation>
     </message>
@@ -14018,10 +14236,6 @@ failed: </source>
         <translation>Επανάληψη επιλογής</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15585,6 +15799,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16636,6 +16866,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation>Ταμπλατούρα2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -16669,7 +16903,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Sticks</source>
-        <translation type="unfinished"/>
+        <translation>Μπαγκέτες</translation>
     </message>
     <message>
         <source>Metronome Click</source>
@@ -17747,10 +17981,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation>Γραμμή Διπλής ανάκρουσης</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Κυματιστή Γραμμή</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_en_GB.ts b/share/locale/mscore_en_GB.ts
index f788cc8..c528a1d 100644
--- a/share/locale/mscore_en_GB.ts
+++ b/share/locale/mscore_en_GB.ts
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissando Inspector</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Play</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reset 'Play' value</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Reset 'Time stretch' value</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Ornament Style</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Default</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Baroque</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Reset 'Ornament Type' value</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Play</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reset 'Play' value</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissando Inspector</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Bend</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Play</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reset 'Play' value</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Show Text</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Style</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Reset 'Style' value</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Play Style</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Chromatic</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>White keys</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Black keys</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonic</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Play</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reset 'Play' value</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -3805,7 +3903,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Play until value</source>
-        <translation>Reset Play until value</translation>
+        <translation>Reset 'Play until' value</translation>
     </message>
     <message>
         <source>Reset Continue at value</source>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Text Frame Inspector</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Text Frame</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Bottom gap</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Top margin</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Reset value</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Reset 'Top gap' value</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Reset 'Bottom gap' value</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Left margin</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Bottom margin</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Reset 'Right margin' value</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Right margin</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Reset 'Bottom margin' value</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Reset 'Top margin' value</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Reset 'Left margin' value</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Top gap</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Prall Prall</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Wavy Line</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Reset value</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Ornament Style</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Direction</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Default</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Baroque</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Reset 'Ornament Type' value</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Play</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reset 'Play' value</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6048,14 +6249,6 @@ failed: </translation>
         <translation>the $ sign itself</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>meta data tag</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Available tags and their current values:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Apply to all Parts</translation>
     </message>
@@ -6071,6 +6264,14 @@ failed: </translation>
         <source>page number, if there is more than one page</source>
         <translation>page number, if there is more than one page</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>meta data tag, see below</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Available meta data tags and their current values:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7200,6 +7401,10 @@ please choose a different name:</translation>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation>This score cannot be saved online. Please fix the corrupted bars and try again.</translation>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Ask for Help</translation>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7683,10 +7888,6 @@ failed: %2</translation>
         <translation>Write Style failed: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>file not found</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>No selection</translation>
     </message>
@@ -7698,6 +7899,10 @@ failed: %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Bar %1, stave %2, voice %3 too long. Expected: %4; Found: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>XML read error at line %1 column %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8011,6 +8216,12 @@ Please select a range of bars to join and try again</translation>
         <source>Transparent background</source>
         <translation>Transparent background</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Cannot split bar here:
+First beat of bar</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -9524,7 +9735,7 @@ failed: </translation>
     </message>
     <message>
         <source>64th</source>
-        <translation>Hemisemidemiquaver</translation>
+        <translation>Hemidemisemiquaver</translation>
     </message>
     <message>
         <source>Export</source>
@@ -10249,7 +10460,7 @@ failed: </translation>
     </message>
     <message>
         <source>64th note</source>
-        <translation>Hemisemidemiquaver (64th note)</translation>
+        <translation>Hemidemisemiquaver (64th note)</translation>
     </message>
     <message>
         <source>64th note is active</source>
@@ -10411,6 +10622,14 @@ failed: </translation>
         <source>Filter</source>
         <translation>Filter</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Export RPNs</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11269,6 +11488,14 @@ Do you want to overwrite it?</translation>
         <source>System flag</source>
         <translation>System flag</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Search...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Clear</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -12228,7 +12455,7 @@ Do you want to overwrite it?</translation>
     </message>
     <message>
         <source>64th between notes</source>
-        <translation>hemisemidemiquaver between notes</translation>
+        <translation>hemidemisemiquaver between notes</translation>
     </message>
 </context>
 <context>
@@ -13463,11 +13690,11 @@ Demisemiquaver (32nd note)</translation>
     </message>
     <message>
         <source>64th note</source>
-        <translation>Hemisemidemiquaver (64th note)</translation>
+        <translation>Hemidemisemiquaver (64th note)</translation>
     </message>
     <message>
         <source>Note duration: 64th</source>
-        <translation>Note duration: hemisemidemiquaver</translation>
+        <translation>Note duration: hemidemisemiquaver</translation>
     </message>
     <message>
         <source>128th note</source>
@@ -13618,10 +13845,6 @@ Demisemiquaver (32nd note)</translation>
         <translation>Feathered beam, faster</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Palette</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Play Panel</translation>
     </message>
@@ -13658,10 +13881,6 @@ Demisemiquaver (32nd note)</translation>
         <translation>Add lyrics</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Tempo Marking...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Add tempo marking</translation>
     </message>
@@ -14018,10 +14237,6 @@ Demisemiquaver (32nd note)</translation>
         <translation>Repeat selection</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Pan piano roll</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Toggle pan piano roll</translation>
     </message>
@@ -14231,7 +14446,7 @@ Demisemiquaver (32nd note)</translation>
     </message>
     <message>
         <source>Note duration: 64th (TAB)</source>
-        <translation>Note duration: hemisemidemiquaver (TAB)</translation>
+        <translation>Note duration: hemidemisemiquaver (TAB)</translation>
     </message>
     <message>
         <source>Note duration: 128th (TAB)</source>
@@ -14899,7 +15114,7 @@ Demisemiquaver (32nd note)</translation>
     </message>
     <message>
         <source>128th Note</source>
-        <translation>Quasihemisemidemiquaver Note</translation>
+        <translation>Quasihemidemisemiquaver Note</translation>
     </message>
     <message>
         <source>Increase Active Duration</source>
@@ -15371,11 +15586,11 @@ Demisemiquaver (32nd note)</translation>
     </message>
     <message>
         <source>64th Note (TAB)</source>
-        <translation>Hemisemidemiquaver (TAB)</translation>
+        <translation>Hemidemisemiquaver (TAB)</translation>
     </message>
     <message>
         <source>128th Note (TAB)</source>
-        <translation>Quasihemisemidemiquaver (TAB)</translation>
+        <translation>Quasihemidemisemiquaver (TAB)</translation>
     </message>
     <message>
         <source>Increase Active Duration (TAB)</source>
@@ -15585,6 +15800,22 @@ Demisemiquaver (32nd note)</translation>
         <source>Set loop in position</source>
         <translation>Set loop in position</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Palettes</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Tempo Marking</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16636,6 +16867,10 @@ Bar is not empty</translation>
         <source>Tablature2</source>
         <translation>Tablature2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Treble clef optional 8vb</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17747,10 +17982,6 @@ Bar is not empty</translation>
         <source>Prallprall line</source>
         <translation>Prallprall line</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Wavy line</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_en_US.ts b/share/locale/mscore_en_US.ts
index a827745..c8969bf 100644
--- a/share/locale/mscore_en_US.ts
+++ b/share/locale/mscore_en_US.ts
@@ -2704,7 +2704,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Small value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Small' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -2931,15 +2931,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Has line value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Has line' value</translation>
     </message>
     <message>
         <source>Reset Head group value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Head group' value</translation>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Direction' value</translation>
     </message>
     <message>
         <source>Update range</source>
@@ -2947,7 +2947,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Head type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Head group' value</translation>
     </message>
     <message>
         <source>Normal</source>
@@ -3015,7 +3015,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Line thickness value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Line thickness' value</translation>
     </message>
     <message>
         <source>[Undefined]</source>
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reset 'Play' value</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3082,16 +3101,40 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Direction' value</translation>
     </message>
     <message>
         <source>Reset Anchor value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Anchor' value</translation>
     </message>
     <message>
         <source>Reset Time stretch value</source>
+        <translation>Reset 'Time stretch' value</translation>
+    </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Reset 'Ornament Type' value</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reset 'Play' value</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3129,7 +3172,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Type' value</translation>
     </message>
     <message>
         <source>Span from</source>
@@ -3145,15 +3188,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Span value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Span' value</translation>
     </message>
     <message>
         <source>Reset Span from value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Span from' value</translation>
     </message>
     <message>
         <source>Reset Span to value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Span to' value</translation>
     </message>
     <message>
         <source>Spantype</source>
@@ -3161,7 +3204,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Span type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Span type' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -3212,7 +3255,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Direction' value</translation>
     </message>
     <message>
         <source>Vertical position offset right</source>
@@ -3220,15 +3263,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset User position value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'User position' value</translation>
     </message>
     <message>
         <source>Reset Local Relayout value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Local Relayout' value</translation>
     </message>
     <message>
         <source>Reset Horizontal value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Horizontal' value</translation>
     </message>
     <message>
         <source>Left</source>
@@ -3248,11 +3291,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Grow right value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Grow right' value</translation>
     </message>
     <message>
         <source>Reset Grow left value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Grow left' value</translation>
     </message>
     <message>
         <source>Local relayout</source>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reset 'Play' value</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3323,15 +3385,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Vertical offset value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Vertical offset' value</translation>
     </message>
     <message>
         <source>Reset Horizontal offset value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Horizontal offset' value</translation>
     </message>
     <message>
         <source>Reset Stem direction value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Stem direction' value</translation>
     </message>
     <message>
         <source>Horizontal Offset</source>
@@ -3339,11 +3401,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Small Value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Small' value</translation>
     </message>
     <message>
         <source>Reset Stemless value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Stemless' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -3366,7 +3428,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Show courtesy value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Show courtesy' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -3405,11 +3467,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Velocity value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Velocity' value</translation>
     </message>
     <message>
         <source>Reset Dynamic range value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Dynamic range' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -3453,19 +3515,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Horizontal offset value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Horizontal offset' value</translation>
     </message>
     <message>
         <source>Reset Vertical offset value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Vertical offset' value</translation>
     </message>
     <message>
         <source>Reset Visible value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Visible' value</translation>
     </message>
     <message>
         <source>Reset Color value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Color' value</translation>
     </message>
 </context>
 <context>
@@ -3495,7 +3557,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Type' value</translation>
     </message>
     <message>
         <source>Fretboard Diagram</source>
@@ -3526,7 +3588,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Type' value</translation>
     </message>
     <message>
         <source>Straight</source>
@@ -3538,12 +3600,48 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Show text value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Show text' value</translation>
     </message>
     <message>
         <source>Show text</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Reset 'Style' value</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reset 'Play' value</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -3605,11 +3703,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Left gap value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Left gap' value</translation>
     </message>
     <message>
         <source>Reset Right gap value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Right gap' value</translation>
     </message>
 </context>
 <context>
@@ -3668,19 +3766,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Type' value</translation>
     </message>
     <message>
         <source>Reset Dynamic range value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Dynamic range' value</translation>
     </message>
     <message>
         <source>Reset Height value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Height' value</translation>
     </message>
     <message>
         <source>Reset Circled tip value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Circled tip' value</translation>
     </message>
     <message>
         <source>Crescendo</source>
@@ -3696,7 +3794,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Continue height value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Continue height' value</translation>
     </message>
 </context>
 <context>
@@ -3739,11 +3837,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Scale to frame size value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Scale to frame size' value</translation>
     </message>
     <message>
         <source>Reset Lock aspect ratio value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Lock aspect ratio' value</translation>
     </message>
     <message>
         <source>Lock aspect ratio</source>
@@ -3759,7 +3857,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Size in staff space units value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Size in staff space units' value</translation>
     </message>
 </context>
 <context>
@@ -3786,15 +3884,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Jump to value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Jump to' value</translation>
     </message>
     <message>
         <source>Reset Play until value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Play until' value</translation>
     </message>
     <message>
         <source>Reset Continue at value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Continue at' value</translation>
     </message>
 </context>
 <context>
@@ -3813,7 +3911,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Show courtesy value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Show courtesy' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -3888,15 +3986,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Line color value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Line color' value</translation>
     </message>
     <message>
         <source>Reset Allow diagonal value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Allow diagonal' value</translation>
     </message>
     <message>
         <source>Reset Line style value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Line style' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -3928,11 +4026,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Line thickness value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Line thickness' value</translation>
     </message>
     <message>
         <source>Reset Line visible value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Line visible' value</translation>
     </message>
     <message>
         <source>Line visible</source>
@@ -3979,11 +4077,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Marker type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Marker type' value</translation>
     </message>
     <message>
         <source>Reset Label value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Label' value</translation>
     </message>
     <message>
         <source>Marker Type</source>
@@ -4094,19 +4192,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Mirror head value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Mirror head' value</translation>
     </message>
     <message>
         <source>Reset Velocity type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Velocity type' value</translation>
     </message>
     <message>
         <source>Reset Head type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Head group' value</translation>
     </message>
     <message>
         <source>Reset Velocity value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Velocity' value</translation>
     </message>
     <message>
         <source>Mirror Head</source>
@@ -4118,11 +4216,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Head group value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Head group' value</translation>
     </message>
     <message>
         <source>Reset Small value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Small' value</translation>
     </message>
     <message>
         <source>Reset Tuning value</source>
@@ -4130,7 +4228,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Play value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Play' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4138,7 +4236,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Dot position value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Dot position' value</translation>
     </message>
     <message>
         <source>Line</source>
@@ -4205,11 +4303,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Type' value</translation>
     </message>
     <message>
         <source>Reset Placement value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Placement' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4225,7 +4323,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Numbers only value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Numbers only' value</translation>
     </message>
 </context>
 <context>
@@ -4244,7 +4342,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Small value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Small' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4276,11 +4374,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Leading space value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Leading space' value</translation>
     </message>
     <message>
         <source>Reset Trailing space value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Trailing space' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4303,7 +4401,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Line type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Line type' value</translation>
     </message>
     <message>
         <source>Line type</source>
@@ -4347,6 +4445,78 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Height value</source>
+        <translation>Reset 'Height' value</translation>
+    </message>
+</context>
+<context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Reset 'Top gap' value</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Reset 'Bottom gap' value</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Reset 'Right margin' value</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Reset 'Bottom margin' value</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Reset 'Top margin' value</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Reset 'Left margin' value</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4374,7 +4544,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Tempo value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Tempo' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4382,7 +4552,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Follow text value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Follow text' value</translation>
     </message>
 </context>
 <context>
@@ -4401,7 +4571,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Style value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Style' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4439,7 +4609,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Show courtesy value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Show courtesy' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4481,13 +4651,37 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Default</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Reset 'Ornament Type' value</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reset 'Play' value</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4537,7 +4731,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Direction' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4545,11 +4739,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Number type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Number type' value</translation>
     </message>
     <message>
         <source>Reset Bracket type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Bracket type' value</translation>
     </message>
     <message>
         <source>Number type</source>
@@ -4593,11 +4787,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Top gap value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Top gap' value</translation>
     </message>
     <message>
         <source>Reset Bottom gap value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Bottom gap' value</translation>
     </message>
     <message>
         <source>Bottom margin</source>
@@ -4621,19 +4815,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Left margin value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Left margin' value</translation>
     </message>
     <message>
         <source>Reset Right margin value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Right margin' value</translation>
     </message>
     <message>
         <source>Reset Top margin value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Top margin' value</translation>
     </message>
     <message>
         <source>Reset Bottom margin value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Bottom margin' value</translation>
     </message>
 </context>
 <context>
@@ -4660,7 +4854,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Type value</source>
-        <translation type="unfinished"/>
+        <translation>Reset 'Type' value</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7158,6 +7359,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7628,10 +7833,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7643,6 +7844,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7950,6 +8155,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10347,6 +10557,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11175,6 +11393,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13521,10 +13747,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation type="unfinished"/>
     </message>
@@ -13561,10 +13783,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13921,10 +14139,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15488,6 +15702,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16537,6 +16767,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17648,10 +17882,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_eo.ts b/share/locale/mscore_eo.ts
index 863ec59..4c4fa1b 100644
--- a/share/locale/mscore_eo.ts
+++ b/share/locale/mscore_eo.ts
@@ -285,38 +285,38 @@ p, li { white-space: pre-wrap; }
     <name>BreaksDialog</name>
     <message>
         <source>MuseScore: Add/Remove Line Breaks</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Aldoni/Forigi liniorompojn</translation>
     </message>
     <message>
         <source>Break lines every</source>
-        <translation type="unfinished"/>
+        <translation>Disrompi liniojn je ĉiu</translation>
     </message>
     <message>
         <source>Number of measures</source>
-        <translation type="unfinished"/>
+        <translation>Nombro de mezuroj</translation>
     </message>
     <message>
         <source>measures</source>
-        <translation type="unfinished"/>
+        <translation>mezuroj</translation>
     </message>
     <message>
         <source>Add line breaks at end of each system</source>
-        <translation type="unfinished"/>
+        <translation>Almeti liniorompojn post ĉiuj liniargrupoj.</translation>
     </message>
     <message>
         <source>Remove current line breaks</source>
-        <translation type="unfinished"/>
+        <translation>Forigi nunan linirompojn</translation>
     </message>
     <message>
         <source>Break lines every X measures</source>
-        <translation type="unfinished"/>
+        <translation>Disrompi liniojn je ĉiu X-a mezuro</translation>
     </message>
 </context>
 <context>
     <name>ChordBase</name>
     <message>
         <source>Glissando end</source>
-        <translation type="unfinished"/>
+        <translation>Glitfino</translation>
     </message>
 </context>
 <context>
@@ -370,7 +370,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Slash</source>
-        <translation type="unfinished"/>
+        <translation>Oblikva streko</translation>
     </message>
     <message>
         <source>XCircle</source>
@@ -528,7 +528,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Cancel</translation>
+        <translation>Nuligi</translation>
     </message>
     <message>
         <source>Name:</source>
@@ -552,7 +552,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>MIDI program:</source>
-        <translation type="unfinished"/>
+        <translation>MIDI-programaro:</translation>
     </message>
 </context>
 <context>
@@ -1305,7 +1305,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Staff Properties</source>
-        <translation>Stave Properties</translation>
+        <translation>Notliniarecoj</translation>
     </message>
     <message>
         <source>Invisible staff lines</source>
@@ -1321,7 +1321,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Staff line color:</source>
-        <translation type="unfinished"/>
+        <translation>Notlinia koloro:</translation>
     </message>
     <message>
         <source>Part name:</source>
@@ -1357,7 +1357,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Edit String Data...</source>
-        <translation type="unfinished"/>
+        <translation>Redakti signovicajn datumojn...</translation>
     </message>
     <message>
         <source>Show time signature</source>
@@ -1365,11 +1365,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Style group:</source>
-        <translation type="unfinished"/>
+        <translation>Stilgrupo:</translation>
     </message>
     <message>
         <source>Show barlines</source>
-        <translation type="unfinished"/>
+        <translation>Montri taktostrekojn</translation>
     </message>
     <message>
         <source>Show clef</source>
@@ -1393,7 +1393,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Do not hide if system is empty</source>
-        <translation type="unfinished"/>
+        <translation>Ne kaŝu iun se la liniargrupo estas vaka</translation>
     </message>
     <message>
         <source>Scale</source>
@@ -1409,7 +1409,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Hide system barline</source>
-        <translation type="unfinished"/>
+        <translation>Kaŝu liniargrupan taktostrekon.</translation>
     </message>
 </context>
 <context>
@@ -1432,7 +1432,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Stemless</source>
-        <translation>stemless</translation>
+        <translation>Senlinieta</translation>
     </message>
     <message>
         <source>Create a new staff type of current group.</source>
@@ -1496,11 +1496,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Stems and beams</source>
-        <translation type="unfinished"/>
+        <translation>Linietoj kaj traboj</translation>
     </message>
     <message>
         <source>Stem style:</source>
-        <translation type="unfinished"/>
+        <translation>Linieta stilo:</translation>
     </message>
     <message>
         <source>Beside staff</source>
@@ -1512,7 +1512,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Stem position:</source>
-        <translation type="unfinished"/>
+        <translation>Linieta pozicio:</translation>
     </message>
     <message>
         <source>Above</source>
@@ -1528,11 +1528,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>As short stem</source>
-        <translation type="unfinished"/>
+        <translation>Kiel mallonga linieto</translation>
     </message>
     <message>
         <source>As slashed stem</source>
-        <translation type="unfinished"/>
+        <translation>Kiel strekita linieto</translation>
     </message>
     <message>
         <source>Preview</source>
@@ -1552,7 +1552,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Show barlines</source>
-        <translation type="unfinished"/>
+        <translation>Montri taktostrekojn</translation>
     </message>
     <message>
         <source>Vertical offset:</source>
@@ -1612,7 +1612,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>At new system</source>
-        <translation type="unfinished"/>
+        <translation>Ĉe nova liniargrupo</translation>
     </message>
     <message>
         <source>At new meas.</source>
@@ -1627,7 +1627,7 @@ p, li { white-space: pre-wrap; }
     <name>EditStringDataBase</name>
     <message>
         <source>String Data</source>
-        <translation type="unfinished"/>
+        <translation>Signovicaj datumoj</translation>
     </message>
     <message>
         <source>Strings Tuning:</source>
@@ -1679,7 +1679,7 @@ p, li { white-space: pre-wrap; }
     <message>
         <source>System</source>
         <extracomment>a music system, a line of music</extracomment>
-        <translation>Sistemo</translation>
+        <translation>Liniargrupo</translation>
     </message>
     <message>
         <source>Measure</source>
@@ -1687,7 +1687,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Barlines</source>
-        <translation>Bar lines</translation>
+        <translation>Taktostrekoj</translation>
     </message>
     <message>
         <source>Notes</source>
@@ -1703,7 +1703,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Beams</source>
-        <translation>Beams</translation>
+        <translation>Traboj</translation>
     </message>
     <message>
         <source>Slurs/Ties</source>
@@ -1715,7 +1715,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Hairpins, Volta, Ottava</source>
-        <translation type="unfinished"/>
+        <translation>Harpingloj, Ripeto, Oktigo</translation>
     </message>
     <message>
         <source>Pedal, Trill</source>
@@ -1735,7 +1735,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Tuplets</source>
-        <translation>Tuplets</translation>
+        <translation>Duoloj</translation>
     </message>
     <message>
         <source>Display in concert pitch</source>
@@ -1774,7 +1774,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Create clef for all systems</source>
-        <translation>Create clef for all systems</translation>
+        <translation>Krei kleon por ĉiuj liniargrupoj</translation>
     </message>
     <message>
         <source>Music bottom margin:</source>
@@ -1782,7 +1782,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Staff distance:</source>
-        <translation type="unfinished"/>
+        <translation>Notliniara distanco:</translation>
     </message>
     <message>
         <source>Grand staff distance:</source>
@@ -1790,7 +1790,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Min. system distance:</source>
-        <translation type="unfinished"/>
+        <translation>Minimuma liniargrupdistanco:</translation>
     </message>
     <message>
         <source>Lyrics top margin:</source>
@@ -1830,11 +1830,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Max. system distance:</source>
-        <translation type="unfinished"/>
+        <translation>Maksimuma liniargrupdistanco:</translation>
     </message>
     <message>
         <source>Last system fill threshold:</source>
-        <translation>Last system fill threshold</translation>
+        <translation>Plenolimino de la lasta liniargrupo:</translation>
     </message>
     <message>
         <source>Show first</source>
@@ -1870,11 +1870,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Every system</source>
-        <translation>every system</translation>
+        <translation>Ĉiu liniargrupo</translation>
     </message>
     <message>
         <source>System bracket distance:</source>
-        <translation>System Bracket Distance:</translation>
+        <translation>Liniargrupa krampdistanco:</translation>
     </message>
     <message>
         <source>Brace distance:</source>
@@ -1890,15 +1890,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Note to barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>Distanco de noto al taktostreko:</translation>
     </message>
     <message>
         <source>Barline to note distance:</source>
-        <translation type="unfinished"/>
+        <translation>Distanco de taktostreko al noto:</translation>
     </message>
     <message>
         <source>Clef left margin:</source>
-        <translation type="unfinished"/>
+        <translation>Klea maldekstra marĝeno:</translation>
     </message>
     <message>
         <source>Minimum note distance:</source>
@@ -1906,11 +1906,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Key signature left margin:</source>
-        <translation type="unfinished"/>
+        <translation>Maldekstra marĝeno de gamsigno:</translation>
     </message>
     <message>
         <source>Time signature left margin:</source>
-        <translation type="unfinished"/>
+        <translation>Maldekstra marĝeno de taktosigno:</translation>
     </message>
     <message>
         <source>Clef/Key right margin:</source>
@@ -1918,7 +1918,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Clef to barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>Distanco de kleo al taktostreko:</translation>
     </message>
     <message>
         <source>Staff line thickness:</source>
@@ -1926,7 +1926,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Barline to accidental distance:</source>
-        <translation type="unfinished"/>
+        <translation>Distanco de taktostreko al kromsigno:</translation>
     </message>
     <message>
         <source>Show repeat bar tips ("winged" repeats)</source>
@@ -1942,7 +1942,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Barline thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Taktostreka diko:</translation>
     </message>
     <message>
         <source>End barline thickness:</source>
@@ -1954,15 +1954,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Double barline thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Duobla taktostreka diko:</translation>
     </message>
     <message>
         <source>Double barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>Duobla taktostreka distanco:</translation>
     </message>
     <message>
         <source>Shorten stems</source>
-        <translation type="unfinished"/>
+        <translation>Mallongigi linietojn</translation>
     </message>
     <message>
         <source>Progression:</source>
@@ -1970,7 +1970,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Shortest stem:</source>
-        <translation type="unfinished"/>
+        <translation>Plej mallonga linieto:</translation>
     </message>
     <message>
         <source>Accidental note distance:</source>
@@ -1998,7 +1998,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Stem thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Linieta diko:</translation>
     </message>
     <message>
         <source>Dot size:</source>
@@ -2018,23 +2018,23 @@ space unit</extracomment>
     </message>
     <message>
         <source>Beam thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Trabdiko:</translation>
     </message>
     <message>
         <source>Beam distance (in beam thickness units):</source>
-        <translation type="unfinished"/>
+        <translation>Trabdiko (en trabaj dikunitoj):</translation>
     </message>
     <message>
         <source>Broken beam minimum length:</source>
-        <translation type="unfinished"/>
+        <translation>Minimuma longo de disrompa trabo:</translation>
     </message>
     <message>
         <source>Flatten all beams</source>
-        <translation type="unfinished"/>
+        <translation>Ebenigi ĉiujn trabojn</translation>
     </message>
     <message>
         <source>Line thickness at end:</source>
-        <translation type="unfinished"/>
+        <translation>Liniodiko je la fino:</translation>
     </message>
     <message>
         <source>Line thickness middle:</source>
@@ -2054,15 +2054,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Grace note size:</source>
-        <translation type="unfinished"/>
+        <translation>Notetgrando:</translation>
     </message>
     <message>
         <source>Small clef size:</source>
-        <translation type="unfinished"/>
+        <translation>Kleeta grando:</translation>
     </message>
     <message>
         <source>Hairpins</source>
-        <translation>Hairpins</translation>
+        <translation>Harpingloj</translation>
     </message>
     <message>
         <source>Height:</source>
@@ -2074,7 +2074,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Volta</source>
-        <translation>Volta</translation>
+        <translation>Ripetosigno</translation>
     </message>
     <message>
         <source>Hook height:</source>
@@ -2082,11 +2082,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Line style:</source>
-        <translation>Line style:</translation>
+        <translation>Liniostilo:</translation>
     </message>
     <message>
         <source>Ottava</source>
-        <translation>Ottava</translation>
+        <translation>Oktigo</translation>
     </message>
     <message>
         <source>Pedal Line</source>
@@ -2303,7 +2303,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Maximum barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>Maksimuma taktostreka distanco:</translation>
     </message>
     <message>
         <source>Standard TAB clef</source>
@@ -2343,7 +2343,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Select swing ratio:</source>
-        <translation>Elekti svingritma rejŝon:</translation>
+        <translation>Elekti svingritma rilaton:</translation>
     </message>
     <message>
         <source>Musical text font:</source>
@@ -2383,7 +2383,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>System bracket thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Liniargrupa krampdiko:</translation>
     </message>
     <message>
         <source>Brace thickness:</source>
@@ -2435,7 +2435,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Naturals in Key Signatures</source>
-        <translation type="unfinished"/>
+        <translation>Bekvadratoj en gamsignoj</translation>
     </message>
     <message>
         <source>Vertical Distance from the Notes</source>
@@ -2527,7 +2527,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Barline to grace note distance:</source>
-        <translation type="unfinished"/>
+        <translation>Distance de taktostreko al noteto:</translation>
     </message>
 </context>
 <context>
@@ -2585,7 +2585,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>Sound Fonts</source>
@@ -2597,7 +2597,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Cannot load SoundFont %1</source>
-        <translation type="unfinished"/>
+        <translation>Åœargi sontiparon %1 ne eblas</translation>
     </message>
 </context>
 <context>
@@ -2623,25 +2623,25 @@ space unit</extracomment>
     </message>
     <message>
         <source>Show Text</source>
-        <translation>Show Text</translation>
+        <translation>Montri tekston</translation>
     </message>
     <message>
         <source>Text:</source>
-        <translation>Text:</translation>
+        <translation>Teksto:</translation>
     </message>
 </context>
 <context>
     <name>GreendotButton</name>
     <message>
         <source>Record</source>
-        <translation>record</translation>
+        <translation>rikordo</translation>
     </message>
 </context>
 <context>
     <name>ImportMidiPanel</name>
     <message>
         <source>Close MIDI import panel</source>
-        <translation type="unfinished"/>
+        <translation>Fermi MIDI-enportopanelon</translation>
     </message>
     <message>
         <source>Move track up</source>
@@ -2653,11 +2653,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Text charset:</source>
-        <translation type="unfinished"/>
+        <translation>Teksta signaro:</translation>
     </message>
     <message>
         <source>Apply MIDI import operations</source>
-        <translation type="unfinished"/>
+        <translation>Apliki MIDI-enportajn operaciojn</translation>
     </message>
     <message>
         <source>Apply</source>
@@ -2665,11 +2665,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Cancel not applied MIDI import operations</source>
-        <translation type="unfinished"/>
+        <translation>Nuligi neaplikitajn MIDI-enportajn operaciojn</translation>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Cancel</translation>
+        <translation>Nuligi</translation>
     </message>
 </context>
 <context>
@@ -2684,7 +2684,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Cancel</translation>
+        <translation>Nuligi</translation>
     </message>
     <message>
         <source>Insert empty measures</source>
@@ -2707,7 +2707,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Accidental Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Alteraciila reviziilo</translation>
     </message>
     <message>
         <source>Reset Small value</source>
@@ -2930,7 +2930,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Ambitus Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Tonampleksa reviziilo</translation>
     </message>
     <message>
         <source>Oct</source>
@@ -2950,7 +2950,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Update range</source>
-        <translation type="unfinished"/>
+        <translation>Äœisdatiga amplekso</translation>
     </message>
     <message>
         <source>Reset Head type value</source>
@@ -2974,7 +2974,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Slash</source>
-        <translation type="unfinished"/>
+        <translation>Oblikva streko</translation>
     </message>
     <message>
         <source>XCircle</source>
@@ -3034,6 +3034,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glitoreviziilo</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Ludi</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3085,7 +3104,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Articulation Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Artikulacia reviziilo</translation>
     </message>
     <message>
         <source>Reset Direction value</source>
@@ -3099,12 +3118,36 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
     <message>
         <source>Barline</source>
-        <translation type="unfinished"/>
+        <translation>Taktostreko</translation>
     </message>
     <message>
         <source>Style:</source>
@@ -3128,7 +3171,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Barline Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Taktostreka reviziilo</translation>
     </message>
     <message>
         <source>Type</source>
@@ -3179,7 +3222,7 @@ space unit</extracomment>
     <name>InspectorBeam</name>
     <message>
         <source>Beam</source>
-        <translation>Beam</translation>
+        <translation>Trabo</translation>
     </message>
     <message>
         <source>Auto</source>
@@ -3211,7 +3254,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Beam Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Traboreviziilo</translation>
     </message>
     <message>
         <source>Vertical position offset left</source>
@@ -3231,7 +3274,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Local Relayout value</source>
-        <translation type="unfinished"/>
+        <translation>Reeki valoron de loka rearanĝo</translation>
     </message>
     <message>
         <source>Reset Horizontal value</source>
@@ -3263,7 +3306,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Local relayout</source>
-        <translation type="unfinished"/>
+        <translation>Loka rearanĝo</translation>
     </message>
     <message>
         <source>User position</source>
@@ -3271,14 +3314,33 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glitoreviziilo</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Flekso</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Eroreviziilo</translation>
     </message>
     <message>
         <source>Layout Break</source>
-        <translation type="unfinished"/>
+        <translation>Aranĝosalto</translation>
     </message>
 </context>
 <context>
@@ -3322,11 +3384,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Stemless</source>
-        <translation>stemless</translation>
+        <translation>Senlinieta</translation>
     </message>
     <message>
         <source>Chord Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Akordoreviziilo</translation>
     </message>
     <message>
         <source>Reset Vertical offset value</source>
@@ -3369,7 +3431,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Clef Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Kleoreviziilo</translation>
     </message>
     <message>
         <source>Reset Show courtesy value</source>
@@ -3404,11 +3466,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>System</source>
-        <translation>System</translation>
+        <translation>Liniargrupo</translation>
     </message>
     <message>
         <source>Dynamic Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Dinamika reviziilo</translation>
     </message>
     <message>
         <source>Reset Velocity value</source>
@@ -3431,7 +3493,7 @@ space unit</extracomment>
     <name>InspectorElement</name>
     <message>
         <source>Element</source>
-        <translation>Element</translation>
+        <translation>Ero</translation>
     </message>
     <message>
         <source>Vertical offset</source>
@@ -3456,7 +3518,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Element Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Eroreviziilo</translation>
     </message>
     <message>
         <source>Reset Horizontal offset value</source>
@@ -3479,7 +3541,7 @@ space unit</extracomment>
     <name>InspectorEmpty</name>
     <message>
         <source>Empty Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Vaka reviziilo</translation>
     </message>
     <message>
         <source>Nothing selected</source>
@@ -3490,7 +3552,7 @@ space unit</extracomment>
     <name>InspectorFret</name>
     <message>
         <source>Ottava Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Oktiga reviziilo</translation>
     </message>
     <message>
         <source>Scale</source>
@@ -3525,7 +3587,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Glissando Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Glitoreviziilo</translation>
     </message>
     <message>
         <source>Reset Text value</source>
@@ -3551,12 +3613,48 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Show Text</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
     <message>
         <source>Element Group</source>
-        <translation type="unfinished"/>
+        <translation>Ergrupo</translation>
     </message>
     <message>
         <source>Set Color</source>
@@ -3572,7 +3670,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Element Group Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Ergrupa reviziilo</translation>
     </message>
     <message>
         <source>Color</source>
@@ -3647,7 +3745,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>System</source>
-        <translation>System</translation>
+        <translation>Liniargrupo</translation>
     </message>
     <message>
         <source>Velocity change</source>
@@ -3667,7 +3765,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Hairpin Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Harpingla reviziilo</translation>
     </message>
     <message>
         <source>Reset Velocity change value</source>
@@ -3691,11 +3789,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Crescendo</source>
-        <translation>crescendo</translation>
+        <translation>Kresĉendo</translation>
     </message>
     <message>
         <source>Decrescendo</source>
-        <translation>decrescendo</translation>
+        <translation>Diminuendo</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -3722,7 +3820,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Image Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Bildoreviziilo</translation>
     </message>
     <message>
         <source>Scale to frame size</source>
@@ -3750,11 +3848,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Lock aspect ratio value</source>
-        <translation type="unfinished"/>
+        <translation>Reeki ŝlosilon de ekranformata valoron</translation>
     </message>
     <message>
         <source>Lock aspect ratio</source>
-        <translation>lock aspect ratio</translation>
+        <translation>Åœlosi ekranformaton</translation>
     </message>
     <message>
         <source>Distance between two lines on a standard 5-line staff</source>
@@ -3789,7 +3887,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Jump Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Saltoreviziilo</translation>
     </message>
     <message>
         <source>Reset Jump to value</source>
@@ -3816,7 +3914,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Key Signature Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Gamsigna reviziilo</translation>
     </message>
     <message>
         <source>Reset Show courtesy value</source>
@@ -3847,7 +3945,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Lasso Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Lazoreviziilo</translation>
     </message>
     <message>
         <source>Vertical position</source>
@@ -3891,7 +3989,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Line Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Linia reviziilo</translation>
     </message>
     <message>
         <source>Reset Line color value</source>
@@ -4097,7 +4195,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Note Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Notoreviziilo</translation>
     </message>
     <message>
         <source>Reset Mirror head value</source>
@@ -4168,7 +4266,7 @@ space unit</extracomment>
     <name>InspectorOttava</name>
     <message>
         <source>Ottava</source>
-        <translation>Ottava</translation>
+        <translation>Oktigo</translation>
     </message>
     <message>
         <source>Type</source>
@@ -4208,7 +4306,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Ottava Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Oktiga reviziilo</translation>
     </message>
     <message>
         <source>Reset Type value</source>
@@ -4247,7 +4345,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Rest Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Silentoreviziilo</translation>
     </message>
     <message>
         <source>Reset Small value</source>
@@ -4306,7 +4404,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Slur Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Ligarka reviziilo</translation>
     </message>
     <message>
         <source>Reset Line type value</source>
@@ -4358,6 +4456,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Supra marĝeno</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Maldekstra marĝeno</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Malsupra marĝeno</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Dekstra marĝeno</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4404,7 +4574,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Text Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Tekstoreviziilo</translation>
     </message>
     <message>
         <source>Reset Style value</source>
@@ -4427,7 +4597,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Text Line Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Tekstlinia reviziilo</translation>
     </message>
 </context>
 <context>
@@ -4442,7 +4612,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Time Signature Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Taktosigna reviziilo</translation>
     </message>
     <message>
         <source>Reset Show courtesy value</source>
@@ -4488,11 +4658,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>default</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Ludi</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4500,7 +4694,7 @@ space unit</extracomment>
     <name>InspectorTuplet</name>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Duolo</translation>
     </message>
     <message>
         <source>Number</source>
@@ -4520,7 +4714,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Bracket</source>
-        <translation>Bracket</translation>
+        <translation>Krampo</translation>
     </message>
     <message>
         <source>Direction</source>
@@ -4540,7 +4734,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Tuplet Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Duola reviziilo</translation>
     </message>
     <message>
         <source>Reset Direction value</source>
@@ -4564,7 +4758,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Bracket type</source>
-        <translation type="unfinished"/>
+        <translation>Kramptipo</translation>
     </message>
 </context>
 <context>
@@ -4596,7 +4790,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Right margin</source>
-        <translation>Right margin</translation>
+        <translation>Dekstra marĝeno</translation>
     </message>
     <message>
         <source>Reset Top gap value</source>
@@ -4608,11 +4802,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Bottom margin</source>
-        <translation type="unfinished"/>
+        <translation>Malsupra marĝeno</translation>
     </message>
     <message>
         <source>Left margin</source>
-        <translation>Left margin</translation>
+        <translation>Maldekstra marĝeno</translation>
     </message>
     <message>
         <source>Top gap</source>
@@ -4624,7 +4818,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Top margin</source>
-        <translation type="unfinished"/>
+        <translation>Supra marĝeno</translation>
     </message>
     <message>
         <source>Reset Left margin value</source>
@@ -4647,7 +4841,7 @@ space unit</extracomment>
     <name>InspectorVolta</name>
     <message>
         <source>Volta</source>
-        <translation>Volta</translation>
+        <translation>Ripetosigno</translation>
     </message>
     <message>
         <source>Open</source>
@@ -4663,7 +4857,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Volta Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Ripetosigna reviziilo</translation>
     </message>
     <message>
         <source>Reset Type value</source>
@@ -4698,7 +4892,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Up</source>
-        <translation>Up</translation>
+        <translation>Supren</translation>
     </message>
     <message>
         <source>Down</source>
@@ -4706,11 +4900,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Add Staff</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni notliniaron</translation>
     </message>
     <message>
         <source>Add Linked Staff</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni ligitan notliniaron</translation>
     </message>
     <message>
         <source>1</source>
@@ -4765,7 +4959,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Cancel</translation>
+        <translation>Nuligi</translation>
     </message>
 </context>
 <context>
@@ -4804,11 +4998,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Add Staff</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni notliniaron</translation>
     </message>
     <message>
         <source>Add Linked Staff</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni ligitan notliniaron</translation>
     </message>
     <message>
         <source>Staves</source>
@@ -4828,7 +5022,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Staff type</source>
-        <translation type="unfinished"/>
+        <translation>Notliniara tipo</translation>
     </message>
     <message>
         <source>Instrument Genre Filter</source>
@@ -4867,6 +5061,13 @@ space unit</extracomment>
     </message>
     <message>
         <source>Add time signature to palette</source>
+        <translation>Aldoni taktosignon al paletro</translation>
+    </message>
+</context>
+<context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -5061,7 +5262,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Up</source>
-        <translation>Up</translation>
+        <translation>Supren</translation>
     </message>
     <message>
         <source>90°</source>
@@ -5077,7 +5278,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>End</source>
-        <translation>End</translation>
+        <translation>Fino</translation>
     </message>
     <message>
         <source>Place:</source>
@@ -5151,7 +5352,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Import</source>
-        <translation>Import</translation>
+        <translation>Enporti</translation>
     </message>
     <message>
         <source>Staff name</source>
@@ -5191,7 +5392,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Tuplets</source>
-        <translation>Tuplets</translation>
+        <translation>Duoloj</translation>
     </message>
     <message>
         <source>2</source>
@@ -5349,7 +5550,7 @@ Would you like to locate %2 now?</source>
     </message>
     <message>
         <source>Grace Notes</source>
-        <translation>Grace Notes</translation>
+        <translation>Notetoj</translation>
     </message>
     <message>
         <source>Clefs</source>
@@ -5357,7 +5558,7 @@ Would you like to locate %2 now?</source>
     </message>
     <message>
         <source>Key Signatures</source>
-        <translation>Key Signatures</translation>
+        <translation>Gamsignoj</translation>
     </message>
     <message>
         <source>Time Signatures</source>
@@ -5365,7 +5566,7 @@ Would you like to locate %2 now?</source>
     </message>
     <message>
         <source>Barlines</source>
-        <translation>Bar lines</translation>
+        <translation>Taktostrekoj</translation>
     </message>
     <message>
         <source>Lines</source>
@@ -5377,7 +5578,7 @@ Would you like to locate %2 now?</source>
     </message>
     <message>
         <source>Brackets</source>
-        <translation>Brackets</translation>
+        <translation>Krampoj</translation>
     </message>
     <message>
         <source>Articulations & Ornaments</source>
@@ -5413,7 +5614,7 @@ Would you like to locate %2 now?</source>
     </message>
     <message>
         <source>Beam Properties</source>
-        <translation>Beam Properties</translation>
+        <translation>Trabecoj</translation>
     </message>
     <message>
         <source>Frames & Measures</source>
@@ -5429,7 +5630,7 @@ Would you like to locate %2 now?</source>
     </message>
     <message>
         <source>Breaks & Spacers</source>
-        <translation type="unfinished"/>
+        <translation>Rompoj kaj interlinioj</translation>
     </message>
     <message>
         <source>Bagpipe Embellishments</source>
@@ -5444,19 +5645,20 @@ Would you like to locate %2 now?</source>
     <name>MeasureProperties</name>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>cannot change measure length:
 tuplet would cross measure</source>
-        <translation type="unfinished"/>
+        <translation>Ŝanĝi mezurlongon ne eblas:
+Duolo transpasus mezuron</translation>
     </message>
 </context>
 <context>
     <name>MeasurePropertiesBase</name>
     <message>
         <source>MuseScore: Measure Properties</source>
-        <translation>MuseScore: Measure Properties</translation>
+        <translation>MuseScore: Mezurecoj</translation>
     </message>
     <message>
         <source>Staves</source>
@@ -5468,7 +5670,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Staff</source>
-        <translation>Stave</translation>
+        <translation>Notliniaro</translation>
     </message>
     <message>
         <source>Visible</source>
@@ -5476,7 +5678,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Stemless</source>
-        <translation>Stemless</translation>
+        <translation>Senlinieta</translation>
     </message>
     <message>
         <source>a</source>
@@ -5544,7 +5746,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Measure number mode:</source>
-        <translation type="unfinished"/>
+        <translation>Muzurnumera modalo:</translation>
     </message>
     <message>
         <source>Nominal:</source>
@@ -5556,7 +5758,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Add to measure number:</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni al mezurnumero:</translation>
     </message>
     <message>
         <source>Do not count</source>
@@ -5584,7 +5786,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Break multimeasure rest</source>
-        <translation type="unfinished"/>
+        <translation>Disrompi plurmezuran silenton</translation>
     </message>
 </context>
 <context>
@@ -5599,7 +5801,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Cancel</translation>
+        <translation>Nuligi</translation>
     </message>
     <message>
         <source>Append empty measures</source>
@@ -5607,7 +5809,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Number of measures to append:</source>
-        <translation>Number of bars to append</translation>
+        <translation>Nombro de mezuroj almetenda:</translation>
     </message>
 </context>
 <context>
@@ -5776,7 +5978,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>%1 End of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 Fino de %2</translation>
     </message>
 </context>
 <context>
@@ -5794,39 +5996,39 @@ tuplet would cross measure</source>
     <name>Ms::ChordRest</name>
     <message>
         <source>Duplet</source>
-        <translation>Duonnotaro</translation>
+        <translation>Duolo</translation>
     </message>
     <message>
         <source>Triplet</source>
-        <translation>Trionnotaro</translation>
+        <translation>Triolo</translation>
     </message>
     <message>
         <source>Quadruplet</source>
-        <translation>Kvaronnotaro</translation>
+        <translation>Kvarolo</translation>
     </message>
     <message>
         <source>Sextuplet</source>
-        <translation>Sesonnotaro</translation>
+        <translation>Sesolo</translation>
     </message>
     <message>
         <source>Septuplet</source>
-        <translation>Seponnotaro</translation>
+        <translation>Sepolo</translation>
     </message>
     <message>
         <source>Octuplet</source>
-        <translation>Okonnotaro</translation>
+        <translation>Okolo</translation>
     </message>
     <message>
         <source>Custom Tuplet</source>
-        <translation type="unfinished"/>
+        <translation>Propra duolo</translation>
     </message>
     <message>
         <source>Quintuplet</source>
-        <translation>Kvinonnotaro</translation>
+        <translation>Kvinolo</translation>
     </message>
     <message>
         <source>Nonuplet</source>
-        <translation>NaÅ­onnotaro</translation>
+        <translation>NaÅ­olo</translation>
     </message>
     <message>
         <source>%1 Start of %2</source>
@@ -5834,7 +6036,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>%1 End of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 Fino de %2</translation>
     </message>
     <message>
         <source>Dotted %1</source>
@@ -6026,14 +6228,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
@@ -6049,6 +6243,14 @@ failed: </source>
         <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>metadatuma marko; vidu jen</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Haveblaj metadatumaj markoj kaj siaj nunaj valoroj:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -6070,11 +6272,11 @@ failed: </source>
     <name>Ms::Hairpin</name>
     <message>
         <source>Crescendo</source>
-        <translation>crescendo</translation>
+        <translation>Kresĉendo</translation>
     </message>
     <message>
         <source>Descrescendo</source>
-        <translation>decrescendo</translation>
+        <translation>Diminuendo</translation>
     </message>
     <message>
         <source>Custom</source>
@@ -6107,7 +6309,7 @@ failed: </source>
     </message>
     <message>
         <source>Inspector Subwindow</source>
-        <translation type="unfinished"/>
+        <translation>Reviziila subfenestro</translation>
     </message>
 </context>
 <context>
@@ -6156,15 +6358,15 @@ failed: </source>
     </message>
     <message>
         <source>Stem</source>
-        <translation>Stem</translation>
+        <translation>Linieto</translation>
     </message>
     <message>
         <source>Beam</source>
-        <translation>Beam</translation>
+        <translation>Trabo</translation>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Duolo</translation>
     </message>
 </context>
 <context>
@@ -6175,7 +6377,7 @@ failed: </source>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Duolo</translation>
     </message>
 </context>
 <context>
@@ -6215,7 +6417,7 @@ failed: </source>
     <name>Ms::InstrumentsWidget</name>
     <message>
         <source>Staff %1</source>
-        <translation>Stave %1</translation>
+        <translation>Notliniaro %1</translation>
     </message>
     <message>
         <source>Staves</source>
@@ -6227,7 +6429,7 @@ failed: </source>
     </message>
     <message>
         <source>Staff type</source>
-        <translation type="unfinished"/>
+        <translation>Notliniara tipo</translation>
     </message>
     <message>
         <source>Visible</source>
@@ -6242,7 +6444,7 @@ failed: </source>
     <name>Ms::KeyEditor</name>
     <message>
         <source>MuseScore: Key Signatures</source>
-        <translation>MuseScore: Key Signatures</translation>
+        <translation>MuseScore: Gamsignoj</translation>
     </message>
 </context>
 <context>
@@ -6318,11 +6520,11 @@ failed: </source>
     </message>
     <message>
         <source>Cannot upload: %1</source>
-        <translation type="unfinished"/>
+        <translation>Alŝuti ne eblas: %1</translation>
     </message>
     <message>
         <source>Please upgrade</source>
-        <translation type="unfinished"/>
+        <translation>Bonvole plibonigu</translation>
     </message>
     <message>
         <source>Your MuseScore version is too old to use this feature.<br/> <a href="%1">Please upgrade first</a>.</source>
@@ -6341,7 +6543,7 @@ failed: </source>
     <name>Ms::MScore</name>
     <message>
         <source>you cannot create an element</source>
-        <translation type="unfinished"/>
+        <translation>Vi ne povas krei eron</translation>
     </message>
 </context>
 <context>
@@ -6363,7 +6565,7 @@ failed: </source>
     </message>
     <message>
         <source>stemless</source>
-        <translation type="unfinished"/>
+        <translation>senlinieta</translation>
     </message>
 </context>
 <context>
@@ -6415,7 +6617,7 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>Save changes to the score "%1"
@@ -6432,11 +6634,11 @@ before closing?</source>
     </message>
     <message>
         <source>MIDI Files (*.mid *.midi *.kar);;</source>
-        <translation>MIDI Files (*.mid *.midi *.kar);;</translation>
+        <translation>MIDI-dosieroj (*.mid *.midi *.kar);;</translation>
     </message>
     <message>
         <source>Muse Data Files (*.md);;</source>
-        <translation>Muse Data Files (*.md);;</translation>
+        <translation>Datumdosieroj de Muse (*.md);;</translation>
     </message>
     <message>
         <source>Capella Files (*.cap *.capx);;</source>
@@ -6512,7 +6714,7 @@ before closing?</source>
     </message>
     <message>
         <source>MuseScore Palette (*.mpal)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Paletro: (*.mpal)</translation>
     </message>
     <message>
         <source>MuseScore: Load Plugin</source>
@@ -6540,7 +6742,7 @@ before closing?</source>
     </message>
     <message>
         <source>Standard MIDI File (*.mid)</source>
-        <translation>Standard MIDI File (*.mid)</translation>
+        <translation>MIDI-norma dosiero (*.mid)</translation>
     </message>
     <message>
         <source>PDF File (*.pdf)</source>
@@ -6568,7 +6770,7 @@ before closing?</source>
     </message>
     <message>
         <source>MuseScore: Export</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Elporti</translation>
     </message>
     <message>
         <source>MuseScore: Save As</source>
@@ -6576,7 +6778,7 @@ before closing?</source>
     </message>
     <message>
         <source>MuseScore: Export Parts</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Elporti partojn</translation>
     </message>
     <message>
         <source>"%1" already exists.
@@ -6624,7 +6826,7 @@ Do you want to replace it?
     </message>
     <message>
         <source>Repeat measure sign</source>
-        <translation>Repeat bar sign</translation>
+        <translation>Ripeti mezursignon</translation>
     </message>
     <message>
         <source>Line break</source>
@@ -6632,11 +6834,11 @@ Do you want to replace it?
     </message>
     <message>
         <source>Page break</source>
-        <translation>Page break</translation>
+        <translation>Paĝsalto</translation>
     </message>
     <message>
         <source>Section break</source>
-        <translation type="unfinished"/>
+        <translation>Sekciosalto</translation>
     </message>
     <message>
         <source>Staff spacer down</source>
@@ -6656,7 +6858,7 @@ Do you want to replace it?
     </message>
     <message>
         <source>Bracket</source>
-        <translation>Bracket</translation>
+        <translation>Krampo</translation>
     </message>
     <message>
         <source>Brace</source>
@@ -6729,7 +6931,8 @@ Do you want to replace it?
     <message>
         <source>No measure selected:
 Please select a measure and try again</source>
-        <translation>No Measure selected: please select a measure and try again.</translation>
+        <translation>Neniu mezuro selektiĝis:
+Bonvole selektu mezuron kaj reprovu.</translation>
     </message>
     <message>
         <source>synthesizer</source>
@@ -6741,7 +6944,7 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>File Operations</source>
-        <translation>File Operations</translation>
+        <translation>Dosieroperacioj</translation>
     </message>
     <message>
         <source>Transport Tools</source>
@@ -6765,7 +6968,7 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>Open &Recent</source>
-        <translation>Open &Recent</translation>
+        <translation>Malfermi &Lastatempa</translation>
     </message>
     <message>
         <source>&Edit</source>
@@ -6801,11 +7004,11 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>T&uplets</source>
-        <translation type="unfinished"/>
+        <translation>D&uoloj</translation>
     </message>
     <message>
         <source>&Layout</source>
-        <translation>&Layout</translation>
+        <translation>&Aranĝo</translation>
     </message>
     <message>
         <source>&Style</source>
@@ -6839,11 +7042,11 @@ Restore session?</source>
     </message>
     <message>
         <source>MuseScore: Tuplet Error</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Eraro je duolo</translation>
     </message>
     <message>
         <source>Cannot create tuplet with ratio %1 for duration %2</source>
-        <translation type="unfinished"/>
+        <translation>Krei duolon kun rilato %1 por daÅ­ro %2 ne eblas</translation>
     </message>
     <message>
         <source>Delete</source>
@@ -6898,7 +7101,7 @@ bonvole elektu malsaman nomon:</translation>
     <message>
         <source>System</source>
         <extracomment>The default language of the operating system. NOT a music system.</extracomment>
-        <translation>System</translation>
+        <translation>Liniargrupo</translation>
     </message>
     <message>
         <source>Please select one or more measures</source>
@@ -6939,11 +7142,11 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</source>
-        <translation type="unfinished"/>
+        <translation>Ĉiuj subtenataj dosieroj (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</translation>
     </message>
     <message>
         <source>All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</source>
-        <translation type="unfinished"/>
+        <translation>Ĉiuj subtenataj dosieroj (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</translation>
     </message>
     <message>
         <source>Zoom</source>
@@ -6959,7 +7162,7 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Key Signatures</source>
-        <translation>Key Signatures</translation>
+        <translation>Gamsignoj</translation>
     </message>
     <message>
         <source>Time Signatures</source>
@@ -6971,7 +7174,7 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Cannot create tuplet: Note value is too short</source>
-        <translation type="unfinished"/>
+        <translation>Krei duolon ne eblas: Notvaloro estas tro mallonga</translation>
     </message>
     <message>
         <source>MuseScore File (*.mscz)</source>
@@ -6991,7 +7194,7 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Show MIDI import panel</source>
-        <translation type="unfinished"/>
+        <translation>Montri MIDI-enportopanelon</translation>
     </message>
     <message>
         <source>Tempo text</source>
@@ -6999,11 +7202,11 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Staff text</source>
-        <translation type="unfinished"/>
+        <translation>Notliniara teksto</translation>
     </message>
     <message>
         <source>System text</source>
-        <translation type="unfinished"/>
+        <translation>Liniargrupa teksto</translation>
     </message>
     <message>
         <source>Rehearsal mark</source>
@@ -7023,7 +7226,7 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Change staff type</source>
-        <translation type="unfinished"/>
+        <translation>Ŝanĝi notliniaran tipon</translation>
     </message>
     <message>
         <source>Change instrument</source>
@@ -7163,12 +7366,16 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Cannot write into %1</source>
-        <translation type="unfinished"/>
+        <translation>Skribi en dosieron %1 ne eblas</translation>
     </message>
     <message>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7248,7 +7455,7 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Select Key Signature and Tempo:</source>
-        <translation type="unfinished"/>
+        <translation>Selekti gamsignon kaj tempon:</translation>
     </message>
     <message>
         <source>Key Signature</source>
@@ -7310,7 +7517,7 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>%1 End of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 Fino de %2</translation>
     </message>
     <message>
         <source>%1; Pitch: %2; Duration: %3%4</source>
@@ -7318,11 +7525,11 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Beat Slash</source>
-        <translation type="unfinished"/>
+        <translation>Pulsostreko</translation>
     </message>
     <message>
         <source>Rhythm Slash</source>
-        <translation type="unfinished"/>
+        <translation>Ritmostreko</translation>
     </message>
 </context>
 <context>
@@ -7340,7 +7547,7 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Properties...</source>
-        <translation>Properties…</translation>
+        <translation>Ecoj…</translation>
     </message>
     <message>
         <source>More Elements...</source>
@@ -7351,7 +7558,7 @@ bonvole elektu malsaman nomon:</translation>
     <name>Ms::PaletteBox</name>
     <message>
         <source>Palettes</source>
-        <translation>Palettes</translation>
+        <translation>Paletroj</translation>
     </message>
     <message>
         <source>Select workspace</source>
@@ -7367,18 +7574,18 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>new Palette</source>
-        <translation type="unfinished"/>
+        <translation>nova paletro</translation>
     </message>
     <message>
         <source>Single Palette</source>
-        <translation type="unfinished"/>
+        <translation>Unuopa paletro</translation>
     </message>
 </context>
 <context>
     <name>Ms::PaletteBoxButton</name>
     <message>
         <source>Palette Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Paletrecoj...</translation>
     </message>
     <message>
         <source>Insert New Palette...</source>
@@ -7386,11 +7593,11 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Move Palette Up</source>
-        <translation>Move Palette Up</translation>
+        <translation>Suprenmovi paletron</translation>
     </message>
     <message>
         <source>Move Palette Down</source>
-        <translation>Move Palette Down</translation>
+        <translation>Malsuprenmovi paletron</translation>
     </message>
     <message>
         <source>Enable Editing</source>
@@ -7427,15 +7634,15 @@ bonvole elektu malsaman nomon:</translation>
     <name>Ms::PluginCreator</name>
     <message>
         <source>File Operations</source>
-        <translation>File Operations</translation>
+        <translation>Dosieroperacioj</translation>
     </message>
     <message>
         <source>Edit Operations</source>
-        <translation type="unfinished"/>
+        <translation>Redakti operaciojn</translation>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>untitled</source>
@@ -7507,7 +7714,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>Choose Default Style for Imports</source>
-        <translation type="unfinished"/>
+        <translation>Elekti defaÅ­ltostilo por enportoj</translation>
     </message>
     <message>
         <source>Choose Score Folder</source>
@@ -7558,7 +7765,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>Update</source>
-        <translation>Update</translation>
+        <translation>Äœisdatigi</translation>
     </message>
     <message>
         <source>No update</source>
@@ -7641,10 +7848,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7656,6 +7859,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7677,7 +7884,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Measure: %1</source>
-        <translation type="unfinished"/>
+        <translation>Mezuro: %1</translation>
     </message>
     <message>
         <source>Start Measure: %1; Start Beat: %2</source>
@@ -7685,11 +7892,11 @@ failed: %2</source>
     </message>
     <message>
         <source>End Measure: %1; End Beat: %2</source>
-        <translation type="unfinished"/>
+        <translation>Fina mezuro: %1; fina takto: %2</translation>
     </message>
     <message>
         <source>Staff %1</source>
-        <translation>Stave %1</translation>
+        <translation>Notliniaro %1</translation>
     </message>
 </context>
 <context>
@@ -7751,7 +7958,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Bend Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Fleksecoj...</translation>
     </message>
     <message>
         <source>Add</source>
@@ -7759,7 +7966,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Volta Properties...</source>
-        <translation>Volta Properties…</translation>
+        <translation>Ripetecoj…</translation>
     </message>
     <message>
         <source>Time Signature Properties...</source>
@@ -7767,11 +7974,11 @@ failed: %2</source>
     </message>
     <message>
         <source>Line Properties...</source>
-        <translation>Line Properties…</translation>
+        <translation>Liniecoj…</translation>
     </message>
     <message>
         <source>Staff Text Properties...</source>
-        <translation>Stave Text Properties...</translation>
+        <translation>Notliniaraj tekstecoj...</translation>
     </message>
     <message>
         <source>Change Instrument Properties...</source>
@@ -7783,7 +7990,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Staff Properties...</source>
-        <translation>Stave Properties...</translation>
+        <translation>Notliniarecoj...</translation>
     </message>
     <message>
         <source>Measure</source>
@@ -7791,7 +7998,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Measure Properties...</source>
-        <translation>Measure Properties…</translation>
+        <translation>Mezurecoj…</translation>
     </message>
     <message>
         <source>Style...</source>
@@ -7803,7 +8010,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Section Break Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Sekciosaltaj ecoj...</translation>
     </message>
     <message>
         <source>Change Instrument...</source>
@@ -7811,7 +8018,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Glissando Properties...</source>
-        <translation>Glissando Properties…</translation>
+        <translation>Glitecoj…</translation>
     </message>
     <message>
         <source>Select</source>
@@ -7843,7 +8050,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Split Staff...</source>
-        <translation>Split Stave...</translation>
+        <translation>Disigi notliniaron...</translation>
     </message>
     <message>
         <source>Object Debugger</source>
@@ -7878,7 +8085,7 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>System Text Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Liniargrupaj tekstecoj...</translation>
     </message>
     <message>
         <source>Resolution (%1 DPI)...</source>
@@ -7963,6 +8170,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -7983,7 +8195,7 @@ Please select a range of measures to join and try again</source>
     </message>
     <message>
         <source>End of </source>
-        <translation type="unfinished"/>
+        <translation>Fino de</translation>
     </message>
     <message>
         <source>Annotations:</source>
@@ -8031,7 +8243,7 @@ Please select a range of measures to join and try again</source>
     </message>
     <message>
         <source>MuseScore: System Text Properties</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Liniargrupaj tekstecoj</translation>
     </message>
     <message>
         <source>MuseScore: Staff Text Properties</source>
@@ -8208,7 +8420,7 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Update Available</source>
-        <translation>Update Available</translation>
+        <translation>Äœisdatigo haveblas</translation>
     </message>
     <message>
         <source>No Update Available</source>
@@ -8267,7 +8479,7 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Finished! <a href="%1">Go to my score</a>.</source>
-        <translation type="unfinished"/>
+        <translation>Finis! <a href="%1">Iri al mia partituro</a>.</translation>
     </message>
     <message>
         <source>Error</source>
@@ -8540,11 +8752,11 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Odd Page Margins</source>
-        <translation>Odd Page Margins</translation>
+        <translation>Neparaj paĝmarĝenoj</translation>
     </message>
     <message>
         <source>Even Page Margins</source>
-        <translation>Even Page Margins</translation>
+        <translation>Paraj paĝmarĝenoj</translation>
     </message>
     <message>
         <source>Preview</source>
@@ -8560,7 +8772,7 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Cancel</translation>
+        <translation>Nuligi</translation>
     </message>
     <message>
         <source>Two sided</source>
@@ -8587,7 +8799,7 @@ bonvole elektu malsaman nomon:</translation>
     <name>Palette</name>
     <message>
         <source>Beam Properties</source>
-        <translation>Beam Properties</translation>
+        <translation>Trabecoj</translation>
     </message>
     <message>
         <source>Dynamics</source>
@@ -8603,11 +8815,11 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Barlines</source>
-        <translation>Bar lines</translation>
+        <translation>Taktostrekoj</translation>
     </message>
     <message>
         <source>Breaks && Spacers</source>
-        <translation type="unfinished"/>
+        <translation>Rompoj kaj interlinioj</translation>
     </message>
     <message>
         <source>Fingering</source>
@@ -8623,7 +8835,7 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Brackets</source>
-        <translation>Brackets</translation>
+        <translation>Krampoj</translation>
     </message>
     <message>
         <source>Breaths && Pauses</source>
@@ -8635,7 +8847,7 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Grace Notes</source>
-        <translation>Grace Notes</translation>
+        <translation>Notetoj</translation>
     </message>
     <message>
         <source>Lines</source>
@@ -8647,19 +8859,19 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Prima volta</source>
-        <translation>Prima volta</translation>
+        <translation>Unua ripeto</translation>
     </message>
     <message>
         <source>Seconda volta</source>
-        <translation>Seconda volta</translation>
+        <translation>Dua ripeto</translation>
     </message>
     <message>
         <source>Terza volta</source>
-        <translation>Terza volta</translation>
+        <translation>Tria ripeto</translation>
     </message>
     <message>
         <source>Seconda volta 2</source>
-        <translation>Seconda volta 2</translation>
+        <translation>Dua ripeto 2</translation>
     </message>
     <message>
         <source>8va</source>
@@ -8711,7 +8923,7 @@ bonvole elektu malsaman nomon:</translation>
     </message>
     <message>
         <source>Staff Changes</source>
-        <translation type="unfinished"/>
+        <translation>Notliniaraj ŝanĝoj</translation>
     </message>
     <message>
         <source>Arpeggios && Glissandi</source>
@@ -8789,7 +9001,7 @@ failed: </source>
     </message>
     <message>
         <source>Double barline</source>
-        <translation type="unfinished"/>
+        <translation>Duobla taktostreko</translation>
     </message>
     <message>
         <source>Start repeat</source>
@@ -8938,7 +9150,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI sound for part</source>
-        <translation>midi sound for part</translation>
+        <translation>MIDI-sono por parto</translation>
     </message>
     <message>
         <source>Part name</source>
@@ -8950,7 +9162,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI sound</source>
-        <translation type="unfinished"/>
+        <translation>MIDI-sono</translation>
     </message>
     <message>
         <source>Part Name</source>
@@ -9266,7 +9478,7 @@ failed: </source>
     </message>
     <message>
         <source>Enable MIDI input</source>
-        <translation>Enable MIDI input</translation>
+        <translation>Ebligi enigon de MIDI</translation>
     </message>
     <message>
         <source>Play notes when editing</source>
@@ -9318,7 +9530,7 @@ failed: </source>
     </message>
     <message>
         <source>Use JACK MIDI</source>
-        <translation type="unfinished"/>
+        <translation>Uzi MIDI-programaron JACK</translation>
     </message>
     <message>
         <source>Remember last connection(s)</source>
@@ -9414,7 +9626,7 @@ failed: </source>
     </message>
     <message>
         <source>Import</source>
-        <translation>Import</translation>
+        <translation>Enporti</translation>
     </message>
     <message>
         <source>Style Used for Import</source>
@@ -9434,11 +9646,11 @@ failed: </source>
     </message>
     <message>
         <source>Overture import character set:</source>
-        <translation type="unfinished"/>
+        <translation>Signaro por enporti de dosiero Overture</translation>
     </message>
     <message>
         <source>Guitar Pro import character set:</source>
-        <translation type="unfinished"/>
+        <translation>Signaro por enporti de dosiero Guitar Pro</translation>
     </message>
     <message>
         <source>MusicXML</source>
@@ -9446,15 +9658,15 @@ failed: </source>
     </message>
     <message>
         <source>Import layout</source>
-        <translation type="unfinished"/>
+        <translation>Enporti aranĝon</translation>
     </message>
     <message>
         <source>Import system and page breaks</source>
-        <translation type="unfinished"/>
+        <translation>Enporti liniargrupajn kaj paĝajn saltojn</translation>
     </message>
     <message>
         <source>MIDI</source>
-        <translation type="unfinished"/>
+        <translation>MIDI — ‘Muzik-Instrumenta digitala interfaco’</translation>
     </message>
     <message>
         <source>Quarter</source>
@@ -9478,7 +9690,7 @@ failed: </source>
     </message>
     <message>
         <source>Export</source>
-        <translation>Export</translation>
+        <translation>Elporti</translation>
     </message>
     <message>
         <source>PNG/SVG</source>
@@ -9498,19 +9710,19 @@ failed: </source>
     </message>
     <message>
         <source>Export layout</source>
-        <translation type="unfinished"/>
+        <translation>Elporti aranĝon</translation>
     </message>
     <message>
         <source>Export all system and page breaks</source>
-        <translation type="unfinished"/>
+        <translation>Elporti ĉiujn liniargrupajn kaj paĝajn saltojn</translation>
     </message>
     <message>
         <source>Export manually added system and page breaks only</source>
-        <translation type="unfinished"/>
+        <translation>Nur elporti mane aldonitajn liniargrupajn kaj paĝajn saltajn</translation>
     </message>
     <message>
         <source>Do not export system or page breaks</source>
-        <translation type="unfinished"/>
+        <translation>Ne elportu liniargrupajn aŭ paĝajn saltojn</translation>
     </message>
     <message>
         <source>Shortcuts</source>
@@ -9538,7 +9750,7 @@ failed: </source>
     </message>
     <message>
         <source>Update</source>
-        <translation>Update</translation>
+        <translation>Äœisdatigi </translation>
     </message>
     <message>
         <source>Automatic Update Check</source>
@@ -9546,7 +9758,7 @@ failed: </source>
     </message>
     <message>
         <source>Start empty</source>
-        <translation>start empty</translation>
+        <translation>Starti vake</translation>
     </message>
     <message>
         <source>Continue last session</source>
@@ -9582,7 +9794,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI remote control</source>
-        <translation type="unfinished"/>
+        <translation>MIDI-teleregilo</translation>
     </message>
     <message>
         <source>Rewind</source>
@@ -9650,7 +9862,7 @@ failed: </source>
     </message>
     <message>
         <source>Character Set Used When Importing Binary Files</source>
-        <translation type="unfinished"/>
+        <translation>Signaro uzita dum la enporto de duumaj dosieroj</translation>
     </message>
     <message>
         <source>Shortest note:</source>
@@ -9695,7 +9907,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI Input:</source>
-        <translation type="unfinished"/>
+        <translation>Enigo de MIDI:</translation>
     </message>
     <message>
         <source>Apply</source>
@@ -9895,7 +10107,7 @@ failed: </source>
     </message>
     <message>
         <source>Enable MIDI Input</source>
-        <translation>MIDI_a enigon ebligi</translation>
+        <translation>Ebligi enigon de MIDI</translation>
     </message>
     <message>
         <source>Default duration</source>
@@ -10071,11 +10283,11 @@ failed: </source>
     </message>
     <message>
         <source>MIDI Input</source>
-        <translation type="unfinished"/>
+        <translation>Enigo de MIDI</translation>
     </message>
     <message>
         <source>Choose MIDI Input</source>
-        <translation type="unfinished"/>
+        <translation>Selekti enigon de MIDI</translation>
     </message>
     <message>
         <source>Device</source>
@@ -10111,7 +10323,7 @@ failed: </source>
     </message>
     <message>
         <source>Import Tab</source>
-        <translation type="unfinished"/>
+        <translation>Enporti langeton</translation>
     </message>
     <message>
         <source>Build in style</source>
@@ -10123,19 +10335,19 @@ failed: </source>
     </message>
     <message>
         <source>Overture import character set</source>
-        <translation type="unfinished"/>
+        <translation>Enportsignaro por dosiero Overture</translation>
     </message>
     <message>
         <source>Choose Overture import character set</source>
-        <translation type="unfinished"/>
+        <translation>Elekti enportsignaron por dosiero Overture</translation>
     </message>
     <message>
         <source>Guitar Pro import character set</source>
-        <translation type="unfinished"/>
+        <translation>Enportsignaro por dosiero Guitar Pro</translation>
     </message>
     <message>
         <source>Choose Guitar Pro import character set</source>
-        <translation type="unfinished"/>
+        <translation>Elekti enportsignaron por dosiero Guitar Pro</translation>
     </message>
     <message>
         <source>Shortest note</source>
@@ -10243,7 +10455,7 @@ failed: </source>
     </message>
     <message>
         <source>Enable MIDI remote control</source>
-        <translation type="unfinished"/>
+        <translation>Ebligi MIDI-teleregilon</translation>
     </message>
     <message>
         <source>Is active</source>
@@ -10271,7 +10483,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI Remote Control</source>
-        <translation>MIDI Remote Control</translation>
+        <translation>MIDI-teleregilo</translation>
     </message>
     <message>
         <source>Show start center</source>
@@ -10315,15 +10527,15 @@ failed: </source>
     </message>
     <message>
         <source>Note input</source>
-        <translation type="unfinished"/>
+        <translation>Noton enigi</translation>
     </message>
     <message>
         <source>Note input is active</source>
-        <translation type="unfinished"/>
+        <translation>Notenigo estas aktiva</translation>
     </message>
     <message>
         <source>Note input record</source>
-        <translation type="unfinished"/>
+        <translation>Noteniga rikordo</translation>
     </message>
     <message>
         <source>Folders</source>
@@ -10361,6 +10573,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Elporti RPN-ojn</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10368,7 +10588,9 @@ failed: </source>
         <source>No note or lyrics selected:
 Please select a single note or lyrics and retry operation
 </source>
-        <translation type="unfinished"/>
+        <translation>Nek noto nek liriko estis elektita:
+Bonvole elektu unuopan noton aÅ­ lirikon, kaj reprovi la operacion.
+</translation>
     </message>
     <message>
         <source>Please select a single note or slur and retry operation
@@ -10384,7 +10606,7 @@ Please select a single note or lyrics and retry operation
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>No note or figured bass selected:
@@ -10454,7 +10676,8 @@ failed: %2</source>
     <message>
         <source>Cannot read file %1:
 </source>
-        <translation type="unfinished"/>
+        <translation>Legi dosieron %1 ne eblas:
+</translation>
     </message>
     <message>
         <source>bad format</source>
@@ -10701,7 +10924,7 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Import Capella</source>
-        <translation>MuseScore: Import Capella</translation>
+        <translation>MuseScore: Enporti de dosiero Capella</translation>
     </message>
     <message>
         <source>Load failed: </source>
@@ -10709,11 +10932,11 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Import Guitar Pro</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Enporti de dosiero Guitar Pro</translation>
     </message>
     <message>
         <source>MuseScore: Load MIDI</source>
-        <translation>MuseScore: load MIDI</translation>
+        <translation>MuseScore: Åœargi MIDI-datumoj</translation>
     </message>
     <message>
         <source>MuseScore: Load Style Failed</source>
@@ -10840,7 +11063,7 @@ Do you want to overwrite it?</source>
     <name>SectionBreakProperties</name>
     <message>
         <source>MuseScore: Section Break Properties</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: sekciosaltaj ecoj</translation>
     </message>
     <message>
         <source>Pause:</source>
@@ -10856,7 +11079,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Start new section with measure number one</source>
-        <translation type="unfinished"/>
+        <translation>Komenci novan sekcion kun mezurnumero unu.</translation>
     </message>
 </context>
 <context>
@@ -10875,11 +11098,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Element type:</source>
-        <translation type="unfinished"/>
+        <translation>Ertipo:</translation>
     </message>
     <message>
         <source>Same staff</source>
-        <translation type="unfinished"/>
+        <translation>Sama notliniaro</translation>
     </message>
     <message>
         <source>Same voice</source>
@@ -10891,7 +11114,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Same system</source>
-        <translation type="unfinished"/>
+        <translation>Sama liniargrupo</translation>
     </message>
     <message>
         <source>Replace selection</source>
@@ -10980,7 +11203,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Cancel</translation>
+        <translation>Nuligi</translation>
     </message>
     <message>
         <source>Enter Shortcut Sequence</source>
@@ -11007,7 +11230,7 @@ Do you want to overwrite it?</source>
     <name>SplitStaff</name>
     <message>
         <source>MuseScore: Edit Staff/Part Properties</source>
-        <translation>MuseScore: Edit Stave/Part Properties</translation>
+        <translation>MuseScore: Redakti notliniaraj/partaj ecoj</translation>
     </message>
     <message>
         <source>Split Staff</source>
@@ -11099,7 +11322,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>MIDI Action</source>
-        <translation>MIDI’a ago</translation>
+        <translation>Ago de MIDI</translation>
     </message>
     <message>
         <source>Voice:</source>
@@ -11193,6 +11416,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation>Liniargrupa flago</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11387,7 +11618,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Text margin:</source>
-        <translation type="unfinished"/>
+        <translation>Teksta marĝeno:</translation>
     </message>
     <message>
         <source>Border radius:</source>
@@ -11579,11 +11810,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Duolo</translation>
     </message>
     <message>
         <source>System</source>
-        <translation>System</translation>
+        <translation>Liniargrupo</translation>
     </message>
     <message>
         <source>Staff</source>
@@ -11611,7 +11842,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Volta</source>
-        <translation>Volta</translation>
+        <translation>Ripetosigno</translation>
     </message>
     <message>
         <source>Frame</source>
@@ -11631,7 +11862,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Ottava</source>
-        <translation>Ottava</translation>
+        <translation>Oktigo</translation>
     </message>
     <message>
         <source>Bend</source>
@@ -11736,7 +11967,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Add time signature to palette</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni taktosignon al paletro</translation>
     </message>
 </context>
 <context>
@@ -11782,7 +12013,7 @@ Do you want to overwrite it?</source>
     <name>TimesigWizard</name>
     <message>
         <source>Enter Time Signature:</source>
-        <translation>Enter Time Signature:</translation>
+        <translation>Enigi taktosignon:</translation>
     </message>
     <message>
         <source>/</source>
@@ -11854,7 +12085,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Enter Number of Measures</source>
-        <translation type="unfinished"/>
+        <translation>Enigi la nombron de mezuroj</translation>
     </message>
     <message>
         <source>Measures</source>
@@ -11897,7 +12128,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Up</source>
-        <translation>Up</translation>
+        <translation>Supren</translation>
     </message>
     <message>
         <source>Down</source>
@@ -12041,7 +12272,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Keep degree alterations</source>
-        <translation type="unfinished"/>
+        <translation>Konservi gradaliigojn</translation>
     </message>
     <message>
         <source>Options</source>
@@ -12097,11 +12328,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Single Sharps and Flats Only</source>
-        <translation type="unfinished"/>
+        <translation>Nur unuopaj diesoj kaj bemoloj</translation>
     </message>
     <message>
         <source>Use Double Sharps and Flats</source>
-        <translation type="unfinished"/>
+        <translation>Uzi duoblajn diesojn kaj bemolojn</translation>
     </message>
     <message>
         <source>Transpose Chromatically</source>
@@ -12124,19 +12355,19 @@ Do you want to overwrite it?</source>
     <name>Tremolo</name>
     <message>
         <source>Eighth through stem</source>
-        <translation type="unfinished"/>
+        <translation>Oka tra linieto</translation>
     </message>
     <message>
         <source>16th through stem</source>
-        <translation type="unfinished"/>
+        <translation>16-a tra linieto</translation>
     </message>
     <message>
         <source>32nd through stem</source>
-        <translation type="unfinished"/>
+        <translation>32-a tra linieto</translation>
     </message>
     <message>
         <source>64th through stem</source>
-        <translation type="unfinished"/>
+        <translation>64-a tra linieto</translation>
     </message>
     <message>
         <source>Eighth between notes</source>
@@ -12198,14 +12429,14 @@ Do you want to overwrite it?</source>
     <name>TupletBase</name>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Duolo</translation>
     </message>
 </context>
 <context>
     <name>TupletDialog</name>
     <message>
         <source>MuseScore: Create Tuplet</source>
-        <translation>MuseScore: create tuplet</translation>
+        <translation>MuseScore: Krei duolon</translation>
     </message>
     <message>
         <source>Type</source>
@@ -12225,7 +12456,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Bracket</source>
-        <translation>Bracket</translation>
+        <translation>Krampo</translation>
     </message>
     <message>
         <source>Relation:</source>
@@ -12241,7 +12472,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Auto bracket</source>
-        <translation>auto bracket</translation>
+        <translation>AÅ­tomate krampi</translation>
     </message>
 </context>
 <context>
@@ -12295,7 +12526,7 @@ Do you want to overwrite it?</source>
     <name>VoltaPropertyBase</name>
     <message>
         <source>Volta Properties</source>
-        <translation>Volta Properties</translation>
+        <translation>Ripetecoj</translation>
     </message>
     <message>
         <source>Text:</source>
@@ -12323,7 +12554,7 @@ failed: </source>
     <name>XmlStream</name>
     <message>
         <source>Extra content at end of document.</source>
-        <translation type="unfinished"/>
+        <translation>Ekstra enhavo en dokumentfino</translation>
     </message>
     <message>
         <source>Invalid entity value.</source>
@@ -12347,7 +12578,7 @@ failed: </source>
     </message>
     <message>
         <source>Illegal namespace declaration.</source>
-        <translation type="unfinished"/>
+        <translation>Malpermesita nomspaca deklaro.</translation>
     </message>
     <message>
         <source>Attribute redefined.</source>
@@ -12359,7 +12590,7 @@ failed: </source>
     </message>
     <message>
         <source>Invalid XML version string.</source>
-        <translation type="unfinished"/>
+        <translation>Nevalida XML-versia signovico.</translation>
     </message>
     <message>
         <source>Unsupported XML version.</source>
@@ -12383,11 +12614,11 @@ failed: </source>
     </message>
     <message>
         <source>Invalid attribute in XML declaration.</source>
-        <translation type="unfinished"/>
+        <translation>Nevalida atribuo en XML-deklaro.</translation>
     </message>
     <message>
         <source>Premature end of document.</source>
-        <translation type="unfinished"/>
+        <translation>AntaÅ­tempa dokumentfino</translation>
     </message>
     <message>
         <source>Invalid document.</source>
@@ -12407,7 +12638,7 @@ failed: </source>
     </message>
     <message>
         <source>Expected character data.</source>
-        <translation type="unfinished"/>
+        <translation>Signodatumoj esperiĝis.</translation>
     </message>
 </context>
 <context>
@@ -12422,7 +12653,7 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>SoundFont %1 already loaded</source>
@@ -12430,7 +12661,7 @@ failed: </source>
     </message>
     <message>
         <source>Cannot load SoundFont %1</source>
-        <translation type="unfinished"/>
+        <translation>Åœargi sontiparon %1 ne eblas</translation>
     </message>
 </context>
 <context>
@@ -12461,11 +12692,11 @@ failed: </source>
     </message>
     <message>
         <source>Flat-slash</source>
-        <translation type="unfinished"/>
+        <translation>Bemolostreko</translation>
     </message>
     <message>
         <source>Flat-slash2</source>
-        <translation type="unfinished"/>
+        <translation>Bemolostreko 2</translation>
     </message>
     <message>
         <source>Mirrored-flat2</source>
@@ -12513,15 +12744,15 @@ failed: </source>
     </message>
     <message>
         <source>Flat arrow up</source>
-        <translation type="unfinished"/>
+        <translation>Supren bemolsago</translation>
     </message>
     <message>
         <source>Flat arrow down</source>
-        <translation type="unfinished"/>
+        <translation>Malsupren bemolsago</translation>
     </message>
     <message>
         <source>Flat arrow both</source>
-        <translation type="unfinished"/>
+        <translation>AmbaÅ­en bemolsago</translation>
     </message>
     <message>
         <source>Natural arrow up</source>
@@ -12600,11 +12831,11 @@ failed: </source>
     </message>
     <message>
         <source>Export...</source>
-        <translation type="unfinished"/>
+        <translation>Elporti...</translation>
     </message>
     <message>
         <source>Export score</source>
-        <translation type="unfinished"/>
+        <translation>Elporti partituron</translation>
     </message>
     <message>
         <source>Save a copy of the score in various formats</source>
@@ -12612,7 +12843,7 @@ failed: </source>
     </message>
     <message>
         <source>Export Parts...</source>
-        <translation type="unfinished"/>
+        <translation>Elporti partojn...</translation>
     </message>
     <message>
         <source>Save a copy of the score's parts in various formats</source>
@@ -13020,7 +13251,7 @@ failed: </source>
     </message>
     <message>
         <source>Reset beam mode</source>
-        <translation type="unfinished"/>
+        <translation>Trabreĝimon reeki</translation>
     </message>
     <message>
         <source>Reset beam mode of selected measures</source>
@@ -13032,7 +13263,7 @@ failed: </source>
     </message>
     <message>
         <source>Up</source>
-        <translation>Up</translation>
+        <translation>Supren</translation>
     </message>
     <message>
         <source>Pitch up or move text or articulation up</source>
@@ -13184,11 +13415,11 @@ failed: </source>
     </message>
     <message>
         <source>Add staff above to selection</source>
-        <translation>liniaron aldoni super elektaĵo</translation>
+        <translation>Aldoni supran liniaron al elektaĵo</translation>
     </message>
     <message>
         <source>Add staff below to selection</source>
-        <translation>liniaron aldoni malsuper elektaĵo</translation>
+        <translation>Aldoni malsupran liniaron al elektaĵo</translation>
     </message>
     <message>
         <source>Slur</source>
@@ -13200,35 +13431,35 @@ failed: </source>
     </message>
     <message>
         <source>Crescendo</source>
-        <translation>crescendo</translation>
+        <translation>Kresĉendo</translation>
     </message>
     <message>
         <source>Add crescendo</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni kresĉendon</translation>
     </message>
     <message>
         <source>Decrescendo</source>
-        <translation>decrescendo</translation>
+        <translation>Diminuendo</translation>
     </message>
     <message>
         <source>Add decrescendo</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni diminuendon</translation>
     </message>
     <message>
         <source>Ottava 8va</source>
-        <translation type="unfinished"/>
+        <translation>Oktigo 8va</translation>
     </message>
     <message>
         <source>Add ottava 8va</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni oktigon 8va</translation>
     </message>
     <message>
         <source>Ottava 8vb</source>
-        <translation type="unfinished"/>
+        <translation>Oktigo 8vb</translation>
     </message>
     <message>
         <source>Add ottava 8vb</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni oktigon 8vb</translation>
     </message>
     <message>
         <source>Escape</source>
@@ -13272,7 +13503,7 @@ failed: </source>
     </message>
     <message>
         <source>Insert One Measure</source>
-        <translation type="unfinished"/>
+        <translation>Enmeti unu mezuron</translation>
     </message>
     <message>
         <source>Insert Measures...</source>
@@ -13292,7 +13523,7 @@ failed: </source>
     </message>
     <message>
         <source>Append Text Frame</source>
-        <translation type="unfinished"/>
+        <translation>Almeti tekstokadron</translation>
     </message>
     <message>
         <source>Insert Vertical Frame</source>
@@ -13308,35 +13539,35 @@ failed: </source>
     </message>
     <message>
         <source>Duplet</source>
-        <translation>Duonnotaro</translation>
+        <translation>Duolo</translation>
     </message>
     <message>
         <source>Triplet</source>
-        <translation>Trionnotaro</translation>
+        <translation>Triolo</translation>
     </message>
     <message>
         <source>Quadruplet</source>
-        <translation>Kvaronnotaro</translation>
+        <translation>Kvarolo</translation>
     </message>
     <message>
         <source>Quintuplet</source>
-        <translation>Kvinonnotaro</translation>
+        <translation>Kvinolo</translation>
     </message>
     <message>
         <source>Sextuplet</source>
-        <translation>Sesonnotaro</translation>
+        <translation>Sesolo</translation>
     </message>
     <message>
         <source>Septuplet</source>
-        <translation>Seponnotaro</translation>
+        <translation>Sepolo</translation>
     </message>
     <message>
         <source>Octuplet</source>
-        <translation>Okonnotaro</translation>
+        <translation>Okolo</translation>
     </message>
     <message>
         <source>Nonuplet</source>
-        <translation>NaÅ­onnotaro</translation>
+        <translation>NaÅ­olo</translation>
     </message>
     <message>
         <source>Other...</source>
@@ -13344,7 +13575,7 @@ failed: </source>
     </message>
     <message>
         <source>Other tuplets</source>
-        <translation>Aliaj notaroj</translation>
+        <translation>Aliaj duoloj</translation>
     </message>
     <message>
         <source>Longa</source>
@@ -13456,23 +13687,23 @@ failed: </source>
     </message>
     <message>
         <source>Grace: quarter</source>
-        <translation type="unfinished"/>
+        <translation>Noteto: kvarona</translation>
     </message>
     <message>
         <source>Grace: 16th</source>
-        <translation type="unfinished"/>
+        <translation>Noteto: 16-a</translation>
     </message>
     <message>
         <source>Add 16th grace note</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni 16-an noteton</translation>
     </message>
     <message>
         <source>Grace: 32nd</source>
-        <translation type="unfinished"/>
+        <translation>Noteto: 32-a</translation>
     </message>
     <message>
         <source>Add 32nd grace note</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni 32-an noteton</translation>
     </message>
     <message>
         <source>1</source>
@@ -13508,7 +13739,7 @@ failed: </source>
     </message>
     <message>
         <source>Enable MIDI input</source>
-        <translation>Enable MIDI input</translation>
+        <translation>Ebligi enigon de MIDI</translation>
     </message>
     <message>
         <source>Beam start</source>
@@ -13516,7 +13747,7 @@ failed: </source>
     </message>
     <message>
         <source>Beam middle</source>
-        <translation type="unfinished"/>
+        <translation>Trabmezo</translation>
     </message>
     <message>
         <source>No beam</source>
@@ -13528,7 +13759,7 @@ failed: </source>
     </message>
     <message>
         <source>Auto beam</source>
-        <translation>memtrabi</translation>
+        <translation>AÅ­tomate trabi</translation>
     </message>
     <message>
         <source>Feathered beam, slower</source>
@@ -13539,10 +13770,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paletro</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Ludpanelo</translation>
     </message>
@@ -13552,7 +13779,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI Import Panel</source>
-        <translation type="unfinished"/>
+        <translation>MIDI-enportopanelo</translation>
     </message>
     <message>
         <source>Mixer</source>
@@ -13579,10 +13806,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13592,7 +13815,7 @@ failed: </source>
     </message>
     <message>
         <source>Add system text</source>
-        <translation>Liniararan tekston aldoni</translation>
+        <translation>Aldoni liniargrupan tekston</translation>
     </message>
     <message>
         <source>Staff Text</source>
@@ -13600,7 +13823,7 @@ failed: </source>
     </message>
     <message>
         <source>Add staff text</source>
-        <translation>Liniaran tekston aldoni</translation>
+        <translation>Aldoni liniaran tekston</translation>
     </message>
     <message>
         <source>Text</source>
@@ -13824,7 +14047,7 @@ failed: </source>
     </message>
     <message>
         <source>Toggle Section Break</source>
-        <translation type="unfinished"/>
+        <translation>Baskuligi sekciosalton</translation>
     </message>
     <message>
         <source>Edit Element</source>
@@ -13864,7 +14087,7 @@ failed: </source>
     </message>
     <message>
         <source>Show Page Margins</source>
-        <translation type="unfinished"/>
+        <translation>Montri paĝmarĝenojn</translation>
     </message>
     <message>
         <source>Insert Special Characters...</source>
@@ -13939,10 +14162,6 @@ failed: </source>
         <translation>Ripeti la elektaĵon</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -14016,7 +14235,7 @@ failed: </source>
     </message>
     <message>
         <source>Split Measure</source>
-        <translation type="unfinished"/>
+        <translation>Disrompi mezuron</translation>
     </message>
     <message>
         <source>Page Settings...</source>
@@ -14052,7 +14271,7 @@ failed: </source>
     </message>
     <message>
         <source>Show inspector</source>
-        <translation type="unfinished"/>
+        <translation>Montri reviziilon</translation>
     </message>
     <message>
         <source>Loop</source>
@@ -14164,7 +14383,7 @@ failed: </source>
     </message>
     <message>
         <source>Decrease active duration (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Malkreski aktiva daÅ­ro (TAB)</translation>
     </message>
     <message>
         <source>Rest (TAB)</source>
@@ -14268,7 +14487,7 @@ failed: </source>
     </message>
     <message>
         <source>Add quarter grace note</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni kvaronnoteton</translation>
     </message>
     <message>
         <source>Chord Symbols...</source>
@@ -14380,7 +14599,7 @@ failed: </source>
     </message>
     <message>
         <source>Add brackets to element</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni krampojn al ero</translation>
     </message>
     <message>
         <source>Selection Filter</source>
@@ -14400,11 +14619,11 @@ failed: </source>
     </message>
     <message>
         <source>Go to the first element</source>
-        <translation type="unfinished"/>
+        <translation>Iri al la unua ero</translation>
     </message>
     <message>
         <source>Go to the last element</source>
-        <translation type="unfinished"/>
+        <translation>Iri al la lasta ero</translation>
     </message>
     <message>
         <source>Key Signatures...</source>
@@ -14412,7 +14631,7 @@ failed: </source>
     </message>
     <message>
         <source>Show key signature palette</source>
-        <translation type="unfinished"/>
+        <translation>Montri gamsignan paletron</translation>
     </message>
     <message>
         <source>Time Signatures...</source>
@@ -14420,7 +14639,7 @@ failed: </source>
     </message>
     <message>
         <source>Show time signature palette</source>
-        <translation type="unfinished"/>
+        <translation>Montri taktosignan paletron</translation>
     </message>
     <message>
         <source>Symbols...</source>
@@ -14428,7 +14647,7 @@ failed: </source>
     </message>
     <message>
         <source>Show symbol palette</source>
-        <translation type="unfinished"/>
+        <translation>Montri simbolaran paletron</translation>
     </message>
     <message>
         <source>Grace: eighth after</source>
@@ -14448,7 +14667,7 @@ failed: </source>
     </message>
     <message>
         <source>Insert one measure</source>
-        <translation type="unfinished"/>
+        <translation>Enmeti unu mezuron</translation>
     </message>
     <message>
         <source>Insert horizontal frame</source>
@@ -14472,7 +14691,7 @@ failed: </source>
     </message>
     <message>
         <source>Save Online...</source>
-        <translation type="unfinished"/>
+        <translation>Enrete konservi...</translation>
     </message>
     <message>
         <source>Save score on MuseScore.com</source>
@@ -14496,11 +14715,11 @@ failed: </source>
     </message>
     <message>
         <source>Fill With Slashes</source>
-        <translation type="unfinished"/>
+        <translation>Plenigi je oblikvaj strekoj</translation>
     </message>
     <message>
         <source>Toggle Rhythmic Slash Notation</source>
-        <translation type="unfinished"/>
+        <translation>Baskuligi ritmostrekan notacion</translation>
     </message>
     <message>
         <source>Start Center</source>
@@ -14552,7 +14771,7 @@ failed: </source>
     </message>
     <message>
         <source>Add/Remove Line Breaks...</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni/Forigi liniorompojn...</translation>
     </message>
     <message>
         <source>File: Open</source>
@@ -14564,7 +14783,7 @@ failed: </source>
     </message>
     <message>
         <source>File: Save online</source>
-        <translation type="unfinished"/>
+        <translation>Dosieron: Enrete konservi</translation>
     </message>
     <message>
         <source>File: Save as</source>
@@ -14580,7 +14799,7 @@ failed: </source>
     </message>
     <message>
         <source>Export parts</source>
-        <translation type="unfinished"/>
+        <translation>Elporti partojn</translation>
     </message>
     <message>
         <source>File: Close</source>
@@ -14592,7 +14811,7 @@ failed: </source>
     </message>
     <message>
         <source>Note input</source>
-        <translation type="unfinished"/>
+        <translation>Noton enigi</translation>
     </message>
     <message>
         <source>Respell pitches</source>
@@ -14620,7 +14839,7 @@ failed: </source>
     </message>
     <message>
         <source>Next Element</source>
-        <translation type="unfinished"/>
+        <translation>Sekva ero</translation>
     </message>
     <message>
         <source>Accessibility: Next element</source>
@@ -14636,11 +14855,11 @@ failed: </source>
     </message>
     <message>
         <source>First Element</source>
-        <translation type="unfinished"/>
+        <translation>Unua ero</translation>
     </message>
     <message>
         <source>Last Element</source>
-        <translation type="unfinished"/>
+        <translation>Lasta ero</translation>
     </message>
     <message>
         <source>Move Down</source>
@@ -14700,7 +14919,7 @@ failed: </source>
     </message>
     <message>
         <source>Select to End of Line</source>
-        <translation type="unfinished"/>
+        <translation>Selekti ĝis liniofino </translation>
     </message>
     <message>
         <source>Select to Beginning of Score</source>
@@ -14708,15 +14927,15 @@ failed: </source>
     </message>
     <message>
         <source>Select to End of Score</source>
-        <translation type="unfinished"/>
+        <translation>Selekti ĝis fino de partituro</translation>
     </message>
     <message>
         <source>Add Staff Above to Selection</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni supran liniaron al elektaĵo</translation>
     </message>
     <message>
         <source>Add Staff Below to Selection</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni malsupran liniaron al elektaĵo</translation>
     </message>
     <message>
         <source>Page: Previous</source>
@@ -14732,7 +14951,7 @@ failed: </source>
     </message>
     <message>
         <source>Page: End</source>
-        <translation type="unfinished"/>
+        <translation>Paĝo: Fino</translation>
     </message>
     <message>
         <source>Full measure rest</source>
@@ -14744,7 +14963,7 @@ failed: </source>
     </message>
     <message>
         <source>Append one measure</source>
-        <translation type="unfinished"/>
+        <translation>Almeti unu mezuron</translation>
     </message>
     <message>
         <source>Append text frame</source>
@@ -14764,7 +14983,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: Longa</source>
-        <translation type="unfinished"/>
+        <translation>NotodaÅ­ro: longa</translation>
     </message>
     <message>
         <source>Double Whole Note</source>
@@ -14772,7 +14991,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: Double whole</source>
-        <translation type="unfinished"/>
+        <translation>NotodaÅ­ro: duobla</translation>
     </message>
     <message>
         <source>Whole Note</source>
@@ -14780,7 +14999,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: Whole</source>
-        <translation type="unfinished"/>
+        <translation>NotodaÅ­ro: plena</translation>
     </message>
     <message>
         <source>Half Note</source>
@@ -14788,7 +15007,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: Half</source>
-        <translation type="unfinished"/>
+        <translation>NotodaÅ­ro: duona</translation>
     </message>
     <message>
         <source>Quarter Note</source>
@@ -14796,7 +15015,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: Quarter</source>
-        <translation type="unfinished"/>
+        <translation>NotodaÅ­ro: kvarona</translation>
     </message>
     <message>
         <source>Eighth Note</source>
@@ -14804,7 +15023,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: Eighth</source>
-        <translation type="unfinished"/>
+        <translation>NotodaÅ­ro: okona</translation>
     </message>
     <message>
         <source>16th Note</source>
@@ -14824,11 +15043,11 @@ failed: </source>
     </message>
     <message>
         <source>Increase Active Duration</source>
-        <translation type="unfinished"/>
+        <translation>Kreskigi aktivan daÅ­ron</translation>
     </message>
     <message>
         <source>Decrease Active Duration</source>
-        <translation type="unfinished"/>
+        <translation>Malkreski aktivan daÅ­ron</translation>
     </message>
     <message>
         <source>Augmentation Dot</source>
@@ -14856,35 +15075,35 @@ failed: </source>
     </message>
     <message>
         <source>Double Sharp</source>
-        <translation type="unfinished"/>
+        <translation>Duobla dieso</translation>
     </message>
     <message>
         <source>Note input: Double sharp</source>
-        <translation type="unfinished"/>
+        <translation>Notenigo: Duobla dieso</translation>
     </message>
     <message>
         <source>Note input: Sharp</source>
-        <translation type="unfinished"/>
+        <translation>Notenigo: Dieso</translation>
     </message>
     <message>
         <source>Note input: Natural</source>
-        <translation type="unfinished"/>
+        <translation>Notenigo: Bekvadrato</translation>
     </message>
     <message>
         <source>Note input: Flat</source>
-        <translation type="unfinished"/>
+        <translation>Noton enigi: Bemolo</translation>
     </message>
     <message>
         <source>Double Flat</source>
-        <translation type="unfinished"/>
+        <translation>Duobla bemolo</translation>
     </message>
     <message>
         <source>Note input: Double flat</source>
-        <translation type="unfinished"/>
+        <translation>Noton enigi: Duobla bemolo</translation>
     </message>
     <message>
         <source>Grace: Quarter</source>
-        <translation type="unfinished"/>
+        <translation>Noteto: kvarona</translation>
     </message>
     <message>
         <source>Grace: Eighth after</source>
@@ -14892,19 +15111,19 @@ failed: </source>
     </message>
     <message>
         <source>MIDI Input</source>
-        <translation type="unfinished"/>
+        <translation>Enigo de MIDI</translation>
     </message>
     <message>
         <source>Beam Start</source>
-        <translation type="unfinished"/>
+        <translation>Trabeko</translation>
     </message>
     <message>
         <source>Beam Middle</source>
-        <translation type="unfinished"/>
+        <translation>Trabmezo</translation>
     </message>
     <message>
         <source>No Beam</source>
-        <translation type="unfinished"/>
+        <translation>Neniu trabo</translation>
     </message>
     <message>
         <source>Beam 16th Sub</source>
@@ -14916,7 +15135,7 @@ failed: </source>
     </message>
     <message>
         <source>Auto Beam</source>
-        <translation type="unfinished"/>
+        <translation>AÅ­tomate trabi</translation>
     </message>
     <message>
         <source>Feathered Beam, Slower</source>
@@ -14936,7 +15155,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI import panel</source>
-        <translation type="unfinished"/>
+        <translation>MIDI-enportopanelo</translation>
     </message>
     <message>
         <source>Status bar</source>
@@ -15008,19 +15227,19 @@ failed: </source>
     </message>
     <message>
         <source>Toggle system break</source>
-        <translation type="unfinished"/>
+        <translation>Baskuligi liniargrupan salton</translation>
     </message>
     <message>
         <source>Toggle page break</source>
-        <translation type="unfinished"/>
+        <translation>Baskuligi paĝsalton</translation>
     </message>
     <message>
         <source>Toggle section break</source>
-        <translation type="unfinished"/>
+        <translation>Baskuligi sekciosalton</translation>
     </message>
     <message>
         <source>Edit element</source>
-        <translation type="unfinished"/>
+        <translation>Redakti eron</translation>
     </message>
     <message>
         <source>Show invisible</source>
@@ -15036,7 +15255,7 @@ failed: </source>
     </message>
     <message>
         <source>Show page margins</source>
-        <translation type="unfinished"/>
+        <translation>Montri paĝmarĝenojn</translation>
     </message>
     <message>
         <source>Insert special characters</source>
@@ -15088,11 +15307,11 @@ failed: </source>
     </message>
     <message>
         <source>Double Duration</source>
-        <translation type="unfinished"/>
+        <translation>Duobla daÅ­ro</translation>
     </message>
     <message>
         <source>Half Duration</source>
-        <translation type="unfinished"/>
+        <translation>Duona daÅ­ro</translation>
     </message>
     <message>
         <source>Repeat Selection</source>
@@ -15144,7 +15363,7 @@ failed: </source>
     </message>
     <message>
         <source>Split measure</source>
-        <translation type="unfinished"/>
+        <translation>Disrompi mezuron</translation>
     </message>
     <message>
         <source>Join measures</source>
@@ -15240,7 +15459,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: Longa (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>NotodaÅ­ro: longa (TAB)</translation>
     </message>
     <message>
         <source>Double Whole Note (TAB)</source>
@@ -15248,7 +15467,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: Double whole (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>NotodaÅ­ro: duobla (TAB)</translation>
     </message>
     <message>
         <source>Whole Note (TAB)</source>
@@ -15256,7 +15475,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: Whole (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>NotodaÅ­ro: plena (TAB)</translation>
     </message>
     <message>
         <source>Half Note (TAB)</source>
@@ -15264,7 +15483,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: Half (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>NotodaÅ­ro: duona (TAB)</translation>
     </message>
     <message>
         <source>Quarter Note (TAB)</source>
@@ -15272,7 +15491,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: Quarter (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>NotodaÅ­ro: kvarona (TAB)</translation>
     </message>
     <message>
         <source>Eighth Note (TAB)</source>
@@ -15280,7 +15499,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: Eighth (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>NotodaÅ­ro: okona (TAB)</translation>
     </message>
     <message>
         <source>16th Note (TAB)</source>
@@ -15300,11 +15519,11 @@ failed: </source>
     </message>
     <message>
         <source>Increase Active Duration (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Kreskigi aktivan daÅ­ron (TAB)</translation>
     </message>
     <message>
         <source>Decrease Active Duration (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Malkreski aktivan daÅ­ron (TAB)</translation>
     </message>
     <message>
         <source>Note input: Rest (TAB)</source>
@@ -15328,7 +15547,7 @@ failed: </source>
     </message>
     <message>
         <source>Add Brackets to Element</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni krampojn al ero</translation>
     </message>
     <message>
         <source>Toggle Create Multimeasure Rest</source>
@@ -15368,15 +15587,15 @@ failed: </source>
     </message>
     <message>
         <source>Fill with slashes</source>
-        <translation type="unfinished"/>
+        <translation>Plenigi je oblikvaj strekoj</translation>
     </message>
     <message>
         <source>Toggle rhythmic slash notation</source>
-        <translation type="unfinished"/>
+        <translation>Baskuligi ritmostrekan notacion</translation>
     </message>
     <message>
         <source>Add/remove line breaks</source>
-        <translation type="unfinished"/>
+        <translation>Aldoni/Forigi liniorompojn</translation>
     </message>
     <message>
         <source>Resequence rehearsal marks</source>
@@ -15492,36 +15711,54 @@ failed: </source>
     </message>
     <message>
         <source>Import PDF...</source>
-        <translation type="unfinished"/>
+        <translation>Enporti PDF-dosieron...</translation>
     </message>
     <message>
         <source>Import PDF</source>
-        <translation type="unfinished"/>
+        <translation>Enporti PDF-dosieron</translation>
     </message>
     <message>
         <source>Import a PDF file with an experimental service on musescore.com</source>
-        <translation type="unfinished"/>
+        <translation>Enporti PDF-dosieron per eksperimenta servo de musescore.com</translation>
     </message>
     <message>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Paletroj</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>Cannot rewrite measures:
 Tuplet would cross measure</source>
-        <translation type="unfinished"/>
+        <translation>Reskribi mezurojn ne eblas:
+Duolo transpasus mezuron</translation>
     </message>
     <message>
         <source>Cannot change local time signature:
 Measure is not empty</source>
-        <translation type="unfinished"/>
+        <translation>Ŝanĝi lokan taktosignon ne eblas:
+Mezuro ne estas vaka</translation>
     </message>
 </context>
 <context>
@@ -16553,6 +16790,10 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Tablature2</source>
+        <translation>Tablaturo 2</translation>
+    </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -16925,7 +17166,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Bracket</source>
-        <translation>Bracket</translation>
+        <translation>Krampo</translation>
     </message>
     <message>
         <source>Arpeggio</source>
@@ -16977,7 +17218,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Beam</source>
-        <translation>Beam</translation>
+        <translation>Trabo</translation>
     </message>
     <message>
         <source>Hook</source>
@@ -17001,7 +17242,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Duolo</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -17013,7 +17254,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Volta</source>
-        <translation>Volta</translation>
+        <translation>Ripetosigno</translation>
     </message>
     <message>
         <source>Spacer</source>
@@ -17025,7 +17266,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Measure</source>
-        <translation>Measure</translation>
+        <translation>Mezuro</translation>
     </message>
     <message>
         <source>Selection</source>
@@ -17041,7 +17282,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ottava</source>
-        <translation>Ottava</translation>
+        <translation>Oktigo</translation>
     </message>
     <message>
         <source>Pedal</source>
@@ -17057,7 +17298,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>System</source>
-        <translation>System</translation>
+        <translation>Liniargrupo</translation>
     </message>
     <message>
         <source>Compound</source>
@@ -17073,7 +17314,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Element</source>
-        <translation>Element</translation>
+        <translation>Ero</translation>
     </message>
     <message>
         <source>Icon</source>
@@ -17093,27 +17334,27 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Staff Lines</source>
-        <translation type="unfinished"/>
+        <translation>Notliniareroj</translation>
     </message>
     <message>
         <source>Bar Line</source>
-        <translation type="unfinished"/>
+        <translation>Taktostreko</translation>
     </message>
     <message>
         <source>Stem Slash</source>
-        <translation type="unfinished"/>
+        <translation>Linieta streko</translation>
     </message>
     <message>
         <source>Key Signature</source>
-        <translation>Key Signature</translation>
+        <translation>Gamsigno</translation>
     </message>
     <message>
         <source>Time Signature</source>
-        <translation>Enter Time Signature:</translation>
+        <translation>Taktosigno</translation>
     </message>
     <message>
         <source>Repeat Measure</source>
-        <translation type="unfinished"/>
+        <translation>Ripeti mezuron</translation>
     </message>
     <message>
         <source>Chord Line</source>
@@ -17141,7 +17382,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ottava Segment</source>
-        <translation type="unfinished"/>
+        <translation>Oktiga segmento</translation>
     </message>
     <message>
         <source>Trill Segment</source>
@@ -17153,7 +17394,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Volta Segment</source>
-        <translation>Volta</translation>
+        <translation>Ripetosegmento</translation>
     </message>
     <message>
         <source>Pedal Segment</source>
@@ -17161,11 +17402,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Layout Break</source>
-        <translation type="unfinished"/>
+        <translation>Aranĝosalto</translation>
     </message>
     <message>
         <source>Staff State</source>
-        <translation type="unfinished"/>
+        <translation>Notliniara stato</translation>
     </message>
     <message>
         <source>Ledger Line</source>
@@ -17205,15 +17446,15 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Element List</source>
-        <translation type="unfinished"/>
+        <translation>Erlisto</translation>
     </message>
     <message>
         <source>Staff List</source>
-        <translation type="unfinished"/>
+        <translation>Notliniara listo</translation>
     </message>
     <message>
         <source>Measure List</source>
-        <translation type="unfinished"/>
+        <translation>Mezurlisto</translation>
     </message>
     <message>
         <source>Horizontal Frame</source>
@@ -17310,7 +17551,7 @@ Measure is not empty</source>
     <name>inspector</name>
     <message>
         <source>Staff default</source>
-        <translation type="unfinished"/>
+        <translation>DefaÅ­lta notliniaro</translation>
     </message>
     <message>
         <source>Tick 1</source>
@@ -17368,7 +17609,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Crescendo</source>
-        <translation>crescendo</translation>
+        <translation>Kresĉendo</translation>
     </message>
 </context>
 <context>
@@ -17445,7 +17686,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Slash</source>
-        <translation type="unfinished"/>
+        <translation>Oblikva streko</translation>
     </message>
     <message>
         <source>XCircle</source>
@@ -17561,7 +17802,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ottava</source>
-        <translation>Ottava</translation>
+        <translation>Oktigo</translation>
     </message>
     <message>
         <source>Tremolo</source>
@@ -17569,7 +17810,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Grace Notes</source>
-        <translation>Grace Notes</translation>
+        <translation>Notetoj</translation>
     </message>
     <message>
         <source>Pedal Lines</source>
@@ -17631,7 +17872,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>TABLATURE STAFF</source>
-        <translation type="unfinished"/>
+        <translation>TABLATURA NOTLINIARO</translation>
     </message>
 </context>
 <context>
@@ -17666,10 +17907,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_es.ts b/share/locale/mscore_es.ts
index d9f0c5b..88edc1a 100644
--- a/share/locale/mscore_es.ts
+++ b/share/locale/mscore_es.ts
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Inspector de Glissando</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpegio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproducir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restablecer reproducir</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Restablecer expansión temporal</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Estilo de Ornamento</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Predeterminado</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barroco</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Restablecer tipo de Ornamento</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproducir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restablecer reproducir</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Inspector de Glissando</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Curvatura de tono</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproducir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restablecer reproducir</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Mostrar texto</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Estilo</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Restablecer Estilo</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Reproducir Estilo</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Cromático</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Claves blancas</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Claves negras</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatónico</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproducir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restablecer reproducir</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Inspector de marco de texto</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Marco de texto</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Separación inferior</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Margen superior</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Reiniciar valor</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Restablecer separación superior</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Restablecer separación inferior</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Margen Izquierdo</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Margen inferior</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Reiniciar valor del margen derecho</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Margen Derecho</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Reiniciar valor del margen inferior</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Reiniciar valor del margen superior</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Reiniciar valor del margen izquierdo</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Separación superior</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Trino trino</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Línea ondulada</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Reiniciar valor</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Estilo de Ornamento</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Dirección</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Predeterminado</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barroco</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Restablecer tipo de Ornamento</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproducir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restablecer reproducir</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6048,14 +6249,6 @@ falló:</translation>
         <translation>el propio símbolo $</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>etiqueta de metadatos</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Etiquetas disponibles y sus valores actuales:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Aplicar a todas las partes</translation>
     </message>
@@ -6071,6 +6264,14 @@ falló:</translation>
         <source>page number, if there is more than one page</source>
         <translation>número de página, si hay mas de una</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>etiqueta de metadatos, vea mas abajo</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Etiquetas meta disponibles y sus valores actuales:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7200,6 +7401,10 @@ escoja un nombre distinto:</translation>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation>Esta partitura no puede guardarse online. Por favor arregle los compases corruptos y pruebe de nuevo.</translation>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Solicitar ayuda</translation>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7683,10 +7888,6 @@ falló: %2</translation>
         <translation>Escribir estilo falló: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>archivo no encontrado</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Sin selección</translation>
     </message>
@@ -7698,6 +7899,10 @@ falló: %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Compás %1, pentagrama %2, voz %3 demasiado largo. Esperado: %4; Encontrado: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>error de lectura XML en la línea %1 columna %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8011,6 +8216,12 @@ Por favor seleccione un rango de compases para unir y pruebe de nuevo</translati
         <source>Transparent background</source>
         <translation>Fondo transparente</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>No se puede dividir el compás en este punto:
+Primer tiempo del compás</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10411,6 +10622,14 @@ falló:</translation>
         <source>Filter</source>
         <translation>Filtro</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Exportar RPNs</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11269,6 +11488,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation>Bandera del sistema</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Buscar...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Borrar</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13617,10 +13844,6 @@ falló:</translation>
         <translation>Barras en ángulo (más rápido)</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paleta</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Panel de reproducción</translation>
     </message>
@@ -13657,10 +13880,6 @@ falló:</translation>
         <translation>Añadir letra</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Indicación de tempo...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Añadir indicación de tempo</translation>
     </message>
@@ -14017,10 +14236,6 @@ falló:</translation>
         <translation>Repetir selección</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Desplazamiento del piano roll</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Activar o desactivar el desplazamiento del piano roll</translation>
     </message>
@@ -15584,6 +15799,22 @@ falló:</translation>
         <source>Set loop in position</source>
         <translation>Fijar la entrada del bucle en la posición</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Paletas</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Indicación de tempo</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Zoom al 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Pan Piano Roll</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16635,6 +16866,10 @@ El compás no está vacio</translation>
         <source>Tablature2</source>
         <translation>Tablatura 2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Clave de Sol 8vb opcional</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17746,10 +17981,6 @@ El compás no está vacio</translation>
         <source>Prallprall line</source>
         <translation>Línea de mordente ascendente con preparación</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Línea ondulada</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_et.ts b/share/locale/mscore_et.ts
index 48cf10b..7ce4a03 100644
--- a/share/locale/mscore_et.ts
+++ b/share/locale/mscore_et.ts
@@ -41,7 +41,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>The MusicXML Public License:</source>
-        <translation type="unfinished"/>
+        <translation>The MusicXML Public License:</translation>
     </message>
 </context>
 <context>
@@ -644,283 +644,283 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>G 8</source>
-        <translation type="unfinished"/>
+        <translation>G 8</translation>
     </message>
     <message>
         <source>A 8</source>
-        <translation type="unfinished"/>
+        <translation>A 8</translation>
     </message>
     <message>
         <source>B 8</source>
-        <translation type="unfinished"/>
+        <translation>B 8</translation>
     </message>
     <message>
         <source>C 7</source>
-        <translation type="unfinished"/>
+        <translation>C 7</translation>
     </message>
     <message>
         <source>D 7</source>
-        <translation type="unfinished"/>
+        <translation>D 7</translation>
     </message>
     <message>
         <source>E 7</source>
-        <translation type="unfinished"/>
+        <translation>E 7</translation>
     </message>
     <message>
         <source>F 7</source>
-        <translation type="unfinished"/>
+        <translation>F 7</translation>
     </message>
     <message>
         <source>G 7</source>
-        <translation type="unfinished"/>
+        <translation>G 7</translation>
     </message>
     <message>
         <source>A 7</source>
-        <translation type="unfinished"/>
+        <translation>A 7</translation>
     </message>
     <message>
         <source>B 7</source>
-        <translation type="unfinished"/>
+        <translation>B 7</translation>
     </message>
     <message>
         <source>C 6</source>
-        <translation type="unfinished"/>
+        <translation>C 6</translation>
     </message>
     <message>
         <source>D 6</source>
-        <translation type="unfinished"/>
+        <translation>D 6</translation>
     </message>
     <message>
         <source>E 6</source>
-        <translation type="unfinished"/>
+        <translation>E 6</translation>
     </message>
     <message>
         <source>F 6</source>
-        <translation type="unfinished"/>
+        <translation>F 6</translation>
     </message>
     <message>
         <source>G 6</source>
-        <translation type="unfinished"/>
+        <translation>G 6</translation>
     </message>
     <message>
         <source>A 6</source>
-        <translation type="unfinished"/>
+        <translation>A 6</translation>
     </message>
     <message>
         <source>B 6</source>
-        <translation type="unfinished"/>
+        <translation>B 6</translation>
     </message>
     <message>
         <source>C 5</source>
-        <translation type="unfinished"/>
+        <translation>C 5</translation>
     </message>
     <message>
         <source>D 5</source>
-        <translation type="unfinished"/>
+        <translation>D 5</translation>
     </message>
     <message>
         <source>E 5</source>
-        <translation type="unfinished"/>
+        <translation>E 5</translation>
     </message>
     <message>
         <source>F 5</source>
-        <translation type="unfinished"/>
+        <translation>F 5</translation>
     </message>
     <message>
         <source>G 5</source>
-        <translation type="unfinished"/>
+        <translation>G 5</translation>
     </message>
     <message>
         <source>A 5</source>
-        <translation type="unfinished"/>
+        <translation>A 5</translation>
     </message>
     <message>
         <source>B 5</source>
-        <translation type="unfinished"/>
+        <translation>B 5</translation>
     </message>
     <message>
         <source>C 4</source>
-        <translation type="unfinished"/>
+        <translation>C 4</translation>
     </message>
     <message>
         <source>D 4</source>
-        <translation type="unfinished"/>
+        <translation>D 4</translation>
     </message>
     <message>
         <source>E 4</source>
-        <translation type="unfinished"/>
+        <translation>E 4</translation>
     </message>
     <message>
         <source>F 4</source>
-        <translation type="unfinished"/>
+        <translation>F 4</translation>
     </message>
     <message>
         <source>G 4</source>
-        <translation type="unfinished"/>
+        <translation>G 4</translation>
     </message>
     <message>
         <source>A 4</source>
-        <translation type="unfinished"/>
+        <translation>A 4</translation>
     </message>
     <message>
         <source>B 4</source>
-        <translation type="unfinished"/>
+        <translation>B 4</translation>
     </message>
     <message>
         <source>C 3</source>
-        <translation type="unfinished"/>
+        <translation>C 3</translation>
     </message>
     <message>
         <source>D 3</source>
-        <translation type="unfinished"/>
+        <translation>D 3</translation>
     </message>
     <message>
         <source>E 3</source>
-        <translation type="unfinished"/>
+        <translation>E 3</translation>
     </message>
     <message>
         <source>F 3</source>
-        <translation type="unfinished"/>
+        <translation>F 3</translation>
     </message>
     <message>
         <source>G 3</source>
-        <translation type="unfinished"/>
+        <translation>G 3</translation>
     </message>
     <message>
         <source>A 3</source>
-        <translation type="unfinished"/>
+        <translation>A 3</translation>
     </message>
     <message>
         <source>B 3</source>
-        <translation type="unfinished"/>
+        <translation>B 3</translation>
     </message>
     <message>
         <source>C 2</source>
-        <translation type="unfinished"/>
+        <translation>C 2</translation>
     </message>
     <message>
         <source>D 2</source>
-        <translation type="unfinished"/>
+        <translation>D 2</translation>
     </message>
     <message>
         <source>E 2</source>
-        <translation type="unfinished"/>
+        <translation>E 2</translation>
     </message>
     <message>
         <source>F 2</source>
-        <translation type="unfinished"/>
+        <translation>F 2</translation>
     </message>
     <message>
         <source>G 2</source>
-        <translation type="unfinished"/>
+        <translation>G 2</translation>
     </message>
     <message>
         <source>A 2</source>
-        <translation type="unfinished"/>
+        <translation>A 2</translation>
     </message>
     <message>
         <source>B 2</source>
-        <translation type="unfinished"/>
+        <translation>B 2</translation>
     </message>
     <message>
         <source>C 1</source>
-        <translation type="unfinished"/>
+        <translation>C 1</translation>
     </message>
     <message>
         <source>D 1</source>
-        <translation type="unfinished"/>
+        <translation>D 1</translation>
     </message>
     <message>
         <source>E 1</source>
-        <translation type="unfinished"/>
+        <translation>E 1</translation>
     </message>
     <message>
         <source>F 1</source>
-        <translation type="unfinished"/>
+        <translation>F 1</translation>
     </message>
     <message>
         <source>G 1</source>
-        <translation type="unfinished"/>
+        <translation>G 1</translation>
     </message>
     <message>
         <source>A 1</source>
-        <translation type="unfinished"/>
+        <translation>A 1</translation>
     </message>
     <message>
         <source>B 1</source>
-        <translation type="unfinished"/>
+        <translation>B 1</translation>
     </message>
     <message>
         <source>C 0</source>
-        <translation type="unfinished"/>
+        <translation>C 0</translation>
     </message>
     <message>
         <source>D 0</source>
-        <translation type="unfinished"/>
+        <translation>D 0</translation>
     </message>
     <message>
         <source>E 0</source>
-        <translation type="unfinished"/>
+        <translation>E 0</translation>
     </message>
     <message>
         <source>F 0</source>
-        <translation type="unfinished"/>
+        <translation>F 0</translation>
     </message>
     <message>
         <source>G 0</source>
-        <translation type="unfinished"/>
+        <translation>G 0</translation>
     </message>
     <message>
         <source>A 0</source>
-        <translation type="unfinished"/>
+        <translation>A 0</translation>
     </message>
     <message>
         <source>B 0</source>
-        <translation type="unfinished"/>
+        <translation>B 0</translation>
     </message>
     <message>
         <source>C -1</source>
-        <translation type="unfinished"/>
+        <translation>C -1</translation>
     </message>
     <message>
         <source>D -1</source>
-        <translation type="unfinished"/>
+        <translation>D -1</translation>
     </message>
     <message>
         <source>E -1</source>
-        <translation type="unfinished"/>
+        <translation>E -1</translation>
     </message>
     <message>
         <source>F -1</source>
-        <translation type="unfinished"/>
+        <translation>F -1</translation>
     </message>
     <message>
         <source>G -1</source>
-        <translation type="unfinished"/>
+        <translation>G -1</translation>
     </message>
     <message>
         <source>A -1</source>
-        <translation type="unfinished"/>
+        <translation>A -1</translation>
     </message>
     <message>
         <source>B -1</source>
-        <translation type="unfinished"/>
+        <translation>B -1</translation>
     </message>
     <message>
         <source>C♯</source>
-        <translation type="unfinished"/>
+        <translation>C♯</translation>
     </message>
     <message>
         <source>Eâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­</translation>
     </message>
     <message>
         <source>F♯</source>
-        <translation type="unfinished"/>
+        <translation>F♯</translation>
     </message>
     <message>
         <source>Aâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­</translation>
     </message>
     <message>
         <source>Bâ™­</source>
@@ -928,39 +928,39 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>C♯ 8</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 8</translation>
     </message>
     <message>
         <source>Eâ™­ 8</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 8</translation>
     </message>
     <message>
         <source>F♯ 8</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 8</translation>
     </message>
     <message>
         <source>Aâ™­ 8</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 8</translation>
     </message>
     <message>
         <source>Bâ™­ 8</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 8</translation>
     </message>
     <message>
         <source>C♯ 7</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 7</translation>
     </message>
     <message>
         <source>Eâ™­ 7</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 7</translation>
     </message>
     <message>
         <source>F♯ 7</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 7</translation>
     </message>
     <message>
         <source>Aâ™­ 7</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 7</translation>
     </message>
     <message>
         <source>Bâ™­ 7</source>
@@ -2739,7 +2739,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>C♯</source>
-        <translation type="unfinished"/>
+        <translation>C♯</translation>
     </message>
     <message>
         <source>C♯♯</source>
@@ -2771,7 +2771,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Eâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­</translation>
     </message>
     <message>
         <source>E</source>
@@ -2799,7 +2799,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>F♯</source>
-        <translation type="unfinished"/>
+        <translation>F♯</translation>
     </message>
     <message>
         <source>F♯♯</source>
@@ -2831,7 +2831,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Aâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­</translation>
     </message>
     <message>
         <source>A</source>
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Mängi</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Näita Teksti</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>vaikimisi</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Mängi</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7161,6 +7362,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7634,10 +7839,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7649,6 +7850,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7957,6 +8162,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10354,6 +10564,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11188,6 +11406,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13534,10 +13760,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Play Panel</translation>
     </message>
@@ -13574,10 +13796,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13934,10 +14152,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15501,6 +15715,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16550,6 +16780,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17661,10 +17895,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_eu.ts b/share/locale/mscore_eu.ts
index 9586069..3e6d6ba 100644
--- a/share/locale/mscore_eu.ts
+++ b/share/locale/mscore_eu.ts
@@ -170,7 +170,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Appearance</source>
-        <translation type="unfinished"/>
+        <translation>Itxura</translation>
     </message>
     <message>
         <source>Direction:</source>
@@ -225,7 +225,7 @@ p, li { white-space: pre-wrap; }
     <name>Awl::ColorLabel</name>
     <message>
         <source>MuseScore: Select Color</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Kolorea Aukeratu</translation>
     </message>
 </context>
 <context>
@@ -286,11 +286,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Number of measures</source>
-        <translation type="unfinished"/>
+        <translation>Konpas kopurua</translation>
     </message>
     <message>
         <source>measures</source>
-        <translation type="unfinished"/>
+        <translation>konpasak</translation>
     </message>
     <message>
         <source>Add line breaks at end of each system</source>
@@ -359,7 +359,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Mi</source>
-        <translation type="unfinished"/>
+        <translation>Mi</translation>
     </message>
     <message>
         <source>Slash</source>
@@ -371,23 +371,23 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Do</source>
-        <translation type="unfinished"/>
+        <translation>Do</translation>
     </message>
     <message>
         <source>Re</source>
-        <translation type="unfinished"/>
+        <translation>Re</translation>
     </message>
     <message>
         <source>Fa</source>
-        <translation type="unfinished"/>
+        <translation>Fa</translation>
     </message>
     <message>
         <source>La</source>
-        <translation type="unfinished"/>
+        <translation>La</translation>
     </message>
     <message>
         <source>Ti</source>
-        <translation type="unfinished"/>
+        <translation>Si</translation>
     </message>
 </context>
 <context>
@@ -533,19 +533,19 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Transpose:</source>
-        <translation type="unfinished"/>
+        <translation>Transposizioa egin:</translation>
     </message>
     <message>
         <source>Staves:</source>
-        <translation type="unfinished"/>
+        <translation>Pentagramak:</translation>
     </message>
     <message>
         <source>Short name:</source>
-        <translation type="unfinished"/>
+        <translation>Izen motza:</translation>
     </message>
     <message>
         <source>MIDI program:</source>
-        <translation type="unfinished"/>
+        <translation>Midi programa:</translation>
     </message>
 </context>
 <context>
@@ -1294,7 +1294,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Number of strings:</source>
-        <translation type="unfinished"/>
+        <translation>Soka kopurua:</translation>
     </message>
     <message>
         <source>Staff Properties</source>
@@ -1314,11 +1314,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Staff line color:</source>
-        <translation type="unfinished"/>
+        <translation>Pentagramako lerroen kolorea:</translation>
     </message>
     <message>
         <source>Part name:</source>
-        <translation type="unfinished"/>
+        <translation>Partearen izena:</translation>
     </message>
     <message>
         <source>Long instrument name:</source>
@@ -1354,7 +1354,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Show time signature</source>
-        <translation type="unfinished"/>
+        <translation>Konpas neurria erakutsi</translation>
     </message>
     <message>
         <source>Style group:</source>
@@ -1362,11 +1362,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Show barlines</source>
-        <translation type="unfinished"/>
+        <translation>Zatilerroak erakutsi</translation>
     </message>
     <message>
         <source>Show clef</source>
-        <translation type="unfinished"/>
+        <translation>Klabea erakutsi</translation>
     </message>
     <message>
         <source>Lines:</source>
@@ -1382,15 +1382,15 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Never hide</source>
-        <translation type="unfinished"/>
+        <translation>Inoiz ez ezkutatu</translation>
     </message>
     <message>
         <source>Do not hide if system is empty</source>
-        <translation type="unfinished"/>
+        <translation>Ez ezkutatu sistema hutsik baldin badago</translation>
     </message>
     <message>
         <source>Scale</source>
-        <translation type="unfinished"/>
+        <translation>Eskala</translation>
     </message>
     <message>
         <source>%</source>
@@ -1409,7 +1409,7 @@ p, li { white-space: pre-wrap; }
     <name>EditStaffType</name>
     <message>
         <source>MuseScore: Edit Staff Type</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Pentagrama mota editatu</translation>
     </message>
     <message>
         <source>Lines:</source>
@@ -1477,11 +1477,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Note Values</source>
-        <translation type="unfinished"/>
+        <translation>Noten Balioak</translation>
     </message>
     <message>
         <source>Shown as:</source>
-        <translation type="unfinished"/>
+        <translation>Honela erakutsi:</translation>
     </message>
     <message>
         <source>None</source>
@@ -1537,15 +1537,15 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Show clef</source>
-        <translation type="unfinished"/>
+        <translation>Klabea erakutsi</translation>
     </message>
     <message>
         <source>Show time signature</source>
-        <translation type="unfinished"/>
+        <translation>Konpas neurria erakutsi</translation>
     </message>
     <message>
         <source>Show barlines</source>
-        <translation type="unfinished"/>
+        <translation>Zatilerroak erakutsi</translation>
     </message>
     <message>
         <source>Vertical offset:</source>
@@ -1569,7 +1569,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Show rests</source>
-        <translation type="unfinished"/>
+        <translation>Isiluneak erakutsi</translation>
     </message>
     <message>
         <source>Add to Templates</source>
@@ -1577,11 +1577,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Template:</source>
-        <translation type="unfinished"/>
+        <translation>Txantiloia:</translation>
     </message>
     <message>
         <source>Show key signature</source>
-        <translation type="unfinished"/>
+        <translation>Armadura erakutsi</translation>
     </message>
     <message>
         <source>Show ledger lines</source>
@@ -1589,7 +1589,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Show Key signature</source>
-        <translation type="unfinished"/>
+        <translation>Armadura erakutsi</translation>
     </message>
     <message>
         <source>< Reset to Template</source>
@@ -1597,7 +1597,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Repeat:</source>
-        <translation type="unfinished"/>
+        <translation>Errepikatu:</translation>
     </message>
     <message>
         <source>Never</source>
@@ -1613,7 +1613,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Always</source>
-        <translation type="unfinished"/>
+        <translation>Beti</translation>
     </message>
 </context>
 <context>
@@ -1628,15 +1628,15 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>New String...</source>
-        <translation type="unfinished"/>
+        <translation>Soka Berria...</translation>
     </message>
     <message>
         <source>Edit String...</source>
-        <translation type="unfinished"/>
+        <translation>Soka Editatu...</translation>
     </message>
     <message>
         <source>Delete String</source>
-        <translation type="unfinished"/>
+        <translation>Soka Ezabatu</translation>
     </message>
     <message>
         <source>Number of frets:</source>
@@ -1755,7 +1755,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Don't hide empty staves in first system</source>
-        <translation type="unfinished"/>
+        <translation>Ez ezkutatu lenen systemako pentagrama hutsak</translation>
     </message>
     <message>
         <source>Display note values across measure bar (EXPERIMENTAL, early music only!)</source>
@@ -1787,11 +1787,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Lyrics top margin:</source>
-        <translation type="unfinished"/>
+        <translation>Hitzen goiko marjina:</translation>
     </message>
     <message>
         <source>Lyrics bottom margin:</source>
-        <translation type="unfinished"/>
+        <translation>Hitzen azpiko marjina:</translation>
     </message>
     <message>
         <source>Vertical frame top margin:</source>
@@ -1803,7 +1803,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Create courtesy clefs</source>
-        <translation type="unfinished"/>
+        <translation>Kortesiazko klabeak sortu</translation>
     </message>
     <message>
         <source>Create courtesy time signatures</source>
@@ -1811,7 +1811,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Create key signature for all systems</source>
-        <translation type="unfinished"/>
+        <translation>Sortu armadura sistema guztietan</translation>
     </message>
     <message>
         <source>Create courtesy key signatures</source>
@@ -1859,7 +1859,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>All staves</source>
-        <translation type="unfinished"/>
+        <translation>Pentagrama guztiak</translation>
     </message>
     <message>
         <source>Every system</source>
@@ -1891,19 +1891,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Clef left margin:</source>
-        <translation type="unfinished"/>
+        <translation>Klabearen ezker marjina:</translation>
     </message>
     <message>
         <source>Minimum note distance:</source>
-        <translation type="unfinished"/>
+        <translation>Noten arteko gutxiengo tartea:</translation>
     </message>
     <message>
         <source>Key signature left margin:</source>
-        <translation type="unfinished"/>
+        <translation>Armaduraren ezker marjina:</translation>
     </message>
     <message>
         <source>Time signature left margin:</source>
-        <translation type="unfinished"/>
+        <translation>Konpas neurriaren ezker marjina:</translation>
     </message>
     <message>
         <source>Clef/Key right margin:</source>
@@ -1999,7 +1999,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Distance to note:</source>
-        <translation type="unfinished"/>
+        <translation>Notarainoko tartea:</translation>
     </message>
     <message>
         <source>Line thickness:</source>
@@ -2043,15 +2043,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Small note size:</source>
-        <translation type="unfinished"/>
+        <translation>Nota txikien tamaina:</translation>
     </message>
     <message>
         <source>Grace note size:</source>
-        <translation type="unfinished"/>
+        <translation>Apaindura noten tamaina:</translation>
     </message>
     <message>
         <source>Small clef size:</source>
-        <translation type="unfinished"/>
+        <translation>Tamaina txikiko klabea:</translation>
     </message>
     <message>
         <source>Hairpins</source>
@@ -2091,7 +2091,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Appearance</source>
-        <translation type="unfinished"/>
+        <translation>Itxura</translation>
     </message>
     <message>
         <source>Standard</source>
@@ -2099,7 +2099,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Jazz</source>
-        <translation type="unfinished"/>
+        <translation>Jazz</translation>
     </message>
     <message>
         <source>Custom</source>
@@ -2200,7 +2200,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Accidental</source>
-        <translation type="unfinished"/>
+        <translation>Akzidentala</translation>
     </message>
     <message>
         <source>Maximum slope:</source>
@@ -2288,7 +2288,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Interval:</source>
-        <translation type="unfinished"/>
+        <translation>Bitartea:</translation>
     </message>
     <message>
         <source>Hide instrument name if there is only 1 instrument</source>
@@ -2396,7 +2396,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Dotted</source>
-        <translation type="unfinished"/>
+        <translation>Puntutxoduna</translation>
     </message>
     <message>
         <source>Dash-dotted</source>
@@ -2408,11 +2408,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Numbers only</source>
-        <translation type="unfinished"/>
+        <translation>Zenbakiak bakarrik</translation>
     </message>
     <message>
         <source>Header Text</source>
-        <translation type="unfinished"/>
+        <translation>Goiburuko testua</translation>
     </message>
     <message>
         <source>Footer Text</source>
@@ -2547,15 +2547,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Part title:</source>
-        <translation type="unfinished"/>
+        <translation>Partearen izenburua:</translation>
     </message>
     <message>
         <source>Edit Part</source>
-        <translation type="unfinished"/>
+        <translation>Partea editatu</translation>
     </message>
     <message>
         <source>Select Part</source>
-        <translation type="unfinished"/>
+        <translation>Partea Aukeratu</translation>
     </message>
 </context>
 <context>
@@ -2597,7 +2597,7 @@ space unit</extracomment>
     <name>FretDiagramProperties</name>
     <message>
         <source>Strings:</source>
-        <translation type="unfinished"/>
+        <translation>Sokak:</translation>
     </message>
     <message>
         <source>Frets:</source>
@@ -2681,18 +2681,18 @@ space unit</extracomment>
     </message>
     <message>
         <source>Insert empty measures</source>
-        <translation type="unfinished"/>
+        <translation>Konpas hutsak txertatu</translation>
     </message>
     <message>
         <source>Number of measures to insert:</source>
-        <translation type="unfinished"/>
+        <translation>Txertatzeko konpas kopurua:</translation>
     </message>
 </context>
 <context>
     <name>InspectorAccidental</name>
     <message>
         <source>Accidental</source>
-        <translation type="unfinished"/>
+        <translation>Akzidentala</translation>
     </message>
     <message>
         <source>Small</source>
@@ -2975,31 +2975,31 @@ space unit</extracomment>
     </message>
     <message>
         <source>Do</source>
-        <translation type="unfinished"/>
+        <translation>Do</translation>
     </message>
     <message>
         <source>Re</source>
-        <translation type="unfinished"/>
+        <translation>Re</translation>
     </message>
     <message>
         <source>Mi</source>
-        <translation type="unfinished"/>
+        <translation>Mi</translation>
     </message>
     <message>
         <source>Fa</source>
-        <translation type="unfinished"/>
+        <translation>Fa</translation>
     </message>
     <message>
         <source>Sol</source>
-        <translation type="unfinished"/>
+        <translation>Sol</translation>
     </message>
     <message>
         <source>La</source>
-        <translation type="unfinished"/>
+        <translation>La</translation>
     </message>
     <message>
         <source>Ti</source>
-        <translation type="unfinished"/>
+        <translation>Si</translation>
     </message>
     <message>
         <source>Alt. Brevis</source>
@@ -3019,7 +3019,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>[Undefined]</source>
-        <translation type="unfinished"/>
+        <translation>[Definitu gabea]</translation>
     </message>
     <message>
         <source>Ambitus</source>
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpegio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Play</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,12 +3111,36 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
     <message>
         <source>Barline</source>
-        <translation type="unfinished"/>
+        <translation>Zatilerroa</translation>
     </message>
     <message>
         <source>Style:</source>
@@ -3200,7 +3243,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Horizontal</source>
-        <translation type="unfinished"/>
+        <translation>Horizontala</translation>
     </message>
     <message>
         <source>Beam Inspector</source>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3385,7 +3447,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Velocity</source>
-        <translation type="unfinished"/>
+        <translation>Abiadura</translation>
     </message>
     <message>
         <source>Staff</source>
@@ -3393,7 +3455,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Part</source>
-        <translation type="unfinished"/>
+        <translation>Partea</translation>
     </message>
     <message>
         <source>System</source>
@@ -3487,7 +3549,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Scale</source>
-        <translation type="unfinished"/>
+        <translation>Eskala</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Testua Erakutsi</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Estiloa</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Kromatikoa</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonikoa</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -3553,7 +3651,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Set Color</source>
-        <translation type="unfinished"/>
+        <translation>Kolorea ezarri</translation>
     </message>
     <message>
         <source>Set Visible</source>
@@ -3620,7 +3718,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Altuera</translation>
     </message>
     <message>
         <source>Type</source>
@@ -3636,7 +3734,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Part</source>
-        <translation type="unfinished"/>
+        <translation>Partea</translation>
     </message>
     <message>
         <source>System</source>
@@ -3711,7 +3809,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Scale</source>
-        <translation type="unfinished"/>
+        <translation>Eskala</translation>
     </message>
     <message>
         <source>Image Inspector</source>
@@ -3723,7 +3821,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Altuera</translation>
     </message>
     <message>
         <source>Width</source>
@@ -3770,7 +3868,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Jump to</source>
-        <translation type="unfinished"/>
+        <translation>Hona jauzi egin</translation>
     </message>
     <message>
         <source>Play until</source>
@@ -3848,7 +3946,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Altuera</translation>
     </message>
     <message>
         <source>Width</source>
@@ -3876,7 +3974,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Line style</source>
-        <translation type="unfinished"/>
+        <translation>Lerroaren estiloa</translation>
     </message>
     <message>
         <source>Allow diagonal</source>
@@ -3916,7 +4014,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Dotted</source>
-        <translation type="unfinished"/>
+        <translation>Puntutxoduna</translation>
     </message>
     <message>
         <source>Dash-dotted</source>
@@ -3947,7 +4045,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Label</source>
-        <translation type="unfinished"/>
+        <translation>Etiketa</translation>
     </message>
     <message>
         <source>Segno</source>
@@ -4018,7 +4116,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Velocity</source>
-        <translation type="unfinished"/>
+        <translation>Abiadura</translation>
     </message>
     <message>
         <source>Mirror head</source>
@@ -4086,7 +4184,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Small </source>
-        <translation type="unfinished"/>
+        <translation>Txikia</translation>
     </message>
     <message>
         <source>Note Inspector</source>
@@ -4197,7 +4295,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Numbers only</source>
-        <translation type="unfinished"/>
+        <translation>Zenbakiak bakarrik</translation>
     </message>
     <message>
         <source>Ottava Inspector</source>
@@ -4291,7 +4389,7 @@ space unit</extracomment>
     <name>InspectorSlur</name>
     <message>
         <source>Line type:</source>
-        <translation type="unfinished"/>
+        <translation>Lerro mota:</translation>
     </message>
     <message>
         <source>Slur/Tie</source>
@@ -4319,7 +4417,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Dotted</source>
-        <translation type="unfinished"/>
+        <translation>Puntutxoduna</translation>
     </message>
     <message>
         <source>Dashed</source>
@@ -4334,7 +4432,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Altuera</translation>
     </message>
     <message>
         <source>sp</source>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>lehenetsia</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Play</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4509,7 +4703,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Automatic</source>
-        <translation type="unfinished"/>
+        <translation>Automatikoa</translation>
     </message>
     <message>
         <source>Bracket</source>
@@ -4577,7 +4771,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Altuera</translation>
     </message>
     <message>
         <source>Vertical Frame Inspector</source>
@@ -4675,7 +4869,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Search</source>
-        <translation type="unfinished"/>
+        <translation>Bilatu</translation>
     </message>
     <message>
         <source>Clear</source>
@@ -4738,11 +4932,11 @@ space unit</extracomment>
     <name>InstrumentsDialog</name>
     <message>
         <source>All instruments</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentu guztiak</translation>
     </message>
     <message>
         <source>MuseScore: Instruments</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Instrumentuak</translation>
     </message>
     <message>
         <source>Load</source>
@@ -4765,7 +4959,7 @@ space unit</extracomment>
     <name>InstrumentsWidget</name>
     <message>
         <source>MuseScore: Instruments</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Instrumentuak</translation>
     </message>
     <message>
         <source>Instrument List</source>
@@ -4773,7 +4967,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Search</source>
-        <translation type="unfinished"/>
+        <translation>Bilatu</translation>
     </message>
     <message>
         <source>Clear</source>
@@ -4821,7 +5015,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Staff type</source>
-        <translation type="unfinished"/>
+        <translation>Pentagrama mota</translation>
     </message>
     <message>
         <source>Instrument Genre Filter</source>
@@ -4829,7 +5023,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Instrument list</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentuen zerrenda</translation>
     </message>
     <message>
         <source>Clear Search box</source>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -4875,7 +5076,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Create</source>
-        <translation type="unfinished"/>
+        <translation>Sortu</translation>
     </message>
     <message>
         <source>Delete</source>
@@ -5023,7 +5224,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Description</source>
-        <translation type="unfinished"/>
+        <translation>Deskribapena</translation>
     </message>
 </context>
 <context>
@@ -5097,7 +5298,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Password</source>
-        <translation type="unfinished"/>
+        <translation>Pasahitza</translation>
     </message>
 </context>
 <context>
@@ -5132,11 +5333,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>None (1:1)</source>
-        <translation type="unfinished"/>
+        <translation>Bat ere ez (1:1)</translation>
     </message>
     <message>
         <source>Swing (2:1)</source>
-        <translation type="unfinished"/>
+        <translation>Swing (2:1)</translation>
     </message>
     <message>
         <source>Shuffle (3:1)</source>
@@ -5148,7 +5349,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Staff name</source>
-        <translation type="unfinished"/>
+        <translation>Pentagrama izena</translation>
     </message>
     <message>
         <source>Sound</source>
@@ -5240,7 +5441,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Time signature</source>
-        <translation type="unfinished"/>
+        <translation>Konpas neurria</translation>
     </message>
     <message>
         <source>2x less
@@ -5319,11 +5520,11 @@ chord symbols</source>
     <name>MP3Exporter</name>
     <message>
         <source>Where is %1 ?</source>
-        <translation type="unfinished"/>
+        <translation>Non dago %1?</translation>
     </message>
     <message>
         <source>Save as MP3</source>
-        <translation type="unfinished"/>
+        <translation>MP3 bezala gorde</translation>
     </message>
     <message>
         <source>MuseScore does not export MP3 files directly, but instead uses the freely available LAME library.  You must obtain %1 separately (for details check the handbook), and then locate the file for MuseScore.
@@ -5429,7 +5630,7 @@ Would you like to locate %2 now?</source>
     </message>
     <message>
         <source>Repeats & Jumps</source>
-        <translation type="unfinished"/>
+        <translation>Errepikapenak eta jauziak</translation>
     </message>
 </context>
 <context>
@@ -5556,23 +5757,23 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Automatic</source>
-        <translation type="unfinished"/>
+        <translation>Automatikoa</translation>
     </message>
     <message>
         <source>Always Show</source>
-        <translation type="unfinished"/>
+        <translation>Beti Erakutsi</translation>
     </message>
     <message>
         <source>Always Hide</source>
-        <translation type="unfinished"/>
+        <translation>Beti Ezkutatu</translation>
     </message>
     <message>
         <source>Go to previous measure</source>
-        <translation type="unfinished"/>
+        <translation>Aurreko konpasera joan</translation>
     </message>
     <message>
         <source>Go to next measure</source>
-        <translation type="unfinished"/>
+        <translation>Hurrengo konpasera joan</translation>
     </message>
     <message>
         <source>Break multimeasure rest</source>
@@ -5720,14 +5921,14 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Not found </source>
-        <translation type="unfinished"/>
+        <translation>Ez aurkitua</translation>
     </message>
 </context>
 <context>
     <name>Ms::AlbumManager</name>
     <message>
         <source>MuseScore: Add Score</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Partitura Gehitu</translation>
     </message>
     <message>
         <source>MuseScore: Load Album</source>
@@ -5735,7 +5936,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>MuseScore Files (*.mscz *.mscx)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Fitxategiak (*.mscz *.mscx)</translation>
     </message>
     <message>
         <source>MuseScore Album Files (*.album)</source>
@@ -5852,7 +6053,7 @@ tuplet would cross measure</source>
     <name>Ms::DrumTools</name>
     <message>
         <source>Drum Tools</source>
-        <translation type="unfinished"/>
+        <translation>Perkusio Tresnak</translation>
     </message>
     <message>
         <source>Edit Drumset</source>
@@ -5902,7 +6103,7 @@ tuplet would cross measure</source>
     <name>Ms::EditDrumset</name>
     <message>
         <source>invalid</source>
-        <translation type="unfinished"/>
+        <translation>baliogabea</translation>
     </message>
     <message>
         <source>MuseScore: Open File</source>
@@ -5927,7 +6128,7 @@ failed: </source>
     <name>Ms::EditStaff</name>
     <message>
         <source>The instrument name is invalid.</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentuaren izena baliogabea da.</translation>
     </message>
 </context>
 <context>
@@ -5987,11 +6188,11 @@ failed: </source>
     </message>
     <message>
         <source>number of pages</source>
-        <translation type="unfinished"/>
+        <translation>orrialde kopurua</translation>
     </message>
     <message>
         <source>file name</source>
-        <translation type="unfinished"/>
+        <translation>fitxategi izena</translation>
     </message>
     <message>
         <source>file path+name</source>
@@ -6007,38 +6208,38 @@ failed: </source>
     </message>
     <message>
         <source>copyright, on first page only</source>
-        <translation type="unfinished"/>
+        <translation>copyright, lehen orrialdean bakarrik</translation>
     </message>
     <message>
         <source>copyright, on all pages</source>
-        <translation type="unfinished"/>
+        <translation>copyright, orrialde guztietan</translation>
     </message>
     <message>
         <source>the $ sign itself</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
-        <translation type="unfinished"/>
+        <source>page number, if there is more than one page</source>
+        <translation>orrialde zenbakia, orrialde bat baino gehiago baldin badago</translation>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -6055,7 +6256,7 @@ failed: </source>
     <name>Ms::Fingering</name>
     <message>
         <source>String number</source>
-        <translation type="unfinished"/>
+        <translation>Soka zenbakia</translation>
     </message>
 </context>
 <context>
@@ -6077,18 +6278,18 @@ failed: </source>
     <name>Ms::Harmony</name>
     <message>
         <source>sharp</source>
-        <translation type="unfinished"/>
+        <translation>sostengatua</translation>
     </message>
     <message>
         <source>flat</source>
-        <translation type="unfinished"/>
+        <translation>bemola</translation>
     </message>
 </context>
 <context>
     <name>Ms::HelpQuery</name>
     <message>
         <source>Search for: </source>
-        <translation type="unfinished"/>
+        <translation>Hau bilatu:</translation>
     </message>
 </context>
 <context>
@@ -6121,7 +6322,7 @@ failed: </source>
     </message>
     <message>
         <source>Rests</source>
-        <translation type="unfinished"/>
+        <translation>Isiluneak</translation>
     </message>
 </context>
 <context>
@@ -6190,7 +6391,7 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore: Open Instruments File</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Instrumentuen Fitxategia Ireki</translation>
     </message>
     <message>
         <source>Open Instruments File
@@ -6200,7 +6401,7 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore Instruments (*.xml)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Instrumentuak (*.xml)</translation>
     </message>
 </context>
 <context>
@@ -6219,7 +6420,7 @@ failed: </source>
     </message>
     <message>
         <source>Staff type</source>
-        <translation type="unfinished"/>
+        <translation>Pentagrama mota</translation>
     </message>
     <message>
         <source>Visible</source>
@@ -6259,11 +6460,11 @@ failed: </source>
     <name>Ms::LoginDialog</name>
     <message>
         <source><a href="%1">Create an account</a></source>
-        <translation type="unfinished"/>
+        <translation><a href="%1">Kontua sortu</a></translation>
     </message>
     <message>
         <source><a href="%1">Forgot password?</a></source>
-        <translation type="unfinished"/>
+        <translation><a href="%1">Pasahitza ahaztu duzu?</a></translation>
     </message>
     <message>
         <source>Login error</source>
@@ -6278,7 +6479,7 @@ failed: </source>
     <name>Ms::LoginManager</name>
     <message>
         <source>Network error</source>
-        <translation type="unfinished"/>
+        <translation>Sareko errorea</translation>
     </message>
     <message>
         <source>Unsuccessful login. Please try again.</source>
@@ -6347,7 +6548,7 @@ failed: </source>
     <name>Ms::MeasureProperties</name>
     <message>
         <source>MuseScore: Measure Properties for Measure %1</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Konpasaren ezaugarriak %1 Konpasarentzako</translation>
     </message>
     <message>
         <source>visible</source>
@@ -6380,7 +6581,7 @@ failed: </source>
     <name>Ms::Mixer</name>
     <message>
         <source>MuseScore: Mixer</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Nahasgailua</translation>
     </message>
 </context>
 <context>
@@ -6417,7 +6618,7 @@ itxi aurretik?</translation>
     </message>
     <message>
         <source>MuseScore Files (*.mscz *.mscx);;</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Fitxategiak (*.mscz *.mscx);;</translation>
     </message>
     <message>
         <source>MusicXML Files (*.xml *.mxl);;</source>
@@ -6433,7 +6634,7 @@ itxi aurretik?</translation>
     </message>
     <message>
         <source>Capella Files (*.cap *.capx);;</source>
-        <translation type="unfinished"/>
+        <translation>Capella Fitxategiak (*.cap *.capx);;</translation>
     </message>
     <message>
         <source>BB Files <experimental> (*.mgu *.MGU *.sgu *.SGU);;</source>
@@ -6557,11 +6758,11 @@ itxi aurretik?</translation>
     </message>
     <message>
         <source>MP3 Audio (*.mp3)</source>
-        <translation type="unfinished"/>
+        <translation>MP3 Audioa (*.mp3)</translation>
     </message>
     <message>
         <source>MuseScore: Export</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Esportatu</translation>
     </message>
     <message>
         <source>MuseScore: Save As</source>
@@ -6569,7 +6770,7 @@ itxi aurretik?</translation>
     </message>
     <message>
         <source>MuseScore: Export Parts</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Parteak Esportatu</translation>
     </message>
     <message>
         <source>"%1" already exists.
@@ -6611,7 +6812,7 @@ Do you want to replace it?
     </message>
     <message>
         <source>Images (*.jpg *.jpeg *.png);;All (*)</source>
-        <translation type="unfinished"/>
+        <translation>Irudiak (*.jpg *.jpeg *.png);;Guztia (*)</translation>
     </message>
     <message>
         <source>Repeat measure sign</source>
@@ -6745,7 +6946,7 @@ Aukeratu konpas bat eta berriro saiatu</translation>
     </message>
     <message>
         <source>Continuous View</source>
-        <translation type="unfinished"/>
+        <translation>Ikuspegi jarraia</translation>
     </message>
     <message>
         <source>Concert Pitch</source>
@@ -6845,7 +7046,7 @@ Saioa berreskuratu?</translation>
     </message>
     <message>
         <source>Undo Changes</source>
-        <translation type="unfinished"/>
+        <translation>Aldaketak Desegin</translation>
     </message>
     <message>
         <source>MuseScore: Read Workspace Name</source>
@@ -6858,15 +7059,15 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Ogg Audio File (*.ogg);;All (*)</source>
-        <translation type="unfinished"/>
+        <translation>Ogg Audio Fitxategia (*.ogg);;Guztia (*)</translation>
     </message>
     <message>
         <source>MuseScore: Choose Ogg Audio File</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Ogg Audio Fitxategia Aukeratu</translation>
     </message>
     <message>
         <source>FLAC Audio (*.flac)</source>
-        <translation type="unfinished"/>
+        <translation>FLAC Audioa (*.flac)</translation>
     </message>
     <message>
         <source>Chord Symbols Style File (*.xml)</source>
@@ -6895,7 +7096,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Please select one or more measures</source>
-        <translation type="unfinished"/>
+        <translation>Aukeratu konpas bat edo gehiago, mesedez</translation>
     </message>
     <message>
         <source>Error Opening LAME library</source>
@@ -6968,19 +7169,19 @@ please choose a different name:</source>
     </message>
     <message>
         <source>MuseScore File (*.mscz)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Fitxategia (*.mscz)</translation>
     </message>
     <message>
         <source>Uncompressed MuseScore File (*.mscx)</source>
-        <translation type="unfinished"/>
+        <translation>Konprimatu Gabeko MuseScore Fitxategia (*.mscx)</translation>
     </message>
     <message>
         <source>MusicXML File (*.xml)</source>
-        <translation type="unfinished"/>
+        <translation>MusicXML Fitxategia (*.xml)</translation>
     </message>
     <message>
         <source>Compressed MusicXML File (*.mxl)</source>
-        <translation type="unfinished"/>
+        <translation>Konprimatutako MusicXML Fitxategia (*.mxl)</translation>
     </message>
     <message>
         <source>Show MIDI import panel</source>
@@ -6992,7 +7193,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Staff text</source>
-        <translation type="unfinished"/>
+        <translation>Pentagramako testua</translation>
     </message>
     <message>
         <source>System text</source>
@@ -7016,11 +7217,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Change staff type</source>
-        <translation type="unfinished"/>
+        <translation>Pentagrama mota aldatu</translation>
     </message>
     <message>
         <source>Change instrument</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentua aldatu</translation>
     </message>
     <message>
         <source>Fretboard diagram</source>
@@ -7048,11 +7249,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5 *.GPX)</source>
-        <translation type="unfinished"/>
+        <translation>Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5 *.GPX)</translation>
     </message>
     <message>
         <source>MuseScore Styles (*.mss)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Estiloak (*.mss)</translation>
     </message>
     <message>
         <source>MuseScore Plugin (*.qml)</source>
@@ -7162,6 +7363,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7241,7 +7446,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Select Key Signature and Tempo:</source>
-        <translation type="unfinished"/>
+        <translation>Armadura eta Tempo-a aukeratu:</translation>
     </message>
     <message>
         <source>Key Signature</source>
@@ -7283,7 +7488,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Invalid note</source>
-        <translation type="unfinished"/>
+        <translation>Nota baliogabea</translation>
     </message>
     <message>
         <source>Note</source>
@@ -7291,7 +7496,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Voice: %1</source>
-        <translation type="unfinished"/>
+        <translation>Ahotsa: %1</translation>
     </message>
     <message>
         <source>Acciaccatura</source>
@@ -7337,7 +7542,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>More Elements...</source>
-        <translation type="unfinished"/>
+        <translation>Elementu Gehiago...</translation>
     </message>
 </context>
 <context>
@@ -7413,7 +7618,7 @@ please choose a different name:</source>
     <name>Ms::PianoTools</name>
     <message>
         <source>Piano Keyboard</source>
-        <translation type="unfinished"/>
+        <translation>Piano Teklatua</translation>
     </message>
 </context>
 <context>
@@ -7532,7 +7737,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>MuseScore Files (*.mscz *.mscx);;All (*)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Fitxategiak (*.mscz *.mscx);;Guztiak (*)</translation>
     </message>
     <message>
         <source>SoundFont Folders</source>
@@ -7547,7 +7752,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>%1 KB</source>
-        <translation type="unfinished"/>
+        <translation>%1 KB</translation>
     </message>
     <message>
         <source>Update</source>
@@ -7555,11 +7760,11 @@ Save before closing?</source>
     </message>
     <message>
         <source>No update</source>
-        <translation type="unfinished"/>
+        <translation>Eguneratzerik ez</translation>
     </message>
     <message>
         <source>Updating</source>
-        <translation type="unfinished"/>
+        <translation>Eguneratzen</translation>
     </message>
     <message>
         <source>Failed, try again</source>
@@ -7574,7 +7779,7 @@ Save before closing?</source>
     <name>Ms::Rest</name>
     <message>
         <source>Voice: %1</source>
-        <translation type="unfinished"/>
+        <translation>Ahotsa: %1</translation>
     </message>
     <message>
         <source>%1; Duration: %2; %3</source>
@@ -7635,10 +7840,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7650,6 +7851,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7671,7 +7876,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Measure: %1</source>
-        <translation type="unfinished"/>
+        <translation>Konpasa: %1</translation>
     </message>
     <message>
         <source>Start Measure: %1; Start Beat: %2</source>
@@ -7690,7 +7895,7 @@ failed: %2</source>
     <name>Ms::ScoreBrowser</name>
     <message>
         <source>Choose Instruments</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentuak aukeratu</translation>
     </message>
     <message>
         <source>Create New Score</source>
@@ -7757,7 +7962,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Time Signature Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Konpas Neurrien Ezaugarriak...</translation>
     </message>
     <message>
         <source>Line Properties...</source>
@@ -7769,7 +7974,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Change Instrument Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentuaren Ezaugarriak Aldatu...</translation>
     </message>
     <message>
         <source>Staff</source>
@@ -7869,7 +8074,7 @@ Aukeratu konpas bat eta berriro saiatu</translation>
     </message>
     <message>
         <source>Text Style...</source>
-        <translation type="unfinished"/>
+        <translation>Testu estiloa...</translation>
     </message>
     <message>
         <source>System Text Properties...</source>
@@ -7916,11 +8121,11 @@ Please select a range of measures to join and try again</source>
     </message>
     <message>
         <source>Hide Courtesy Clef</source>
-        <translation type="unfinished"/>
+        <translation>Ezkutatu Kortesiazko Armadura</translation>
     </message>
     <message>
         <source>Show Courtesy Clef</source>
-        <translation type="unfinished"/>
+        <translation>Erakutsi Kortesiazko Armadura</translation>
     </message>
     <message>
         <source>Please select the complete tuplet/tremolo and retry the command</source>
@@ -7958,6 +8163,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -8026,7 +8236,7 @@ Please select a range of measures to join and try again</source>
     </message>
     <message>
         <source>MuseScore: System Text Properties</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Sistemako Testuaren Ezaugarriak</translation>
     </message>
     <message>
         <source>MuseScore: Staff Text Properties</source>
@@ -8070,15 +8280,15 @@ Please select a range of measures to join and try again</source>
     <name>Ms::TextEditor</name>
     <message>
         <source>Bold</source>
-        <translation type="unfinished"/>
+        <translation>Lodia</translation>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Etzana</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Azpimarratu</translation>
     </message>
     <message>
         <source>Align left</source>
@@ -8153,15 +8363,15 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Bold</source>
-        <translation type="unfinished"/>
+        <translation>Lodia</translation>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Etzana</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Azpimarratu</translation>
     </message>
     <message>
         <source>Subscript</source>
@@ -8241,7 +8451,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Public Domain</source>
-        <translation type="unfinished"/>
+        <translation>Domeinu Publikoa</translation>
     </message>
     <message>
         <source>Creative Commons Zero</source>
@@ -8269,7 +8479,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source><a href="%1">What does this mean?</a></source>
-        <translation type="unfinished"/>
+        <translation><a href="%1">Honek zer esan nahi du?</a></translation>
     </message>
     <message>
         <source>Respect the <a href="%1">community guidelines</a>. Only make your scores accessible to anyone with permission from the right holders.</source>
@@ -8401,7 +8611,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Insert title here</source>
-        <translation type="unfinished"/>
+        <translation>Idatzi izenburua hemen</translation>
     </message>
     <message>
         <source>Subtitle</source>
@@ -8409,7 +8619,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Insert subtitle here</source>
-        <translation type="unfinished"/>
+        <translation>Idatzi azpi izenburua hemen</translation>
     </message>
     <message>
         <source>Composer</source>
@@ -8417,7 +8627,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Insert composer's name here</source>
-        <translation type="unfinished"/>
+        <translation>Idatzi konposatzailearen izena hemen</translation>
     </message>
     <message>
         <source>Lyricist</source>
@@ -8425,7 +8635,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Insert lyricist's name here</source>
-        <translation type="unfinished"/>
+        <translation>Idatzi hitzen egilearen izena hemen</translation>
     </message>
     <message>
         <source>Copyright</source>
@@ -8483,7 +8693,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Show lines</source>
-        <translation type="unfinished"/>
+        <translation>Lerroak erakutsi</translation>
     </message>
     <message>
         <source>Distance between two lines on a standard 5-line staff</source>
@@ -8562,7 +8772,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>First page number:</source>
-        <translation type="unfinished"/>
+        <translation>Lehenengo orrialdearen zenbakia:</translation>
     </message>
     <message>
         <source>Apply to all Parts</source>
@@ -8936,7 +9146,7 @@ failed: </source>
     </message>
     <message>
         <source>Part name</source>
-        <translation type="unfinished"/>
+        <translation>Partearen izena</translation>
     </message>
     <message>
         <source>Panorama position</source>
@@ -8944,7 +9154,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI sound</source>
-        <translation type="unfinished"/>
+        <translation>MIDI soinua</translation>
     </message>
     <message>
         <source>Part Name</source>
@@ -9436,7 +9646,7 @@ failed: </source>
     </message>
     <message>
         <source>MusicXML</source>
-        <translation type="unfinished"/>
+        <translation>MusicXML</translation>
     </message>
     <message>
         <source>Import layout</source>
@@ -9448,7 +9658,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI</source>
-        <translation type="unfinished"/>
+        <translation>MIDI</translation>
     </message>
     <message>
         <source>Quarter</source>
@@ -9648,7 +9858,7 @@ failed: </source>
     </message>
     <message>
         <source>Shortest note:</source>
-        <translation type="unfinished"/>
+        <translation>Notarik motzena:</translation>
     </message>
     <message>
         <source>Double augmentation dot</source>
@@ -9673,7 +9883,7 @@ failed: </source>
     <message>
         <source>Port number:</source>
         <extracomment>The UDP port number on which the MuseScore OSC server will listen on</extracomment>
-        <translation type="unfinished"/>
+        <translation>Portu zenbakia:</translation>
     </message>
     <message>
         <source>Use JACK Audio</source>
@@ -9689,7 +9899,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI Input:</source>
-        <translation type="unfinished"/>
+        <translation>MIDI Sarrera:</translation>
     </message>
     <message>
         <source>Apply</source>
@@ -9733,11 +9943,11 @@ failed: </source>
     </message>
     <message>
         <source>Port number</source>
-        <translation type="unfinished"/>
+        <translation>Portu zenbakia</translation>
     </message>
     <message>
         <source>Select style</source>
-        <translation type="unfinished"/>
+        <translation>Estiloa aukeratu</translation>
     </message>
     <message>
         <source>Icon Height</source>
@@ -10005,7 +10215,7 @@ failed: </source>
     </message>
     <message>
         <source>Instrument list 1</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentuen zerrenda 1</translation>
     </message>
     <message>
         <source>Insert path to a instrument list file</source>
@@ -10017,7 +10227,7 @@ failed: </source>
     </message>
     <message>
         <source>Choose style</source>
-        <translation type="unfinished"/>
+        <translation>Estiloa aukeratu</translation>
     </message>
     <message>
         <source>Opens a file dialog for selecting a style file</source>
@@ -10041,11 +10251,11 @@ failed: </source>
     </message>
     <message>
         <source>Instrument list 2</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentuen zerrenda 2</translation>
     </message>
     <message>
         <source>Choose Instrument list 2</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentuen 2. Zerrenda aukeratu</translation>
     </message>
     <message>
         <source>I/O Tab</source>
@@ -10065,7 +10275,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI Input</source>
-        <translation type="unfinished"/>
+        <translation>MIDI Sarrera</translation>
     </message>
     <message>
         <source>Choose MIDI Input</source>
@@ -10133,7 +10343,7 @@ failed: </source>
     </message>
     <message>
         <source>Shortest note</source>
-        <translation type="unfinished"/>
+        <translation>Notarik motzena</translation>
     </message>
     <message>
         <source>Choose the shortest note value</source>
@@ -10165,7 +10375,7 @@ failed: </source>
     </message>
     <message>
         <source>Define</source>
-        <translation type="unfinished"/>
+        <translation>Definitu</translation>
     </message>
     <message>
         <source>Update Tab</source>
@@ -10229,11 +10439,11 @@ failed: </source>
     </message>
     <message>
         <source>Dark</source>
-        <translation type="unfinished"/>
+        <translation>Iluna</translation>
     </message>
     <message>
         <source>Light</source>
-        <translation type="unfinished"/>
+        <translation>Argia</translation>
     </message>
     <message>
         <source>Enable MIDI remote control</source>
@@ -10309,7 +10519,7 @@ failed: </source>
     </message>
     <message>
         <source>Note input</source>
-        <translation type="unfinished"/>
+        <translation>Notak Sartu</translation>
     </message>
     <message>
         <source>Note input is active</source>
@@ -10325,19 +10535,19 @@ failed: </source>
     </message>
     <message>
         <source>Images:</source>
-        <translation type="unfinished"/>
+        <translation>Irudiak:</translation>
     </message>
     <message>
         <source>Scores:</source>
-        <translation type="unfinished"/>
+        <translation>Partiturak:</translation>
     </message>
     <message>
         <source>Styles:</source>
-        <translation type="unfinished"/>
+        <translation>Estiloak:</translation>
     </message>
     <message>
         <source>Templates:</source>
-        <translation type="unfinished"/>
+        <translation>Txantiloiak:</translation>
     </message>
     <message>
         <source>Plugins:</source>
@@ -10349,12 +10559,20 @@ failed: </source>
     </message>
     <message>
         <source>Check for new version of MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScoreren eguneratzea bilatu</translation>
     </message>
     <message>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10470,7 +10688,7 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>File not found %1</source>
-        <translation type="unfinished"/>
+        <translation>Fitxategi ez aurkitua %1</translation>
     </message>
     <message>
         <source>MuseScore: Load Error</source>
@@ -10584,19 +10802,19 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>double flat</source>
-        <translation type="unfinished"/>
+        <translation>bemol bikoitza</translation>
     </message>
     <message>
         <source>flat</source>
-        <translation type="unfinished"/>
+        <translation>bemola</translation>
     </message>
     <message>
         <source>sharp</source>
-        <translation type="unfinished"/>
+        <translation>sostengatua</translation>
     </message>
     <message>
         <source>double sharp</source>
-        <translation type="unfinished"/>
+        <translation>sostengatu bikoitza</translation>
     </message>
     <message>
         <source>Internal error: Could not open resource musicxml.xsd
@@ -10740,7 +10958,7 @@ huts egin du:</translation>
     </message>
     <message>
         <source>MuseScore File (*.mscz)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Fitxategia (*.mscz)</translation>
     </message>
     <message>
         <source>MuseScore Files (*.album)</source>
@@ -10795,7 +11013,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Filename</source>
-        <translation type="unfinished"/>
+        <translation>Fitxategi izena</translation>
     </message>
     <message>
         <source>File Size</source>
@@ -10872,15 +11090,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Element type:</source>
-        <translation type="unfinished"/>
+        <translation>Elementu mota:</translation>
     </message>
     <message>
         <source>Same staff</source>
-        <translation type="unfinished"/>
+        <translation>Pentagrama berdina</translation>
     </message>
     <message>
         <source>Same voice</source>
-        <translation type="unfinished"/>
+        <translation>Ahots berdina</translation>
     </message>
     <message>
         <source>Same subtype:</source>
@@ -10888,7 +11106,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Same system</source>
-        <translation type="unfinished"/>
+        <translation>Sistema berdina</translation>
     </message>
     <message>
         <source>Replace selection</source>
@@ -10915,7 +11133,7 @@ Do you want to overwrite it?</source>
     <name>SelectInstrument</name>
     <message>
         <source>MuseScore: Select Instrument</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Instrumentua aukeratu</translation>
     </message>
     <message>
         <source>0</source>
@@ -10923,7 +11141,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Search</source>
-        <translation type="unfinished"/>
+        <translation>Bilatu</translation>
     </message>
     <message>
         <source>Clear</source>
@@ -10945,7 +11163,7 @@ Do you want to overwrite it?</source>
     <name>SfzListDialog</name>
     <message>
         <source>SFZ Files</source>
-        <translation type="unfinished"/>
+        <translation>SFZ Fitxategiak</translation>
     </message>
 </context>
 <context>
@@ -11062,7 +11280,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Description</source>
-        <translation type="unfinished"/>
+        <translation>Deskribapena</translation>
     </message>
     <message>
         <source>Actions for selected channel:</source>
@@ -11139,7 +11357,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Save Templates</source>
-        <translation type="unfinished"/>
+        <translation>Txantiloiak gorde</translation>
     </message>
     <message>
         <source>Load Templates</source>
@@ -11173,7 +11391,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Open a score...</source>
-        <translation type="unfinished"/>
+        <translation>Partitura ireki...</translation>
     </message>
     <message>
         <source>Close</source>
@@ -11190,6 +11408,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Bilatu...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11400,19 +11626,19 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Bold</source>
-        <translation type="unfinished"/>
+        <translation>Lodia</translation>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Etzana</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Azpimarratu</translation>
     </message>
     <message>
         <source>Text color</source>
-        <translation type="unfinished"/>
+        <translation>Testuaren kolorea</translation>
     </message>
     <message>
         <source>Horizontal offset to reference point</source>
@@ -11540,15 +11766,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Instrument Name (Long)</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentuaren izena (Luzea)</translation>
     </message>
     <message>
         <source>Instrument Name (Short)</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentuaren izena (Motza)</translation>
     </message>
     <message>
         <source>Instrument Name (Part)</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentuaren Izena (Partea)</translation>
     </message>
     <message>
         <source>Dynamics</source>
@@ -11636,7 +11862,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Header</source>
-        <translation type="unfinished"/>
+        <translation>Goiburua</translation>
     </message>
     <message>
         <source>Footer</source>
@@ -11644,7 +11870,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Instrument Change</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentu Aldaketa</translation>
     </message>
     <message>
         <source>Figured Bass</source>
@@ -11740,7 +11966,7 @@ Do you want to overwrite it?</source>
     <name>TimeSigProperties</name>
     <message>
         <source>Time Signature Properties</source>
-        <translation type="unfinished"/>
+        <translation>Konpas Neurrien Ezaugarriak</translation>
     </message>
     <message>
         <source>/</source>
@@ -11756,11 +11982,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Values</source>
-        <translation type="unfinished"/>
+        <translation>Balioak</translation>
     </message>
     <message>
         <source>Appearance</source>
-        <translation type="unfinished"/>
+        <translation>Itxura</translation>
     </message>
     <message>
         <source>Other:</source>
@@ -11851,7 +12077,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Enter Number of Measures</source>
-        <translation type="unfinished"/>
+        <translation>Sartu Konpas Kopurua</translation>
     </message>
     <message>
         <source>Measures</source>
@@ -12094,11 +12320,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Single Sharps and Flats Only</source>
-        <translation type="unfinished"/>
+        <translation>Sostengatu eta bemol bakunak bakarrik</translation>
     </message>
     <message>
         <source>Use Double Sharps and Flats</source>
-        <translation type="unfinished"/>
+        <translation>Sostengatu eta bemol bikoitzak erabili</translation>
     </message>
     <message>
         <source>Transpose Chromatically</source>
@@ -12253,7 +12479,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>USERNAME</source>
-        <translation type="unfinished"/>
+        <translation>ERABILTZAILE IZENA</translation>
     </message>
     <message>
         <source>Sign out</source>
@@ -12269,11 +12495,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Description</source>
-        <translation type="unfinished"/>
+        <translation>Deskribapena</translation>
     </message>
     <message>
         <source>License</source>
-        <translation type="unfinished"/>
+        <translation>Lizentzia</translation>
     </message>
     <message>
         <source>Tags</source>
@@ -12285,7 +12511,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Make this score private</source>
-        <translation type="unfinished"/>
+        <translation>Partitura hau pribatua bihurtu</translation>
     </message>
 </context>
 <context>
@@ -12609,7 +12835,7 @@ failed: </source>
     </message>
     <message>
         <source>Export Parts...</source>
-        <translation type="unfinished"/>
+        <translation>Parteak Esportatu...</translation>
     </message>
     <message>
         <source>Save a copy of the score's parts in various formats</source>
@@ -13536,10 +13762,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paleta</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Play panela</translation>
     </message>
@@ -13573,11 +13795,7 @@ failed: </source>
     </message>
     <message>
         <source>Add lyrics</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
+        <translation>Hitzak gehitu</translation>
     </message>
     <message>
         <source>Add tempo marking</source>
@@ -13653,7 +13871,7 @@ failed: </source>
     </message>
     <message>
         <source>Add picture</source>
-        <translation type="unfinished"/>
+        <translation>Irudia gehitu</translation>
     </message>
     <message>
         <source>Play</source>
@@ -13889,7 +14107,7 @@ failed: </source>
     </message>
     <message>
         <source>General...</source>
-        <translation type="unfinished"/>
+        <translation>Orokorra...</translation>
     </message>
     <message>
         <source>Edit general style</source>
@@ -13936,10 +14154,6 @@ failed: </source>
         <translation>Errepikatu aukeraketa</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -13989,7 +14203,7 @@ failed: </source>
     </message>
     <message>
         <source>Full Screen</source>
-        <translation type="unfinished"/>
+        <translation>Pantaila Osoa</translation>
     </message>
     <message>
         <source>Re-Pitch Mode</source>
@@ -14001,7 +14215,7 @@ failed: </source>
     </message>
     <message>
         <source>Piano Keyboard</source>
-        <translation type="unfinished"/>
+        <translation>Piano Teklatua</translation>
     </message>
     <message>
         <source>Additional Media...</source>
@@ -14305,7 +14519,7 @@ failed: </source>
     </message>
     <message>
         <source>Join Measures</source>
-        <translation type="unfinished"/>
+        <translation>Konpasak lotu</translation>
     </message>
     <message>
         <source>OMR Panel</source>
@@ -14417,7 +14631,7 @@ failed: </source>
     </message>
     <message>
         <source>Show time signature palette</source>
-        <translation type="unfinished"/>
+        <translation>Konpas neurrien paleta erakutsi</translation>
     </message>
     <message>
         <source>Symbols...</source>
@@ -14465,7 +14679,7 @@ failed: </source>
     </message>
     <message>
         <source>Add part name</source>
-        <translation type="unfinished"/>
+        <translation>Partearen izena gehitu</translation>
     </message>
     <message>
         <source>Save Online...</source>
@@ -14473,7 +14687,7 @@ failed: </source>
     </message>
     <message>
         <source>Save score on MuseScore.com</source>
-        <translation type="unfinished"/>
+        <translation>Partitura MuseScore.com-en gorde</translation>
     </message>
     <message>
         <source>Explode</source>
@@ -14553,43 +14767,43 @@ failed: </source>
     </message>
     <message>
         <source>File: Open</source>
-        <translation type="unfinished"/>
+        <translation>Fitxategia: Ireki</translation>
     </message>
     <message>
         <source>File: Save</source>
-        <translation type="unfinished"/>
+        <translation>Fitxategia: Gorde</translation>
     </message>
     <message>
         <source>File: Save online</source>
-        <translation type="unfinished"/>
+        <translation>Fitxategia: Online gorde</translation>
     </message>
     <message>
         <source>File: Save as</source>
-        <translation type="unfinished"/>
+        <translation>Fitxategia: Honela gorde</translation>
     </message>
     <message>
         <source>Save selection</source>
-        <translation type="unfinished"/>
+        <translation>Aukeraketa gorde</translation>
     </message>
     <message>
         <source>File: Save a copy</source>
-        <translation type="unfinished"/>
+        <translation>Fitxategia: Kopia bat gorde</translation>
     </message>
     <message>
         <source>Export parts</source>
-        <translation type="unfinished"/>
+        <translation>Parteak esportatu</translation>
     </message>
     <message>
         <source>File: Close</source>
-        <translation type="unfinished"/>
+        <translation>Fitxategia: Itxi</translation>
     </message>
     <message>
         <source>File: New</source>
-        <translation type="unfinished"/>
+        <translation>Fitxategia: Berria</translation>
     </message>
     <message>
         <source>Note input</source>
-        <translation type="unfinished"/>
+        <translation>Notak Sartu</translation>
     </message>
     <message>
         <source>Respell pitches</source>
@@ -14617,7 +14831,7 @@ failed: </source>
     </message>
     <message>
         <source>Next Element</source>
-        <translation type="unfinished"/>
+        <translation>Hurrengo elementua</translation>
     </message>
     <message>
         <source>Accessibility: Next element</source>
@@ -14625,7 +14839,7 @@ failed: </source>
     </message>
     <message>
         <source>Previous Element</source>
-        <translation type="unfinished"/>
+        <translation>Aurreko elementua</translation>
     </message>
     <message>
         <source>Accessibility: Previous element</source>
@@ -14633,11 +14847,11 @@ failed: </source>
     </message>
     <message>
         <source>First Element</source>
-        <translation type="unfinished"/>
+        <translation>Lehenengo elementua</translation>
     </message>
     <message>
         <source>Last Element</source>
-        <translation type="unfinished"/>
+        <translation>Azkenengo elementua</translation>
     </message>
     <message>
         <source>Move Down</source>
@@ -14853,15 +15067,15 @@ failed: </source>
     </message>
     <message>
         <source>Double Sharp</source>
-        <translation type="unfinished"/>
+        <translation>Sostengatu Bikoitza</translation>
     </message>
     <message>
         <source>Note input: Double sharp</source>
-        <translation type="unfinished"/>
+        <translation>Notak sartu: Sostengatu bikoitza</translation>
     </message>
     <message>
         <source>Note input: Sharp</source>
-        <translation type="unfinished"/>
+        <translation>Notak sartu: Sostengatua</translation>
     </message>
     <message>
         <source>Note input: Natural</source>
@@ -14869,15 +15083,15 @@ failed: </source>
     </message>
     <message>
         <source>Note input: Flat</source>
-        <translation type="unfinished"/>
+        <translation>Notak sartu: Bemola</translation>
     </message>
     <message>
         <source>Double Flat</source>
-        <translation type="unfinished"/>
+        <translation>Bemol bikoitza</translation>
     </message>
     <message>
         <source>Note input: Double flat</source>
-        <translation type="unfinished"/>
+        <translation>Notak sartu: Bemol bikoitza</translation>
     </message>
     <message>
         <source>Grace: Quarter</source>
@@ -14889,7 +15103,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI Input</source>
-        <translation type="unfinished"/>
+        <translation>MIDI Sarrera</translation>
     </message>
     <message>
         <source>Beam Start</source>
@@ -14977,27 +15191,27 @@ failed: </source>
     </message>
     <message>
         <source>Exchange voice 1-2</source>
-        <translation type="unfinished"/>
+        <translation>1-2 ahotsak trukatu</translation>
     </message>
     <message>
         <source>Exchange voice 1-3</source>
-        <translation type="unfinished"/>
+        <translation>1-3 ahotsak trukatu</translation>
     </message>
     <message>
         <source>Exchange voice 1-4</source>
-        <translation type="unfinished"/>
+        <translation>1-4 ahotsak trukatu</translation>
     </message>
     <message>
         <source>Exchange voice 2-3</source>
-        <translation type="unfinished"/>
+        <translation>2-3 ahotsak trukatu</translation>
     </message>
     <message>
         <source>Exchange voice 2-4</source>
-        <translation type="unfinished"/>
+        <translation>2-4 ahotsak trukatu</translation>
     </message>
     <message>
         <source>Exchange voice 3-4</source>
-        <translation type="unfinished"/>
+        <translation>3-4 ahotsak trukatu</translation>
     </message>
     <message>
         <source>Repeat Last Command</source>
@@ -15017,11 +15231,11 @@ failed: </source>
     </message>
     <message>
         <source>Edit element</source>
-        <translation type="unfinished"/>
+        <translation>Elementua editatu</translation>
     </message>
     <message>
         <source>Show invisible</source>
-        <translation type="unfinished"/>
+        <translation>Ikusezina erakutsi</translation>
     </message>
     <message>
         <source>Show unprintable</source>
@@ -15121,7 +15335,7 @@ failed: </source>
     </message>
     <message>
         <source>Full screen</source>
-        <translation type="unfinished"/>
+        <translation>Pantaila osoa</translation>
     </message>
     <message>
         <source>Enable Snap to Horizontal Grid</source>
@@ -15137,7 +15351,7 @@ failed: </source>
     </message>
     <message>
         <source>Piano keyboard</source>
-        <translation type="unfinished"/>
+        <translation>Piano teklatua</translation>
     </message>
     <message>
         <source>Split measure</source>
@@ -15145,7 +15359,7 @@ failed: </source>
     </message>
     <message>
         <source>Join measures</source>
-        <translation type="unfinished"/>
+        <translation>Konpasak lotu</translation>
     </message>
     <message>
         <source>Page settings</source>
@@ -15153,11 +15367,11 @@ failed: </source>
     </message>
     <message>
         <source>Next score</source>
-        <translation type="unfinished"/>
+        <translation>Hurrengo partitura</translation>
     </message>
     <message>
         <source>Previous score</source>
-        <translation type="unfinished"/>
+        <translation>Aurreko partitura</translation>
     </message>
     <message>
         <source>Plugin creator</source>
@@ -15341,11 +15555,11 @@ failed: </source>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Etzana</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Azpimarratu</translation>
     </message>
     <message>
         <source>Move Word Left</source>
@@ -15489,11 +15703,11 @@ failed: </source>
     </message>
     <message>
         <source>Import PDF...</source>
-        <translation type="unfinished"/>
+        <translation>PDA-a inportatu...</translation>
     </message>
     <message>
         <source>Import PDF</source>
-        <translation type="unfinished"/>
+        <translation>PDA-a inportatu</translation>
     </message>
     <message>
         <source>Import a PDF file with an experimental service on musescore.com</source>
@@ -15503,6 +15717,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16552,6 +16782,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -16906,7 +17140,7 @@ Measure is not empty</source>
     <name>elementName</name>
     <message>
         <source>invalid</source>
-        <translation type="unfinished"/>
+        <translation>baliogabea</translation>
     </message>
     <message>
         <source>Symbol</source>
@@ -16930,7 +17164,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Accidental</source>
-        <translation type="unfinished"/>
+        <translation>Akzidentala</translation>
     </message>
     <message>
         <source>Stem</source>
@@ -17082,7 +17316,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Instrument Name</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentuaren Izena</translation>
     </message>
     <message>
         <source>Slur Segment</source>
@@ -17130,7 +17364,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Instrument Change</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentu Aldaketa</translation>
     </message>
     <message>
         <source>Hairpin Segment</source>
@@ -17170,7 +17404,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Note Head</source>
-        <translation type="unfinished"/>
+        <translation>Notaren Burua</translation>
     </message>
     <message>
         <source>Note Dot</source>
@@ -17206,7 +17440,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Staff List</source>
-        <translation type="unfinished"/>
+        <translation>Pentagrama Zerrenda</translation>
     </message>
     <message>
         <source>Measure List</source>
@@ -17438,7 +17672,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Mi</source>
-        <translation type="unfinished"/>
+        <translation>Mi</translation>
     </message>
     <message>
         <source>Slash</source>
@@ -17450,27 +17684,27 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Do</source>
-        <translation type="unfinished"/>
+        <translation>Do</translation>
     </message>
     <message>
         <source>Re</source>
-        <translation type="unfinished"/>
+        <translation>Re</translation>
     </message>
     <message>
         <source>Fa</source>
-        <translation type="unfinished"/>
+        <translation>Fa</translation>
     </message>
     <message>
         <source>La</source>
-        <translation type="unfinished"/>
+        <translation>La</translation>
     </message>
     <message>
         <source>Ti</source>
-        <translation type="unfinished"/>
+        <translation>Si</translation>
     </message>
     <message>
         <source>Sol</source>
-        <translation type="unfinished"/>
+        <translation>Sol</translation>
     </message>
     <message>
         <source>Alt. Brevis</source>
@@ -17492,27 +17726,27 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Every Day</source>
-        <translation type="unfinished"/>
+        <translation>Egunero</translation>
     </message>
     <message>
         <source>Every 3 Days</source>
-        <translation type="unfinished"/>
+        <translation>3 egunean behin</translation>
     </message>
     <message>
         <source>Every Week</source>
-        <translation type="unfinished"/>
+        <translation>Astero</translation>
     </message>
     <message>
         <source>Every 2 Weeks</source>
-        <translation type="unfinished"/>
+        <translation>2 astean behin</translation>
     </message>
     <message>
         <source>Every Month</source>
-        <translation type="unfinished"/>
+        <translation>Hilabetero</translation>
     </message>
     <message>
         <source>Every 2 Months</source>
-        <translation type="unfinished"/>
+        <translation>2 hilabetean behin</translation>
     </message>
 </context>
 <context>
@@ -17546,11 +17780,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Articulations</source>
-        <translation type="unfinished"/>
+        <translation>Artikulazioak</translation>
     </message>
     <message>
         <source>Slurs</source>
-        <translation type="unfinished"/>
+        <translation>Ligaturak</translation>
     </message>
     <message>
         <source>Figured Bass</source>
@@ -17594,26 +17828,26 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Voice 1</source>
-        <translation type="unfinished"/>
+        <translation>1 ahotsa</translation>
     </message>
     <message>
         <source>Voice 2</source>
-        <translation type="unfinished"/>
+        <translation>2 ahotsa</translation>
     </message>
     <message>
         <source>Voice 3</source>
-        <translation type="unfinished"/>
+        <translation>3 ahotsa</translation>
     </message>
     <message>
         <source>Voice 4</source>
-        <translation type="unfinished"/>
+        <translation>4 ahotsa</translation>
     </message>
 </context>
 <context>
     <name>soundfonts_directory</name>
     <message>
         <source>Soundfonts</source>
-        <translation type="unfinished"/>
+        <translation>SoundFont-ak</translation>
     </message>
 </context>
 <context>
@@ -17642,7 +17876,7 @@ Measure is not empty</source>
     <name>templates_directory</name>
     <message>
         <source>Templates</source>
-        <translation type="unfinished"/>
+        <translation>Txantiloiak</translation>
     </message>
 </context>
 <context>
@@ -17663,10 +17897,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_fa.ts b/share/locale/mscore_fa.ts
index aed0842..0198f25 100644
--- a/share/locale/mscore_fa.ts
+++ b/share/locale/mscore_fa.ts
@@ -7,7 +7,7 @@
     </message>
     <message>
         <source>Copy revision number</source>
-        <translation type="unfinished"/>
+        <translation>Copy revision number</translation>
     </message>
     <message>
         <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
@@ -26,7 +26,7 @@ p, li { white-space: pre-wrap; }
     <name>AboutMusicXMLBox</name>
     <message>
         <source>About MusicXML</source>
-        <translation>موزیک XML چیست</translation>
+        <translation>درباره MusicXML</translation>
     </message>
     <message>
         <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
@@ -41,22 +41,22 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>The MusicXML Public License:</source>
-        <translation type="unfinished"/>
+        <translation>مجوز همگانی MusicXML :</translation>
     </message>
 </context>
 <context>
     <name>AeolusGui</name>
     <message>
         <source>Azimuth</source>
-        <translation type="unfinished"/>
+        <translation>آزیموت</translation>
     </message>
     <message>
         <source>Width</source>
-        <translation>طول</translation>
+        <translation>عرض</translation>
     </message>
     <message>
         <source>Reflect</source>
-        <translation type="unfinished"/>
+        <translation>Reflect</translation>
     </message>
     <message>
         <source>Reverb</source>
@@ -64,7 +64,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Delay</source>
-        <translation>Delay</translation>
+        <translation>تاخیر</translation>
     </message>
     <message>
         <source>Time</source>
@@ -72,15 +72,15 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Direct</source>
-        <translation>جهت</translation>
+        <translation>مستقیم</translation>
     </message>
     <message>
         <source>III</source>
-        <translation type="unfinished"/>
+        <translation>III</translation>
     </message>
     <message>
         <source>II</source>
-        <translation type="unfinished"/>
+        <translation>II</translation>
     </message>
     <message>
         <source>I</source>
@@ -88,7 +88,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>P</source>
-        <translation type="unfinished"/>
+        <translation>P</translation>
     </message>
     <message>
         <source>Position</source>
@@ -131,7 +131,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Join Scores</source>
-        <translation type="unfinished"/>
+        <translation>چسباندن صفحه های نت به هم</translation>
     </message>
     <message>
         <source>Album name:</source>
@@ -2859,7 +2859,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>B♯</source>
-        <translation type="unfinished"/>
+        <translation>B♯</translation>
     </message>
     <message>
         <source>B♯♯</source>
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>آرپژ</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>پخش</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Show Text</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>پیش فرض</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>پخش</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -5902,7 +6103,7 @@ tuplet would cross measure</source>
     <name>Ms::EditDrumset</name>
     <message>
         <source>invalid</source>
-        <translation type="unfinished"/>
+        <translation>نامعتبر</translation>
     </message>
     <message>
         <source>MuseScore: Open File</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7160,6 +7361,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7632,10 +7837,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7647,6 +7848,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7954,6 +8159,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -9881,7 +10091,7 @@ failed: </source>
     </message>
     <message>
         <source>Paper Color</source>
-        <translation type="unfinished"/>
+        <translation>رنگ کاغذ</translation>
     </message>
     <message>
         <source>Enable MIDI Input</source>
@@ -10351,6 +10561,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11067,7 +11285,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>III</source>
-        <translation type="unfinished"/>
+        <translation>3</translation>
     </message>
     <message>
         <source>Principal
@@ -11183,6 +11401,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11653,7 +11879,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Pedal</source>
-        <translation type="unfinished"/>
+        <translation>Pedal</translation>
     </message>
 </context>
 <context>
@@ -13529,10 +13755,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Palette</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>منوی پخش نت</translation>
     </message>
@@ -13569,10 +13791,6 @@ failed: </source>
         <translation>اضافه کردن شعر</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13929,10 +14147,6 @@ failed: </source>
         <translation>Repeat selection</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15496,6 +15710,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -15777,7 +16007,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>دو#</translation>
     </message>
     <message>
         <source>D</source>
@@ -15797,7 +16027,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>فا دیز</translation>
     </message>
     <message>
         <source>G</source>
@@ -16545,6 +16775,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -16801,7 +17035,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>دو#</translation>
     </message>
     <message>
         <source>D</source>
@@ -16809,101 +17043,101 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Eb</source>
-        <translation type="unfinished"/>
+        <translation>Ù…ÛŒb</translation>
     </message>
     <message>
         <source>E</source>
-        <translation>E می</translation>
+        <translation>می</translation>
     </message>
     <message>
         <source>F</source>
-        <translation>F فا</translation>
+        <translation>فا</translation>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>فا#</translation>
     </message>
     <message>
         <source>G</source>
-        <translation>G سل</translation>
+        <translation>سل</translation>
     </message>
     <message>
         <source>Ab</source>
-        <translation type="unfinished"/>
+        <translation>لاb</translation>
     </message>
     <message>
         <source>A</source>
-        <translation>A لا</translation>
+        <translation>سل</translation>
     </message>
     <message>
         <source>Bb</source>
-        <translation>B سی</translation>
+        <translation>سیb</translation>
     </message>
     <message>
         <source>B</source>
-        <translation>B سی</translation>
+        <translation>سی</translation>
     </message>
 </context>
 <context>
     <name>editstringdata</name>
     <message>
         <source>C</source>
-        <translation>C دو</translation>
+        <translation>دو</translation>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>دو#</translation>
     </message>
     <message>
         <source>D</source>
-        <translation>D ر</translation>
+        <translation>ر</translation>
     </message>
     <message>
         <source>Eb</source>
-        <translation type="unfinished"/>
+        <translation>Ù…ÛŒb</translation>
     </message>
     <message>
         <source>E</source>
-        <translation>E می</translation>
+        <translation>می</translation>
     </message>
     <message>
         <source>F</source>
-        <translation>F فا</translation>
+        <translation>فا</translation>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>فا#</translation>
     </message>
     <message>
         <source>G</source>
-        <translation>G سل</translation>
+        <translation>سل</translation>
     </message>
     <message>
         <source>Ab</source>
-        <translation type="unfinished"/>
+        <translation>لاb</translation>
     </message>
     <message>
         <source>A</source>
-        <translation>A لا</translation>
+        <translation>لا</translation>
     </message>
     <message>
         <source>Bb</source>
-        <translation>B سی</translation>
+        <translation>سیb</translation>
     </message>
     <message>
         <source>B</source>
-        <translation>B سی</translation>
+        <translation>سی</translation>
     </message>
 </context>
 <context>
     <name>elementName</name>
     <message>
         <source>invalid</source>
-        <translation type="unfinished"/>
+        <translation>نامعتبر</translation>
     </message>
     <message>
         <source>Symbol</source>
-        <translation>نماد</translation>
+        <translation>سمبل</translation>
     </message>
     <message>
         <source>Text</source>
@@ -16915,7 +17149,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Bracket</source>
-        <translation>Bracket</translation>
+        <translation>براکت</translation>
     </message>
     <message>
         <source>Arpeggio</source>
@@ -16923,11 +17157,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Accidental</source>
-        <translation>Accidental</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Stem</source>
-        <translation>Stem</translation>
+        <translation>دم/استم نت</translation>
     </message>
     <message>
         <source>Note</source>
@@ -16939,11 +17173,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Rest</source>
-        <translation>نت سکوت</translation>
+        <translation>سکوت</translation>
     </message>
     <message>
         <source>Breath</source>
-        <translation>Breath</translation>
+        <translation>تنفس</translation>
     </message>
     <message>
         <source>Glissando</source>
@@ -16951,7 +17185,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Image</source>
-        <translation>تصویر</translation>
+        <translation>عکس</translation>
     </message>
     <message>
         <source>Tie</source>
@@ -17003,7 +17237,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Volta</source>
-        <translation>Volta</translation>
+        <translation>ولت</translation>
     </message>
     <message>
         <source>Spacer</source>
@@ -17035,11 +17269,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Pedal</source>
-        <translation>پدال</translation>
+        <translation>Pedal</translation>
     </message>
     <message>
         <source>Trill</source>
-        <translation>تریل</translation>
+        <translation>Trill</translation>
     </message>
     <message>
         <source>Segment</source>
@@ -17047,7 +17281,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>System</source>
-        <translation>سیستم</translation>
+        <translation>System</translation>
     </message>
     <message>
         <source>Compound</source>
@@ -17055,7 +17289,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Chord</source>
-        <translation>آکورد</translation>
+        <translation>Chord</translation>
     </message>
     <message>
         <source>Slur</source>
@@ -17071,7 +17305,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ossia</source>
-        <translation type="unfinished"/>
+        <translation>Ossia</translation>
     </message>
     <message>
         <source>Instrument Name</source>
@@ -17095,11 +17329,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Key Signature</source>
-        <translation>گام آهنگ</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Time Signature</source>
-        <translation>Enter Time Signature:</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Repeat Measure</source>
@@ -17656,10 +17890,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
@@ -17717,7 +17947,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>دو#</translation>
     </message>
     <message>
         <source>D</source>
@@ -17737,7 +17967,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>فا دیز</translation>
     </message>
     <message>
         <source>G</source>
diff --git a/share/locale/mscore_fi.ts b/share/locale/mscore_fi.ts
index 7233c9f..fba5cc5 100644
--- a/share/locale/mscore_fi.ts
+++ b/share/locale/mscore_fi.ts
@@ -158,7 +158,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Remove current score</source>
-        <translation>Poista partituuri</translation>
+        <translation>Poista nykyinen partituuri</translation>
     </message>
     <message>
         <source>Create new album</source>
@@ -262,7 +262,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Bend</source>
-        <translation type="unfinished"/>
+        <translation>Bend</translation>
     </message>
     <message>
         <source>Bend/Release</source>
@@ -301,7 +301,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Add line breaks at end of each system</source>
-        <translation>Lisää rivin vaihto jokaisen osan loppuun</translation>
+        <translation>Lisää rivinvaihto jokaisen viivaston loppuun</translation>
     </message>
     <message>
         <source>Remove current line breaks</source>
@@ -552,7 +552,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>MIDI program:</source>
-        <translation>Midi-ohjelma</translation>
+        <translation>MIDI-ohjelma</translation>
     </message>
 </context>
 <context>
@@ -3034,6 +3034,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Toista</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3099,6 +3118,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3271,6 +3314,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3551,6 +3613,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Näytä teksti</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4358,6 +4456,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4488,12 +4658,36 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
+        <translation>Tyhjennä arvo</translation>
+    </message>
+    <message>
+        <source>Ornament Style</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
-        <translation>Tyhjennä arvo</translation>
+        <source>Direction</source>
+        <translation>Suunta</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>oletus</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Toista</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -4867,6 +5061,13 @@ space unit</extracomment>
     </message>
     <message>
         <source>Add time signature to palette</source>
+        <translation>Lisää tahtilaji palettiin</translation>
+    </message>
+</context>
+<context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4890,7 +5091,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Tags</source>
-        <translation type="unfinished"/>
+        <translation>Tagit</translation>
     </message>
     <message>
         <source>Add Tag</source>
@@ -5030,7 +5231,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Description</source>
-        <translation type="unfinished"/>
+        <translation>Kuvaus</translation>
     </message>
 </context>
 <context>
@@ -6025,27 +6226,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7169,6 +7370,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7642,10 +7847,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7657,6 +7858,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7966,6 +8171,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -8078,15 +8288,15 @@ Please select a range of measures to join and try again</source>
     <name>Ms::TextEditor</name>
     <message>
         <source>Bold</source>
-        <translation type="unfinished"/>
+        <translation>Lihavoitu</translation>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Kursiivi</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Alleviivattu</translation>
     </message>
     <message>
         <source>Align left</source>
@@ -8161,15 +8371,15 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Bold</source>
-        <translation type="unfinished"/>
+        <translation>Lihavoitu</translation>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Kursiivi</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Alleviivattu</translation>
     </message>
     <message>
         <source>Subscript</source>
@@ -10363,6 +10573,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11069,7 +11287,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Description</source>
-        <translation type="unfinished"/>
+        <translation>Kuvaus</translation>
     </message>
     <message>
         <source>Actions for selected channel:</source>
@@ -11197,6 +11415,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11251,7 +11477,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Load Default</source>
-        <translation type="unfinished"/>
+        <translation>Lataa oletus</translation>
     </message>
     <message>
         <source>Master tuning:</source>
@@ -11387,7 +11613,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Reset to Style</source>
-        <translation type="unfinished"/>
+        <translation>Palauta tyylin oletusasetukseen</translation>
     </message>
     <message>
         <source>Text margin:</source>
@@ -11399,27 +11625,27 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Font face</source>
-        <translation type="unfinished"/>
+        <translation>Fontin ulkoasu</translation>
     </message>
     <message>
         <source>Font point size</source>
-        <translation type="unfinished"/>
+        <translation>Fontin pistekoko</translation>
     </message>
     <message>
         <source>Bold</source>
-        <translation type="unfinished"/>
+        <translation>Lihavoitu</translation>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Kursiivi</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Alleviivattu</translation>
     </message>
     <message>
         <source>Text color</source>
-        <translation type="unfinished"/>
+        <translation>Tekstin väri</translation>
     </message>
     <message>
         <source>Horizontal offset to reference point</source>
@@ -11487,11 +11713,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Text background color</source>
-        <translation type="unfinished"/>
+        <translation>Tekstin taustaväri</translation>
     </message>
     <message>
         <source>Frame color</source>
-        <translation type="unfinished"/>
+        <translation>Kehyksen väri</translation>
     </message>
     <message>
         <source>Distance between two lines on a standard 5-line staff</source>
@@ -11535,11 +11761,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Lyrics Odd Lines</source>
-        <translation type="unfinished"/>
+        <translation>Sanat (parittomat rivit)</translation>
     </message>
     <message>
         <source>Lyrics Even Lines</source>
-        <translation type="unfinished"/>
+        <translation>Sanat (parilliset rivit)</translation>
     </message>
     <message>
         <source>Fingering</source>
@@ -11547,15 +11773,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Instrument Name (Long)</source>
-        <translation type="unfinished"/>
+        <translation>Soittimen nimi (pitkä)</translation>
     </message>
     <message>
         <source>Instrument Name (Short)</source>
-        <translation type="unfinished"/>
+        <translation>Soittimen nimi (lyhyt)</translation>
     </message>
     <message>
         <source>Instrument Name (Part)</source>
-        <translation type="unfinished"/>
+        <translation>Soittimen nimi (stemma)</translation>
     </message>
     <message>
         <source>Dynamics</source>
@@ -11563,7 +11789,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Technique</source>
-        <translation type="unfinished"/>
+        <translation>Tekniikka</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -11603,11 +11829,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Repeat Text Left</source>
-        <translation type="unfinished"/>
+        <translation>Toista teksti vasemmalle</translation>
     </message>
     <message>
         <source>Repeat Text Right</source>
-        <translation type="unfinished"/>
+        <translation>Toista teksti oikealle</translation>
     </message>
     <message>
         <source>Repeat Text</source>
@@ -11639,15 +11865,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Bend</source>
-        <translation type="unfinished"/>
+        <translation>Bend</translation>
     </message>
     <message>
         <source>Header</source>
-        <translation type="unfinished"/>
+        <translation>Ylätunniste</translation>
     </message>
     <message>
         <source>Footer</source>
-        <translation type="unfinished"/>
+        <translation>Alatunniste</translation>
     </message>
     <message>
         <source>Instrument Change</source>
@@ -11667,7 +11893,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Pedal</source>
-        <translation type="unfinished"/>
+        <translation>Pedaali</translation>
     </message>
 </context>
 <context>
@@ -11696,7 +11922,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Value:</source>
-        <translation type="unfinished"/>
+        <translation>Arvo:</translation>
     </message>
     <message>
         <source>/</source>
@@ -11740,14 +11966,14 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Add time signature to palette</source>
-        <translation type="unfinished"/>
+        <translation>Lisää tahtilaji palettiin</translation>
     </message>
 </context>
 <context>
     <name>TimeSigProperties</name>
     <message>
         <source>Time Signature Properties</source>
-        <translation type="unfinished"/>
+        <translation>Tahtilajin ominaisuudet</translation>
     </message>
     <message>
         <source>/</source>
@@ -11858,11 +12084,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Enter Number of Measures</source>
-        <translation type="unfinished"/>
+        <translation>Anna tahtien lukumäärä</translation>
     </message>
     <message>
         <source>Measures</source>
-        <translation>Tahdit / kehykset</translation>
+        <translation>Tahdit</translation>
     </message>
     <message>
         <source>Cut Time</source>
@@ -11874,7 +12100,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Hint: You can also add or remove measures after creation of the score.</source>
-        <translation type="unfinished"/>
+        <translation>Vinkki: Voit myös lisätä tai poistaa tahteja partituurin luomisen jälkeen.</translation>
     </message>
 </context>
 <context>
@@ -11885,19 +12111,19 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>F major / D minor</source>
-        <translation>F duuri / D molli</translation>
+        <translation>F-duuri / D-molli</translation>
     </message>
     <message>
         <source>C major / A minor</source>
-        <translation>C duuri / A molli</translation>
+        <translation>C-duuri / A-molli</translation>
     </message>
     <message>
         <source>G major / E minor</source>
-        <translation>G duuri / E molli</translation>
+        <translation>G-duuri / E-molli</translation>
     </message>
     <message>
         <source>D major / B minor</source>
-        <translation>D duuri / H molli</translation>
+        <translation>D-duuri / B-molli</translation>
     </message>
     <message>
         <source>Up</source>
@@ -12021,31 +12247,31 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Second</source>
-        <translation type="unfinished"/>
+        <translation>Sekunti</translation>
     </message>
     <message>
         <source>Third</source>
-        <translation type="unfinished"/>
+        <translation>Terssi</translation>
     </message>
     <message>
         <source>Fourth</source>
-        <translation type="unfinished"/>
+        <translation>Kvartti</translation>
     </message>
     <message>
         <source>Fifth</source>
-        <translation type="unfinished"/>
+        <translation>Kvintti</translation>
     </message>
     <message>
         <source>Sixth</source>
-        <translation type="unfinished"/>
+        <translation>Seksti</translation>
     </message>
     <message>
         <source>Seventh</source>
-        <translation type="unfinished"/>
+        <translation>Septimi</translation>
     </message>
     <message>
         <source>Keep degree alterations</source>
-        <translation type="unfinished"/>
+        <translation>Säilytä astemuunnokset</translation>
     </message>
     <message>
         <source>Options</source>
@@ -12053,7 +12279,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Transpose chord symbols</source>
-        <translation type="unfinished"/>
+        <translation>Transponoi sointumerkit</translation>
     </message>
     <message>
         <source>Câ™­ major / Aâ™­ minor</source>
@@ -12065,63 +12291,63 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Dâ™­ major / Bâ™­ minor</source>
-        <translation type="unfinished"/>
+        <translation>Des-duuri / Bb-molli</translation>
     </message>
     <message>
         <source>Aâ™­ major / F minor</source>
-        <translation type="unfinished"/>
+        <translation>As-duuri / F-molli</translation>
     </message>
     <message>
         <source>Eâ™­ major / C minor</source>
-        <translation type="unfinished"/>
+        <translation>Es-duuri / C-molli</translation>
     </message>
     <message>
         <source>Bâ™­ major / G minor</source>
-        <translation type="unfinished"/>
+        <translation>Bb-duuri / G-molli</translation>
     </message>
     <message>
         <source>A major / F♯ minor</source>
-        <translation type="unfinished"/>
+        <translation>A-duuri / Fis-molli</translation>
     </message>
     <message>
         <source>E major / C♯ minor</source>
-        <translation type="unfinished"/>
+        <translation>E-duuri / Cis-molli</translation>
     </message>
     <message>
         <source>B major / G♯ minor</source>
-        <translation type="unfinished"/>
+        <translation>B-duuri / Gis-molli</translation>
     </message>
     <message>
         <source>F♯ major / D♯ minor</source>
-        <translation type="unfinished"/>
+        <translation>Fis-duuri / Dis-molli</translation>
     </message>
     <message>
         <source>C♯ major / A♯ minor</source>
-        <translation type="unfinished"/>
+        <translation>Cis-duuri / Ais-molli</translation>
     </message>
     <message>
         <source>Single Sharps and Flats Only</source>
-        <translation type="unfinished"/>
+        <translation>Vain yksinkertaiset ylennykset ja alennukset</translation>
     </message>
     <message>
         <source>Use Double Sharps and Flats</source>
-        <translation type="unfinished"/>
+        <translation>Käytä kaksoisylennyksiä ja -alennuksia</translation>
     </message>
     <message>
         <source>Transpose Chromatically</source>
-        <translation type="unfinished"/>
+        <translation>Transponoi kromaattisesti</translation>
     </message>
     <message>
         <source>By Key</source>
-        <translation type="unfinished"/>
+        <translation>Sävellajin mukaan</translation>
     </message>
     <message>
         <source>By Interval</source>
-        <translation type="unfinished"/>
+        <translation>Intervallin mukaan</translation>
     </message>
     <message>
         <source>Transpose Diatonically</source>
-        <translation type="unfinished"/>
+        <translation>Transponoi diatonisesti</translation>
     </message>
 </context>
 <context>
@@ -12187,7 +12413,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>MuseScore: Tremolo Bar Properties</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Tremolopalkin ominaisuudet</translation>
     </message>
     <message>
         <source>Release(Up)</source>
@@ -12252,11 +12478,11 @@ Do you want to overwrite it?</source>
     <name>UploadScoreDialog</name>
     <message>
         <source>Score Information</source>
-        <translation type="unfinished"/>
+        <translation>Partituurin tiedot</translation>
     </message>
     <message>
         <source>You're logged in as</source>
-        <translation type="unfinished"/>
+        <translation>Olet kirjautunut käyttäjänimellä</translation>
     </message>
     <message>
         <source>USERNAME</source>
@@ -12264,11 +12490,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Sign out</source>
-        <translation type="unfinished"/>
+        <translation>Kirjaudu ulos</translation>
     </message>
     <message>
         <source>Sign out on exit</source>
-        <translation type="unfinished"/>
+        <translation>Kirjaudu ulos lopetettaessa</translation>
     </message>
     <message>
         <source>Title</source>
@@ -12276,23 +12502,23 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Description</source>
-        <translation type="unfinished"/>
+        <translation>Kuvaus</translation>
     </message>
     <message>
         <source>License</source>
-        <translation type="unfinished"/>
+        <translation>Lisenssi</translation>
     </message>
     <message>
         <source>Tags</source>
-        <translation type="unfinished"/>
+        <translation>Tagit</translation>
     </message>
     <message>
         <source>Update the existing score </source>
-        <translation type="unfinished"/>
+        <translation>Päivitä olemassaoleva partituuri</translation>
     </message>
     <message>
         <source>Make this score private</source>
-        <translation type="unfinished"/>
+        <translation>Tee tästä partituurista yksityinen</translation>
     </message>
 </context>
 <context>
@@ -12592,7 +12818,7 @@ failed: </source>
     </message>
     <message>
         <source>Save current selection as new score</source>
-        <translation type="unfinished"/>
+        <translation>Tallenna nykyinen valinta uudeksi tiedostoksi</translation>
     </message>
     <message>
         <source>Save a Copy...</source>
@@ -12608,11 +12834,11 @@ failed: </source>
     </message>
     <message>
         <source>Export score</source>
-        <translation type="unfinished"/>
+        <translation>Vie partituuri...</translation>
     </message>
     <message>
         <source>Save a copy of the score in various formats</source>
-        <translation type="unfinished"/>
+        <translation>Tallenna partituurin kopio useissa formaateissa</translation>
     </message>
     <message>
         <source>Export Parts...</source>
@@ -12620,7 +12846,7 @@ failed: </source>
     </message>
     <message>
         <source>Save a copy of the score's parts in various formats</source>
-        <translation type="unfinished"/>
+        <translation>Tallenna kopio partituurin stemmoista useissa formaateissa</translation>
     </message>
     <message>
         <source>Close</source>
@@ -13016,7 +13242,7 @@ failed: </source>
     </message>
     <message>
         <source>Marcato</source>
-        <translation type="unfinished"/>
+        <translation>Marcato</translation>
     </message>
     <message>
         <source>Reset Beam Mode</source>
@@ -13024,7 +13250,7 @@ failed: </source>
     </message>
     <message>
         <source>Reset beam mode</source>
-        <translation type="unfinished"/>
+        <translation>Palauta palkkimuoto</translation>
     </message>
     <message>
         <source>Reset beam mode of selected measures</source>
@@ -13056,7 +13282,7 @@ failed: </source>
     </message>
     <message>
         <source>Pitch up by an octave or move text or articulation up</source>
-        <translation type="unfinished"/>
+        <translation>Siirrä oktaavi ylös tai siirrä teksti tai artikulaatio ylöspäin</translation>
     </message>
     <message>
         <source>Up Note in Chord</source>
@@ -13096,7 +13322,7 @@ failed: </source>
     </message>
     <message>
         <source>Pitch down by an octave or move text or articulation down</source>
-        <translation type="unfinished"/>
+        <translation>Laske oktaavi alas tai siirrä teksti tai artikulaatio alaspäin</translation>
     </message>
     <message>
         <source>Down Note in Chord</source>
@@ -13128,7 +13354,7 @@ failed: </source>
     </message>
     <message>
         <source>Previous staff or voice</source>
-        <translation type="unfinished"/>
+        <translation>Edellinen viivasto tai ääni</translation>
     </message>
     <message>
         <source>Go to next chord or move text right</source>
@@ -13140,7 +13366,7 @@ failed: </source>
     </message>
     <message>
         <source>Next staff or voice</source>
-        <translation type="unfinished"/>
+        <translation>Seuraava viivasto tai ääni</translation>
     </message>
     <message>
         <source>Add previous chord to selection</source>
@@ -13160,11 +13386,11 @@ failed: </source>
     </message>
     <message>
         <source>Move chord/rest right</source>
-        <translation type="unfinished"/>
+        <translation>Siirrä sointu/tauko oikealle</translation>
     </message>
     <message>
         <source>Move chord/rest left</source>
-        <translation type="unfinished"/>
+        <translation>Siirrä sointu/tauko vasemmalle</translation>
     </message>
     <message>
         <source>Select to end of measure</source>
@@ -13208,7 +13434,7 @@ failed: </source>
     </message>
     <message>
         <source>Add crescendo</source>
-        <translation type="unfinished"/>
+        <translation>Lisää crescendo</translation>
     </message>
     <message>
         <source>Decrescendo</source>
@@ -13216,27 +13442,27 @@ failed: </source>
     </message>
     <message>
         <source>Add decrescendo</source>
-        <translation type="unfinished"/>
+        <translation>Lisää decrescendo</translation>
     </message>
     <message>
         <source>Ottava 8va</source>
-        <translation type="unfinished"/>
+        <translation>8va</translation>
     </message>
     <message>
         <source>Add ottava 8va</source>
-        <translation type="unfinished"/>
+        <translation>Lisää 8va</translation>
     </message>
     <message>
         <source>Ottava 8vb</source>
-        <translation type="unfinished"/>
+        <translation>8vb</translation>
     </message>
     <message>
         <source>Add ottava 8vb</source>
-        <translation type="unfinished"/>
+        <translation>Lisää 8vb</translation>
     </message>
     <message>
         <source>Escape</source>
-        <translation>ESCAPE</translation>
+        <translation>Escape</translation>
     </message>
     <message>
         <source>Delete</source>
@@ -13248,11 +13474,11 @@ failed: </source>
     </message>
     <message>
         <source>Timewise delete</source>
-        <translation type="unfinished"/>
+        <translation>Timewise poisto</translation>
     </message>
     <message>
         <source>Timewise Delete</source>
-        <translation>Timewise poisto</translation>
+        <translation>Timewise Poisto</translation>
     </message>
     <message>
         <source>Delete element and duration</source>
@@ -13376,7 +13602,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: 16th</source>
-        <translation type="unfinished"/>
+        <translation>Nuotin kesto: 1/16-osa</translation>
     </message>
     <message>
         <source>32nd note</source>
@@ -13384,7 +13610,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: 32nd</source>
-        <translation type="unfinished"/>
+        <translation>Nuotin kesto: 1/32-osa</translation>
     </message>
     <message>
         <source>64th note</source>
@@ -13392,7 +13618,7 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: 64th</source>
-        <translation type="unfinished"/>
+        <translation>Nuotin kesto: 1/64-osa</translation>
     </message>
     <message>
         <source>128th note</source>
@@ -13400,15 +13626,15 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: 128th</source>
-        <translation type="unfinished"/>
+        <translation>Nuotin kesto: 1/128-osa</translation>
     </message>
     <message>
         <source>Increase active duration</source>
-        <translation type="unfinished"/>
+        <translation>Lisää aktiivista kestoa</translation>
     </message>
     <message>
         <source>Decrease active duration</source>
-        <translation type="unfinished"/>
+        <translation>Vähennä aktiivista kestoa</translation>
     </message>
     <message>
         <source>Augmentation dot</source>
@@ -13448,7 +13674,7 @@ failed: </source>
     </message>
     <message>
         <source>Add acciaccatura</source>
-        <translation type="unfinished"/>
+        <translation>Lisää lyhyt etuhele</translation>
     </message>
     <message>
         <source>Appoggiatura</source>
@@ -13456,7 +13682,7 @@ failed: </source>
     </message>
     <message>
         <source>Add appoggiatura</source>
-        <translation type="unfinished"/>
+        <translation>Lisää pitkä etuhele</translation>
     </message>
     <message>
         <source>Grace: quarter</source>
@@ -13543,10 +13769,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Työkalupaletti</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Toistopaneeli</translation>
     </message>
@@ -13556,7 +13778,7 @@ failed: </source>
     </message>
     <message>
         <source>MIDI Import Panel</source>
-        <translation type="unfinished"/>
+        <translation>MIDI-tuonnin ikkuna</translation>
     </message>
     <message>
         <source>Mixer</source>
@@ -13572,7 +13794,7 @@ failed: </source>
     </message>
     <message>
         <source>Zoom canvas</source>
-        <translation type="unfinished"/>
+        <translation>Zoomaus</translation>
     </message>
     <message>
         <source>Lyrics</source>
@@ -13580,15 +13802,11 @@ failed: </source>
     </message>
     <message>
         <source>Add lyrics</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>Tempo Marking...</source>
-        <translation>Tempo...</translation>
+        <translation>Lisää sanoitus</translation>
     </message>
     <message>
         <source>Add tempo marking</source>
-        <translation type="unfinished"/>
+        <translation>Lisää tempomerkintä</translation>
     </message>
     <message>
         <source>System Text</source>
@@ -13943,10 +14161,6 @@ failed: </source>
         <translation>Toista valinta</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15348,11 +15562,11 @@ failed: </source>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Kursiivi</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Alleviivattu</translation>
     </message>
     <message>
         <source>Move Word Left</source>
@@ -15510,6 +15724,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -15533,7 +15763,7 @@ Measure is not empty</source>
     <name>articulation</name>
     <message>
         <source>Bend</source>
-        <translation type="unfinished"/>
+        <translation>Bend</translation>
     </message>
     <message>
         <source>Slide out down</source>
@@ -15589,7 +15819,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Marcato</source>
-        <translation type="unfinished"/>
+        <translation>Marcato</translation>
     </message>
     <message>
         <source>Fade in</source>
@@ -16560,6 +16790,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17014,7 +17248,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Bend</source>
-        <translation type="unfinished"/>
+        <translation>Bend</translation>
     </message>
     <message>
         <source>Volta</source>
@@ -17671,10 +17905,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_fo.ts b/share/locale/mscore_fo.ts
index 9d6f95d..7356365 100644
--- a/share/locale/mscore_fo.ts
+++ b/share/locale/mscore_fo.ts
@@ -19,7 +19,15 @@ p, li { white-space: pre-wrap; }
 <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"><br /></p>
 <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2015 Werner Schweer and Others. </span></p>
 <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html></source>
-        <translation type="unfinished"/>
+        <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visit</span><span style=" font-family:'Arial'; font-size:10pt; color:#0000ff;"> </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> for new versions and more information.</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"><br /></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2015 Werner Schweer and Others. </span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html></translation>
     </message>
 </context>
 <context>
@@ -37,7 +45,14 @@ p, li { white-space: pre-wrap; }
 <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p>
 <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.musicxml.com"><span style=" text-decoration: underline; color:#0000ff;">MusicXML.com</span></a></p>
 <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html></source>
-        <translation type="unfinished"/>
+        <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.musicxml.com"><span style=" text-decoration: underline; color:#0000ff;">MusicXML.com</span></a></p>
+<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html></translation>
     </message>
     <message>
         <source>The MusicXML Public License:</source>
@@ -60,27 +75,27 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Reverb</source>
-        <translation>Snjella</translation>
+        <translation>Reverb</translation>
     </message>
     <message>
         <source>Delay</source>
-        <translation>Seinkan</translation>
+        <translation>Delay</translation>
     </message>
     <message>
         <source>Time</source>
-        <translation>Stev</translation>
+        <translation>Tíð</translation>
     </message>
     <message>
         <source>Direct</source>
-        <translation type="unfinished"/>
+        <translation>Beinleiðis</translation>
     </message>
     <message>
         <source>III</source>
-        <translation type="unfinished"/>
+        <translation>III</translation>
     </message>
     <message>
         <source>II</source>
-        <translation type="unfinished"/>
+        <translation>II</translation>
     </message>
     <message>
         <source>I</source>
@@ -88,26 +103,26 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>P</source>
-        <translation type="unfinished"/>
+        <translation>P</translation>
     </message>
     <message>
         <source>Position</source>
-        <translation>Støða</translation>
+        <translation>Plasering</translation>
     </message>
 </context>
 <context>
     <name>AlbumManager</name>
     <message>
         <source>MuseScore: Album Manager</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Savnsstjórnan</translation>
     </message>
     <message>
         <source>Add Score</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat nótablað</translation>
     </message>
     <message>
         <source>Remove Score</source>
-        <translation type="unfinished"/>
+        <translation>Strika nótablað</translation>
     </message>
     <message>
         <source>Down</source>
@@ -123,43 +138,43 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Load</source>
-        <translation>Laða</translation>
+        <translation>Tak fram skapilón</translation>
     </message>
     <message>
         <source>Print Album</source>
-        <translation type="unfinished"/>
+        <translation>Prenta savn</translation>
     </message>
     <message>
         <source>Join Scores</source>
-        <translation type="unfinished"/>
+        <translation>Set saman nótabløð</translation>
     </message>
     <message>
         <source>Album name:</source>
-        <translation type="unfinished"/>
+        <translation>Savnsnavn:</translation>
     </message>
     <message>
         <source>Move current score down in list</source>
-        <translation type="unfinished"/>
+        <translation>Flyt nótablað niður í lista</translation>
     </message>
     <message>
         <source>Move current score up in list</source>
-        <translation type="unfinished"/>
+        <translation>Flyt nótablað upp í lista</translation>
     </message>
     <message>
         <source>Album name</source>
-        <translation type="unfinished"/>
+        <translation>Savnsnavn</translation>
     </message>
     <message>
         <source>Remove current score</source>
-        <translation type="unfinished"/>
+        <translation>Strika nótablað</translation>
     </message>
     <message>
         <source>Create new album</source>
-        <translation type="unfinished"/>
+        <translation>Ger nýtt savn</translation>
     </message>
     <message>
         <source>Load an existing album</source>
-        <translation type="unfinished"/>
+        <translation>Tak fram album sum er til taks</translation>
     </message>
 </context>
 <context>
@@ -170,11 +185,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Appearance</source>
-        <translation type="unfinished"/>
+        <translation>Framkoma</translation>
     </message>
     <message>
         <source>Direction:</source>
-        <translation type="unfinished"/>
+        <translation>Ætt</translation>
     </message>
     <message>
         <source>Auto</source>
@@ -202,114 +217,114 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Above Staff</source>
-        <translation type="unfinished"/>
+        <translation>Omanfyri stav</translation>
     </message>
     <message>
         <source>Below Staff</source>
-        <translation type="unfinished"/>
+        <translation>Niðanfyri stav</translation>
     </message>
     <message>
         <source>Chord Automatic</source>
-        <translation type="unfinished"/>
+        <translation>Sjálvvirkin ljómur</translation>
     </message>
     <message>
         <source>Above Chord</source>
-        <translation type="unfinished"/>
+        <translation>Oman samljóms</translation>
     </message>
     <message>
         <source>Below Chord</source>
-        <translation type="unfinished"/>
+        <translation>Niðan samljóms</translation>
     </message>
 </context>
 <context>
     <name>Awl::ColorLabel</name>
     <message>
         <source>MuseScore: Select Color</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Vel lit</translation>
     </message>
 </context>
 <context>
     <name>BarLineBase</name>
     <message>
         <source>custom subtype</source>
-        <translation type="unfinished"/>
+        <translation>Sergjørt slag</translation>
     </message>
     <message>
         <source>custom span</source>
-        <translation type="unfinished"/>
+        <translation>Sergjørt spenni</translation>
     </message>
 </context>
 <context>
     <name>BendDialog</name>
     <message>
         <source>MuseScore: Bend Properties</source>
-        <translation type="unfinished"/>
+        <translation>Bendingar eginleikar</translation>
     </message>
     <message>
         <source>Bend type:</source>
-        <translation type="unfinished"/>
+        <translation>Bendingar slag</translation>
     </message>
     <message>
         <source>Click to add or remove some points</source>
-        <translation type="unfinished"/>
+        <translation>Klikk og legg afturat tak frá nøkur punkt</translation>
     </message>
     <message>
         <source>Bend</source>
-        <translation type="unfinished"/>
+        <translation>Bend</translation>
     </message>
     <message>
         <source>Bend/Release</source>
-        <translation type="unfinished"/>
+        <translation>Bend/slepp</translation>
     </message>
     <message>
         <source>Bend/Release/Bend</source>
-        <translation type="unfinished"/>
+        <translation>Bend/slepp/bend</translation>
     </message>
     <message>
         <source>Prebend</source>
-        <translation type="unfinished"/>
+        <translation>Fyribend</translation>
     </message>
     <message>
         <source>Prebend/Release</source>
-        <translation type="unfinished"/>
+        <translation>Fyribend/slepp</translation>
     </message>
 </context>
 <context>
     <name>BreaksDialog</name>
     <message>
         <source>MuseScore: Add/Remove Line Breaks</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Skoyt/strika reglubrot</translation>
     </message>
     <message>
         <source>Break lines every</source>
-        <translation type="unfinished"/>
+        <translation>Brót reglur hvørji</translation>
     </message>
     <message>
         <source>Number of measures</source>
-        <translation type="unfinished"/>
+        <translation>Málatal</translation>
     </message>
     <message>
         <source>measures</source>
-        <translation type="unfinished"/>
+        <translation>mál</translation>
     </message>
     <message>
         <source>Add line breaks at end of each system</source>
-        <translation type="unfinished"/>
+        <translation>Skoyt reglubrot upp í lok hvørjar skipanar</translation>
     </message>
     <message>
         <source>Remove current line breaks</source>
-        <translation type="unfinished"/>
+        <translation>Strika reglubrot</translation>
     </message>
     <message>
         <source>Break lines every X measures</source>
-        <translation type="unfinished"/>
+        <translation>Brót reglur hvørji X taktir</translation>
     </message>
 </context>
 <context>
     <name>ChordBase</name>
     <message>
         <source>Glissando end</source>
-        <translation type="unfinished"/>
+        <translation>Glissando endi</translation>
     </message>
 </context>
 <context>
@@ -320,11 +335,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Tab 1</source>
-        <translation type="unfinished"/>
+        <translation>Skrá 1</translation>
     </message>
     <message>
         <source>Tab 2</source>
-        <translation type="unfinished"/>
+        <translation>Skrá 2</translation>
     </message>
     <message>
         <source>Save As</source>
@@ -332,11 +347,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Load</source>
-        <translation>Laða</translation>
+        <translation>Tak fram</translation>
     </message>
     <message>
         <source>ID</source>
-        <translation type="unfinished"/>
+        <translation>Sam.eyð.</translation>
     </message>
 </context>
 <context>
@@ -347,11 +362,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Cross</source>
-        <translation type="unfinished"/>
+        <translation>Krossur</translation>
     </message>
     <message>
         <source>Diamond</source>
-        <translation type="unfinished"/>
+        <translation>Diamantur</translation>
     </message>
     <message>
         <source>Triangle</source>
@@ -359,35 +374,35 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Mi</source>
-        <translation type="unfinished"/>
+        <translation>Mi</translation>
     </message>
     <message>
         <source>Slash</source>
-        <translation type="unfinished"/>
+        <translation>Skák</translation>
     </message>
     <message>
         <source>XCircle</source>
-        <translation type="unfinished"/>
+        <translation>XSirkul</translation>
     </message>
     <message>
         <source>Do</source>
-        <translation type="unfinished"/>
+        <translation>Do</translation>
     </message>
     <message>
         <source>Re</source>
-        <translation type="unfinished"/>
+        <translation>Re</translation>
     </message>
     <message>
         <source>Fa</source>
-        <translation type="unfinished"/>
+        <translation>Fa</translation>
     </message>
     <message>
         <source>La</source>
-        <translation type="unfinished"/>
+        <translation>La</translation>
     </message>
     <message>
         <source>Ti</source>
-        <translation type="unfinished"/>
+        <translation>Ti</translation>
     </message>
 </context>
 <context>
@@ -402,7 +417,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Load</source>
-        <translation>Laða</translation>
+        <translation>Tak fram</translation>
     </message>
     <message>
         <source>Save</source>
@@ -410,7 +425,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>No.</source>
-        <translation type="unfinished"/>
+        <translation>Nr.</translation>
     </message>
     <message>
         <source>Note</source>
@@ -494,11 +509,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Stem direction:</source>
-        <translation>Leggjaætt nóta:</translation>
+        <translation>Leggjaætt:</translation>
     </message>
     <message>
         <source>Default voice:</source>
-        <translation>Rødd í sjálvgildi:</translation>
+        <translation>Forsett rødd</translation>
     </message>
     <message>
         <source>Note head:</source>
@@ -509,15 +524,15 @@ p, li { white-space: pre-wrap; }
     <name>EditInstrumentBase</name>
     <message>
         <source>MuseScore: Edit Instrument Properties</source>
-        <translation>MuseScore: Rætta hættir ljóðføra</translation>
+        <translation>MuseScore: Broyt eginleikar ljóðførisins</translation>
     </message>
     <message>
         <source>Instrument Properties</source>
-        <translation>Hættir ljóðføra</translation>
+        <translation>Eginleikar ljóðførisins</translation>
     </message>
     <message>
         <source>OK</source>
-        <translation>Í lagi</translation>
+        <translation>OK</translation>
     </message>
     <message>
         <source>Cancel</source>
@@ -533,70 +548,70 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Transpose:</source>
-        <translation type="unfinished"/>
+        <translation>Transponera:</translation>
     </message>
     <message>
         <source>Staves:</source>
-        <translation type="unfinished"/>
+        <translation>Stavir:</translation>
     </message>
     <message>
         <source>Short name:</source>
-        <translation type="unfinished"/>
+        <translation>Stuttnevni:</translation>
     </message>
     <message>
         <source>MIDI program:</source>
-        <translation type="unfinished"/>
+        <translation>MIDI-forrit:</translation>
     </message>
 </context>
 <context>
     <name>EditPitchBase</name>
     <message>
         <source>Note Selection</source>
-        <translation type="unfinished"/>
+        <translation>Nótaval:</translation>
     </message>
     <message>
         <source>Select Note:</source>
-        <translation type="unfinished"/>
+        <translation>Vel nóta:</translation>
     </message>
     <message>
         <source>Octave 8</source>
-        <translation type="unfinished"/>
+        <translation>Áttund 8</translation>
     </message>
     <message>
         <source>Octave 7</source>
-        <translation type="unfinished"/>
+        <translation>Áttund 7</translation>
     </message>
     <message>
         <source>Octave 6</source>
-        <translation type="unfinished"/>
+        <translation>Áttund 6</translation>
     </message>
     <message>
         <source>Octave 5</source>
-        <translation type="unfinished"/>
+        <translation>Áttund 5</translation>
     </message>
     <message>
         <source>Octave 4</source>
-        <translation type="unfinished"/>
+        <translation>Áttund 4</translation>
     </message>
     <message>
         <source>Octave 3</source>
-        <translation type="unfinished"/>
+        <translation>Áttund 3</translation>
     </message>
     <message>
         <source>Octave 2</source>
-        <translation type="unfinished"/>
+        <translation>Áttund 2</translation>
     </message>
     <message>
         <source>Octave 1</source>
-        <translation type="unfinished"/>
+        <translation>Áttund 1</translation>
     </message>
     <message>
         <source>Octave 0</source>
-        <translation type="unfinished"/>
+        <translation>Áttund 0</translation>
     </message>
     <message>
         <source>Octave -1</source>
-        <translation type="unfinished"/>
+        <translation>Áttund -1</translation>
     </message>
     <message>
         <source>C</source>
@@ -628,299 +643,299 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>C 8</source>
-        <translation type="unfinished"/>
+        <translation>C 8</translation>
     </message>
     <message>
         <source>D 8</source>
-        <translation type="unfinished"/>
+        <translation>D 8</translation>
     </message>
     <message>
         <source>E 8</source>
-        <translation type="unfinished"/>
+        <translation>E 8</translation>
     </message>
     <message>
         <source>F 8</source>
-        <translation type="unfinished"/>
+        <translation>F 8</translation>
     </message>
     <message>
         <source>G 8</source>
-        <translation type="unfinished"/>
+        <translation>G 8</translation>
     </message>
     <message>
         <source>A 8</source>
-        <translation type="unfinished"/>
+        <translation>A 8</translation>
     </message>
     <message>
         <source>B 8</source>
-        <translation type="unfinished"/>
+        <translation>B 8</translation>
     </message>
     <message>
         <source>C 7</source>
-        <translation type="unfinished"/>
+        <translation>C 7</translation>
     </message>
     <message>
         <source>D 7</source>
-        <translation type="unfinished"/>
+        <translation>D 7</translation>
     </message>
     <message>
         <source>E 7</source>
-        <translation type="unfinished"/>
+        <translation>E 7</translation>
     </message>
     <message>
         <source>F 7</source>
-        <translation type="unfinished"/>
+        <translation>F 7</translation>
     </message>
     <message>
         <source>G 7</source>
-        <translation type="unfinished"/>
+        <translation>G 7</translation>
     </message>
     <message>
         <source>A 7</source>
-        <translation type="unfinished"/>
+        <translation>A 7</translation>
     </message>
     <message>
         <source>B 7</source>
-        <translation type="unfinished"/>
+        <translation>B 7</translation>
     </message>
     <message>
         <source>C 6</source>
-        <translation type="unfinished"/>
+        <translation>C 6</translation>
     </message>
     <message>
         <source>D 6</source>
-        <translation type="unfinished"/>
+        <translation>D 6</translation>
     </message>
     <message>
         <source>E 6</source>
-        <translation type="unfinished"/>
+        <translation>E 6</translation>
     </message>
     <message>
         <source>F 6</source>
-        <translation type="unfinished"/>
+        <translation>F 6</translation>
     </message>
     <message>
         <source>G 6</source>
-        <translation type="unfinished"/>
+        <translation>G 6</translation>
     </message>
     <message>
         <source>A 6</source>
-        <translation type="unfinished"/>
+        <translation>A 6</translation>
     </message>
     <message>
         <source>B 6</source>
-        <translation type="unfinished"/>
+        <translation>B 6</translation>
     </message>
     <message>
         <source>C 5</source>
-        <translation type="unfinished"/>
+        <translation>C 5</translation>
     </message>
     <message>
         <source>D 5</source>
-        <translation type="unfinished"/>
+        <translation>D 5</translation>
     </message>
     <message>
         <source>E 5</source>
-        <translation type="unfinished"/>
+        <translation>E 5</translation>
     </message>
     <message>
         <source>F 5</source>
-        <translation type="unfinished"/>
+        <translation>F 5</translation>
     </message>
     <message>
         <source>G 5</source>
-        <translation type="unfinished"/>
+        <translation>G 5</translation>
     </message>
     <message>
         <source>A 5</source>
-        <translation type="unfinished"/>
+        <translation>A 5</translation>
     </message>
     <message>
         <source>B 5</source>
-        <translation type="unfinished"/>
+        <translation>B 5</translation>
     </message>
     <message>
         <source>C 4</source>
-        <translation type="unfinished"/>
+        <translation>C 4</translation>
     </message>
     <message>
         <source>D 4</source>
-        <translation type="unfinished"/>
+        <translation>D 4</translation>
     </message>
     <message>
         <source>E 4</source>
-        <translation type="unfinished"/>
+        <translation>E 4</translation>
     </message>
     <message>
         <source>F 4</source>
-        <translation type="unfinished"/>
+        <translation>F 4</translation>
     </message>
     <message>
         <source>G 4</source>
-        <translation type="unfinished"/>
+        <translation>G 4</translation>
     </message>
     <message>
         <source>A 4</source>
-        <translation type="unfinished"/>
+        <translation>A 4</translation>
     </message>
     <message>
         <source>B 4</source>
-        <translation type="unfinished"/>
+        <translation>B 4</translation>
     </message>
     <message>
         <source>C 3</source>
-        <translation type="unfinished"/>
+        <translation>C 3</translation>
     </message>
     <message>
         <source>D 3</source>
-        <translation type="unfinished"/>
+        <translation>D 3</translation>
     </message>
     <message>
         <source>E 3</source>
-        <translation type="unfinished"/>
+        <translation>E 3</translation>
     </message>
     <message>
         <source>F 3</source>
-        <translation type="unfinished"/>
+        <translation>F 3</translation>
     </message>
     <message>
         <source>G 3</source>
-        <translation type="unfinished"/>
+        <translation>G 3</translation>
     </message>
     <message>
         <source>A 3</source>
-        <translation type="unfinished"/>
+        <translation>A 3</translation>
     </message>
     <message>
         <source>B 3</source>
-        <translation type="unfinished"/>
+        <translation>B 3</translation>
     </message>
     <message>
         <source>C 2</source>
-        <translation type="unfinished"/>
+        <translation>C 2</translation>
     </message>
     <message>
         <source>D 2</source>
-        <translation type="unfinished"/>
+        <translation>D 2</translation>
     </message>
     <message>
         <source>E 2</source>
-        <translation type="unfinished"/>
+        <translation>E 2</translation>
     </message>
     <message>
         <source>F 2</source>
-        <translation type="unfinished"/>
+        <translation>F 2</translation>
     </message>
     <message>
         <source>G 2</source>
-        <translation type="unfinished"/>
+        <translation>G 2</translation>
     </message>
     <message>
         <source>A 2</source>
-        <translation type="unfinished"/>
+        <translation>A 2</translation>
     </message>
     <message>
         <source>B 2</source>
-        <translation type="unfinished"/>
+        <translation>B 2</translation>
     </message>
     <message>
         <source>C 1</source>
-        <translation type="unfinished"/>
+        <translation>C 1</translation>
     </message>
     <message>
         <source>D 1</source>
-        <translation type="unfinished"/>
+        <translation>D 1</translation>
     </message>
     <message>
         <source>E 1</source>
-        <translation type="unfinished"/>
+        <translation>E 1</translation>
     </message>
     <message>
         <source>F 1</source>
-        <translation type="unfinished"/>
+        <translation>F 1</translation>
     </message>
     <message>
         <source>G 1</source>
-        <translation type="unfinished"/>
+        <translation>G 1</translation>
     </message>
     <message>
         <source>A 1</source>
-        <translation type="unfinished"/>
+        <translation>A 1</translation>
     </message>
     <message>
         <source>B 1</source>
-        <translation type="unfinished"/>
+        <translation>B 1</translation>
     </message>
     <message>
         <source>C 0</source>
-        <translation type="unfinished"/>
+        <translation>C 0</translation>
     </message>
     <message>
         <source>D 0</source>
-        <translation type="unfinished"/>
+        <translation>D 0</translation>
     </message>
     <message>
         <source>E 0</source>
-        <translation type="unfinished"/>
+        <translation>E 0</translation>
     </message>
     <message>
         <source>F 0</source>
-        <translation type="unfinished"/>
+        <translation>F 0</translation>
     </message>
     <message>
         <source>G 0</source>
-        <translation type="unfinished"/>
+        <translation>G 0</translation>
     </message>
     <message>
         <source>A 0</source>
-        <translation type="unfinished"/>
+        <translation>A 0</translation>
     </message>
     <message>
         <source>B 0</source>
-        <translation type="unfinished"/>
+        <translation>B 0</translation>
     </message>
     <message>
         <source>C -1</source>
-        <translation type="unfinished"/>
+        <translation>C -1</translation>
     </message>
     <message>
         <source>D -1</source>
-        <translation type="unfinished"/>
+        <translation>D -1</translation>
     </message>
     <message>
         <source>E -1</source>
-        <translation type="unfinished"/>
+        <translation>E -1</translation>
     </message>
     <message>
         <source>F -1</source>
-        <translation type="unfinished"/>
+        <translation>F -1</translation>
     </message>
     <message>
         <source>G -1</source>
-        <translation type="unfinished"/>
+        <translation>G -1</translation>
     </message>
     <message>
         <source>A -1</source>
-        <translation type="unfinished"/>
+        <translation>A -1</translation>
     </message>
     <message>
         <source>B -1</source>
-        <translation type="unfinished"/>
+        <translation>B -1</translation>
     </message>
     <message>
         <source>C♯</source>
-        <translation type="unfinished"/>
+        <translation>C♯</translation>
     </message>
     <message>
         <source>Eâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­</translation>
     </message>
     <message>
         <source>F♯</source>
-        <translation type="unfinished"/>
+        <translation>F♯</translation>
     </message>
     <message>
         <source>Aâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­</translation>
     </message>
     <message>
         <source>Bâ™­</source>
@@ -928,214 +943,214 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>C♯ 8</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 8</translation>
     </message>
     <message>
         <source>Eâ™­ 8</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 8</translation>
     </message>
     <message>
         <source>F♯ 8</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 8</translation>
     </message>
     <message>
         <source>Aâ™­ 8</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 8</translation>
     </message>
     <message>
         <source>Bâ™­ 8</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 8</translation>
     </message>
     <message>
         <source>C♯ 7</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 7</translation>
     </message>
     <message>
         <source>Eâ™­ 7</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 7</translation>
     </message>
     <message>
         <source>F♯ 7</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 7</translation>
     </message>
     <message>
         <source>Aâ™­ 7</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 7</translation>
     </message>
     <message>
         <source>Bâ™­ 7</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 7</translation>
     </message>
     <message>
         <source>C♯ 6</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 6</translation>
     </message>
     <message>
         <source>Eâ™­ 6</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 6</translation>
     </message>
     <message>
         <source>F♯ 6</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 6</translation>
     </message>
     <message>
         <source>Aâ™­ 6</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 6</translation>
     </message>
     <message>
         <source>Bâ™­ 6</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 6</translation>
     </message>
     <message>
         <source>C♯ 5</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 5</translation>
     </message>
     <message>
         <source>Eâ™­ 5</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 5</translation>
     </message>
     <message>
         <source>F♯ 5</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 5</translation>
     </message>
     <message>
         <source>Aâ™­ 5</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 5</translation>
     </message>
     <message>
         <source>Bâ™­ 5</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 5</translation>
     </message>
     <message>
         <source>C♯ 4</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 4</translation>
     </message>
     <message>
         <source>Eâ™­ 4</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 4</translation>
     </message>
     <message>
         <source>F♯ 4</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 4</translation>
     </message>
     <message>
         <source>Aâ™­ 4</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 4</translation>
     </message>
     <message>
         <source>Bâ™­ 4</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 4</translation>
     </message>
     <message>
         <source>C♯ 3</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 3</translation>
     </message>
     <message>
         <source>Eâ™­ 3</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 3</translation>
     </message>
     <message>
         <source>F♯ 3</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 3</translation>
     </message>
     <message>
         <source>Aâ™­ 3</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 3</translation>
     </message>
     <message>
         <source>Bâ™­ 3</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 3</translation>
     </message>
     <message>
         <source>C♯ 2</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 2</translation>
     </message>
     <message>
         <source>Eâ™­ 2</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 2</translation>
     </message>
     <message>
         <source>F♯ 2</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 2</translation>
     </message>
     <message>
         <source>Aâ™­ 2</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 2</translation>
     </message>
     <message>
         <source>Bâ™­ 2</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 2</translation>
     </message>
     <message>
         <source>C♯ 1</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 1</translation>
     </message>
     <message>
         <source>Eâ™­ 1</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 1</translation>
     </message>
     <message>
         <source>F♯ 1</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 1</translation>
     </message>
     <message>
         <source>Aâ™­ 1</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 1</translation>
     </message>
     <message>
         <source>Bâ™­ 1</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 1</translation>
     </message>
     <message>
         <source>C♯ 0</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 0</translation>
     </message>
     <message>
         <source>Eâ™­ 0</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 0</translation>
     </message>
     <message>
         <source>F♯ 0</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 0</translation>
     </message>
     <message>
         <source>Aâ™­ 0</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 0</translation>
     </message>
     <message>
         <source>Bâ™­ 0</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 0</translation>
     </message>
     <message>
         <source>C♯ -1</source>
-        <translation type="unfinished"/>
+        <translation>C♯ -1</translation>
     </message>
     <message>
         <source>Eâ™­ -1</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ -1</translation>
     </message>
     <message>
         <source>F♯ -1</source>
-        <translation type="unfinished"/>
+        <translation>F♯ -1</translation>
     </message>
     <message>
         <source>Aâ™­ -1</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ -1</translation>
     </message>
     <message>
         <source>Bâ™­ -1</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ -1</translation>
     </message>
     <message>
         <source>»C</source>
-        <translation type="unfinished"/>
+        <translation>»C</translation>
     </message>
 </context>
 <context>
     <name>EditRaster</name>
     <message>
         <source>1 / </source>
-        <translation type="unfinished"/>
+        <translation>1 / </translation>
     </message>
     <message>
         <source>sp</source>
@@ -1143,30 +1158,30 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>MuseScore: Edit Grid</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Broyt grind</translation>
     </message>
     <message>
         <source>Edit Grid</source>
-        <translation type="unfinished"/>
+        <translation>Broyt grind</translation>
     </message>
     <message>
         <source>Horizontal grid:</source>
-        <translation type="unfinished"/>
+        <translation>Vatnrætt grind:</translation>
     </message>
     <message>
         <source>Vertical  grid:</source>
-        <translation type="unfinished"/>
+        <translation>Loddrætt grind:</translation>
     </message>
 </context>
 <context>
     <name>EditStaffBase</name>
     <message>
         <source>MuseScore: Edit Staff/Part Properties</source>
-        <translation>MuseScore: Rætta hættir stava/tátta</translation>
+        <translation>MuseScore: Broyt stav/Eginleikar partsins</translation>
     </message>
     <message>
         <source>Part Properties</source>
-        <translation>Hættir táttar</translation>
+        <translation>Eginleikar partsins</translation>
     </message>
     <message>
         <source>Change Instrument...</source>
@@ -1178,7 +1193,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Amateur:</source>
-        <translation>Leikmaður:</translation>
+        <translation>Leikfólk:</translation>
     </message>
     <message>
         <source>-</source>
@@ -1186,127 +1201,127 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Professional:</source>
-        <translation>Yrkismaður:</translation>
+        <translation>Serfrøðingur:</translation>
     </message>
     <message>
         <source>0 - Perfect Unison</source>
-        <translation type="unfinished"/>
+        <translation>0 - Reint Samljóð</translation>
     </message>
     <message>
         <source>1 - Augmented Unison</source>
-        <translation type="unfinished"/>
+        <translation>1 - Økt Samljóð</translation>
     </message>
     <message>
         <source>0 - Diminished Second</source>
-        <translation type="unfinished"/>
+        <translation>0 - Minka Tvíund</translation>
     </message>
     <message>
         <source>1 - Minor Second</source>
-        <translation type="unfinished"/>
+        <translation>1 - Lítil Tvíund</translation>
     </message>
     <message>
         <source>2 - Major Second</source>
-        <translation type="unfinished"/>
+        <translation>2 - Stór Tvíund</translation>
     </message>
     <message>
         <source>3 - Augmented Second</source>
-        <translation type="unfinished"/>
+        <translation>3 -  Økt Tvíund</translation>
     </message>
     <message>
         <source>2 - Diminished Third</source>
-        <translation type="unfinished"/>
+        <translation>2 - Minka Tríund</translation>
     </message>
     <message>
         <source>3 - Minor Third</source>
-        <translation type="unfinished"/>
+        <translation>3 - Lítil Tríund</translation>
     </message>
     <message>
         <source>4 - Major Third</source>
-        <translation type="unfinished"/>
+        <translation>4 - Stór Tríund</translation>
     </message>
     <message>
         <source>5 - Augmented Third</source>
-        <translation type="unfinished"/>
+        <translation>5 - Økt Tríund</translation>
     </message>
     <message>
         <source>4 - Diminished Fourth</source>
-        <translation type="unfinished"/>
+        <translation>4 - Minka Fjórðund</translation>
     </message>
     <message>
         <source>5 - Perfect Fourth</source>
-        <translation type="unfinished"/>
+        <translation>5 - Rein Fjórðund</translation>
     </message>
     <message>
         <source>6 - Augmented Fourth</source>
-        <translation type="unfinished"/>
+        <translation>6 - Økt Fjórðund</translation>
     </message>
     <message>
         <source>6 - Diminished Fifth</source>
-        <translation type="unfinished"/>
+        <translation>6 - Minka Fimmund</translation>
     </message>
     <message>
         <source>7 - Perfect Fifth</source>
-        <translation type="unfinished"/>
+        <translation>7 - Rein Fimmund</translation>
     </message>
     <message>
         <source>8 - Augmented Fifth</source>
-        <translation type="unfinished"/>
+        <translation>8 - Økt Fimmund</translation>
     </message>
     <message>
         <source>7 - Diminished Sixth</source>
-        <translation type="unfinished"/>
+        <translation>7 - Minka Seksund</translation>
     </message>
     <message>
         <source>8 - Minor Sixth</source>
-        <translation type="unfinished"/>
+        <translation>8 - Lítil Seksund</translation>
     </message>
     <message>
         <source>9 - Major Sixth</source>
-        <translation type="unfinished"/>
+        <translation>9 - Stór Seksund</translation>
     </message>
     <message>
         <source>10 - Augmented Sixth</source>
-        <translation type="unfinished"/>
+        <translation>10 - Økt Seksund</translation>
     </message>
     <message>
         <source>9 - Diminished Seventh</source>
-        <translation type="unfinished"/>
+        <translation>9 - Minka Sjeyund</translation>
     </message>
     <message>
         <source>10 - Minor Seventh</source>
-        <translation type="unfinished"/>
+        <translation>10 - Lítil Sjeyund</translation>
     </message>
     <message>
         <source>11 - Major Seventh</source>
-        <translation type="unfinished"/>
+        <translation>11 - Stór Sjeyund</translation>
     </message>
     <message>
         <source>12 - Augmented Seventh</source>
-        <translation type="unfinished"/>
+        <translation>12 - Økt Sjeyund</translation>
     </message>
     <message>
         <source>11 - Diminished Octave</source>
-        <translation type="unfinished"/>
+        <translation>11 - Minka Áttund</translation>
     </message>
     <message>
         <source>12 - Perfect Octave</source>
-        <translation type="unfinished"/>
+        <translation>12 - Rein Áttund</translation>
     </message>
     <message>
         <source>Number of strings:</source>
-        <translation type="unfinished"/>
+        <translation>Tal av streingjum</translation>
     </message>
     <message>
         <source>Staff Properties</source>
-        <translation>Hættir stava</translation>
+        <translation>Eginleikar stavsins</translation>
     </message>
     <message>
         <source>Invisible staff lines</source>
-        <translation type="unfinished"/>
+        <translation>Ósjónligar stavlinjur</translation>
     </message>
     <message>
         <source>Small staff</source>
-        <translation type="unfinished"/>
+        <translation>Lítil stavur</translation>
     </message>
     <message>
         <source>sp</source>
@@ -1314,31 +1329,31 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Staff line color:</source>
-        <translation type="unfinished"/>
+        <translation>Stav striku litur</translation>
     </message>
     <message>
         <source>Part name:</source>
-        <translation type="unfinished"/>
+        <translation>Raddarnavn</translation>
     </message>
     <message>
         <source>Long instrument name:</source>
-        <translation>Laða navn ljóðføris</translation>
+        <translation>Fulla navn ljóðførisins</translation>
     </message>
     <message>
         <source>Short instrument name:</source>
-        <translation>Stuttnevni ljóðføris:</translation>
+        <translation>Stuttnevni ljóðførisins:</translation>
     </message>
     <message>
         <source>Usable pitch range:</source>
-        <translation type="unfinished"/>
+        <translation>Tónaspenni</translation>
     </message>
     <message>
         <source>Play transposition:</source>
-        <translation type="unfinished"/>
+        <translation>Spæl broytt tónalag</translation>
     </message>
     <message>
         <source>+ Octave:</source>
-        <translation type="unfinished"/>
+        <translation>+ Áttund</translation>
     </message>
     <message>
         <source>Up</source>
@@ -1350,23 +1365,23 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Edit String Data...</source>
-        <translation type="unfinished"/>
+        <translation>Broyt streingja data</translation>
     </message>
     <message>
         <source>Show time signature</source>
-        <translation type="unfinished"/>
+        <translation>Vís taktslag</translation>
     </message>
     <message>
         <source>Style group:</source>
-        <translation type="unfinished"/>
+        <translation>Snið bólkur:</translation>
     </message>
     <message>
         <source>Show barlines</source>
-        <translation type="unfinished"/>
+        <translation>Vís taktstrikur</translation>
     </message>
     <message>
         <source>Show clef</source>
-        <translation type="unfinished"/>
+        <translation>Vís lykil</translation>
     </message>
     <message>
         <source>Lines:</source>
@@ -1374,23 +1389,23 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Line distance:</source>
-        <translation type="unfinished"/>
+        <translation>Strikufjarstøða</translation>
     </message>
     <message>
         <source>Extra distance above staff:</source>
-        <translation type="unfinished"/>
+        <translation>Størri fjarstøða omanfyri stav</translation>
     </message>
     <message>
         <source>Never hide</source>
-        <translation type="unfinished"/>
+        <translation>Goym aldri</translation>
     </message>
     <message>
         <source>Do not hide if system is empty</source>
-        <translation type="unfinished"/>
+        <translation>Goym ikki um skipan er tóm</translation>
     </message>
     <message>
         <source>Scale</source>
-        <translation type="unfinished"/>
+        <translation>Tónastigi</translation>
     </message>
     <message>
         <source>%</source>
@@ -1398,18 +1413,18 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Advanced Style Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Snið framkomnir eginleikar</translation>
     </message>
     <message>
         <source>Hide system barline</source>
-        <translation type="unfinished"/>
+        <translation>Goym taktstrikur í skipanini</translation>
     </message>
 </context>
 <context>
     <name>EditStaffType</name>
     <message>
         <source>MuseScore: Edit Staff Type</source>
-        <translation type="unfinished"/>
+        <translation>Broyt stav slag</translation>
     </message>
     <message>
         <source>Lines:</source>
@@ -1421,7 +1436,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>STANDARD STAFF</source>
-        <translation type="unfinished"/>
+        <translation>VANLIGUR STAVUR</translation>
     </message>
     <message>
         <source>Stemless</source>
@@ -1429,11 +1444,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Create a new staff type of current group.</source>
-        <translation type="unfinished"/>
+        <translation>Stovna nýtt stavslag í verandi bólki</translation>
     </message>
     <message>
         <source>Fret Marks</source>
-        <translation type="unfinished"/>
+        <translation>Bandamerkir</translation>
     </message>
     <message>
         <source>Font:</source>
@@ -1449,7 +1464,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Marks are:</source>
-        <translation type="unfinished"/>
+        <translation>Merkir eru:</translation>
     </message>
     <message>
         <source>Numbers</source>
@@ -1457,15 +1472,15 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Letters</source>
-        <translation type="unfinished"/>
+        <translation>Bókstavir</translation>
     </message>
     <message>
         <source>Marks are drawn:</source>
-        <translation type="unfinished"/>
+        <translation>Merkir eru teknaði:</translation>
     </message>
     <message>
         <source>Lines are:</source>
-        <translation type="unfinished"/>
+        <translation>Strikur eru:</translation>
     </message>
     <message>
         <source>Continuous</source>
@@ -1473,15 +1488,15 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Broken</source>
-        <translation type="unfinished"/>
+        <translation>Brotin</translation>
     </message>
     <message>
         <source>Note Values</source>
-        <translation type="unfinished"/>
+        <translation>Nótavirði</translation>
     </message>
     <message>
         <source>Shown as:</source>
-        <translation type="unfinished"/>
+        <translation>Víst sum:</translation>
     </message>
     <message>
         <source>None</source>
@@ -1489,43 +1504,43 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Stems and beams</source>
-        <translation type="unfinished"/>
+        <translation>Leggir og bjálkar</translation>
     </message>
     <message>
         <source>Stem style:</source>
-        <translation type="unfinished"/>
+        <translation>Legg snið</translation>
     </message>
     <message>
         <source>Beside staff</source>
-        <translation type="unfinished"/>
+        <translation>Víð síðuna av stavi</translation>
     </message>
     <message>
         <source>Through staff</source>
-        <translation type="unfinished"/>
+        <translation>í gjøgnum stav</translation>
     </message>
     <message>
         <source>Stem position:</source>
-        <translation type="unfinished"/>
+        <translation>Legg plasering</translation>
     </message>
     <message>
         <source>Above</source>
-        <translation>Fyri oman</translation>
+        <translation>Omanfyri</translation>
     </message>
     <message>
         <source>Below</source>
-        <translation type="unfinished"/>
+        <translation>Niðanfyri</translation>
     </message>
     <message>
         <source>Half notes:</source>
-        <translation type="unfinished"/>
+        <translation>Hálvnótar:</translation>
     </message>
     <message>
         <source>As short stem</source>
-        <translation type="unfinished"/>
+        <translation>Sum stuttur leggur</translation>
     </message>
     <message>
         <source>As slashed stem</source>
-        <translation type="unfinished"/>
+        <translation>Sum skák leggur</translation>
     </message>
     <message>
         <source>Preview</source>
@@ -1533,71 +1548,71 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Line distance:</source>
-        <translation type="unfinished"/>
+        <translation>Striku fjarstøða</translation>
     </message>
     <message>
         <source>Show clef</source>
-        <translation type="unfinished"/>
+        <translation>Vís lykil</translation>
     </message>
     <message>
         <source>Show time signature</source>
-        <translation type="unfinished"/>
+        <translation>Vís taktslag</translation>
     </message>
     <message>
         <source>Show barlines</source>
-        <translation type="unfinished"/>
+        <translation>Vís takt strikur</translation>
     </message>
     <message>
         <source>Vertical offset:</source>
-        <translation type="unfinished"/>
+        <translation>Loddrætt offsett</translation>
     </message>
     <message>
         <source>On lines</source>
-        <translation type="unfinished"/>
+        <translation>Á strikum</translation>
     </message>
     <message>
         <source>Above lines</source>
-        <translation type="unfinished"/>
+        <translation>Omanfyri strikum</translation>
     </message>
     <message>
         <source>Note symbols</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tekin</translation>
     </message>
     <message>
         <source>Upside down</source>
-        <translation type="unfinished"/>
+        <translation>Upp og niður</translation>
     </message>
     <message>
         <source>Show rests</source>
-        <translation type="unfinished"/>
+        <translation>Vís tagnartekin</translation>
     </message>
     <message>
         <source>Add to Templates</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat Skapilónir</translation>
     </message>
     <message>
         <source>Template:</source>
-        <translation type="unfinished"/>
+        <translation>Skapilón</translation>
     </message>
     <message>
         <source>Show key signature</source>
-        <translation type="unfinished"/>
+        <translation>Vís ljómslag</translation>
     </message>
     <message>
         <source>Show ledger lines</source>
-        <translation type="unfinished"/>
+        <translation>Vís eykastrikur</translation>
     </message>
     <message>
         <source>Show Key signature</source>
-        <translation type="unfinished"/>
+        <translation>Vís Ljómslag</translation>
     </message>
     <message>
         <source>< Reset to Template</source>
-        <translation type="unfinished"/>
+        <translation>Aftur til skabilón</translation>
     </message>
     <message>
         <source>Repeat:</source>
-        <translation type="unfinished"/>
+        <translation>Endurtøka:</translation>
     </message>
     <message>
         <source>Never</source>
@@ -1605,42 +1620,42 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>At new system</source>
-        <translation type="unfinished"/>
+        <translation>Við nýggju skipan</translation>
     </message>
     <message>
         <source>At new meas.</source>
-        <translation type="unfinished"/>
+        <translation>Við nýggju takt</translation>
     </message>
     <message>
         <source>Always</source>
-        <translation type="unfinished"/>
+        <translation>Altíð</translation>
     </message>
 </context>
 <context>
     <name>EditStringDataBase</name>
     <message>
         <source>String Data</source>
-        <translation type="unfinished"/>
+        <translation>Streingja tilfar</translation>
     </message>
     <message>
         <source>Strings Tuning:</source>
-        <translation type="unfinished"/>
+        <translation>Streingja stemning:</translation>
     </message>
     <message>
         <source>New String...</source>
-        <translation type="unfinished"/>
+        <translation>Nýggjur strongur</translation>
     </message>
     <message>
         <source>Edit String...</source>
-        <translation type="unfinished"/>
+        <translation>Broyt strong...</translation>
     </message>
     <message>
         <source>Delete String</source>
-        <translation type="unfinished"/>
+        <translation>Strika strong</translation>
     </message>
     <message>
         <source>Number of frets:</source>
-        <translation type="unfinished"/>
+        <translation>Tal av bondum</translation>
     </message>
     <message>
         <source>Open</source>
@@ -1655,7 +1670,7 @@ p, li { white-space: pre-wrap; }
     <name>EditStyleBase</name>
     <message>
         <source>MuseScore: Edit Style</source>
-        <translation>MuseScore: Rætta hátt</translation>
+        <translation>MuseScore: Broyt snið</translation>
     </message>
     <message>
         <source>Score</source>
@@ -1667,7 +1682,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Header, Footer, Numbers</source>
-        <translation type="unfinished"/>
+        <translation>Teksthøvd, tekstfótur, tøl</translation>
     </message>
     <message>
         <source>System</source>
@@ -1700,7 +1715,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Slurs/Ties</source>
-        <translation type="unfinished"/>
+        <translation>Bindibogar</translation>
     </message>
     <message>
         <source>Sizes</source>
@@ -1708,15 +1723,15 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Hairpins, Volta, Ottava</source>
-        <translation type="unfinished"/>
+        <translation>Hárnál, endurtøkutekin, áttund </translation>
     </message>
     <message>
         <source>Pedal, Trill</source>
-        <translation type="unfinished"/>
+        <translation>Pedal, Trilla</translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation type="unfinished"/>
+        <translation>Besiffraður bassur</translation>
     </message>
     <message>
         <source>Articulations, Ornaments</source>
@@ -1728,7 +1743,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Tuplets</source>
-        <translation>Órádnir</translation>
+        <translation>Nótabólkar</translation>
     </message>
     <message>
         <source>Display in concert pitch</source>
@@ -1736,7 +1751,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Minimum width of measure:</source>
-        <translation type="unfinished"/>
+        <translation>Minsta vídd á takt</translation>
     </message>
     <message>
         <source>sp</source>
@@ -1755,15 +1770,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Don't hide empty staves in first system</source>
-        <translation type="unfinished"/>
+        <translation>Ikki goyma tómar stavir í fyrstu skipan</translation>
     </message>
     <message>
         <source>Display note values across measure bar (EXPERIMENTAL, early music only!)</source>
-        <translation type="unfinished"/>
+        <translation>Vís nótavirði yvir um taktstriku (ROYND, bert gamalur tónleikur!)</translation>
     </message>
     <message>
         <source>Music top margin:</source>
-        <translation type="unfinished"/>
+        <translation>Tónleikur ovari breddi</translation>
     </message>
     <message>
         <source>Create clef for all systems</source>
@@ -1771,311 +1786,311 @@ space unit</extracomment>
     </message>
     <message>
         <source>Music bottom margin:</source>
-        <translation type="unfinished"/>
+        <translation>Tónleikur niðari breddi</translation>
     </message>
     <message>
         <source>Staff distance:</source>
-        <translation type="unfinished"/>
+        <translation>Stav fjarstøða</translation>
     </message>
     <message>
         <source>Grand staff distance:</source>
-        <translation type="unfinished"/>
+        <translation>Høvuðs stavs fjarstøða</translation>
     </message>
     <message>
         <source>Min. system distance:</source>
-        <translation type="unfinished"/>
+        <translation>Minsta skipan fjarstøða</translation>
     </message>
     <message>
         <source>Lyrics top margin:</source>
-        <translation type="unfinished"/>
+        <translation>Tekstur ovari breddi</translation>
     </message>
     <message>
         <source>Lyrics bottom margin:</source>
-        <translation type="unfinished"/>
+        <translation>Tekstur niðari breddi</translation>
     </message>
     <message>
         <source>Vertical frame top margin:</source>
-        <translation type="unfinished"/>
+        <translation>Loddrøtt ramma ovari breddi</translation>
     </message>
     <message>
         <source>Vertical frame bottom margin:</source>
-        <translation type="unfinished"/>
+        <translation>Loddrøtt ramma niðari breddi</translation>
     </message>
     <message>
         <source>Create courtesy clefs</source>
-        <translation type="unfinished"/>
+        <translation>Stovna hjálpilykil</translation>
     </message>
     <message>
         <source>Create courtesy time signatures</source>
-        <translation>Create courtesy time signatures</translation>
+        <translation>Stovna hjálpi takt tekin</translation>
     </message>
     <message>
         <source>Create key signature for all systems</source>
-        <translation type="unfinished"/>
+        <translation>Stovna ljómslagstekin fyri allar skipanir</translation>
     </message>
     <message>
         <source>Create courtesy key signatures</source>
-        <translation>Create courtesy key signatures</translation>
+        <translation>Stovna hjálpi ljómslagstekin</translation>
     </message>
     <message>
         <source>Lyrics line height:</source>
-        <translation type="unfinished"/>
+        <translation>Tekst striku hædd</translation>
     </message>
     <message>
         <source>Max. system distance:</source>
-        <translation type="unfinished"/>
+        <translation>Mesta fjarstøða millum skipanir</translation>
     </message>
     <message>
         <source>Last system fill threshold:</source>
-        <translation>Last system fill threshold</translation>
+        <translation>Seinasta skipan fyll lægsta mark</translation>
     </message>
     <message>
         <source>Show first</source>
-        <translation>ilk göster</translation>
+        <translation>Vís fyrst</translation>
     </message>
     <message>
         <source>Odd/Even</source>
-        <translation>tek/çift</translation>
+        <translation>Stak/Maka</translation>
     </message>
     <message>
         <source>Left</source>
-        <translation>Left</translation>
+        <translation>Vinstra</translation>
     </message>
     <message>
         <source>Middle</source>
-        <translation>MIDDLE</translation>
+        <translation>Miðja</translation>
     </message>
     <message>
         <source>Right</source>
-        <translation type="unfinished"/>
+        <translation>Høgra</translation>
     </message>
     <message>
         <source>Even</source>
-        <translation type="unfinished"/>
+        <translation>Maka</translation>
     </message>
     <message>
         <source>Odd</source>
-        <translation type="unfinished"/>
+        <translation>Stak</translation>
     </message>
     <message>
         <source>All staves</source>
-        <translation type="unfinished"/>
+        <translation>Allir stavir</translation>
     </message>
     <message>
         <source>Every system</source>
-        <translation>every system</translation>
+        <translation>Allar skipanir</translation>
     </message>
     <message>
         <source>System bracket distance:</source>
-        <translation>System Bracket Distance:</translation>
+        <translation>Klombur skipan fjarstøða:</translation>
     </message>
     <message>
         <source>Brace distance:</source>
-        <translation type="unfinished"/>
+        <translation>Reim fjarstøða:</translation>
     </message>
     <message>
         <source>Spacing (1=tight):</source>
-        <translation type="unfinished"/>
+        <translation>Glopp (1=tætt):</translation>
     </message>
     <message>
         <source>Minimum measure width:</source>
-        <translation type="unfinished"/>
+        <translation>Minsta taktvídd:</translation>
     </message>
     <message>
         <source>Note to barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>fjarstøða nóti - taktstrika:</translation>
     </message>
     <message>
         <source>Barline to note distance:</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða taktstrika - nóti:</translation>
     </message>
     <message>
         <source>Clef left margin:</source>
-        <translation type="unfinished"/>
+        <translation>Lykil vinstri breddi:</translation>
     </message>
     <message>
         <source>Minimum note distance:</source>
-        <translation type="unfinished"/>
+        <translation>Minsta nóta fjarstøða:</translation>
     </message>
     <message>
         <source>Key signature left margin:</source>
-        <translation type="unfinished"/>
+        <translation>Ljómslag vinstri breddi</translation>
     </message>
     <message>
         <source>Time signature left margin:</source>
-        <translation type="unfinished"/>
+        <translation>taktslag vinstri breddi:</translation>
     </message>
     <message>
         <source>Clef/Key right margin:</source>
-        <translation type="unfinished"/>
+        <translation>Lykil/ljómslag høgri breddi:</translation>
     </message>
     <message>
         <source>Clef to barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða lykil - taktstrika:</translation>
     </message>
     <message>
         <source>Staff line thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Stav striku vídd:</translation>
     </message>
     <message>
         <source>Barline to accidental distance:</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða taktstrika - leys fortekin:</translation>
     </message>
     <message>
         <source>Show repeat bar tips ("winged" repeats)</source>
-        <translation>Show repeat bar tips ("winged" repeats)</translation>
+        <translation>Vís endurtøku taktar prei</translation>
     </message>
     <message>
         <source>Barline at start of single staff</source>
-        <translation>Bar line at start of single stave</translation>
+        <translation>Taktstrika við byrjan av stak stavi</translation>
     </message>
     <message>
         <source>Barline at start of multiple staves</source>
-        <translation>Bar line at start of multiple staves</translation>
+        <translation>Taktstrika við byrjan av fleiri stavum</translation>
     </message>
     <message>
         <source>Barline thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Taktstriku vídd:</translation>
     </message>
     <message>
         <source>End barline thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Enda taktstriku vídd:</translation>
     </message>
     <message>
         <source>End barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>Enda taktstriku fjarstøða:</translation>
     </message>
     <message>
         <source>Double barline thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Dupul taktstriku vídd:</translation>
     </message>
     <message>
         <source>Double barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>Dupul taktstriku fjarstøða:</translation>
     </message>
     <message>
         <source>Shorten stems</source>
-        <translation type="unfinished"/>
+        <translation>Stytt leggir</translation>
     </message>
     <message>
         <source>Progression:</source>
-        <translation type="unfinished"/>
+        <translation>Framgonga:</translation>
     </message>
     <message>
         <source>Shortest stem:</source>
-        <translation type="unfinished"/>
+        <translation>Stytsti leggur:</translation>
     </message>
     <message>
         <source>Accidental note distance:</source>
-        <translation type="unfinished"/>
+        <translation>Leys fortekin nóta fjarstøða:</translation>
     </message>
     <message>
         <source>Accidental distance:</source>
-        <translation type="unfinished"/>
+        <translation>Leys fortekin fjarstøða:</translation>
     </message>
     <message>
         <source>Note dot distance:</source>
-        <translation type="unfinished"/>
+        <translation>Nóti prikkur fjarstøða:</translation>
     </message>
     <message>
         <source>Dot dot distance:</source>
-        <translation type="unfinished"/>
+        <translation>Prikkur prikkur fjarstøða:</translation>
     </message>
     <message>
         <source>Ledger line thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Eykastriku vídd</translation>
     </message>
     <message>
         <source>Ledger line length:</source>
-        <translation type="unfinished"/>
+        <translation>Eykastriku longd:</translation>
     </message>
     <message>
         <source>Stem thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Legg vídd:</translation>
     </message>
     <message>
         <source>Dot size:</source>
-        <translation type="unfinished"/>
+        <translation>Prikkur stødd:</translation>
     </message>
     <message>
         <source>Distance to note:</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða til nóta:</translation>
     </message>
     <message>
         <source>Line thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Strikuvídd:</translation>
     </message>
     <message>
         <source>Hook length:</source>
-        <translation type="unfinished"/>
+        <translation>Krókur longd:</translation>
     </message>
     <message>
         <source>Beam thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Bjálki vídd:</translation>
     </message>
     <message>
         <source>Beam distance (in beam thickness units):</source>
-        <translation type="unfinished"/>
+        <translation>Bjálki fjarstøða (bjálkavídd eindir):</translation>
     </message>
     <message>
         <source>Broken beam minimum length:</source>
-        <translation type="unfinished"/>
+        <translation>Brotin bjálki minsta longd:</translation>
     </message>
     <message>
         <source>Flatten all beams</source>
-        <translation type="unfinished"/>
+        <translation>Javna allar bjálkar</translation>
     </message>
     <message>
         <source>Line thickness at end:</source>
-        <translation type="unfinished"/>
+        <translation>Strikuvídd endi:</translation>
     </message>
     <message>
         <source>Line thickness middle:</source>
-        <translation type="unfinished"/>
+        <translation>Strikuvídd miðja:</translation>
     </message>
     <message>
         <source>Dotted line thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Prikkut striku vídd:</translation>
     </message>
     <message>
         <source>Small staff size:</source>
-        <translation type="unfinished"/>
+        <translation>Lítil stavur stødd:</translation>
     </message>
     <message>
         <source>Small note size:</source>
-        <translation type="unfinished"/>
+        <translation>Lítil nóti stødd:</translation>
     </message>
     <message>
         <source>Grace note size:</source>
-        <translation type="unfinished"/>
+        <translation>Skreyt nóti stødd:</translation>
     </message>
     <message>
         <source>Small clef size:</source>
-        <translation type="unfinished"/>
+        <translation>Lítil lykil stødd:</translation>
     </message>
     <message>
         <source>Hairpins</source>
-        <translation>Hairpins</translation>
+        <translation>Hárnálir</translation>
     </message>
     <message>
         <source>Height:</source>
-        <translation>Height</translation>
+        <translation>Hædd:</translation>
     </message>
     <message>
         <source>Default vertical position:</source>
-        <translation type="unfinished"/>
+        <translation>Forsett loddrøtt plasering:</translation>
     </message>
     <message>
         <source>Volta</source>
-        <translation>Volta</translation>
+        <translation>Hús</translation>
     </message>
     <message>
         <source>Hook height:</source>
-        <translation type="unfinished"/>
+        <translation>Krókur hædd:</translation>
     </message>
     <message>
         <source>Line style:</source>
-        <translation>Line style:</translation>
+        <translation>Striku snið:</translation>
     </message>
     <message>
         <source>Ottava</source>
@@ -2083,15 +2098,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Pedal Line</source>
-        <translation type="unfinished"/>
+        <translation>Pedal strika</translation>
     </message>
     <message>
         <source>Trill Line</source>
-        <translation type="unfinished"/>
+        <translation>Trillu strika</translation>
     </message>
     <message>
         <source>Appearance</source>
-        <translation type="unfinished"/>
+        <translation>Framkoma</translation>
     </message>
     <message>
         <source>Standard</source>
@@ -2099,43 +2114,43 @@ space unit</extracomment>
     </message>
     <message>
         <source>Jazz</source>
-        <translation type="unfinished"/>
+        <translation>Jazz</translation>
     </message>
     <message>
         <source>Custom</source>
-        <translation type="unfinished"/>
+        <translation>Sergjørd</translation>
     </message>
     <message>
         <source>Load chords.xml</source>
-        <translation type="unfinished"/>
+        <translation>Tak fram akkord.xml</translation>
     </message>
     <message>
         <source>German</source>
-        <translation type="unfinished"/>
+        <translation>Týskt</translation>
     </message>
     <message>
         <source>Solfeggio</source>
-        <translation type="unfinished"/>
+        <translation>Solfeggio</translation>
     </message>
     <message>
         <source>Lower case minor chords</source>
-        <translation type="unfinished"/>
+        <translation>Smáir bókstavir moll akkordir</translation>
     </message>
     <message>
         <source>Positioning</source>
-        <translation type="unfinished"/>
+        <translation>Plasering</translation>
     </message>
     <message>
         <source>Minimum chord spacing:</source>
-        <translation type="unfinished"/>
+        <translation>Minsta akkord fjarstøða</translation>
     </message>
     <message>
         <source>Font:</source>
-        <translation>Font:</translation>
+        <translation>Funtur:</translation>
     </message>
     <message>
         <source>Size:</source>
-        <translation>Size:</translation>
+        <translation>Stødd:</translation>
     </message>
     <message>
         <source>pt</source>
@@ -2143,43 +2158,43 @@ space unit</extracomment>
     </message>
     <message>
         <source>Line height:</source>
-        <translation type="unfinished"/>
+        <translation>Striku hædd</translation>
     </message>
     <message>
         <source>Vertical position:</source>
-        <translation type="unfinished"/>
+        <translation>Loddrøtt plasering:</translation>
     </message>
     <message>
         <source>from top of staff</source>
-        <translation type="unfinished"/>
+        <translation>Frá toppi av stavi</translation>
     </message>
     <message>
         <source>of font height</source>
-        <translation type="unfinished"/>
+        <translation>Av funtarhædd</translation>
     </message>
     <message>
         <source>Alignment</source>
-        <translation type="unfinished"/>
+        <translation>Í beinum rað</translation>
     </message>
     <message>
         <source>Top</source>
-        <translation type="unfinished"/>
+        <translation>Toppur</translation>
     </message>
     <message>
         <source>Bottom</source>
-        <translation type="unfinished"/>
+        <translation>Botnur</translation>
     </message>
     <message>
         <source>Style</source>
-        <translation>Style</translation>
+        <translation>Snið</translation>
     </message>
     <message>
         <source>Modern</source>
-        <translation type="unfinished"/>
+        <translation>Modernaður</translation>
     </message>
     <message>
         <source>Historic</source>
-        <translation type="unfinished"/>
+        <translation>Søguligur</translation>
     </message>
     <message>
         <source>sp</source>
@@ -2188,139 +2203,139 @@ space unit</extracomment>
     </message>
     <message>
         <source>Articulation distance:</source>
-        <translation type="unfinished"/>
+        <translation>Framburður fjarstøða</translation>
     </message>
     <message>
         <source>Note head distance:</source>
-        <translation type="unfinished"/>
+        <translation>Nótahøvd fjarstøða</translation>
     </message>
     <message>
         <source>Articulation size:</source>
-        <translation type="unfinished"/>
+        <translation>Framburður stødd:</translation>
     </message>
     <message>
         <source>Accidental</source>
-        <translation>Accidental</translation>
+        <translation>Leys fortekn</translation>
     </message>
     <message>
         <source>Maximum slope:</source>
-        <translation type="unfinished"/>
+        <translation>Hámarks hall</translation>
     </message>
     <message>
         <source>Vertical distance from stem:</source>
-        <translation type="unfinished"/>
+        <translation>Loddrøtt fjarstøða til legg</translation>
     </message>
     <message>
         <source>Avoid the staves</source>
-        <translation type="unfinished"/>
+        <translation>Slepp undan stavum</translation>
     </message>
     <message>
         <source>Distance before the stem of the first note:</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða til legg á fyrsta nóta:</translation>
     </message>
     <message>
         <source>Distance before the head of the first note:</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða til høvd á fyrsta nóta:</translation>
     </message>
     <message>
         <source>Distance after the stem of the last note:</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða aftaná legg á seinasta nóta:</translation>
     </message>
     <message>
         <source>Distance after the head of the last note:</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða aftaná høvd á síðsta tóna:</translation>
     </message>
     <message>
         <source>Distance to fretboard diagram:</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða til bandaborð diagramm</translation>
     </message>
     <message>
         <source>Chord Symbols</source>
-        <translation type="unfinished"/>
+        <translation>Akkord symbol</translation>
     </message>
     <message>
         <source>Chord symbols style file:</source>
-        <translation type="unfinished"/>
+        <translation>Akkord symbol snið fíla:</translation>
     </message>
     <message>
         <source>Capo</source>
-        <translation type="unfinished"/>
+        <translation>Capo</translation>
     </message>
     <message>
         <source>Vertical distance from note head:</source>
-        <translation type="unfinished"/>
+        <translation>Lodrøtt fjarstøða frá nóta høvdi:</translation>
     </message>
     <message>
         <source>Capo fret position:</source>
-        <translation type="unfinished"/>
+        <translation>Capo band plasering:</translation>
     </message>
     <message>
         <source>Semitones offset</source>
-        <translation type="unfinished"/>
+        <translation>hálvtónar offsett</translation>
     </message>
     <message>
         <source>Cents offset</source>
-        <translation type="unfinished"/>
+        <translation>Centar offsett</translation>
     </message>
     <message>
         <source>A, B♭, B, C, C♯, ...</source>
-        <translation type="unfinished"/>
+        <translation>A, B♭, B, C, C♯, ...</translation>
     </message>
     <message>
         <source>Chord Symbols, Fretboard Diagrams</source>
-        <translation type="unfinished"/>
+        <translation>Akkord symbol, bandaborð diagramm</translation>
     </message>
     <message>
         <source>Fretboard Diagrams</source>
-        <translation type="unfinished"/>
+        <translation>Bandaborð diagramm</translation>
     </message>
     <message>
         <source>Fret offset number font size:</source>
-        <translation type="unfinished"/>
+        <translation>Band offsett, tal funtur stødd:</translation>
     </message>
     <message>
         <source>Position:</source>
-        <translation type="unfinished"/>
+        <translation>Plasering:</translation>
     </message>
     <message>
         <source>Minimum tie length:</source>
-        <translation type="unfinished"/>
+        <translation>Minsta bindiboga longd:</translation>
     </message>
     <message>
         <source>Interval:</source>
-        <translation type="unfinished"/>
+        <translation>Interval:</translation>
     </message>
     <message>
         <source>Hide instrument name if there is only 1 instrument</source>
-        <translation type="unfinished"/>
+        <translation>Goym ljóðførisnavn um bert 1 ljóðføri</translation>
     </message>
     <message>
         <source>Maximum barline distance:</source>
-        <translation type="unfinished"/>
+        <translation>Mesta taktstriku fjarstøða</translation>
     </message>
     <message>
         <source>Standard TAB clef</source>
-        <translation type="unfinished"/>
+        <translation>Normalur TAB lykil</translation>
     </message>
     <message>
         <source>Serif TAB clef</source>
-        <translation type="unfinished"/>
+        <translation>Serif TAB lykil</translation>
     </message>
     <message>
         <source>Swing Settings</source>
-        <translation type="unfinished"/>
+        <translation>Swing stilling</translation>
     </message>
     <message>
         <source>Off</source>
-        <translation type="unfinished"/>
+        <translation>Av</translation>
     </message>
     <message>
         <source>Eighth Note</source>
-        <translation type="unfinished"/>
+        <translation>Áttandapartur</translation>
     </message>
     <message>
         <source>Sixteenth Note</source>
-        <translation type="unfinished"/>
+        <translation>Sekstandapartur</translation>
     </message>
     <message>
         <source>%</source>
@@ -2328,7 +2343,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Musical symbols font:</source>
-        <translation type="unfinished"/>
+        <translation>Tónleika symbol funtur:</translation>
     </message>
     <message>
         <source>Swing:</source>
@@ -2336,237 +2351,237 @@ space unit</extracomment>
     </message>
     <message>
         <source>Select swing ratio:</source>
-        <translation type="unfinished"/>
+        <translation>Vel swing lutfall:</translation>
     </message>
     <message>
         <source>Musical text font:</source>
-        <translation type="unfinished"/>
+        <translation>Tónleika tekst funtur:</translation>
     </message>
     <message>
         <source>Emmentaler Text</source>
-        <translation type="unfinished"/>
+        <translation>Emmentaler tekstur</translation>
     </message>
     <message>
         <source>Bravura Text</source>
-        <translation type="unfinished"/>
+        <translation>Bravura tekstur</translation>
     </message>
     <message>
         <source>Gonville Text</source>
-        <translation type="unfinished"/>
+        <translation>Gonville tekstur</translation>
     </message>
     <message>
         <source>Show header also on first page</source>
-        <translation type="unfinished"/>
+        <translation>Vís teksthøvd eisini á fyrstu síðu</translation>
     </message>
     <message>
         <source>Show footer also on first page</source>
-        <translation type="unfinished"/>
+        <translation>Vís tekstfót eisini á fyrstu síðu</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Use odd/even page header</source>
-        <translation type="unfinished"/>
+        <translation>Nýt stak/maka síðu teksthøvd</translation>
     </message>
     <message>
         <source>Use odd/even page footer</source>
-        <translation type="unfinished"/>
+        <translation>Nýt stak/maka síðu fót</translation>
     </message>
     <message>
         <source>System bracket thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Skipan: Klombur tjúkt</translation>
     </message>
     <message>
         <source>Brace thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Reim tjýkd</translation>
     </message>
     <message>
         <source>Continue height:</source>
-        <translation type="unfinished"/>
+        <translation>Verðandi hædd:</translation>
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Continue</translation>
+        <translation>Hald fram</translation>
     </message>
     <message>
         <source>Dashed</source>
-        <translation>Dashed</translation>
+        <translation>Strikaður</translation>
     </message>
     <message>
         <source>Dotted</source>
-        <translation type="unfinished"/>
+        <translation>Prikka</translation>
     </message>
     <message>
         <source>Dash-dotted</source>
-        <translation type="unfinished"/>
+        <translation>Striku-prikka</translation>
     </message>
     <message>
         <source>Dash-dot-dotted</source>
-        <translation type="unfinished"/>
+        <translation>Striku-prik-prikka</translation>
     </message>
     <message>
         <source>Numbers only</source>
-        <translation type="unfinished"/>
+        <translation>Bert tøl</translation>
     </message>
     <message>
         <source>Header Text</source>
-        <translation type="unfinished"/>
+        <translation>Høvd tekstur</translation>
     </message>
     <message>
         <source>Footer Text</source>
-        <translation type="unfinished"/>
+        <translation>Tekstfótur tekstur</translation>
     </message>
     <message>
         <source>Measure Numbers</source>
-        <translation>Bar Numbers</translation>
+        <translation>Takt nummar</translation>
     </message>
     <message>
         <source>Default TAB Clef</source>
-        <translation type="unfinished"/>
+        <translation>Forsettur TAB lykil</translation>
     </message>
     <message>
         <source>Naturals in Key Signatures</source>
-        <translation type="unfinished"/>
+        <translation>Nóti uttan fortekin í ljómslagstekni</translation>
     </message>
     <message>
         <source>Vertical Distance from the Notes</source>
-        <translation type="unfinished"/>
+        <translation>Loddrøtt fjarstøða frá nótunum</translation>
     </message>
     <message>
         <source>Horizontal Distance from the Notes</source>
-        <translation type="unfinished"/>
+        <translation>Vatnrødd fjarstøða frá nótunum</translation>
     </message>
     <message>
         <source>Only for a change to C Maj / A min</source>
-        <translation type="unfinished"/>
+        <translation>Bert broyting til C dur/A moll</translation>
     </message>
     <message>
         <source>Create multimeasure rests</source>
-        <translation type="unfinished"/>
+        <translation>Stovna fleirtakta tøgn</translation>
     </message>
     <message>
         <source>Multimeasure rest margin:</source>
-        <translation type="unfinished"/>
+        <translation>Fleirtakta tøgn breddi:</translation>
     </message>
     <message>
         <source>Before key signature if changing to fewer sharps or flats</source>
-        <translation type="unfinished"/>
+        <translation>Áðrenn ljómslagsbroyting um broyting til færri fortekin</translation>
     </message>
     <message>
         <source>After key signature if changing to fewer sharps or flats. Before if changing between sharps and flats</source>
-        <translation type="unfinished"/>
+        <translation>Aftaná ljómslagstekin um broyting til færri fortekin. Áðrenn um broyting frá/til b og #</translation>
     </message>
     <message>
         <source>A, B♭, H, C, C♯, ...</source>
-        <translation type="unfinished"/>
+        <translation>A, B♭, H, C, C♯, ...</translation>
     </message>
     <message>
         <source>A, B, H, C, Cis</source>
-        <translation type="unfinished"/>
+        <translation>A, B, H, C, Cis</translation>
     </message>
     <message>
         <source>Full German</source>
-        <translation type="unfinished"/>
+        <translation>Fult týskt</translation>
     </message>
     <message>
         <source>Do, Do♯, Re♭, Re, ...</source>
-        <translation type="unfinished"/>
+        <translation>Do, Do♯, Re♭, Re, ...</translation>
     </message>
     <message>
         <source>Do, Do♯, Ré♭, Ré, ...</source>
-        <translation type="unfinished"/>
+        <translation>Do, Do♯, Ré♭, Ré, ...</translation>
     </message>
     <message>
         <source>French</source>
-        <translation type="unfinished"/>
+        <translation>Franskt</translation>
     </message>
     <message>
         <source>Lower case bass notes</source>
-        <translation type="unfinished"/>
+        <translation>Bass tónar smáir bókstavir</translation>
     </message>
     <message>
         <source>All caps note names</source>
-        <translation type="unfinished"/>
+        <translation>Nóta nøvn stórir bókstavir</translation>
     </message>
     <message>
         <source>Note Spelling</source>
-        <translation type="unfinished"/>
+        <translation>Nóta staviháttur</translation>
     </message>
     <message>
         <source>Automatic Capitalization</source>
-        <translation type="unfinished"/>
+        <translation>Automatisk kapitalisering</translation>
     </message>
     <message>
         <source>Vertical frame upper margin</source>
-        <translation type="unfinished"/>
+        <translation>Loddrøtt ramma ovari breddi</translation>
     </message>
     <message>
         <source>Vertical frame lower margin</source>
-        <translation type="unfinished"/>
+        <translation>Loddrøtt ramma niðari breddi</translation>
     </message>
     <message>
         <source>Scale:</source>
-        <translation>Scale:</translation>
+        <translation>Stigi:</translation>
     </message>
     <message>
         <source>Barré line thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Barré striku vídd:</translation>
     </message>
     <message>
         <source>Scale barlines to staff size</source>
-        <translation type="unfinished"/>
+        <translation>Passa taktstrikur til stavstødd</translation>
     </message>
     <message>
         <source>Barline to grace note distance:</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða taktstrika - skreytnóti:</translation>
     </message>
 </context>
 <context>
     <name>ExcerptsDialog</name>
     <message>
         <source>MuseScore: Parts</source>
-        <translation>MuseScore: Parts</translation>
+        <translation>MuseScore: Partar</translation>
     </message>
     <message>
         <source>Instrument:</source>
-        <translation>Instrument:</translation>
+        <translation>Ljóðføri:</translation>
     </message>
     <message>
         <source>Delete</source>
-        <translation>Delete</translation>
+        <translation>Sletta</translation>
     </message>
     <message>
         <source>New All</source>
-        <translation type="unfinished"/>
+        <translation>Alt nýtt</translation>
     </message>
     <message>
         <source>New</source>
-        <translation>New</translation>
+        <translation>Nýtt</translation>
     </message>
     <message>
         <source>Part title:</source>
-        <translation type="unfinished"/>
+        <translation>Parts heiti</translation>
     </message>
     <message>
         <source>Edit Part</source>
-        <translation type="unfinished"/>
+        <translation>Broyt part</translation>
     </message>
     <message>
         <source>Select Part</source>
-        <translation type="unfinished"/>
+        <translation>Vel part</translation>
     </message>
 </context>
 <context>
     <name>FluidGui</name>
     <message>
         <source>Up</source>
-        <translation>Yukarı</translation>
+        <translation>Upp</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Aşağı</translation>
+        <translation>Niður</translation>
     </message>
     <message>
         <source>Delete</source>
@@ -2574,102 +2589,102 @@ space unit</extracomment>
     </message>
     <message>
         <source>Add</source>
-        <translation>Add</translation>
+        <translation>Skoyt uppí</translation>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>Sound Fonts</source>
-        <translation type="unfinished"/>
+        <translation>Ljóð funtur</translation>
     </message>
     <message>
         <source>SoundFont %1 already loaded</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðfuntur %1 longu frammi</translation>
     </message>
     <message>
         <source>Cannot load SoundFont %1</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki taka fram ljóðfunt %1</translation>
     </message>
 </context>
 <context>
     <name>FretDiagramProperties</name>
     <message>
         <source>Strings:</source>
-        <translation type="unfinished"/>
+        <translation>Streingir:</translation>
     </message>
     <message>
         <source>Frets:</source>
-        <translation type="unfinished"/>
+        <translation>Bond:</translation>
     </message>
     <message>
         <source>MuseScore: Fretboard Diagram Properties</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Bandaborð yvirlit eginleikar</translation>
     </message>
 </context>
 <context>
     <name>GlissandoProperties</name>
     <message>
         <source>MuseScore: Glissando Properties</source>
-        <translation>MuseScore: Glissando Properties</translation>
+        <translation>MuseScore: Glissando eginleikar</translation>
     </message>
     <message>
         <source>Show Text</source>
-        <translation>Show Text</translation>
+        <translation>Vís tekst</translation>
     </message>
     <message>
         <source>Text:</source>
-        <translation>Text:</translation>
+        <translation>Tekstur</translation>
     </message>
 </context>
 <context>
     <name>GreendotButton</name>
     <message>
         <source>Record</source>
-        <translation>record</translation>
+        <translation>Upptak</translation>
     </message>
 </context>
 <context>
     <name>ImportMidiPanel</name>
     <message>
         <source>Close MIDI import panel</source>
-        <translation type="unfinished"/>
+        <translation>Stong MIDI flyt inn panel</translation>
     </message>
     <message>
         <source>Move track up</source>
-        <translation type="unfinished"/>
+        <translation>Flyt spor upp</translation>
     </message>
     <message>
         <source>Move track down</source>
-        <translation type="unfinished"/>
+        <translation>Flyt spor niður</translation>
     </message>
     <message>
         <source>Text charset:</source>
-        <translation type="unfinished"/>
+        <translation>Tekst kodur:</translation>
     </message>
     <message>
         <source>Apply MIDI import operations</source>
-        <translation type="unfinished"/>
+        <translation>Brúka Midi innflyt atgerð</translation>
     </message>
     <message>
         <source>Apply</source>
-        <translation>Apply</translation>
+        <translation>Brúka</translation>
     </message>
     <message>
         <source>Cancel not applied MIDI import operations</source>
-        <translation type="unfinished"/>
+        <translation>Strika ikki nýtt Midi innflyt atgerðir</translation>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Vazgeç</translation>
+        <translation>Strika</translation>
     </message>
 </context>
 <context>
     <name>InsertMeasuresDialogBase</name>
     <message>
         <source>Mscore: Insert Measures</source>
-        <translation>Mscore: Insert Bars</translation>
+        <translation>Mscore: Innset taktir</translation>
     </message>
     <message>
         <source>OK</source>
@@ -2677,45 +2692,45 @@ space unit</extracomment>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Cancel</translation>
+        <translation>Strika</translation>
     </message>
     <message>
         <source>Insert empty measures</source>
-        <translation type="unfinished"/>
+        <translation>Set inn tómar taktir</translation>
     </message>
     <message>
         <source>Number of measures to insert:</source>
-        <translation type="unfinished"/>
+        <translation>Tal av taktum at seta inn</translation>
     </message>
 </context>
 <context>
     <name>InspectorAccidental</name>
     <message>
         <source>Accidental</source>
-        <translation>Accidental</translation>
+        <translation>Leys fortekn</translation>
     </message>
     <message>
         <source>Small</source>
-        <translation>small</translation>
+        <translation>Lítil</translation>
     </message>
     <message>
         <source>Accidental Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Leys fortekin inspektor</translation>
     </message>
     <message>
         <source>Reset Small value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla smá virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorAmbitus</name>
     <message>
         <source>Head group</source>
-        <translation type="unfinished"/>
+        <translation>Høvd bólkur</translation>
     </message>
     <message>
         <source>sp</source>
@@ -2723,15 +2738,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Bottom note</source>
-        <translation type="unfinished"/>
+        <translation>Botn nóti</translation>
     </message>
     <message>
         <source>Câ™­â™­</source>
-        <translation type="unfinished"/>
+        <translation>Câ™­â™­</translation>
     </message>
     <message>
         <source>Câ™­</source>
-        <translation type="unfinished"/>
+        <translation>Câ™­</translation>
     </message>
     <message>
         <source>C</source>
@@ -2739,19 +2754,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>C♯</source>
-        <translation type="unfinished"/>
+        <translation>C♯</translation>
     </message>
     <message>
         <source>C♯♯</source>
-        <translation type="unfinished"/>
+        <translation>C♯♯</translation>
     </message>
     <message>
         <source>Dâ™­â™­</source>
-        <translation type="unfinished"/>
+        <translation>Dâ™­â™­</translation>
     </message>
     <message>
         <source>Dâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Dâ™­</translation>
     </message>
     <message>
         <source>D</source>
@@ -2759,39 +2774,39 @@ space unit</extracomment>
     </message>
     <message>
         <source>D♯</source>
-        <translation type="unfinished"/>
+        <translation>D♯</translation>
     </message>
     <message>
         <source>D♯♯</source>
-        <translation type="unfinished"/>
+        <translation>D♯♯</translation>
     </message>
     <message>
         <source>Eâ™­â™­</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­â™­</translation>
     </message>
     <message>
         <source>Eâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­</translation>
     </message>
     <message>
         <source>E</source>
-        <translation>C</translation>
+        <translation>E</translation>
     </message>
     <message>
         <source>E♯</source>
-        <translation type="unfinished"/>
+        <translation>E♯</translation>
     </message>
     <message>
         <source>E♯♯</source>
-        <translation type="unfinished"/>
+        <translation>E♯♯</translation>
     </message>
     <message>
         <source>Fâ™­â™­</source>
-        <translation type="unfinished"/>
+        <translation>Fâ™­â™­</translation>
     </message>
     <message>
         <source>Fâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Fâ™­</translation>
     </message>
     <message>
         <source>F</source>
@@ -2799,19 +2814,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>F♯</source>
-        <translation type="unfinished"/>
+        <translation>F♯</translation>
     </message>
     <message>
         <source>F♯♯</source>
-        <translation type="unfinished"/>
+        <translation>F♯♯</translation>
     </message>
     <message>
         <source>Gâ™­â™­</source>
-        <translation type="unfinished"/>
+        <translation>Gâ™­â™­</translation>
     </message>
     <message>
         <source>Gâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Gâ™­</translation>
     </message>
     <message>
         <source>G</source>
@@ -2819,19 +2834,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>G♯</source>
-        <translation type="unfinished"/>
+        <translation>G♯</translation>
     </message>
     <message>
         <source>G♯♯</source>
-        <translation type="unfinished"/>
+        <translation>G♯♯</translation>
     </message>
     <message>
         <source>Aâ™­â™­</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­â™­</translation>
     </message>
     <message>
         <source>Aâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­</translation>
     </message>
     <message>
         <source>A</source>
@@ -2839,43 +2854,43 @@ space unit</extracomment>
     </message>
     <message>
         <source>A♯</source>
-        <translation type="unfinished"/>
+        <translation>A♯</translation>
     </message>
     <message>
         <source>A♯♯</source>
-        <translation type="unfinished"/>
+        <translation>A♯♯</translation>
     </message>
     <message>
         <source>Bâ™­â™­</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­â™­</translation>
     </message>
     <message>
         <source>Bâ™­</source>
-        <translation>H</translation>
+        <translation>Bâ™­</translation>
     </message>
     <message>
         <source>B</source>
-        <translation>H</translation>
+        <translation>B</translation>
     </message>
     <message>
         <source>B♯</source>
-        <translation type="unfinished"/>
+        <translation>B♯</translation>
     </message>
     <message>
         <source>B♯♯</source>
-        <translation type="unfinished"/>
+        <translation>B♯♯</translation>
     </message>
     <message>
         <source>Oct </source>
-        <translation type="unfinished"/>
+        <translation>Átt.</translation>
     </message>
     <message>
         <source>Has line</source>
-        <translation type="unfinished"/>
+        <translation>Has strika</translation>
     </message>
     <message>
         <source>Top note</source>
-        <translation type="unfinished"/>
+        <translation>Ovasti nóti</translation>
     </message>
     <message>
         <source>Auto</source>
@@ -2883,71 +2898,71 @@ space unit</extracomment>
     </message>
     <message>
         <source>Whole</source>
-        <translation type="unfinished"/>
+        <translation>Heilur</translation>
     </message>
     <message>
         <source>Half</source>
-        <translation type="unfinished"/>
+        <translation>Hálvur</translation>
     </message>
     <message>
         <source>Quarter</source>
-        <translation type="unfinished"/>
+        <translation>Kvartur</translation>
     </message>
     <message>
         <source>Breve</source>
-        <translation type="unfinished"/>
+        <translation>Breve</translation>
     </message>
     <message>
         <source>Head type</source>
-        <translation type="unfinished"/>
+        <translation>Høvd slag</translation>
     </message>
     <message>
         <source>Update Range</source>
-        <translation type="unfinished"/>
+        <translation>Dagfør úrval</translation>
     </message>
     <message>
         <source>Direction</source>
-        <translation type="unfinished"/>
+        <translation>Leið</translation>
     </message>
     <message>
         <source>Upright</source>
-        <translation type="unfinished"/>
+        <translation>Vanligt klaver</translation>
     </message>
     <message>
         <source>Leaning Left</source>
-        <translation type="unfinished"/>
+        <translation>Helling vinstru</translation>
     </message>
     <message>
         <source>Leaning Right</source>
-        <translation type="unfinished"/>
+        <translation>Helling høgru</translation>
     </message>
     <message>
         <source>Ambitus Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Ambitus inspektor</translation>
     </message>
     <message>
         <source>Oct</source>
-        <translation type="unfinished"/>
+        <translation>Átt</translation>
     </message>
     <message>
         <source>Reset Has line value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla Has striku virði</translation>
     </message>
     <message>
         <source>Reset Head group value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla høvd bólka virði</translation>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla leið virði</translation>
     </message>
     <message>
         <source>Update range</source>
-        <translation type="unfinished"/>
+        <translation>Dagfør tónaøki</translation>
     </message>
     <message>
         <source>Reset Head type value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla høvd slag virði</translation>
     </message>
     <message>
         <source>Normal</source>
@@ -2955,94 +2970,113 @@ space unit</extracomment>
     </message>
     <message>
         <source>Cross</source>
-        <translation type="unfinished"/>
+        <translation>Krossur</translation>
     </message>
     <message>
         <source>Diamond</source>
-        <translation type="unfinished"/>
+        <translation>Diamantur</translation>
     </message>
     <message>
         <source>Triangle</source>
-        <translation>Triangle</translation>
+        <translation>Tríkantur</translation>
     </message>
     <message>
         <source>Slash</source>
-        <translation type="unfinished"/>
+        <translation>Skák</translation>
     </message>
     <message>
         <source>XCircle</source>
-        <translation type="unfinished"/>
+        <translation>XSirkul</translation>
     </message>
     <message>
         <source>Do</source>
-        <translation type="unfinished"/>
+        <translation>Do</translation>
     </message>
     <message>
         <source>Re</source>
-        <translation type="unfinished"/>
+        <translation>Re</translation>
     </message>
     <message>
         <source>Mi</source>
-        <translation type="unfinished"/>
+        <translation>Mi</translation>
     </message>
     <message>
         <source>Fa</source>
-        <translation type="unfinished"/>
+        <translation>Fa</translation>
     </message>
     <message>
         <source>Sol</source>
-        <translation type="unfinished"/>
+        <translation>Sol</translation>
     </message>
     <message>
         <source>La</source>
-        <translation type="unfinished"/>
+        <translation>La</translation>
     </message>
     <message>
         <source>Ti</source>
-        <translation type="unfinished"/>
+        <translation>Ti</translation>
     </message>
     <message>
         <source>Alt. Brevis</source>
-        <translation type="unfinished"/>
+        <translation>Alt. Brevis</translation>
     </message>
     <message>
         <source>Line thickness</source>
-        <translation type="unfinished"/>
+        <translation>Striku vídd</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Reset Line thickness value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla striku vídd virði</translation>
     </message>
     <message>
         <source>[Undefined]</source>
-        <translation type="unfinished"/>
+        <translation>[Ólýst]</translation>
     </message>
     <message>
         <source>Ambitus</source>
-        <translation type="unfinished"/>
+        <translation>Ambitus</translation>
+    </message>
+</context>
+<context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissando inspektor</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spæl</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nullstilla spæl virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
-        <translation>Articulation</translation>
+        <translation>Framburður</translation>
     </message>
     <message>
         <source>Direction</source>
-        <translation type="unfinished"/>
+        <translation>Leið</translation>
     </message>
     <message>
         <source>Anchor</source>
-        <translation>Anchor</translation>
+        <translation>Akker</translation>
     </message>
     <message>
         <source>Chord Automatic</source>
-        <translation type="unfinished"/>
+        <translation>Sjálvvirkin akkord</translation>
     </message>
     <message>
         <source>Auto</source>
@@ -3050,129 +3084,153 @@ space unit</extracomment>
     </message>
     <message>
         <source>Up</source>
-        <translation>Yukarı</translation>
+        <translation>Upp</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Aşağı</translation>
+        <translation>Niður</translation>
     </message>
     <message>
         <source>Above Staff</source>
-        <translation type="unfinished"/>
+        <translation>Omanfyri stav</translation>
     </message>
     <message>
         <source>Below Staff</source>
-        <translation type="unfinished"/>
+        <translation>Niðanfyri stav</translation>
     </message>
     <message>
         <source>Above Chord</source>
-        <translation type="unfinished"/>
+        <translation>Omanfyri Akkord</translation>
     </message>
     <message>
         <source>Below Chord</source>
-        <translation type="unfinished"/>
+        <translation>Niðanfyri akkord</translation>
     </message>
     <message>
         <source>Time stretch</source>
-        <translation type="unfinished"/>
+        <translation>Tíðarskeið</translation>
     </message>
     <message>
         <source>Articulation Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Framburður inspektor</translation>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla leið virði</translation>
     </message>
     <message>
         <source>Reset Anchor value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla akker virði</translation>
     </message>
     <message>
         <source>Reset Time stretch value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla tíðarbil virði</translation>
+    </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Skreyt snið</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Forsett</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barokk</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Nulstilla skreyt stílur virði</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spæl</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nulstilla spæl virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
     <message>
         <source>Barline</source>
-        <translation type="unfinished"/>
+        <translation>Taktstrika</translation>
     </message>
     <message>
         <source>Style:</source>
-        <translation>Style:</translation>
+        <translation>Snið:</translation>
     </message>
     <message>
         <source>Span from:</source>
-        <translation type="unfinished"/>
+        <translation>Spenni frá:</translation>
     </message>
     <message>
         <source>Spanned staves:</source>
-        <translation type="unfinished"/>
+        <translation>Spentir stavar:</translation>
     </message>
     <message>
         <source>Span to:</source>
-        <translation type="unfinished"/>
+        <translation>Spenni til:</translation>
     </message>
     <message>
         <source>Span preset:</source>
-        <translation type="unfinished"/>
+        <translation>Spenni føst innstilling:</translation>
     </message>
     <message>
         <source>Barline Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Taktstriku inspektor</translation>
     </message>
     <message>
         <source>Type</source>
-        <translation>Type</translation>
+        <translation>Slag</translation>
     </message>
     <message>
         <source>Reset Type value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla slag virði</translation>
     </message>
     <message>
         <source>Span from</source>
-        <translation type="unfinished"/>
+        <translation>Spenni frá</translation>
     </message>
     <message>
         <source>Span</source>
-        <translation type="unfinished"/>
+        <translation>Spenni</translation>
     </message>
     <message>
         <source>Span to</source>
-        <translation type="unfinished"/>
+        <translation>Spenni til</translation>
     </message>
     <message>
         <source>Reset Span value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla spenni virði</translation>
     </message>
     <message>
         <source>Reset Span from value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla spenni frá virði</translation>
     </message>
     <message>
         <source>Reset Span to value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla spenni til virði</translation>
     </message>
     <message>
         <source>Spantype</source>
-        <translation type="unfinished"/>
+        <translation>Spenni slag</translation>
     </message>
     <message>
         <source>Reset Span type value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla spenni slag virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorBeam</name>
     <message>
         <source>Beam</source>
-        <translation>Beam</translation>
+        <translation>Bjálki</translation>
     </message>
     <message>
         <source>Auto</source>
@@ -3180,15 +3238,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Up</source>
-        <translation>Yukarı</translation>
+        <translation>Upp</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Aşağı</translation>
+        <translation>Niður</translation>
     </message>
     <message>
         <source>Direction</source>
-        <translation type="unfinished"/>
+        <translation>Leið</translation>
     </message>
     <message>
         <source>sp</source>
@@ -3196,93 +3254,112 @@ space unit</extracomment>
     </message>
     <message>
         <source>Position</source>
-        <translation>Støða</translation>
+        <translation>Plasering</translation>
     </message>
     <message>
         <source>Horizontal</source>
-        <translation type="unfinished"/>
+        <translation>Vatnrætt</translation>
     </message>
     <message>
         <source>Beam Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Bjálka inspektor</translation>
     </message>
     <message>
         <source>Vertical position offset left</source>
-        <translation type="unfinished"/>
+        <translation>loddrøtt plasering offsett vinstra</translation>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla leið virði</translation>
     </message>
     <message>
         <source>Vertical position offset right</source>
-        <translation type="unfinished"/>
+        <translation>Loddrøtt plasering offsett høgra</translation>
     </message>
     <message>
         <source>Reset User position value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla brúkara plaseringsvirði</translation>
     </message>
     <message>
         <source>Reset Local Relayout value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla staðbundin um-uppseting</translation>
     </message>
     <message>
         <source>Reset Horizontal value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla vatnrætt virði</translation>
     </message>
     <message>
         <source>Left</source>
-        <translation>Left</translation>
+        <translation>Vinstra</translation>
     </message>
     <message>
         <source>Right</source>
-        <translation type="unfinished"/>
+        <translation>Høgra</translation>
     </message>
     <message>
         <source>Grow right</source>
-        <translation type="unfinished"/>
+        <translation>Hækka høgra</translation>
     </message>
     <message>
         <source>Grow left</source>
-        <translation type="unfinished"/>
+        <translation>Hækka vinstra</translation>
     </message>
     <message>
         <source>Reset Grow right value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla hækka høgra</translation>
     </message>
     <message>
         <source>Reset Grow left value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla hækka vinstra</translation>
     </message>
     <message>
         <source>Local relayout</source>
-        <translation type="unfinished"/>
+        <translation>Staðbundin um-uppseting</translation>
     </message>
     <message>
         <source>User position</source>
-        <translation type="unfinished"/>
+        <translation>Brúkara plasering</translation>
+    </message>
+</context>
+<context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissando inspektor</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Bend</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spæl</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nullstilla spæl virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Element Inspektor</translation>
     </message>
     <message>
         <source>Layout Break</source>
-        <translation type="unfinished"/>
+        <translation>Uppseting brot</translation>
     </message>
 </context>
 <context>
     <name>InspectorChord</name>
     <message>
         <source>Chord</source>
-        <translation>Chord</translation>
+        <translation>Akkord</translation>
     </message>
     <message>
         <source>Stem direction</source>
-        <translation>nótahálsur upp/niður</translation>
+        <translation>Leggur upp/niður</translation>
     </message>
     <message>
         <source>Auto</source>
@@ -3290,15 +3367,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Up</source>
-        <translation>Yukarı</translation>
+        <translation>Upp</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Aşağı</translation>
+        <translation>Niður</translation>
     </message>
     <message>
         <source>Vertical offset</source>
-        <translation type="unfinished"/>
+        <translation>Loddrætt offsett</translation>
     </message>
     <message>
         <source>sp</source>
@@ -3307,117 +3384,117 @@ space unit</extracomment>
     </message>
     <message>
         <source>Horizontal offset</source>
-        <translation type="unfinished"/>
+        <translation>Vatnrætt offsett</translation>
     </message>
     <message>
         <source>Small</source>
-        <translation>small</translation>
+        <translation>Lítil</translation>
     </message>
     <message>
         <source>Stemless</source>
-        <translation>stemless</translation>
+        <translation>Leggleysur</translation>
     </message>
     <message>
         <source>Chord Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Akkord inspektor</translation>
     </message>
     <message>
         <source>Reset Vertical offset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla loddrætt offsett virði</translation>
     </message>
     <message>
         <source>Reset Horizontal offset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla vatnrætt offsett virði</translation>
     </message>
     <message>
         <source>Reset Stem direction value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla legg leið virði</translation>
     </message>
     <message>
         <source>Horizontal Offset</source>
-        <translation type="unfinished"/>
+        <translation>Vatnrætt offsett</translation>
     </message>
     <message>
         <source>Reset Small Value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla lítil virði</translation>
     </message>
     <message>
         <source>Reset Stemless value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla leggleys virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorClef</name>
     <message>
         <source>Clef</source>
-        <translation>Clef</translation>
+        <translation>Lykil</translation>
     </message>
     <message>
         <source>Show courtesy</source>
-        <translation type="unfinished"/>
+        <translation>Vís tignarheiti</translation>
     </message>
     <message>
         <source>Clef Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Lykil inspektor</translation>
     </message>
     <message>
         <source>Reset Show courtesy value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla vís tignarheiti virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorDynamic</name>
     <message>
         <source>Dynamic</source>
-        <translation>Dynamic</translation>
+        <translation>Dynamikkur</translation>
     </message>
     <message>
         <source>Dynamic Range</source>
-        <translation type="unfinished"/>
+        <translation>Dynamikkur spenni</translation>
     </message>
     <message>
         <source>Velocity</source>
-        <translation type="unfinished"/>
+        <translation>Ferð</translation>
     </message>
     <message>
         <source>Staff</source>
-        <translation>Stave</translation>
+        <translation>Stavur</translation>
     </message>
     <message>
         <source>Part</source>
-        <translation type="unfinished"/>
+        <translation>Rødd</translation>
     </message>
     <message>
         <source>System</source>
-        <translation>System</translation>
+        <translation>Skipan</translation>
     </message>
     <message>
         <source>Dynamic Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Dynamikkur inspektor</translation>
     </message>
     <message>
         <source>Reset Velocity value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla ferð virði</translation>
     </message>
     <message>
         <source>Reset Dynamic range value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla dynamikkur spenni virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Dynamic range</source>
-        <translation type="unfinished"/>
+        <translation>Dynamiskt spenni</translation>
     </message>
 </context>
 <context>
@@ -3428,7 +3505,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Vertical offset</source>
-        <translation type="unfinished"/>
+        <translation>Loddrætt offsett</translation>
     </message>
     <message>
         <source>sp</source>
@@ -3437,69 +3514,69 @@ space unit</extracomment>
     </message>
     <message>
         <source>Color</source>
-        <translation>Colour</translation>
+        <translation>Litur</translation>
     </message>
     <message>
         <source>Horizontal offset</source>
-        <translation type="unfinished"/>
+        <translation>Vatnrætt offsett</translation>
     </message>
     <message>
         <source>Visible</source>
-        <translation>Visible</translation>
+        <translation>Sjónligur</translation>
     </message>
     <message>
         <source>Element Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Element inspektor</translation>
     </message>
     <message>
         <source>Reset Horizontal offset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla vatnrætt offsett virði</translation>
     </message>
     <message>
         <source>Reset Vertical offset value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla loddrætt offsett virði</translation>
     </message>
     <message>
         <source>Reset Visible value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla sjónligt virði</translation>
     </message>
     <message>
         <source>Reset Color value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla litur virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorEmpty</name>
     <message>
         <source>Empty Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Tøm Inspektor</translation>
     </message>
     <message>
         <source>Nothing selected</source>
-        <translation type="unfinished"/>
+        <translation>Einki valt</translation>
     </message>
 </context>
 <context>
     <name>InspectorFret</name>
     <message>
         <source>Ottava Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Ottava inspektor</translation>
     </message>
     <message>
         <source>Scale</source>
-        <translation type="unfinished"/>
+        <translation>Tónastigi</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Reset Type value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla slag virði</translation>
     </message>
     <message>
         <source>Fretboard Diagram</source>
-        <translation type="unfinished"/>
+        <translation>Bandaborð diagramm</translation>
     </message>
 </context>
 <context>
@@ -3510,73 +3587,109 @@ space unit</extracomment>
     </message>
     <message>
         <source>Text</source>
-        <translation>Text</translation>
+        <translation>Tekstur</translation>
     </message>
     <message>
         <source>Type</source>
-        <translation>Type</translation>
+        <translation>Slag</translation>
     </message>
     <message>
         <source>Glissando Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Glissando Inspektor</translation>
     </message>
     <message>
         <source>Reset Text value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla tekstur virði</translation>
     </message>
     <message>
         <source>Reset Type value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla slag virði</translation>
     </message>
     <message>
         <source>Straight</source>
-        <translation>Straight</translation>
+        <translation>Beint</translation>
     </message>
     <message>
         <source>Wavy</source>
-        <translation type="unfinished"/>
+        <translation>Aldandi</translation>
     </message>
     <message>
         <source>Reset Show text value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla vís tekst virði</translation>
     </message>
     <message>
         <source>Show text</source>
-        <translation>Show Text</translation>
+        <translation>Vís tekst</translation>
+    </message>
+    <message>
+        <source>Style</source>
+        <translation>Snið</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Nullstilla snið virði</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Spæl snið</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Kromatiskur</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Hvítir tangentar</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Svartir tangentar</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatoniskur</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spæl</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nulstilla spæl virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
     <message>
         <source>Element Group</source>
-        <translation type="unfinished"/>
+        <translation>Elements bólkur</translation>
     </message>
     <message>
         <source>Set Color</source>
-        <translation type="unfinished"/>
+        <translation>Áset lit</translation>
     </message>
     <message>
         <source>Set Visible</source>
-        <translation>Set Visible</translation>
+        <translation>Áset sjónligt</translation>
     </message>
     <message>
         <source>Set Invisible</source>
-        <translation>Set Invisible</translation>
+        <translation>Áset ósjónligt</translation>
     </message>
     <message>
         <source>Element Group Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Elements bólkur inspektor</translation>
     </message>
     <message>
         <source>Color</source>
-        <translation>Colour</translation>
+        <translation>Litur</translation>
     </message>
 </context>
 <context>
     <name>InspectorHBox</name>
     <message>
         <source>Horizontal Frame</source>
-        <translation type="unfinished"/>
+        <translation>Vatnrøtt ramma</translation>
     </message>
     <message>
         <source>sp</source>
@@ -3589,66 +3702,66 @@ space unit</extracomment>
     </message>
     <message>
         <source>Horizontal Frame Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Vatnrøtt ramma inspektor</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Right gap</source>
-        <translation type="unfinished"/>
+        <translation>Høgra hol</translation>
     </message>
     <message>
         <source>Left gap</source>
-        <translation type="unfinished"/>
+        <translation>Vinstra hol</translation>
     </message>
     <message>
         <source>Reset Left gap value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla vinstra hol virði</translation>
     </message>
     <message>
         <source>Reset Right gap value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla høgra hol virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorHairpin</name>
     <message>
         <source>Hairpin</source>
-        <translation>Hairpin</translation>
+        <translation>Hárnál</translation>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Hædd</translation>
     </message>
     <message>
         <source>Type</source>
-        <translation>Type</translation>
+        <translation>Slag</translation>
     </message>
     <message>
         <source>Dynamic range</source>
-        <translation type="unfinished"/>
+        <translation>Dynamiskt spenni</translation>
     </message>
     <message>
         <source>Staff</source>
-        <translation>Stave</translation>
+        <translation>Stavur</translation>
     </message>
     <message>
         <source>Part</source>
-        <translation type="unfinished"/>
+        <translation>Rødd</translation>
     </message>
     <message>
         <source>System</source>
-        <translation>System</translation>
+        <translation>Skipan</translation>
     </message>
     <message>
         <source>Velocity change</source>
-        <translation type="unfinished"/>
+        <translation>Ferð broyting</translation>
     </message>
     <message>
         <source>Continue height</source>
-        <translation type="unfinished"/>
+        <translation>Verðandi hædd</translation>
     </message>
     <message>
         <source>sp</source>
@@ -3656,31 +3769,31 @@ space unit</extracomment>
     </message>
     <message>
         <source>Circled tip</source>
-        <translation type="unfinished"/>
+        <translation>Sirkul tippur</translation>
     </message>
     <message>
         <source>Hairpin Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Hárnál inspektor</translation>
     </message>
     <message>
         <source>Reset Velocity change value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla ferð broyting virði</translation>
     </message>
     <message>
         <source>Reset Type value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla slag virði</translation>
     </message>
     <message>
         <source>Reset Dynamic range value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla dynamikkur spenni virði</translation>
     </message>
     <message>
         <source>Reset Height value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla hædd virði</translation>
     </message>
     <message>
         <source>Reset Circled tip value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla sirkul tippur virði</translation>
     </message>
     <message>
         <source>Crescendo</source>
@@ -3692,38 +3805,38 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Reset Continue height value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla verðandi hædd virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorImage</name>
     <message>
         <source>Image</source>
-        <translation>Image</translation>
+        <translation>Mynd</translation>
     </message>
     <message>
         <source>Size</source>
-        <translation type="unfinished"/>
+        <translation>Stødd</translation>
     </message>
     <message>
         <source>Scale</source>
-        <translation type="unfinished"/>
+        <translation>stigi</translation>
     </message>
     <message>
         <source>Image Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Mynd inspektor</translation>
     </message>
     <message>
         <source>Scale to frame size</source>
-        <translation type="unfinished"/>
+        <translation>hækka/lækka til  rammu stødd</translation>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Hædd</translation>
     </message>
     <message>
         <source>Width</source>
@@ -3731,93 +3844,93 @@ space unit</extracomment>
     </message>
     <message>
         <source>Scale Width</source>
-        <translation type="unfinished"/>
+        <translation>Stigvís breidd</translation>
     </message>
     <message>
         <source>Scale Height</source>
-        <translation type="unfinished"/>
+        <translation>Stigvís hædd</translation>
     </message>
     <message>
         <source>Reset Scale to frame size value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla hækka/lækka til rammu stødd</translation>
     </message>
     <message>
         <source>Reset Lock aspect ratio value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla lás støddlutfall</translation>
     </message>
     <message>
         <source>Lock aspect ratio</source>
-        <translation>lock aspect ratio</translation>
+        <translation>Lás støddlutfall</translation>
     </message>
     <message>
         <source>Distance between two lines on a standard 5-line staff</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða millum tvær strikur á normalum 5-linju stavi</translation>
     </message>
     <message>
         <source>Size in staff space units</source>
-        <translation type="unfinished"/>
+        <translation>Stødd í stav glopp eindum</translation>
     </message>
     <message>
         <source>Reset Size in staff space units value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla stødd í stav glopp eindum</translation>
     </message>
 </context>
 <context>
     <name>InspectorJump</name>
     <message>
         <source>Jump</source>
-        <translation>Jump</translation>
+        <translation>Lop</translation>
     </message>
     <message>
         <source>Jump to</source>
-        <translation type="unfinished"/>
+        <translation>Lop til</translation>
     </message>
     <message>
         <source>Play until</source>
-        <translation type="unfinished"/>
+        <translation>Spæl inntil</translation>
     </message>
     <message>
         <source>Continue at</source>
-        <translation type="unfinished"/>
+        <translation>Halt áfram við</translation>
     </message>
     <message>
         <source>Jump Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Lop inspektor</translation>
     </message>
     <message>
         <source>Reset Jump to value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla lop til virði</translation>
     </message>
     <message>
         <source>Reset Play until value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla spæl fram til virði</translation>
     </message>
     <message>
         <source>Reset Continue at value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla halt áfram við virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorKeySig</name>
     <message>
         <source>Key Signature</source>
-        <translation>Key Signature</translation>
+        <translation>Ljómslagstekin</translation>
     </message>
     <message>
         <source>Show courtesy</source>
-        <translation type="unfinished"/>
+        <translation>Vís tignarheiti</translation>
     </message>
     <message>
         <source>Key Signature Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Ljómslagstekn inspektor</translation>
     </message>
     <message>
         <source>Reset Show courtesy value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla vís tignarheiti virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
 </context>
 <context>
@@ -3828,7 +3941,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Position</source>
-        <translation>Støða</translation>
+        <translation>Plasering</translation>
     </message>
     <message>
         <source>mm</source>
@@ -3836,19 +3949,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Size</source>
-        <translation type="unfinished"/>
+        <translation>Stødd</translation>
     </message>
     <message>
         <source>Lasso Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Lasso inspektor</translation>
     </message>
     <message>
         <source>Vertical position</source>
-        <translation type="unfinished"/>
+        <translation>Loddrøtt plasering</translation>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Hædd</translation>
     </message>
     <message>
         <source>Width</source>
@@ -3856,14 +3969,14 @@ space unit</extracomment>
     </message>
     <message>
         <source>Horizontal Position</source>
-        <translation type="unfinished"/>
+        <translation>Vatnrøtt plasering</translation>
     </message>
 </context>
 <context>
     <name>InspectorLine</name>
     <message>
         <source>Line</source>
-        <translation>Line</translation>
+        <translation>Strika</translation>
     </message>
     <message>
         <source>sp</source>
@@ -3872,82 +3985,82 @@ space unit</extracomment>
     </message>
     <message>
         <source>Line color</source>
-        <translation type="unfinished"/>
+        <translation>Striku litur</translation>
     </message>
     <message>
         <source>Line style</source>
-        <translation type="unfinished"/>
+        <translation>Striku snið</translation>
     </message>
     <message>
         <source>Allow diagonal</source>
-        <translation type="unfinished"/>
+        <translation>Loyv diagonali</translation>
     </message>
     <message>
         <source>Line Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Striku inspektor</translation>
     </message>
     <message>
         <source>Reset Line color value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla striku lit virði</translation>
     </message>
     <message>
         <source>Reset Allow diagonal value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla loyv diagonal virði</translation>
     </message>
     <message>
         <source>Reset Line style value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla striku snið virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Line thickness</source>
-        <translation type="unfinished"/>
+        <translation>Striku vídd</translation>
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Continue</translation>
+        <translation>Halt fram</translation>
     </message>
     <message>
         <source>Dashed</source>
-        <translation>Dashed</translation>
+        <translation>Strikaður</translation>
     </message>
     <message>
         <source>Dotted</source>
-        <translation type="unfinished"/>
+        <translation>Prikka</translation>
     </message>
     <message>
         <source>Dash-dotted</source>
-        <translation type="unfinished"/>
+        <translation>Striku-prikka</translation>
     </message>
     <message>
         <source>Dash-dot-dotted</source>
-        <translation type="unfinished"/>
+        <translation>Striku-prik-prikka</translation>
     </message>
     <message>
         <source>Reset Line thickness value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla striku vídd virði</translation>
     </message>
     <message>
         <source>Reset Line visible value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla strika sjónlig virði</translation>
     </message>
     <message>
         <source>Line visible</source>
-        <translation type="unfinished"/>
+        <translation>Strika sjónlig</translation>
     </message>
 </context>
 <context>
     <name>InspectorMarker</name>
     <message>
         <source>Marker</source>
-        <translation>Marker</translation>
+        <translation>Merki</translation>
     </message>
     <message>
         <source>Label</source>
-        <translation type="unfinished"/>
+        <translation>Frámerki</translation>
     </message>
     <message>
         <source>Segno</source>
@@ -3967,39 +4080,39 @@ space unit</extracomment>
     </message>
     <message>
         <source>To Coda</source>
-        <translation type="unfinished"/>
+        <translation>TIl Coda</translation>
     </message>
     <message>
         <source>Marker type</source>
-        <translation type="unfinished"/>
+        <translation>Merki slag</translation>
     </message>
     <message>
         <source>Marker Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Merki inspektor</translation>
     </message>
     <message>
         <source>Reset Marker type value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla merki slag virði</translation>
     </message>
     <message>
         <source>Reset Label value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla frámerki virði</translation>
     </message>
     <message>
         <source>Marker Type</source>
-        <translation type="unfinished"/>
+        <translation>Merki slag</translation>
     </message>
     <message>
         <source>Segno variation</source>
-        <translation type="unfinished"/>
+        <translation>Segno variatión</translation>
     </message>
     <message>
         <source>Varied coda</source>
-        <translation>Varied coda</translation>
+        <translation>Skiftandi coda</translation>
     </message>
     <message>
         <source>Custom</source>
-        <translation type="unfinished"/>
+        <translation>Sergjørt</translation>
     </message>
 </context>
 <context>
@@ -4010,19 +4123,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Play</source>
-        <translation>Play</translation>
+        <translation>Spæl</translation>
     </message>
     <message>
         <source>Tuning</source>
-        <translation>Tuning</translation>
+        <translation>Stilling</translation>
     </message>
     <message>
         <source>Velocity</source>
-        <translation type="unfinished"/>
+        <translation>Ferð</translation>
     </message>
     <message>
         <source>Mirror head</source>
-        <translation type="unfinished"/>
+        <translation>Spegla høvd</translation>
     </message>
     <message>
         <source>Auto</source>
@@ -4030,27 +4143,27 @@ space unit</extracomment>
     </message>
     <message>
         <source>Top</source>
-        <translation type="unfinished"/>
+        <translation>Toppur</translation>
     </message>
     <message>
         <source>Bottom</source>
-        <translation type="unfinished"/>
+        <translation>Botnur</translation>
     </message>
     <message>
         <source>Whole</source>
-        <translation type="unfinished"/>
+        <translation>Heilur</translation>
     </message>
     <message>
         <source>Half</source>
-        <translation type="unfinished"/>
+        <translation>Hálvur</translation>
     </message>
     <message>
         <source>Quarter</source>
-        <translation type="unfinished"/>
+        <translation>Kvartur</translation>
     </message>
     <message>
         <source>Breve</source>
-        <translation type="unfinished"/>
+        <translation>Breve</translation>
     </message>
     <message>
         <source>Offset</source>
@@ -4062,99 +4175,99 @@ space unit</extracomment>
     </message>
     <message>
         <source>Head type</source>
-        <translation type="unfinished"/>
+        <translation>Høvd slag</translation>
     </message>
     <message>
         <source>Head group</source>
-        <translation type="unfinished"/>
+        <translation>Høvd bólkur</translation>
     </message>
     <message>
         <source>Dot position</source>
-        <translation type="unfinished"/>
+        <translation>Prikk plasering</translation>
     </message>
     <message>
         <source>Velocity type</source>
-        <translation type="unfinished"/>
+        <translation>Ferð slag</translation>
     </message>
     <message>
         <source>Left</source>
-        <translation>Left</translation>
+        <translation>Vinstra</translation>
     </message>
     <message>
         <source>Right</source>
-        <translation type="unfinished"/>
+        <translation>Høgra</translation>
     </message>
     <message>
         <source>Small </source>
-        <translation type="unfinished"/>
+        <translation>Lítil</translation>
     </message>
     <message>
         <source>Note Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Nóta inspektor</translation>
     </message>
     <message>
         <source>Reset Mirror head value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla spegil høvd virði</translation>
     </message>
     <message>
         <source>Reset Velocity type value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla ferð slag virði</translation>
     </message>
     <message>
         <source>Reset Head type value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla høvd slag virði</translation>
     </message>
     <message>
         <source>Reset Velocity value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla ferð virði</translation>
     </message>
     <message>
         <source>Mirror Head</source>
-        <translation type="unfinished"/>
+        <translation>Spegilshøvd</translation>
     </message>
     <message>
         <source>Small</source>
-        <translation>small</translation>
+        <translation>Lítil</translation>
     </message>
     <message>
         <source>Reset Head group value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla høvd bólka virði</translation>
     </message>
     <message>
         <source>Reset Small value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla smá virði</translation>
     </message>
     <message>
         <source>Reset Tuning value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla semmivirði</translation>
     </message>
     <message>
         <source>Reset Play value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla spæl virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Reset Dot position value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla prikk plaseringsvirði</translation>
     </message>
     <message>
         <source>Line</source>
-        <translation>Line</translation>
+        <translation>Strika</translation>
     </message>
     <message>
         <source>Fix to line</source>
-        <translation type="unfinished"/>
+        <translation>Fest at striku</translation>
     </message>
     <message>
         <source>Reset Fix to line</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla fest at striku</translation>
     </message>
     <message>
         <source>Reset Line</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla striku</translation>
     </message>
 </context>
 <context>
@@ -4165,11 +4278,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Type</source>
-        <translation>Type</translation>
+        <translation>Slag</translation>
     </message>
     <message>
         <source>Placement</source>
-        <translation type="unfinished"/>
+        <translation>Plasering</translation>
     </message>
     <message>
         <source>8va</source>
@@ -4189,66 +4302,66 @@ space unit</extracomment>
     </message>
     <message>
         <source>22ma</source>
-        <translation type="unfinished"/>
+        <translation>22ma</translation>
     </message>
     <message>
         <source>22mb</source>
-        <translation type="unfinished"/>
+        <translation>22mb</translation>
     </message>
     <message>
         <source>Numbers only</source>
-        <translation type="unfinished"/>
+        <translation>Bert tøl</translation>
     </message>
     <message>
         <source>Ottava Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Ottava inspektor</translation>
     </message>
     <message>
         <source>Reset Type value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla slag virði</translation>
     </message>
     <message>
         <source>Reset Placement value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla plaseringsvirði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Above</source>
-        <translation>Above</translation>
+        <translation>Omanfyri</translation>
     </message>
     <message>
         <source>Below</source>
-        <translation type="unfinished"/>
+        <translation>Niðanfyri</translation>
     </message>
     <message>
         <source>Reset Numbers only value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði fyri bert tøl</translation>
     </message>
 </context>
 <context>
     <name>InspectorRest</name>
     <message>
         <source>Rest</source>
-        <translation>Rest</translation>
+        <translation>Tøgn</translation>
     </message>
     <message>
         <source>Small</source>
-        <translation>small</translation>
+        <translation>Lítil</translation>
     </message>
     <message>
         <source>Rest Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Tagnar inspektor</translation>
     </message>
     <message>
         <source>Reset Small value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla smá virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
 </context>
 <context>
@@ -4264,77 +4377,77 @@ space unit</extracomment>
     </message>
     <message>
         <source>Trailing space</source>
-        <translation type="unfinished"/>
+        <translation>Halarúm</translation>
     </message>
     <message>
         <source>Leading space</source>
-        <translation type="unfinished"/>
+        <translation>Oddarúm</translation>
     </message>
     <message>
         <source>Segment Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Bólka inspektor</translation>
     </message>
     <message>
         <source>Reset Leading space value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla oddarúm virði</translation>
     </message>
     <message>
         <source>Reset Trailing space value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla halarúm virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorSlur</name>
     <message>
         <source>Line type:</source>
-        <translation type="unfinished"/>
+        <translation>Striku slag:</translation>
     </message>
     <message>
         <source>Slur/Tie</source>
-        <translation type="unfinished"/>
+        <translation>Bindibogi</translation>
     </message>
     <message>
         <source>Slur Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Bindiboga inspektor</translation>
     </message>
     <message>
         <source>Reset Line type value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla striku slag virði</translation>
     </message>
     <message>
         <source>Line type</source>
-        <translation type="unfinished"/>
+        <translation>Striku slag</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Continue</translation>
+        <translation>Halt fram</translation>
     </message>
     <message>
         <source>Dotted</source>
-        <translation type="unfinished"/>
+        <translation>Prikka</translation>
     </message>
     <message>
         <source>Dashed</source>
-        <translation>Dashed</translation>
+        <translation>Strikaður</translation>
     </message>
 </context>
 <context>
     <name>InspectorSpacer</name>
     <message>
         <source>Spacer</source>
-        <translation>Spacer</translation>
+        <translation>Gloppknappur</translation>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Hædd</translation>
     </message>
     <message>
         <source>sp</source>
@@ -4343,11 +4456,83 @@ space unit</extracomment>
     </message>
     <message>
         <source>Spacer Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Glopp inspektor</translation>
     </message>
     <message>
         <source>Reset Height value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla hædd virði</translation>
+    </message>
+</context>
+<context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Tekstrammu inspektor</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Tekst ramma</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Niðara hol</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Ovari breddi</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Nullstilla virði</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Nullstilla ovara hol virði </translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Nullstilla niðara hol virði</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Vinstri breddi</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Niðari breddi</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Nullstilla høgri breddi virði</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Høgri breddi</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Nullstilla niðari breddi virði</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Nullstilla ovari breddi virði</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Nullstilla vinstri breddi virði</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Ovara hol</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
     </message>
 </context>
 <context>
@@ -4362,27 +4547,27 @@ space unit</extracomment>
     </message>
     <message>
         <source>Follow text</source>
-        <translation type="unfinished"/>
+        <translation>Fylg teksti</translation>
     </message>
     <message>
         <source>BPM</source>
-        <translation>BPM</translation>
+        <translation>SUM</translation>
     </message>
     <message>
         <source>Tempo Marking Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Tempo merki inspektor</translation>
     </message>
     <message>
         <source>Reset Tempo value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla tempo virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Reset Follow text value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla fylg teksti virði</translation>
     </message>
 </context>
 <context>
@@ -4393,57 +4578,57 @@ space unit</extracomment>
     </message>
     <message>
         <source>Style</source>
-        <translation>Style</translation>
+        <translation>Snið</translation>
     </message>
     <message>
         <source>Text Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Tekst inspektor</translation>
     </message>
     <message>
         <source>Reset Style value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla snið virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Reset Text to Style</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla tekst til snið</translation>
     </message>
 </context>
 <context>
     <name>InspectorTextLine</name>
     <message>
         <source>Text Line</source>
-        <translation type="unfinished"/>
+        <translation>Tekst strika</translation>
     </message>
     <message>
         <source>Text Line Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Tekst striku inspektor</translation>
     </message>
 </context>
 <context>
     <name>InspectorTimeSig</name>
     <message>
         <source>Time Signature</source>
-        <translation>Enter Time Signature:</translation>
+        <translation>Takt slag:</translation>
     </message>
     <message>
         <source>Show courtesy</source>
-        <translation type="unfinished"/>
+        <translation>Vís tignarheiti</translation>
     </message>
     <message>
         <source>Time Signature Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Takt slag inspektor</translation>
     </message>
     <message>
         <source>Reset Show courtesy value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla vís tignarheiti virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
 </context>
 <context>
@@ -4454,117 +4639,141 @@ space unit</extracomment>
     </message>
     <message>
         <source>Type</source>
-        <translation>Type</translation>
+        <translation>Slag</translation>
     </message>
     <message>
         <source>Trill Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Trillu inspektor</translation>
     </message>
     <message>
         <source>Reset Trill type</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla trillu slag</translation>
     </message>
     <message>
         <source>Trill Line</source>
-        <translation type="unfinished"/>
+        <translation>Trillu strika</translation>
     </message>
     <message>
         <source>Up Prall</source>
-        <translation type="unfinished"/>
+        <translation>Upp prall</translation>
     </message>
     <message>
         <source>Down Prall</source>
-        <translation type="unfinished"/>
+        <translation>Niður prall</translation>
     </message>
     <message>
         <source>Prall Prall</source>
-        <translation type="unfinished"/>
+        <translation>Prall prall</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation type="unfinished"/>
+        <source>Reset value</source>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
-        <source>Reset value</source>
-        <translation type="unfinished"/>
+        <source>Ornament Style</source>
+        <translation>Skreyt snið</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Leið</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Forsett</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barokk</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Nulstilla skreyt stílur virði</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spæl</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nullstilla spæl virði</translation>
     </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Nótabólkar</translation>
     </message>
     <message>
         <source>Number</source>
-        <translation>number</translation>
+        <translation>Nummar</translation>
     </message>
     <message>
         <source>Relation</source>
-        <translation>relation</translation>
+        <translation>Samband</translation>
     </message>
     <message>
         <source>Nothing</source>
-        <translation>nothing</translation>
+        <translation>Einki</translation>
     </message>
     <message>
         <source>Automatic</source>
-        <translation type="unfinished"/>
+        <translation>Sjálvvirki</translation>
     </message>
     <message>
         <source>Bracket</source>
-        <translation>Bracket</translation>
+        <translation>Klombur</translation>
     </message>
     <message>
         <source>Direction</source>
-        <translation type="unfinished"/>
+        <translation>Leið</translation>
     </message>
     <message>
         <source>Auto</source>
-        <translation>auto</translation>
+        <translation>Sjálvv.</translation>
     </message>
     <message>
         <source>Up</source>
-        <translation>Yukarı</translation>
+        <translation>Upp</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Aşağı</translation>
+        <translation>Niður</translation>
     </message>
     <message>
         <source>Tuplet Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Nótabólka inspektor</translation>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla leið virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Reset Number type value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla nummar slag virði</translation>
     </message>
     <message>
         <source>Reset Bracket type value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla klombur slag virði</translation>
     </message>
     <message>
         <source>Number type</source>
-        <translation type="unfinished"/>
+        <translation>Nummar slag</translation>
     </message>
     <message>
         <source>Bracket type</source>
-        <translation type="unfinished"/>
+        <translation>Klombur slag</translation>
     </message>
 </context>
 <context>
     <name>InspectorVBox</name>
     <message>
         <source>Vertical Frame</source>
-        <translation type="unfinished"/>
+        <translation>Loddrøtt ramma</translation>
     </message>
     <message>
         <source>mm</source>
@@ -4577,63 +4786,63 @@ space unit</extracomment>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Hædd</translation>
     </message>
     <message>
         <source>Vertical Frame Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Loddrøtt ramma inspektor</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
     <message>
         <source>Right margin</source>
-        <translation>Right margin</translation>
+        <translation>Høgri breddi</translation>
     </message>
     <message>
         <source>Reset Top gap value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla ovara hol virði</translation>
     </message>
     <message>
         <source>Reset Bottom gap value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla niðara hol virði</translation>
     </message>
     <message>
         <source>Bottom margin</source>
-        <translation type="unfinished"/>
+        <translation>Niðari breddi</translation>
     </message>
     <message>
         <source>Left margin</source>
-        <translation>Left margin</translation>
+        <translation>Vinstri breddi</translation>
     </message>
     <message>
         <source>Top gap</source>
-        <translation type="unfinished"/>
+        <translation>Ovara hol</translation>
     </message>
     <message>
         <source>Bottom gap</source>
-        <translation type="unfinished"/>
+        <translation>Niðara hol</translation>
     </message>
     <message>
         <source>Top margin</source>
-        <translation type="unfinished"/>
+        <translation>Ovari breddi</translation>
     </message>
     <message>
         <source>Reset Left margin value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla vinstri breddi virði</translation>
     </message>
     <message>
         <source>Reset Right margin value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla høgri breddi virði</translation>
     </message>
     <message>
         <source>Reset Top margin value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla ovari breddi virði</translation>
     </message>
     <message>
         <source>Reset Bottom margin value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla niðari breddi virði</translation>
     </message>
 </context>
 <context>
@@ -4648,62 +4857,62 @@ space unit</extracomment>
     </message>
     <message>
         <source>Closed</source>
-        <translation type="unfinished"/>
+        <translation>Stongt</translation>
     </message>
     <message>
         <source>Type</source>
-        <translation>Type</translation>
+        <translation>Slag</translation>
     </message>
     <message>
         <source>Volta Inspector</source>
-        <translation type="unfinished"/>
+        <translation>Volta inspektor</translation>
     </message>
     <message>
         <source>Reset Type value</source>
-        <translation type="unfinished"/>
+        <translation>Nulstilla slag virði</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla virði</translation>
     </message>
 </context>
 <context>
     <name>InstrumentWizard</name>
     <message>
         <source>0</source>
-        <translation type="unfinished"/>
+        <translation>0</translation>
     </message>
     <message>
         <source>Search</source>
-        <translation type="unfinished"/>
+        <translation>Leita</translation>
     </message>
     <message>
         <source>Clear</source>
-        <translation>Clear</translation>
+        <translation>Rudda</translation>
     </message>
     <message>
         <source>Add</source>
-        <translation>Add</translation>
+        <translation>Legg afturat</translation>
     </message>
     <message>
         <source>Remove</source>
-        <translation>Remove</translation>
+        <translation>Tak burtur</translation>
     </message>
     <message>
         <source>Up</source>
-        <translation>Up</translation>
+        <translation>Upp</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Down</translation>
+        <translation>Niður</translation>
     </message>
     <message>
         <source>Add Staff</source>
-        <translation type="unfinished"/>
+        <translation>Legg stav afturat</translation>
     </message>
     <message>
         <source>Add Linked Staff</source>
-        <translation type="unfinished"/>
+        <translation>Legg leinkjaðan stav afturat</translation>
     </message>
     <message>
         <source>1</source>
@@ -4719,34 +4928,34 @@ space unit</extracomment>
     </message>
     <message>
         <source>Instrument wizard</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðføris flogvit</translation>
     </message>
     <message>
         <source>Instrument List</source>
-        <translation>Instrument List</translation>
+        <translation>Ljóðføris listi</translation>
     </message>
     <message>
         <source>Added Instruments</source>
-        <translation type="unfinished"/>
+        <translation>afturatløgd ljóðføri</translation>
     </message>
     <message>
         <source>Instrument Genre Filter</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðføris sjangru filtur</translation>
     </message>
 </context>
 <context>
     <name>InstrumentsDialog</name>
     <message>
         <source>All instruments</source>
-        <translation type="unfinished"/>
+        <translation>Øll ljóðføri</translation>
     </message>
     <message>
         <source>MuseScore: Instruments</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Ljóðføri</translation>
     </message>
     <message>
         <source>Load</source>
-        <translation>Yükle</translation>
+        <translation>Tak fram</translation>
     </message>
     <message>
         <source>Save</source>
@@ -4754,128 +4963,135 @@ space unit</extracomment>
     </message>
     <message>
         <source>OK</source>
-        <translation>TAMAM</translation>
+        <translation>OK</translation>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Vazgeç</translation>
+        <translation>Strika</translation>
     </message>
 </context>
 <context>
     <name>InstrumentsWidget</name>
     <message>
         <source>MuseScore: Instruments</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Ljóðføri</translation>
     </message>
     <message>
         <source>Instrument List</source>
-        <translation>Instrument List</translation>
+        <translation>Ljóðføris listi</translation>
     </message>
     <message>
         <source>Search</source>
-        <translation type="unfinished"/>
+        <translation>Leita</translation>
     </message>
     <message>
         <source>Clear</source>
-        <translation>Clear</translation>
+        <translation>Rudda</translation>
     </message>
     <message>
         <source>Add</source>
-        <translation>Add</translation>
+        <translation>Skoyt uppí</translation>
     </message>
     <message>
         <source>Remove</source>
-        <translation>Remove</translation>
+        <translation>Tak burtur</translation>
     </message>
     <message>
         <source>Up</source>
-        <translation>Yukarı</translation>
+        <translation>Upp</translation>
     </message>
     <message>
         <source>Down</source>
-        <translation>Aşağı</translation>
+        <translation>Niður</translation>
     </message>
     <message>
         <source>Add Staff</source>
-        <translation type="unfinished"/>
+        <translation>Legg stav afturat</translation>
     </message>
     <message>
         <source>Add Linked Staff</source>
-        <translation type="unfinished"/>
+        <translation>Legg leinkjaðan stav afturat</translation>
     </message>
     <message>
         <source>Staves</source>
-        <translation>Staves</translation>
+        <translation>Stavir</translation>
     </message>
     <message>
         <source>Visible</source>
-        <translation>Visible</translation>
+        <translation>Sjónligur</translation>
     </message>
     <message>
         <source>Clef</source>
-        <translation>Clef</translation>
+        <translation>Lykil</translation>
     </message>
     <message>
         <source>Linked</source>
-        <translation type="unfinished"/>
+        <translation>Leinkjaður</translation>
     </message>
     <message>
         <source>Staff type</source>
-        <translation type="unfinished"/>
+        <translation>Stav slag</translation>
     </message>
     <message>
         <source>Instrument Genre Filter</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðføris sjangru filtur</translation>
     </message>
     <message>
         <source>Instrument list</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðførislisti</translation>
     </message>
     <message>
         <source>Clear Search box</source>
-        <translation type="unfinished"/>
+        <translation>Rudda leitikassa</translation>
     </message>
     <message>
         <source>Partitur List</source>
-        <translation type="unfinished"/>
+        <translation>Partitur listi</translation>
     </message>
     <message>
         <source>Staff linked to previous</source>
-        <translation type="unfinished"/>
+        <translation>Stavur leinkjaður til fyrra</translation>
     </message>
 </context>
 <context>
     <name>KeyEdit</name>
     <message>
         <source>Create Key Signature</source>
-        <translation>Create Key Signature</translation>
+        <translation>Stovna ljómslagstekin</translation>
     </message>
     <message>
         <source>Clear</source>
-        <translation>Clear</translation>
+        <translation>Rudda</translation>
     </message>
     <message>
         <source>Add</source>
-        <translation>Add</translation>
+        <translation>Skoyt uppí</translation>
     </message>
     <message>
         <source>Add time signature to palette</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat takt slag til palett</translation>
+    </message>
+</context>
+<context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonalur</translation>
     </message>
 </context>
 <context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
-        <translation type="unfinished"/>
+        <translation>Musescore: Løg</translation>
     </message>
     <message>
         <source>Layer</source>
-        <translation type="unfinished"/>
+        <translation>Lag</translation>
     </message>
     <message>
         <source>Create</source>
-        <translation type="unfinished"/>
+        <translation>Stovna</translation>
     </message>
     <message>
         <source>Delete</source>
@@ -4883,15 +5099,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Tags</source>
-        <translation type="unfinished"/>
+        <translation>Frámerkir</translation>
     </message>
     <message>
         <source>Add Tag</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat frámerki</translation>
     </message>
     <message>
         <source>Delete Tag</source>
-        <translation type="unfinished"/>
+        <translation>Sletta frámerki</translation>
     </message>
     <message>
         <source>1</source>
@@ -4923,7 +5139,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>8</source>
-        <translation type="unfinished"/>
+        <translation>8</translation>
     </message>
     <message>
         <source>9</source>
@@ -4931,15 +5147,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>10</source>
-        <translation type="unfinished"/>
+        <translation>10</translation>
     </message>
     <message>
         <source>11</source>
-        <translation type="unfinished"/>
+        <translation>11</translation>
     </message>
     <message>
         <source>12</source>
-        <translation type="unfinished"/>
+        <translation>12</translation>
     </message>
     <message>
         <source>13</source>
@@ -4947,106 +5163,106 @@ space unit</extracomment>
     </message>
     <message>
         <source>14</source>
-        <translation type="unfinished"/>
+        <translation>14</translation>
     </message>
     <message>
         <source>15</source>
-        <translation type="unfinished"/>
+        <translation>15</translation>
     </message>
     <message>
         <source>16</source>
-        <translation type="unfinished"/>
+        <translation>16</translation>
     </message>
     <message>
         <source>17</source>
-        <translation type="unfinished"/>
+        <translation>17</translation>
     </message>
     <message>
         <source>18</source>
-        <translation type="unfinished"/>
+        <translation>18</translation>
     </message>
     <message>
         <source>19</source>
-        <translation type="unfinished"/>
+        <translation>19</translation>
     </message>
     <message>
         <source>20</source>
-        <translation type="unfinished"/>
+        <translation>20</translation>
     </message>
     <message>
         <source>21</source>
-        <translation type="unfinished"/>
+        <translation>21</translation>
     </message>
     <message>
         <source>22</source>
-        <translation type="unfinished"/>
+        <translation>22</translation>
     </message>
     <message>
         <source>23</source>
-        <translation type="unfinished"/>
+        <translation>23</translation>
     </message>
     <message>
         <source>24</source>
-        <translation type="unfinished"/>
+        <translation>24</translation>
     </message>
     <message>
         <source>25</source>
-        <translation type="unfinished"/>
+        <translation>25</translation>
     </message>
     <message>
         <source>26</source>
-        <translation type="unfinished"/>
+        <translation>26</translation>
     </message>
     <message>
         <source>27</source>
-        <translation type="unfinished"/>
+        <translation>27</translation>
     </message>
     <message>
         <source>28</source>
-        <translation type="unfinished"/>
+        <translation>28</translation>
     </message>
     <message>
         <source>29</source>
-        <translation type="unfinished"/>
+        <translation>29</translation>
     </message>
     <message>
         <source>30</source>
-        <translation type="unfinished"/>
+        <translation>30</translation>
     </message>
     <message>
         <source>31</source>
-        <translation type="unfinished"/>
+        <translation>31</translation>
     </message>
     <message>
         <source>Tag</source>
-        <translation type="unfinished"/>
+        <translation>Frámerkir</translation>
     </message>
     <message>
         <source>Description</source>
-        <translation type="unfinished"/>
+        <translation>Lýsing</translation>
     </message>
 </context>
 <context>
     <name>LinePropertiesDialog</name>
     <message>
         <source>MuseScore: Line Properties</source>
-        <translation>MuseScore: Line Properties</translation>
+        <translation>MuseScore: Striku eginleikar</translation>
     </message>
     <message>
         <source>Begin</source>
-        <translation>Begin</translation>
+        <translation>Byrja</translation>
     </message>
     <message>
         <source>Above</source>
-        <translation>Above</translation>
+        <translation>Omanfyri</translation>
     </message>
     <message>
         <source>Below</source>
-        <translation type="unfinished"/>
+        <translation>Niðanfyri</translation>
     </message>
     <message>
         <source>Left</source>
-        <translation>Left</translation>
+        <translation>Vinstra</translation>
     </message>
     <message>
         <source>sp</source>
@@ -5054,137 +5270,137 @@ space unit</extracomment>
     </message>
     <message>
         <source>Up</source>
-        <translation>Up</translation>
+        <translation>Upp</translation>
     </message>
     <message>
         <source>90°</source>
-        <translation type="unfinished"/>
+        <translation>90°</translation>
     </message>
     <message>
         <source>45°</source>
-        <translation type="unfinished"/>
+        <translation>45°</translation>
     </message>
     <message>
         <source>Continue</source>
-        <translation>Continue</translation>
+        <translation>Halt fram</translation>
     </message>
     <message>
         <source>End</source>
-        <translation>End</translation>
+        <translation>Endi</translation>
     </message>
     <message>
         <source>Place:</source>
-        <translation>place:</translation>
+        <translation>Stað:</translation>
     </message>
     <message>
         <source>Hook:</source>
-        <translation type="unfinished"/>
+        <translation>Krókur:</translation>
     </message>
     <message>
         <source>Text:</source>
-        <translation>Text:</translation>
+        <translation>Tekstur:</translation>
     </message>
 </context>
 <context>
     <name>LoginDialog</name>
     <message>
         <source>Log in to MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>Innrita í MuseScore</translation>
     </message>
     <message>
         <source>Username or email</source>
-        <translation type="unfinished"/>
+        <translation>Brúkaranavn ella email</translation>
     </message>
     <message>
         <source>Password</source>
-        <translation type="unfinished"/>
+        <translation>Loyniorð</translation>
     </message>
 </context>
 <context>
     <name>MIDI import operations</name>
     <message>
         <source>Quarter</source>
-        <translation type="unfinished"/>
+        <translation>Kvartur</translation>
     </message>
     <message>
         <source>Eighth</source>
-        <translation type="unfinished"/>
+        <translation>Átta</translation>
     </message>
     <message>
         <source>16th</source>
-        <translation>semiquaver</translation>
+        <translation>16prt</translation>
     </message>
     <message>
         <source>32nd</source>
-        <translation>demisemiquaver</translation>
+        <translation>32prt</translation>
     </message>
     <message>
         <source>64th</source>
-        <translation type="unfinished"/>
+        <translation>64prt</translation>
     </message>
     <message>
         <source>128th</source>
-        <translation type="unfinished"/>
+        <translation>128prt</translation>
     </message>
     <message>
         <source>Detect swing</source>
-        <translation type="unfinished"/>
+        <translation>Uppdaga Swing</translation>
     </message>
     <message>
         <source>None (1:1)</source>
-        <translation type="unfinished"/>
+        <translation>Einki (1:1)</translation>
     </message>
     <message>
         <source>Swing (2:1)</source>
-        <translation type="unfinished"/>
+        <translation>Swing (2:1)</translation>
     </message>
     <message>
         <source>Shuffle (3:1)</source>
-        <translation type="unfinished"/>
+        <translation>Shuffle (3:1)</translation>
     </message>
     <message>
         <source>Import</source>
-        <translation>Import</translation>
+        <translation>Innflyt</translation>
     </message>
     <message>
         <source>Staff name</source>
-        <translation type="unfinished"/>
+        <translation>Stav navn</translation>
     </message>
     <message>
         <source>Sound</source>
-        <translation type="unfinished"/>
+        <translation>Ljóð</translation>
     </message>
     <message>
         <source>Lyrics</source>
-        <translation>Lyrics</translation>
+        <translation>Tekstur</translation>
     </message>
     <message>
         <source>2-plets</source>
-        <translation type="unfinished"/>
+        <translation>2-bólkur</translation>
     </message>
     <message>
         <source>3-plets</source>
-        <translation type="unfinished"/>
+        <translation>3-bólkur</translation>
     </message>
     <message>
         <source>4-plets</source>
-        <translation type="unfinished"/>
+        <translation>4-bólkur</translation>
     </message>
     <message>
         <source>5-plets</source>
-        <translation type="unfinished"/>
+        <translation>5-bólkur</translation>
     </message>
     <message>
         <source>7-plets</source>
-        <translation type="unfinished"/>
+        <translation>7-bólkur</translation>
     </message>
     <message>
         <source>9-plets</source>
-        <translation type="unfinished"/>
+        <translation>9-bólkur</translation>
     </message>
     <message>
         <source>Tuplets</source>
-        <translation>Tuplets</translation>
+        <translation>Nótabólkar</translation>
     </message>
     <message>
         <source>2</source>
@@ -5216,83 +5432,91 @@ space unit</extracomment>
     </message>
     <message>
         <source>12</source>
-        <translation type="unfinished"/>
+        <translation>12</translation>
     </message>
     <message>
         <source>15</source>
-        <translation type="unfinished"/>
+        <translation>15</translation>
     </message>
     <message>
         <source>21</source>
-        <translation type="unfinished"/>
+        <translation>21</translation>
     </message>
     <message>
         <source>8</source>
-        <translation type="unfinished"/>
+        <translation>8</translation>
     </message>
     <message>
         <source>16</source>
-        <translation type="unfinished"/>
+        <translation>16</translation>
     </message>
     <message>
         <source>32</source>
-        <translation type="unfinished"/>
+        <translation>32</translation>
     </message>
     <message>
         <source>Time signature</source>
-        <translation type="unfinished"/>
+        <translation>Takt slag</translation>
     </message>
     <message>
         <source>2x less
 measure count</source>
-        <translation type="unfinished"/>
+        <translation>2x minni
+takt tal</translation>
     </message>
     <message>
         <source>Is human
 performance</source>
-        <translation type="unfinished"/>
+        <translation>Er menniskjalig
+framførsla</translation>
     </message>
     <message>
         <source>Split staff</source>
-        <translation type="unfinished"/>
+        <translation>Kloyv stav</translation>
     </message>
     <message>
         <source>Clef
 changes</source>
-        <translation type="unfinished"/>
+        <translation>Lykil
+Broytingar</translation>
     </message>
     <message>
         <source>Simplify
 durations</source>
-        <translation type="unfinished"/>
+        <translation>Einfalda
+tíðarbil</translation>
     </message>
     <message>
         <source>Show
 staccato</source>
-        <translation type="unfinished"/>
+        <translation>Vís
+staccato</translation>
     </message>
     <message>
         <source>Dotted
 notes</source>
-        <translation type="unfinished"/>
+        <translation>Prikkaðir
+nótar</translation>
     </message>
     <message>
         <source>Show
 tempo text</source>
-        <translation type="unfinished"/>
+        <translation>Vís
+tempo tekst</translation>
     </message>
     <message>
         <source>Recognize
 pickup measure</source>
-        <translation type="unfinished"/>
+        <translation>Finn
+byrjunar takt</translation>
     </message>
     <message>
         <source>Max. quantization</source>
-        <translation type="unfinished"/>
+        <translation>maks. Kvantisering</translation>
     </message>
     <message>
         <source>Max. voices</source>
-        <translation type="unfinished"/>
+        <translation>Maks. røddir</translation>
     </message>
     <message>
         <source>Channel</source>
@@ -5300,96 +5524,99 @@ pickup measure</source>
     </message>
     <message>
         <source>MuseScore instrument</source>
-        <translation type="unfinished"/>
+        <translation>Musescore ljóðføri</translation>
     </message>
     <message>
         <source>Show
 chord symbols</source>
-        <translation type="unfinished"/>
+        <translation>Vís
+akkord symbol</translation>
     </message>
 </context>
 <context>
     <name>MIDI import: tracks model</name>
     <message>
         <source>All</source>
-        <translation type="unfinished"/>
+        <translation>Øll</translation>
     </message>
 </context>
 <context>
     <name>MP3Exporter</name>
     <message>
         <source>Where is %1 ?</source>
-        <translation type="unfinished"/>
+        <translation>Hvar er %1 ?</translation>
     </message>
     <message>
         <source>Save as MP3</source>
-        <translation type="unfinished"/>
+        <translation>Goym sum MP3</translation>
     </message>
     <message>
         <source>MuseScore does not export MP3 files directly, but instead uses the freely available LAME library.  You must obtain %1 separately (for details check the handbook), and then locate the file for MuseScore.
 You only need to do this once.
 
 Would you like to locate %2 now?</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore flytir ikki út MP3 fílir beinleiðis, men brúkar í staðin ta fría atkomiliga LAME savnið. Tú mást útvega %1 hvørt fyri seg (sí nærri í hondbókini), og síðani finna fíluna til MuseScore.
+Tær nýtist bert gera hetta einaferð.
+Ynskir tú at finna %2 nú? </translation>
     </message>
 </context>
 <context>
     <name>MasterPalette</name>
     <message>
         <source>MuseScore: Master Palette</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: høvuðspalett</translation>
     </message>
     <message>
         <source>Grace Notes</source>
-        <translation>Grace Notes</translation>
+        <translation>Skreyt nótar</translation>
     </message>
     <message>
         <source>Clefs</source>
-        <translation>Clefs</translation>
+        <translation>Lyklar</translation>
     </message>
     <message>
         <source>Key Signatures</source>
-        <translation>Key Signatures</translation>
+        <translation>Ljómslagstekin</translation>
     </message>
     <message>
         <source>Time Signatures</source>
-        <translation>Time Signatures</translation>
+        <translation>Takt slag</translation>
     </message>
     <message>
         <source>Barlines</source>
-        <translation>Bar lines</translation>
+        <translation>Taktstrikur</translation>
     </message>
     <message>
         <source>Lines</source>
-        <translation>Lines</translation>
+        <translation>Strikur</translation>
     </message>
     <message>
         <source>Breaths & Pauses</source>
-        <translation type="unfinished"/>
+        <translation>Steðgur && Íhald</translation>
     </message>
     <message>
         <source>Brackets</source>
-        <translation>Brackets</translation>
+        <translation>Klombur</translation>
     </message>
     <message>
         <source>Articulations & Ornaments</source>
-        <translation type="unfinished"/>
+        <translation>Artikulatión & Skreyt</translation>
     </message>
     <message>
         <source>Accidentals</source>
-        <translation>Accidentals</translation>
+        <translation>Leys fortekin</translation>
     </message>
     <message>
         <source>Dynamics</source>
-        <translation>Dynamics</translation>
+        <translation>Dynamikkur</translation>
     </message>
     <message>
         <source>Fingering</source>
-        <translation>Fingering</translation>
+        <translation>Fingrasetningur</translation>
     </message>
     <message>
         <source>Note Heads</source>
-        <translation>Note Heads</translation>
+        <translation>Nótahøvd</translation>
     </message>
     <message>
         <source>Tremolo</source>
@@ -5401,74 +5628,75 @@ Would you like to locate %2 now?</source>
     </message>
     <message>
         <source>Text</source>
-        <translation>Text</translation>
+        <translation>Tekstur</translation>
     </message>
     <message>
         <source>Beam Properties</source>
-        <translation>Beam Properties</translation>
+        <translation>Bjálka eginleikar</translation>
     </message>
     <message>
         <source>Frames & Measures</source>
-        <translation type="unfinished"/>
+        <translation>Rammur & Taktir</translation>
     </message>
     <message>
         <source>Symbols</source>
-        <translation>Symbols</translation>
+        <translation>Symbolir</translation>
     </message>
     <message>
         <source>Arpeggios & Glissandi</source>
-        <translation type="unfinished"/>
+        <translation>Arpeggio & Glissandi</translation>
     </message>
     <message>
         <source>Breaks & Spacers</source>
-        <translation type="unfinished"/>
+        <translation>Reglubrot & Millumrúm</translation>
     </message>
     <message>
         <source>Bagpipe Embellishments</source>
-        <translation type="unfinished"/>
+        <translation>Sekkjapípu príði</translation>
     </message>
     <message>
         <source>Repeats & Jumps</source>
-        <translation type="unfinished"/>
+        <translation>Endurtøkur & lop</translation>
     </message>
 </context>
 <context>
     <name>MeasureProperties</name>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>cannot change measure length:
 tuplet would cross measure</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki broyta taktlongd
+nótabólkur fer um takt</translation>
     </message>
 </context>
 <context>
     <name>MeasurePropertiesBase</name>
     <message>
         <source>MuseScore: Measure Properties</source>
-        <translation>MuseScore: Measure Properties</translation>
+        <translation>MuseScore: Takt eginleikar</translation>
     </message>
     <message>
         <source>Staves</source>
-        <translation>Staves</translation>
+        <translation>Stavir</translation>
     </message>
     <message>
         <source>New Row</source>
-        <translation>New Row</translation>
+        <translation>Nýggj røð</translation>
     </message>
     <message>
         <source>Staff</source>
-        <translation>Stave</translation>
+        <translation>Stavur</translation>
     </message>
     <message>
         <source>Visible</source>
-        <translation>Visible</translation>
+        <translation>Sjónligur</translation>
     </message>
     <message>
         <source>Stemless</source>
-        <translation>Stemless</translation>
+        <translation>Leggleysur</translation>
     </message>
     <message>
         <source>a</source>
@@ -5476,7 +5704,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>visible</source>
-        <translation>visible</translation>
+        <translation>Sjónligur</translation>
     </message>
     <message>
         <source>c</source>
@@ -5484,7 +5712,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Measure Duration</source>
-        <translation>Measure Duration</translation>
+        <translation>Takt tíðarlongd</translation>
     </message>
     <message>
         <source>/</source>
@@ -5504,15 +5732,15 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>8</source>
-        <translation type="unfinished"/>
+        <translation>8</translation>
     </message>
     <message>
         <source>16</source>
-        <translation type="unfinished"/>
+        <translation>16</translation>
     </message>
     <message>
         <source>32</source>
-        <translation type="unfinished"/>
+        <translation>32</translation>
     </message>
     <message>
         <source>64</source>
@@ -5520,70 +5748,70 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Other</source>
-        <translation>Other</translation>
+        <translation>Annað</translation>
     </message>
     <message>
         <source>Exclude from measure count</source>
-        <translation type="unfinished"/>
+        <translation>Halt uttanfyri takt teljing</translation>
     </message>
     <message>
         <source>Repeat count:</source>
-        <translation>repeat count:</translation>
+        <translation>Endurtak teljing:</translation>
     </message>
     <message>
         <source>Layout stretch:</source>
-        <translation>layout stretch</translation>
+        <translation>Uppseting vídd</translation>
     </message>
     <message>
         <source>Measure number mode:</source>
-        <translation type="unfinished"/>
+        <translation>Takt nummar háttur:</translation>
     </message>
     <message>
         <source>Nominal:</source>
-        <translation>nominal</translation>
+        <translation>Áljóðandi:</translation>
     </message>
     <message>
         <source>Actual:</source>
-        <translation>actual</translation>
+        <translation>Veruligur</translation>
     </message>
     <message>
         <source>Add to measure number:</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat takt tali:</translation>
     </message>
     <message>
         <source>Do not count</source>
-        <translation>do not count</translation>
+        <translation>Ikki telja</translation>
     </message>
     <message>
         <source>Automatic</source>
-        <translation type="unfinished"/>
+        <translation>Sjálvvirki:</translation>
     </message>
     <message>
         <source>Always Show</source>
-        <translation type="unfinished"/>
+        <translation>Vís altíð</translation>
     </message>
     <message>
         <source>Always Hide</source>
-        <translation type="unfinished"/>
+        <translation>Goym altíð</translation>
     </message>
     <message>
         <source>Go to previous measure</source>
-        <translation type="unfinished"/>
+        <translation>Far til takt frammanundan.</translation>
     </message>
     <message>
         <source>Go to next measure</source>
-        <translation type="unfinished"/>
+        <translation>Far til næstu takt</translation>
     </message>
     <message>
         <source>Break multimeasure rest</source>
-        <translation type="unfinished"/>
+        <translation>Steðga fleir takta íhald</translation>
     </message>
 </context>
 <context>
     <name>MeasuresDialogBase</name>
     <message>
         <source>Mscore: Append Measures</source>
-        <translation>Mscore: Append Bars</translation>
+        <translation>Mscore: Innset taktir</translation>
     </message>
     <message>
         <source>OK</source>
@@ -5591,95 +5819,95 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Cancel</translation>
+        <translation>Strika</translation>
     </message>
     <message>
         <source>Append empty measures</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat tómar taktir</translation>
     </message>
     <message>
         <source>Number of measures to append:</source>
-        <translation>Number of bars to append</translation>
+        <translation>Tal av taktum at leggja afturat</translation>
     </message>
 </context>
 <context>
     <name>MediaDialog</name>
     <message>
         <source>Dialog</source>
-        <translation>Dialog</translation>
+        <translation>Samtala</translation>
     </message>
     <message>
         <source>PDF-Scan</source>
-        <translation type="unfinished"/>
+        <translation>PDF-Skann</translation>
     </message>
     <message>
         <source>Add Scan</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat Skann</translation>
     </message>
     <message>
         <source>Remove Scan</source>
-        <translation type="unfinished"/>
+        <translation>Tak burtur Skann</translation>
     </message>
     <message>
         <source>Audio</source>
-        <translation type="unfinished"/>
+        <translation>Ljóð</translation>
     </message>
     <message>
         <source>Add Audio</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat ljóð</translation>
     </message>
     <message>
         <source>Remove Audio</source>
-        <translation type="unfinished"/>
+        <translation>Tak burtur ljóð</translation>
     </message>
 </context>
 <context>
     <name>MenuNotes</name>
     <message>
         <source>&Notes</source>
-        <translation>&Notes</translation>
+        <translation>&nótar</translation>
     </message>
 </context>
 <context>
     <name>MetaEditDialog</name>
     <message>
         <source>MuseScore Version:</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore útgáva:</translation>
     </message>
     <message>
         <source>Revision:</source>
-        <translation type="unfinished"/>
+        <translation>Endurskoðan:</translation>
     </message>
     <message>
         <source>API-Level:</source>
-        <translation type="unfinished"/>
+        <translation>API-stig</translation>
     </message>
     <message>
         <source>New</source>
-        <translation>New</translation>
+        <translation>Nýtt</translation>
     </message>
     <message>
         <source>MuseScore: Score Information</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Nótablað upplýsingar</translation>
     </message>
 </context>
 <context>
     <name>Ms</name>
     <message>
         <source>Fall</source>
-        <translation type="unfinished"/>
+        <translation>Fall</translation>
     </message>
     <message>
         <source>Doit</source>
-        <translation type="unfinished"/>
+        <translation>Minsta petti</translation>
     </message>
     <message>
         <source>Plop</source>
-        <translation type="unfinished"/>
+        <translation>gjums</translation>
     </message>
     <message>
         <source>Scoop</source>
-        <translation type="unfinished"/>
+        <translation>Glíðan</translation>
     </message>
 </context>
 <context>
@@ -5701,74 +5929,74 @@ tuplet would cross measure</source>
     <name>Ms::AccessibleScoreView</name>
     <message>
         <source>Score %1</source>
-        <translation type="unfinished"/>
+        <translation>Nótablað %1</translation>
     </message>
 </context>
 <context>
     <name>Ms::AccessibleSearchBox</name>
     <message>
         <source>Measure</source>
-        <translation>Measure</translation>
+        <translation>Takt</translation>
     </message>
     <message>
         <source>Page</source>
-        <translation>Page</translation>
+        <translation>Síða</translation>
     </message>
     <message>
         <source>Rehearsal Mark</source>
-        <translation>Rehearsal Mark</translation>
+        <translation>Venjingar merki</translation>
     </message>
     <message>
         <source>Not found </source>
-        <translation type="unfinished"/>
+        <translation>Ikki funnin</translation>
     </message>
 </context>
 <context>
     <name>Ms::AlbumManager</name>
     <message>
         <source>MuseScore: Add Score</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: legg afturat nótablað</translation>
     </message>
     <message>
         <source>MuseScore: Load Album</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Tak album fram</translation>
     </message>
     <message>
         <source>MuseScore Files (*.mscz *.mscx)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore fílir (*.mscz *.mscx)</translation>
     </message>
     <message>
         <source>MuseScore Album Files (*.album)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore album fila (*.album)</translation>
     </message>
     <message>
         <source>Error while creating score from album.</source>
-        <translation type="unfinished"/>
+        <translation>Villa: stovna nótablað frá album</translation>
     </message>
 </context>
 <context>
     <name>Ms::Ambitus</name>
     <message>
         <source>%1; Top pitch: %2%3; Bottom pitch: %4%5</source>
-        <translation type="unfinished"/>
+        <translation>%1; Ovasti nóti: %2%3; Niðasti nóti: %4%5</translation>
     </message>
 </context>
 <context>
     <name>Ms::ArticulationProperties</name>
     <message>
         <source>normal</source>
-        <translation>normal</translation>
+        <translation>Vanligt</translation>
     </message>
 </context>
 <context>
     <name>Ms::BarLine</name>
     <message>
         <source>%1 Start of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 byrjan av %2</translation>
     </message>
     <message>
         <source>%1 End of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 Endi av %2</translation>
     </message>
 </context>
 <context>
@@ -5779,155 +6007,157 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Breath</source>
-        <translation>Breath</translation>
+        <translation>Steðgur</translation>
     </message>
 </context>
 <context>
     <name>Ms::ChordRest</name>
     <message>
         <source>Duplet</source>
-        <translation>Duplet</translation>
+        <translation>Tvíbólkur</translation>
     </message>
     <message>
         <source>Triplet</source>
-        <translation>Triplet</translation>
+        <translation>Tríbólkur</translation>
     </message>
     <message>
         <source>Quadruplet</source>
-        <translation>Quadruplet</translation>
+        <translation>Fjórbólkur</translation>
     </message>
     <message>
         <source>Sextuplet</source>
-        <translation>Sextuplet</translation>
+        <translation>Seksbólkur</translation>
     </message>
     <message>
         <source>Septuplet</source>
-        <translation>Septuplet</translation>
+        <translation>Seksbólkur</translation>
     </message>
     <message>
         <source>Octuplet</source>
-        <translation>Octuplet</translation>
+        <translation>Áttabólkur</translation>
     </message>
     <message>
         <source>Custom Tuplet</source>
-        <translation type="unfinished"/>
+        <translation>Sergjørdur nótabólkur</translation>
     </message>
     <message>
         <source>Quintuplet</source>
-        <translation>Quintuplet</translation>
+        <translation>Fimmbólkur</translation>
     </message>
     <message>
         <source>Nonuplet</source>
-        <translation>Nonuplet</translation>
+        <translation>Níggjubólkur</translation>
     </message>
     <message>
         <source>%1 Start of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 byrjan av %2</translation>
     </message>
     <message>
         <source>%1 End of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 Endi av %2</translation>
     </message>
     <message>
         <source>Dotted %1</source>
-        <translation type="unfinished"/>
+        <translation>Prikkaður %1</translation>
     </message>
     <message>
         <source>Double dotted %1</source>
-        <translation type="unfinished"/>
+        <translation>Dupult prikkaður %1</translation>
     </message>
     <message>
         <source>Triple dotted %1</source>
-        <translation type="unfinished"/>
+        <translation>Trí - prikkaður %1</translation>
     </message>
 </context>
 <context>
     <name>Ms::ChordStyleEditor</name>
     <message>
         <source>MuseScore: Chord Symbols Style Editor</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Akkord Symbol Snið ritil</translation>
     </message>
 </context>
 <context>
     <name>Ms::DrumTools</name>
     <message>
         <source>Drum Tools</source>
-        <translation type="unfinished"/>
+        <translation>Trummu tól</translation>
     </message>
     <message>
         <source>Edit Drumset</source>
-        <translation type="unfinished"/>
+        <translation>Broyt trummusett</translation>
     </message>
     <message>
         <source>Drums</source>
-        <translation>Drums</translation>
+        <translation>Trummur</translation>
     </message>
 </context>
 <context>
     <name>Ms::DrumrollEditor</name>
     <message>
         <source>Toolbar 1</source>
-        <translation type="unfinished"/>
+        <translation>Amboðsbjálki 1</translation>
     </message>
     <message>
         <source>Toolbar 3</source>
-        <translation type="unfinished"/>
+        <translation>Amboðsbjálki 3</translation>
     </message>
     <message>
         <source>Cursor:</source>
-        <translation>Cursor:</translation>
+        <translation>Peikari:</translation>
     </message>
     <message>
         <source>Velocity:</source>
-        <translation>Velocity:</translation>
+        <translation>Ferð:</translation>
     </message>
     <message>
         <source>offset</source>
-        <translation>offset</translation>
+        <translation>offsett</translation>
     </message>
     <message>
         <source>user</source>
-        <translation>user</translation>
+        <translation>Brúkari</translation>
     </message>
     <message>
         <source>Pitch:</source>
-        <translation>Pitch:</translation>
+        <translation>Tónahædd:</translation>
     </message>
     <message>
         <source>MuseScore: <%1> Staff: %2</source>
-        <translation>MuseScore: <%1> Stave: %2</translation>
+        <translation>MuseScore: <%1> Stavur: %2</translation>
     </message>
 </context>
 <context>
     <name>Ms::EditDrumset</name>
     <message>
         <source>invalid</source>
-        <translation type="unfinished"/>
+        <translation>Ógildigur</translation>
     </message>
     <message>
         <source>MuseScore: Open File</source>
-        <translation>MuseScore: Open File</translation>
+        <translation>MuseScore: Opna fílu</translation>
     </message>
     <message>
         <source>Write File failed: </source>
-        <translation>Write File failed: </translation>
+        <translation>Skriva fíl miseydnað: </translation>
     </message>
     <message>
         <source>MuseScore: Write Drumset</source>
-        <translation>MuseScore: Write Drumset</translation>
+        <translation>MuseScore: Skriva trummusett</translation>
     </message>
     <message>
         <source>Open File
 %1
 failed: </source>
-        <translation type="unfinished"/>
+        <translation>Opna fílu
+%1
+villa:</translation>
     </message>
 </context>
 <context>
     <name>Ms::EditStaff</name>
     <message>
         <source>The instrument name is invalid.</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðførisnavnið er ógildugt</translation>
     </message>
 </context>
 <context>
@@ -5940,7 +6170,7 @@ failed: </source>
     <message>
         <source>Pitch</source>
         <comment>string data</comment>
-        <translation>Pitch</translation>
+        <translation>Tónahædd</translation>
     </message>
 </context>
 <context>
@@ -5951,95 +6181,95 @@ failed: </source>
     </message>
     <message>
         <source>Anchor</source>
-        <translation>Anchor</translation>
+        <translation>Akker</translation>
     </message>
     <message>
         <source>Above Staff</source>
-        <translation type="unfinished"/>
+        <translation>Omanfyri stav</translation>
     </message>
     <message>
         <source>Below Staff</source>
-        <translation type="unfinished"/>
+        <translation>Niðanfyri stav</translation>
     </message>
     <message>
         <source>Chord Automatic</source>
-        <translation type="unfinished"/>
+        <translation>Sjálvvirkin ljómur</translation>
     </message>
     <message>
         <source>Above Chord</source>
-        <translation type="unfinished"/>
+        <translation>Omanfyri akkord</translation>
     </message>
     <message>
         <source>Below Chord</source>
-        <translation type="unfinished"/>
+        <translation>Niðanfyri akkord</translation>
     </message>
     <message>
         <source>Special symbols in header/footer</source>
-        <translation type="unfinished"/>
+        <translation>Serstøk symbol í høvd/fót</translation>
     </message>
     <message>
         <source>page number, except on first page</source>
-        <translation type="unfinished"/>
+        <translation>síðu nummar, uttan á fyrstu síðu</translation>
     </message>
     <message>
         <source>page number, on all pages</source>
-        <translation type="unfinished"/>
+        <translation>Síðu nummar, á øllum síðum</translation>
     </message>
     <message>
         <source>number of pages</source>
-        <translation type="unfinished"/>
+        <translation>Tal á síðum</translation>
     </message>
     <message>
         <source>file name</source>
-        <translation type="unfinished"/>
+        <translation>Fílu navn</translation>
     </message>
     <message>
         <source>file path+name</source>
-        <translation type="unfinished"/>
+        <translation>Fílu leið+navn</translation>
     </message>
     <message>
         <source>current date</source>
-        <translation type="unfinished"/>
+        <translation>dagsins dato</translation>
     </message>
     <message>
         <source>creation date</source>
-        <translation type="unfinished"/>
+        <translation>Framleiðslu dato</translation>
     </message>
     <message>
         <source>copyright, on first page only</source>
-        <translation type="unfinished"/>
+        <translation>Útgávurættur, bert á fyrstu síðu</translation>
     </message>
     <message>
         <source>copyright, on all pages</source>
-        <translation type="unfinished"/>
+        <translation>Útgávurættur, á øllum síðum</translation>
     </message>
     <message>
         <source>the $ sign itself</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>meta data tag</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation type="unfinished"/>
+        <translation>$ tekni sjálvt</translation>
     </message>
     <message>
         <source>Apply to all Parts</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat øllum pørtum</translation>
     </message>
     <message>
         <source>last modification time</source>
-        <translation type="unfinished"/>
+        <translation>Tíðspunkt fyri seinasta broyting</translation>
     </message>
     <message>
         <source>last modification date</source>
-        <translation type="unfinished"/>
+        <translation>Seinasti broytingar dagur</translation>
     </message>
     <message>
         <source>page number, if there is more than one page</source>
-        <translation type="unfinished"/>
+        <translation>Síðu nummar, um fleiri enn ein síða</translation>
+    </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>Meta data merki, sí niðanfyri</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Meta data merkir til taks, teirra núverandi virði:</translation>
     </message>
 </context>
 <context>
@@ -6048,14 +6278,16 @@ failed: </source>
         <source>Cannot open figured bass description:
 %1
 %2</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki opna besifringsbass lýsing:
+%1
+%2</translation>
     </message>
 </context>
 <context>
     <name>Ms::Fingering</name>
     <message>
         <source>String number</source>
-        <translation type="unfinished"/>
+        <translation>Streingja nummar</translation>
     </message>
 </context>
 <context>
@@ -6070,473 +6302,475 @@ failed: </source>
     </message>
     <message>
         <source>Custom</source>
-        <translation type="unfinished"/>
+        <translation>Sergjørd</translation>
     </message>
 </context>
 <context>
     <name>Ms::Harmony</name>
     <message>
         <source>sharp</source>
-        <translation type="unfinished"/>
+        <translation>krossur</translation>
     </message>
     <message>
         <source>flat</source>
-        <translation type="unfinished"/>
+        <translation>b fyri nótan</translation>
     </message>
 </context>
 <context>
     <name>Ms::HelpQuery</name>
     <message>
         <source>Search for: </source>
-        <translation type="unfinished"/>
+        <translation>Leita eftir:</translation>
     </message>
 </context>
 <context>
     <name>Ms::Inspector</name>
     <message>
         <source>Inspector</source>
-        <translation>Inspector</translation>
+        <translation>Inspektor</translation>
     </message>
     <message>
         <source>Inspector Subwindow</source>
-        <translation type="unfinished"/>
+        <translation>Inspektor undirvindeyga</translation>
     </message>
 </context>
 <context>
     <name>Ms::InspectorBase</name>
     <message>
         <source>Inspector</source>
-        <translation>Inspector</translation>
+        <translation>Inspektor</translation>
     </message>
 </context>
 <context>
     <name>Ms::InspectorGroupElement</name>
     <message>
         <source>Select</source>
-        <translation>Select</translation>
+        <translation>Vel</translation>
     </message>
     <message>
         <source>Notes</source>
-        <translation>Notes</translation>
+        <translation>Nótar</translation>
     </message>
     <message>
         <source>Rests</source>
-        <translation type="unfinished"/>
+        <translation>tøgnir</translation>
     </message>
 </context>
 <context>
     <name>Ms::InspectorNote</name>
     <message>
         <source>Select</source>
-        <translation>Select</translation>
+        <translation>Vel</translation>
     </message>
     <message>
         <source>Dot1</source>
-        <translation type="unfinished"/>
+        <translation>Prikk1</translation>
     </message>
     <message>
         <source>Dot2</source>
-        <translation type="unfinished"/>
+        <translation>Prikk2</translation>
     </message>
     <message>
         <source>Dot3</source>
-        <translation type="unfinished"/>
+        <translation>Prikk3</translation>
     </message>
     <message>
         <source>Hook</source>
-        <translation>Hook</translation>
+        <translation>Krókur</translation>
     </message>
     <message>
         <source>Stem</source>
-        <translation>Stem</translation>
+        <translation>Leggur</translation>
     </message>
     <message>
         <source>Beam</source>
-        <translation>Beam</translation>
+        <translation>Bjálki</translation>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Nótabólkur</translation>
     </message>
 </context>
 <context>
     <name>Ms::InspectorRest</name>
     <message>
         <source>Select</source>
-        <translation>Select</translation>
+        <translation>Vel</translation>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Nótabólkur</translation>
     </message>
 </context>
 <context>
     <name>Ms::InstrumentsDialog</name>
     <message>
         <source>MuseScore: Save Instrument List</source>
-        <translation>MuseScore: Save Instrument List</translation>
+        <translation>MuseScore: Goym ljóðførislista</translation>
     </message>
     <message>
         <source>Write Style failed: </source>
-        <translation>Write Style failed: </translation>
+        <translation>Skrivað snið miseydnað: </translation>
     </message>
     <message>
         <source>MuseScore: Write Style</source>
-        <translation>MuseScore: Write Style</translation>
+        <translation>MuseScore: Skrivað snið</translation>
     </message>
     <message>
         <source>MuseScore: Load Instrument List</source>
-        <translation>MuseScore: Load Instrument List</translation>
+        <translation>MuseScore: Tak fram ljóðførislista</translation>
     </message>
     <message>
         <source>MuseScore: Open Instruments File</source>
-        <translation type="unfinished"/>
+        <translation>Musescore: Opna ljóðføris fílu</translation>
     </message>
     <message>
         <source>Open Instruments File
 %1
 failed: </source>
-        <translation type="unfinished"/>
+        <translation>Opna ljóðførisfílu
+%1
+villa:</translation>
     </message>
     <message>
         <source>MuseScore Instruments (*.xml)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore ljóðføri (*.xml)</translation>
     </message>
 </context>
 <context>
     <name>Ms::InstrumentsWidget</name>
     <message>
         <source>Staff %1</source>
-        <translation>Stave %1</translation>
+        <translation>Stav %1</translation>
     </message>
     <message>
         <source>Staves</source>
-        <translation>Staves</translation>
+        <translation>Stavir</translation>
     </message>
     <message>
         <source>Clef</source>
-        <translation>Clef</translation>
+        <translation>Lykil</translation>
     </message>
     <message>
         <source>Staff type</source>
-        <translation type="unfinished"/>
+        <translation>Stav slag</translation>
     </message>
     <message>
         <source>Visible</source>
-        <translation>Visible</translation>
+        <translation>Sjónligur</translation>
     </message>
     <message>
         <source>Linked</source>
-        <translation type="unfinished"/>
+        <translation>Leinkjaður</translation>
     </message>
 </context>
 <context>
     <name>Ms::KeyEditor</name>
     <message>
         <source>MuseScore: Key Signatures</source>
-        <translation>MuseScore: Key Signatures</translation>
+        <translation>MuseScore: Ljómslagstekin</translation>
     </message>
 </context>
 <context>
     <name>Ms::KeySig</name>
     <message>
         <source>%1: Custom</source>
-        <translation type="unfinished"/>
+        <translation>%1: sergjørt</translation>
     </message>
 </context>
 <context>
     <name>Ms::LayerManager</name>
     <message>
         <source>MuseScore: select layer tag</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: vel lag merki</translation>
     </message>
     <message>
         <source>layer tag</source>
-        <translation type="unfinished"/>
+        <translation>lag merki</translation>
     </message>
 </context>
 <context>
     <name>Ms::LoginDialog</name>
     <message>
         <source><a href="%1">Create an account</a></source>
-        <translation type="unfinished"/>
+        <translation><a href="%1">Stovna konto</a></translation>
     </message>
     <message>
         <source><a href="%1">Forgot password?</a></source>
-        <translation type="unfinished"/>
+        <translation><a href="%1">Gloymt loyniorð?</a></translation>
     </message>
     <message>
         <source>Login error</source>
-        <translation type="unfinished"/>
+        <translation>Innritan villa</translation>
     </message>
     <message>
         <source>Please fill in your username and password</source>
-        <translation type="unfinished"/>
+        <translation>Vinarliga skriva títt brúkaranavn og loyniorð</translation>
     </message>
 </context>
 <context>
     <name>Ms::LoginManager</name>
     <message>
         <source>Network error</source>
-        <translation type="unfinished"/>
+        <translation>Netverk villa</translation>
     </message>
     <message>
         <source>Unsuccessful login. Please try again.</source>
-        <translation type="unfinished"/>
+        <translation>Misseydna innritan. Vinarilga royn aftur</translation>
     </message>
     <message>
         <source>Sorry, wrong email address, username or password. Please check again. <a href="%1">Have you forgotten your password</a>?</source>
-        <translation type="unfinished"/>
+        <translation>Orsaka, skeiv email adressa, brúkaranavn ella loyniorð. Vinarliga kanna aftur.<a href="%1">Hevur tú gloymt títt loyniorð</a>?</translation>
     </message>
     <message>
         <source>This account has been blocked.</source>
-        <translation type="unfinished"/>
+        <translation>Nevnda konto er sperra.</translation>
     </message>
     <message>
         <source>Your account has not been activated yet. Please check your mailbox to activate your account or <a href="%1">request a new activation email</a>.</source>
-        <translation type="unfinished"/>
+        <translation>Tín konto er ikki virkin enn. Vinarliga kanna tína mailboks fyri at gera tína konto virkna ella <a href="%1">Bið um nýggjan virknis email</a>.</translation>
     </message>
     <message>
         <source>Error while getting user info. Please try again</source>
-        <translation type="unfinished"/>
+        <translation>Villa í innlesing avbrúkara upplýsningum. Vinarilga royn aftur</translation>
     </message>
     <message>
         <source>Error while getting user info: %1</source>
-        <translation type="unfinished"/>
+        <translation>Villa í innlesing av brúkaraupplýsningum: %1</translation>
     </message>
     <message>
         <source>An error occurred during the file transfer. Please try again</source>
-        <translation type="unfinished"/>
+        <translation>Villa í samband við flyting av fílu. Vinarliga royn aftur</translation>
     </message>
     <message>
         <source>Cannot upload: %1</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki uppsenda: %1</translation>
     </message>
     <message>
         <source>Please upgrade</source>
-        <translation type="unfinished"/>
+        <translation>Vinarliga uppstiga</translation>
     </message>
     <message>
         <source>Your MuseScore version is too old to use this feature.<br/> <a href="%1">Please upgrade first</a>.</source>
-        <translation type="unfinished"/>
+        <translation>Tín MuseScore útgáva er ov gomul til hendan tátt<br/> <a href="%1">Vinarliga uppstiga fyrst</a>.</translation>
     </message>
     <message>
         <source>Please check your Internet connection</source>
-        <translation type="unfinished"/>
+        <translation>Vinarliga kanna títt internet samband</translation>
     </message>
     <message>
         <source>The local time on your device is not set right. Please check it and adjust. It's advised to set the time/timezone to automatic. If you still can't log in, <a href="%1">contact us</a>.</source>
-        <translation type="unfinished"/>
+        <translation>Klokkutíðin á tínum tóli er skeivt stilla. Vinarliga kanna og stilla rætt. Góð ráð: set klokkutíðina sjálvvirkna. Um tú enn ikki kann innrita, <a href="%1">Kontakta okkum</a>.</translation>
     </message>
 </context>
 <context>
     <name>Ms::MScore</name>
     <message>
         <source>you cannot create an element</source>
-        <translation type="unfinished"/>
+        <translation>tú kanst ikki stovna element</translation>
     </message>
 </context>
 <context>
     <name>Ms::MagBox</name>
     <message>
         <source>Zoom</source>
-        <translation>Magnification</translation>
+        <translation>Suming</translation>
     </message>
 </context>
 <context>
     <name>Ms::MeasureProperties</name>
     <message>
         <source>MuseScore: Measure Properties for Measure %1</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: takt eginleikar takt %1</translation>
     </message>
     <message>
         <source>visible</source>
-        <translation>visible</translation>
+        <translation>Sjónligur</translation>
     </message>
     <message>
         <source>stemless</source>
-        <translation type="unfinished"/>
+        <translation>Leggleysur</translation>
     </message>
 </context>
 <context>
     <name>Ms::MediaDialog</name>
     <message>
         <source>MuseScore: Additional Media</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Eyka miðlar</translation>
     </message>
 </context>
 <context>
     <name>Ms::MetaEditDialog</name>
     <message>
         <source>MuseScore: Input Tag Name</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Inntak Merki Navn</translation>
     </message>
     <message>
         <source>New tag name:</source>
-        <translation type="unfinished"/>
+        <translation>Nýtt merki navn:</translation>
     </message>
 </context>
 <context>
     <name>Ms::Mixer</name>
     <message>
         <source>MuseScore: Mixer</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Miksari</translation>
     </message>
 </context>
 <context>
     <name>Ms::MuseScore</name>
     <message>
         <source>Could not open MP3 encoding library!</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki opna MP3 kodu savn!</translation>
     </message>
     <message>
         <source>Not a valid or supported MP3 encoding library!</source>
-        <translation type="unfinished"/>
+        <translation>Ikki galdandi ella stuðla MP3 kodu savn!</translation>
     </message>
     <message>
         <source>Unable to initialize MP3 stream</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki innleiða MP3 streym</translation>
     </message>
     <message>
         <source>Unable to open target file for writing</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki opna mál fílu til skriving</translation>
     </message>
     <message>
         <source>Error %1 returned from MP3 encoder</source>
-        <translation type="unfinished"/>
+        <translation>Villa %1 komi aftur frá MP3 innkodara</translation>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>Save changes to the score "%1"
 before closing?</source>
-        <translation>Save changes to the score "%1" before closing?</translation>
+        <translation>Goym broytingar í nótablaðnum "%1" áðrenn afturlating?</translation>
     </message>
     <message>
         <source>MuseScore Files (*.mscz *.mscx);;</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Fílir (*.mscz *.mscx);;</translation>
     </message>
     <message>
         <source>MusicXML Files (*.xml *.mxl);;</source>
-        <translation>MusicXML Files (*.xml *.mxl);;</translation>
+        <translation>MusicXML Fila (*.xml *.mxl);;</translation>
     </message>
     <message>
         <source>MIDI Files (*.mid *.midi *.kar);;</source>
-        <translation>MIDI Files (*.mid *.midi *.kar);;</translation>
+        <translation>MIDI Fila (*.mid *.midi *.kar);;</translation>
     </message>
     <message>
         <source>Muse Data Files (*.md);;</source>
-        <translation>Muse Data Files (*.md);;</translation>
+        <translation>Muse Data Fila (*.md);;</translation>
     </message>
     <message>
         <source>Capella Files (*.cap *.capx);;</source>
-        <translation type="unfinished"/>
+        <translation>Capella Filir (*.cap *.capx);;</translation>
     </message>
     <message>
         <source>BB Files <experimental> (*.mgu *.MGU *.sgu *.SGU);;</source>
-        <translation>BB Fílar <experimental> (*.mgu *.MGU *.sgu *.SGU);;</translation>
+        <translation>BB Fíla <experimental> (*.mgu *.MGU *.sgu *.SGU);;</translation>
     </message>
     <message>
         <source>Overture / Score Writer Files <experimental> (*.ove *.scw);;</source>
-        <translation type="unfinished"/>
+        <translation>Overture / Score Writer Filir <experimental> (*.ove *.scw);;</translation>
     </message>
     <message>
         <source>Bagpipe Music Writer Files <experimental> (*.bww);;</source>
-        <translation type="unfinished"/>
+        <translation>Bagpipe Music Writer Filir <experimental> (*.bww);;</translation>
     </message>
     <message>
         <source>MuseScore: Load Score</source>
-        <translation>MuseScore: Load Score</translation>
+        <translation>MuseScore: Tak fram nótablað</translation>
     </message>
     <message>
         <source>MuseScore: Save Score</source>
-        <translation>MuseScore: Save Score</translation>
+        <translation>MuseScore: Goym nótablað</translation>
     </message>
     <message>
         <source>MuseScore: Save File</source>
-        <translation>MuseScore: Save File</translation>
+        <translation>MuseScore: Goym fílu</translation>
     </message>
     <message>
         <source>Untitled</source>
-        <translation>Untitled</translation>
+        <translation>Ónevnd</translation>
     </message>
     <message>
         <source>MuseScore: Load Style</source>
-        <translation>MuseScore: Load Style</translation>
+        <translation>MuseScore: Tak fram snið</translation>
     </message>
     <message>
         <source>MuseScore: Save Style</source>
-        <translation>MuseScore: Save Style</translation>
+        <translation>MuseScore: Goym snið</translation>
     </message>
     <message>
         <source>MuseScore Style File (*.mss)</source>
-        <translation>MuseScore Style File (*.mss)</translation>
+        <translation>MuseScore Snið fíla (*.mss)</translation>
     </message>
     <message>
         <source>PDF Scan File (*.pdf);;All (*)</source>
-        <translation type="unfinished"/>
+        <translation>PDF Skann Fila (*.pdf);;All (*)</translation>
     </message>
     <message>
         <source>Choose PDF Scan</source>
-        <translation type="unfinished"/>
+        <translation>Vel PDF Skann</translation>
     </message>
     <message>
         <source>MuseScore: Choose PDF Scan</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Vel PDF skann</translation>
     </message>
     <message>
         <source>Choose Audio File</source>
-        <translation type="unfinished"/>
+        <translation>Vel ljóð fílu</translation>
     </message>
     <message>
         <source>MuseScore: Save Image</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Goym mynd</translation>
     </message>
     <message>
         <source>MuseScore: Load Palette</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Tak fram palett</translation>
     </message>
     <message>
         <source>MuseScore: Save Palette</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Goym Palett</translation>
     </message>
     <message>
         <source>MuseScore Palette (*.mpal)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Palett (*.mpal)</translation>
     </message>
     <message>
         <source>MuseScore: Load Plugin</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Tak fram plugin</translation>
     </message>
     <message>
         <source>MuseScore: Save Plugin</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Goym plugin</translation>
     </message>
     <message>
         <source>MuseScore Plugin File (*.qml)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Plugin fíla (*.qml)</translation>
     </message>
     <message>
         <source>MuseScore: Load Drumset</source>
-        <translation>MuseScore: Load Drumset</translation>
+        <translation>MuseScore: Tak fram trummusett</translation>
     </message>
     <message>
         <source>MuseScore: Save Drumset</source>
-        <translation>MuseScore: Save Drumset</translation>
+        <translation>MuseScore: Goym trummusett</translation>
     </message>
     <message>
         <source>MuseScore Drumset File (*.drm)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Trummusett fíla (*.drm)</translation>
     </message>
     <message>
         <source>Standard MIDI File (*.mid)</source>
-        <translation>Standard MIDI File (*.mid)</translation>
+        <translation>Vanlig MIDI Fíla (*.mid)</translation>
     </message>
     <message>
         <source>PDF File (*.pdf)</source>
-        <translation>PDF File (*.pdf)</translation>
+        <translation>PDF Fíla (*.pdf)</translation>
     </message>
     <message>
         <source>PNG Bitmap Graphic (*.png)</source>
@@ -6556,113 +6790,115 @@ before closing?</source>
     </message>
     <message>
         <source>MP3 Audio (*.mp3)</source>
-        <translation type="unfinished"/>
+        <translation>MP3 ljóð (*.mp3)</translation>
     </message>
     <message>
         <source>MuseScore: Export</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Flyt út</translation>
     </message>
     <message>
         <source>MuseScore: Save As</source>
-        <translation>MuseScore: Save As</translation>
+        <translation>MuseScore: Goym sum</translation>
     </message>
     <message>
         <source>MuseScore: Export Parts</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Flyt út partar</translation>
     </message>
     <message>
         <source>"%1" already exists.
 Do you want to replace it?
 </source>
-        <translation type="unfinished"/>
+        <translation>"%1" er longu til.
+Vil tú skifta hana út?
+</translation>
     </message>
     <message>
         <source>Replace</source>
-        <translation type="unfinished"/>
+        <translation>Skift út</translation>
     </message>
     <message>
         <source>Skip</source>
-        <translation type="unfinished"/>
+        <translation>Leyp um</translation>
     </message>
     <message>
         <source>Replace All</source>
-        <translation type="unfinished"/>
+        <translation>Skift út alt</translation>
     </message>
     <message>
         <source>Skip All</source>
-        <translation type="unfinished"/>
+        <translation>Leyp um alt</translation>
     </message>
     <message>
         <source>Parts were successfully exported</source>
-        <translation type="unfinished"/>
+        <translation>Eydnaðist at flyta út partar</translation>
     </message>
     <message>
         <source>MuseScore: Save a Copy</source>
-        <translation>MuseScore: Save a Copy</translation>
+        <translation>MuseScore: Goym avrit</translation>
     </message>
     <message>
         <source>MuseScore: Save Selection</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Goym úrval</translation>
     </message>
     <message>
         <source>MuseScore: Save Selected</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Goym útvaldu</translation>
     </message>
     <message>
         <source>Images (*.jpg *.jpeg *.png);;All (*)</source>
-        <translation type="unfinished"/>
+        <translation>myndir (*.jpg *.jpeg *.png);;All (*)</translation>
     </message>
     <message>
         <source>Repeat measure sign</source>
-        <translation>Repeat bar sign</translation>
+        <translation>Endurtak takt tekin</translation>
     </message>
     <message>
         <source>Line break</source>
-        <translation>Line break</translation>
+        <translation>Striku brot</translation>
     </message>
     <message>
         <source>Page break</source>
-        <translation>Page break</translation>
+        <translation>Síðu brot</translation>
     </message>
     <message>
         <source>Section break</source>
-        <translation type="unfinished"/>
+        <translation>Sektión reglubrot</translation>
     </message>
     <message>
         <source>Staff spacer down</source>
-        <translation type="unfinished"/>
+        <translation>Stav glopp niður</translation>
     </message>
     <message>
         <source>Staff spacer up</source>
-        <translation type="unfinished"/>
+        <translation>Stav glopp upp</translation>
     </message>
     <message>
         <source>Fingering %1</source>
-        <translation>Fingering %1</translation>
+        <translation>Fingrasetingur %1</translation>
     </message>
     <message>
         <source>String number %1</source>
-        <translation>String number %1</translation>
+        <translation>Streingja nummar %1</translation>
     </message>
     <message>
         <source>Bracket</source>
-        <translation>Bracket</translation>
+        <translation>Klombur</translation>
     </message>
     <message>
         <source>Brace</source>
-        <translation type="unfinished"/>
+        <translation>Reim</translation>
     </message>
     <message>
         <source>Square</source>
-        <translation type="unfinished"/>
+        <translation>kvadrat</translation>
     </message>
     <message>
         <source>Line</source>
-        <translation>Line</translation>
+        <translation>Strika</translation>
     </message>
     <message>
         <source>Breath</source>
-        <translation>Breath</translation>
+        <translation>Steðgur</translation>
     </message>
     <message>
         <source>Caesura</source>
@@ -6678,19 +6914,19 @@ Do you want to replace it?
     </message>
     <message>
         <source>Staff Text</source>
-        <translation>Stave Text</translation>
+        <translation>Stav tekstur</translation>
     </message>
     <message>
         <source>System Text</source>
-        <translation>System Text</translation>
+        <translation>Skipan tekstur</translation>
     </message>
     <message>
         <source>Instrument</source>
-        <translation type="unfinished"/>
+        <translation>ljóðføri</translation>
     </message>
     <message>
         <source>4/4 common time</source>
-        <translation>4/4 common time</translation>
+        <translation>4/4 vanlig takt</translation>
     </message>
     <message>
         <source>2/2 alla breve</source>
@@ -6698,28 +6934,29 @@ Do you want to replace it?
     </message>
     <message>
         <source>&Add</source>
-        <translation type="unfinished"/>
+        <translation>&legg afturat</translation>
     </message>
     <message>
         <source>&Measures</source>
-        <translation type="unfinished"/>
+        <translation>&Taktir</translation>
     </message>
     <message>
         <source>&Frames</source>
-        <translation type="unfinished"/>
+        <translation>&Rammur</translation>
     </message>
     <message>
         <source>&Text</source>
-        <translation type="unfinished"/>
+        <translation>&Tekstur</translation>
     </message>
     <message>
         <source>&Lines</source>
-        <translation type="unfinished"/>
+        <translation>&Strikur</translation>
     </message>
     <message>
         <source>No measure selected:
 Please select a measure and try again</source>
-        <translation>No Measure selected: please select a measure and try again.</translation>
+        <translation>Eingin takt vald:
+Vinarliga vel takt og royn aftur</translation>
     </message>
     <message>
         <source>synthesizer</source>
@@ -6727,113 +6964,115 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>audio track</source>
-        <translation type="unfinished"/>
+        <translation>ljóð spor</translation>
     </message>
     <message>
         <source>File Operations</source>
-        <translation>File Operations</translation>
+        <translation>Filu atgerðir</translation>
     </message>
     <message>
         <source>Transport Tools</source>
-        <translation>Transport Tools</translation>
+        <translation>Flutningstól</translation>
     </message>
     <message>
         <source>Page View</source>
-        <translation type="unfinished"/>
+        <translation>Síðu sýning</translation>
     </message>
     <message>
         <source>Continuous View</source>
-        <translation type="unfinished"/>
+        <translation>Framhaldandi sýning</translation>
     </message>
     <message>
         <source>Concert Pitch</source>
-        <translation>Concert Pitch</translation>
+        <translation>Kamartóni</translation>
     </message>
     <message>
         <source>&File</source>
-        <translation>&File</translation>
+        <translation>&Fila</translation>
     </message>
     <message>
         <source>Open &Recent</source>
-        <translation>Open &Recent</translation>
+        <translation>Opna &Seinastu</translation>
     </message>
     <message>
         <source>&Edit</source>
-        <translation>&Edit</translation>
+        <translation>&Ritstjórna</translation>
     </message>
     <message>
         <source>&Measure</source>
-        <translation type="unfinished"/>
+        <translation>&Takt</translation>
     </message>
     <message>
         <source>&Voices</source>
-        <translation type="unfinished"/>
+        <translation>&Røddir</translation>
     </message>
     <message>
         <source>W&orkspaces</source>
-        <translation type="unfinished"/>
+        <translation>&Arbeiðsrúm</translation>
     </message>
     <message>
         <source>&Preferences...</source>
-        <translation type="unfinished"/>
+        <translation>&Serrættindi...</translation>
     </message>
     <message>
         <source>&View</source>
-        <translation type="unfinished"/>
+        <translation>&Sýning</translation>
     </message>
     <message>
         <source>Add N&ote</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat n&óta</translation>
     </message>
     <message>
         <source>Add &Interval</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat &interval</translation>
     </message>
     <message>
         <source>T&uplets</source>
-        <translation type="unfinished"/>
+        <translation>N&ótabólkar</translation>
     </message>
     <message>
         <source>&Layout</source>
-        <translation>&Layout</translation>
+        <translation>&Uppsetan</translation>
     </message>
     <message>
         <source>&Style</source>
-        <translation>Style</translation>
+        <translation>&Snið</translation>
     </message>
     <message>
         <source>&Plugins</source>
-        <translation type="unfinished"/>
+        <translation>&Plugin</translation>
     </message>
     <message>
         <source>&Help</source>
-        <translation>&Help</translation>
+        <translation>&Hjálp</translation>
     </message>
     <message>
         <source>&Online Handbook</source>
-        <translation type="unfinished"/>
+        <translation>&Álinju Handbók</translation>
     </message>
     <message>
         <source>Check for &Update</source>
-        <translation type="unfinished"/>
+        <translation>Kanna eftir &dagføring</translation>
     </message>
     <message>
         <source>The previous session quit unexpectedly.
 
 Restore session?</source>
-        <translation>The previous session quit unexpectedly. Restore this session?</translation>
+        <translation>Seinasta seta endaði knappuliga
+
+Endurnýggja setu?</translation>
     </message>
     <message>
         <source>Go To: </source>
-        <translation>Go To: </translation>
+        <translation>Far til: </translation>
     </message>
     <message>
         <source>MuseScore: Tuplet Error</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Nótabólk villa</translation>
     </message>
     <message>
         <source>Cannot create tuplet with ratio %1 for duration %2</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki stovna við lufalli %1 fyri tíðarbil %2</translation>
     </message>
     <message>
         <source>Delete</source>
@@ -6841,82 +7080,85 @@ Restore session?</source>
     </message>
     <message>
         <source>Undo Changes</source>
-        <translation type="unfinished"/>
+        <translation>Angra broytingar</translation>
     </message>
     <message>
         <source>MuseScore: Read Workspace Name</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Les arbeiðsrúm navn</translation>
     </message>
     <message>
         <source>'%1' does already exist,
 please choose a different name:</source>
-        <translation type="unfinished"/>
+        <translation>'%1' er longu til,
+vinarliga vel annað navn:</translation>
     </message>
     <message>
         <source>Ogg Audio File (*.ogg);;All (*)</source>
-        <translation type="unfinished"/>
+        <translation>Ogg ljóð fíla (*.ogg);;All (*)</translation>
     </message>
     <message>
         <source>MuseScore: Choose Ogg Audio File</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Vel Ogg ljóð fílu</translation>
     </message>
     <message>
         <source>FLAC Audio (*.flac)</source>
-        <translation type="unfinished"/>
+        <translation>FLAC ljóð (*.flac)</translation>
     </message>
     <message>
         <source>Chord Symbols Style File (*.xml)</source>
-        <translation type="unfinished"/>
+        <translation>Akkord symbol snið fíla (*.xml)</translation>
     </message>
     <message>
         <source>MuseScore: Load Chord Symbols Style</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Tak fram akkord symbol snið</translation>
     </message>
     <message>
         <source>MuseScore: Save Chord Symbols Style</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Goym akkord symbol snið</translation>
     </message>
     <message>
         <source>MuseScore: Insert Image</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Set inn mynd</translation>
     </message>
     <message>
         <source>Report a Bug</source>
-        <translation type="unfinished"/>
+        <translation>Boða frá lús</translation>
     </message>
     <message>
         <source>System</source>
         <extracomment>The default language of the operating system. NOT a music system.</extracomment>
-        <translation>System</translation>
+        <translation>Skipan</translation>
     </message>
     <message>
         <source>Please select one or more measures</source>
-        <translation type="unfinished"/>
+        <translation>Vinarliga vel eina ella fleiri taktir</translation>
     </message>
     <message>
         <source>Error Opening LAME library</source>
-        <translation type="unfinished"/>
+        <translation>Villa opnan av LAME savni</translation>
     </message>
     <message>
         <source>Encoding Error</source>
-        <translation type="unfinished"/>
+        <translation>Kodu vílla</translation>
     </message>
     <message>
         <source>Confirm Replace</source>
-        <translation type="unfinished"/>
+        <translation>Váttað skift út</translation>
     </message>
     <message>
         <source>Error reading language file %s at line %d column %d: %s
 </source>
-        <translation type="unfinished"/>
+        <translation>Villa við lesing av málfílu %s við linju %d teigur %d: %s
+
+</translation>
     </message>
     <message>
         <source>MuseScore: Warning</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Ávaring</translation>
     </message>
     <message>
         <source>PDF Files <experimental OMR> (*.pdf);;</source>
-        <translation type="unfinished"/>
+        <translation>PDF Fílir <experimental OMR> (*.pdf);;</translation>
     </message>
     <message>
         <source>New...</source>
@@ -6924,23 +7166,23 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Clear Recent Files</source>
-        <translation type="unfinished"/>
+        <translation>Rudda nýligar fílir</translation>
     </message>
     <message>
         <source>All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</source>
-        <translation type="unfinished"/>
+        <translation>Allar stuðlaðar fílur (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</translation>
     </message>
     <message>
         <source>All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</source>
-        <translation type="unfinished"/>
+        <translation>Allar stuðlaðar fílur (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</translation>
     </message>
     <message>
         <source>Zoom</source>
-        <translation>Magnification</translation>
+        <translation>Suming</translation>
     </message>
     <message>
         <source>View Mode</source>
-        <translation type="unfinished"/>
+        <translation>Sýningar háttur</translation>
     </message>
     <message>
         <source>Swing</source>
@@ -6948,179 +7190,179 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Key Signatures</source>
-        <translation>Key Signatures</translation>
+        <translation>Ljómslagstekin</translation>
     </message>
     <message>
         <source>Time Signatures</source>
-        <translation>Time Signatures</translation>
+        <translation>Takt slag</translation>
     </message>
     <message>
         <source>Symbols</source>
-        <translation>Symbols</translation>
+        <translation>Symbolir</translation>
     </message>
     <message>
         <source>Cannot create tuplet: Note value is too short</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki stovna nótabólk: nótavirði ov líti</translation>
     </message>
     <message>
         <source>MuseScore File (*.mscz)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Fíla (*.mscz)</translation>
     </message>
     <message>
         <source>Uncompressed MuseScore File (*.mscx)</source>
-        <translation type="unfinished"/>
+        <translation>Ósamanpakkaður MuseScore Fíla (*.mscx)</translation>
     </message>
     <message>
         <source>MusicXML File (*.xml)</source>
-        <translation type="unfinished"/>
+        <translation>TónleikaXML File (*.xml)</translation>
     </message>
     <message>
         <source>Compressed MusicXML File (*.mxl)</source>
-        <translation type="unfinished"/>
+        <translation>Samanpakkaður tónleikaXML fíla (*.mxl)</translation>
     </message>
     <message>
         <source>Show MIDI import panel</source>
-        <translation type="unfinished"/>
+        <translation>Vís MIDI flyt inn panel</translation>
     </message>
     <message>
         <source>Tempo text</source>
-        <translation type="unfinished"/>
+        <translation>Tempo tekstur</translation>
     </message>
     <message>
         <source>Staff text</source>
-        <translation type="unfinished"/>
+        <translation>Stav tekstur</translation>
     </message>
     <message>
         <source>System text</source>
-        <translation type="unfinished"/>
+        <translation>Skipan tekstur</translation>
     </message>
     <message>
         <source>Rehearsal mark</source>
-        <translation type="unfinished"/>
+        <translation>Venjingar merki</translation>
     </message>
     <message>
         <source>Instrument change</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðføris broyting</translation>
     </message>
     <message>
         <source>Set visible</source>
-        <translation type="unfinished"/>
+        <translation>Set sjónligt</translation>
     </message>
     <message>
         <source>Set invisible</source>
-        <translation type="unfinished"/>
+        <translation>Set ósjónligt</translation>
     </message>
     <message>
         <source>Change staff type</source>
-        <translation type="unfinished"/>
+        <translation>Broyt stav slag</translation>
     </message>
     <message>
         <source>Change instrument</source>
-        <translation type="unfinished"/>
+        <translation>Broyt ljóðføri</translation>
     </message>
     <message>
         <source>Fretboard diagram</source>
-        <translation type="unfinished"/>
+        <translation>Bandaborð diagramm</translation>
     </message>
     <message>
         <source>Measure:Beat:Tick</source>
-        <translation type="unfinished"/>
+        <translation>Takt:Slag:Klikk</translation>
     </message>
     <message>
         <source>Switch layer</source>
-        <translation type="unfinished"/>
+        <translation>Být um lag</translation>
     </message>
     <message>
         <source>Switch play mode</source>
-        <translation type="unfinished"/>
+        <translation>Být um spæli hátt</translation>
     </message>
     <message>
         <source>Workspace name:</source>
-        <translation type="unfinished"/>
+        <translation>Arbeiðsrúm navn:</translation>
     </message>
     <message>
         <source>Score_and_Parts</source>
-        <translation type="unfinished"/>
+        <translation>Nótablað_og_Partar</translation>
     </message>
     <message>
         <source>Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5 *.GPX)</source>
-        <translation type="unfinished"/>
+        <translation>Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5 *.GPX)</translation>
     </message>
     <message>
         <source>MuseScore Styles (*.mss)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore snið (*.mss)</translation>
     </message>
     <message>
         <source>MuseScore Plugin (*.qml)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore plugin (*.qml)</translation>
     </message>
     <message>
         <source>MuseScore Drumset (*.drm)</source>
-        <translation>MuseScore drumset (*.drm)</translation>
+        <translation>MuseScore trummusett (*.drm)</translation>
     </message>
     <message>
         <source>RH Guitar Fingering %1</source>
-        <translation type="unfinished"/>
+        <translation>HH Guitar Fingrasetningur %1</translation>
     </message>
     <message>
         <source>LH Guitar Fingering %1</source>
-        <translation type="unfinished"/>
+        <translation>VH Guitar Fingrasetningur %1</translation>
     </message>
     <message>
         <source>All Supported Files (*.svg *.jpg *.jpeg *.png);;Scalable Vector Graphics (*.svg);;JPEG (*.jpg *.jpeg);;PNG (*.png)</source>
-        <translation type="unfinished"/>
+        <translation>Allar stuðlaðar Fílur (*.svg *.jpg *.jpeg *.png);;Scalable Vector Graphics (*.svg);;JPEG (*.jpg *.jpeg);;PNG (*.png)</translation>
     </message>
     <message>
         <source>&Tools</source>
-        <translation type="unfinished"/>
+        <translation>&Tól</translation>
     </message>
     <message>
         <source>No score</source>
-        <translation>no score</translation>
+        <translation>Einki nótablað</translation>
     </message>
     <message>
         <source>Edit mode</source>
-        <translation>edit mode</translation>
+        <translation>Broyt støða</translation>
     </message>
     <message>
         <source>Text edit mode</source>
-        <translation type="unfinished"/>
+        <translation>Tekst broyting støða</translation>
     </message>
     <message>
         <source>Lyrics edit mode</source>
-        <translation type="unfinished"/>
+        <translation>Songtekst broyting støða</translation>
     </message>
     <message>
         <source>Chord symbol/figured bass edit mode</source>
-        <translation type="unfinished"/>
+        <translation>Akkord symbol/besifraður bass broyting støða</translation>
     </message>
     <message>
         <source>Play</source>
-        <translation>Play</translation>
+        <translation>Spæl</translation>
     </message>
     <message>
         <source>Score locked</source>
-        <translation type="unfinished"/>
+        <translation>Nótablað læst</translation>
     </message>
     <message>
         <source>Manual</source>
-        <translation type="unfinished"/>
+        <translation>Handbók</translation>
     </message>
     <message>
         <source>&About...</source>
-        <translation type="unfinished"/>
+        <translation>&Um...</translation>
     </message>
     <message>
         <source>About &Qt...</source>
-        <translation type="unfinished"/>
+        <translation>Um &sp...</translation>
     </message>
     <message>
         <source>About &MusicXML...</source>
-        <translation type="unfinished"/>
+        <translation>Um &TónleikaXML...</translation>
     </message>
     <message>
         <source>Image Capture</source>
-        <translation type="unfinished"/>
+        <translation>Taka mynd</translation>
     </message>
     <message>
         <source>Note Input</source>
@@ -7128,120 +7370,124 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Note input mode</source>
-        <translation>Note input mode</translation>
+        <translation>Nóta innsetan støða</translation>
     </message>
     <message>
         <source>Drum input mode</source>
-        <translation type="unfinished"/>
+        <translation>Trummu innritan støða</translation>
     </message>
     <message>
         <source>TAB input mode</source>
-        <translation type="unfinished"/>
+        <translation>TAB innritan støða</translation>
     </message>
     <message>
         <source>Image capture mode</source>
-        <translation type="unfinished"/>
+        <translation>Tak mynd støða</translation>
     </message>
     <message>
         <source>Cannot determine file type</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki gera av fílu slag</translation>
     </message>
     <message>
         <source>MuseScore:</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore:</translation>
     </message>
     <message>
         <source>Cannot write into %1</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki skriva inn í %1</translation>
     </message>
     <message>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
-        <translation type="unfinished"/>
+        <translation>Hetta nótablað kann ikki goymast álinju. Vinarliga bøt um spiltar taktir og royn aftur.</translation>
+    </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Bið um hjálp</translation>
     </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
     <message>
         <source>Could not<br /> connect</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki<br /> sambinda</translation>
     </message>
     <message>
         <source>To connect with the community, <br /> you need to have internet <br /> connection enabled</source>
-        <translation type="unfinished"/>
+        <translation>Fyri at sambinda við felagsskap, <br /> mást tú hava internet <br /> samband frá</translation>
     </message>
     <message>
         <source>Retry</source>
-        <translation type="unfinished"/>
+        <translation>Royn aftur</translation>
     </message>
     <message>
         <source>Close this permanently</source>
-        <translation type="unfinished"/>
+        <translation>Stong hetta med alla</translation>
     </message>
 </context>
 <context>
     <name>Ms::NewWizard</name>
     <message>
         <source>MuseScore: Create New Score</source>
-        <translation>MuseScore: Create New Score</translation>
+        <translation>MuseScore: Stovna nýtt nótablað</translation>
     </message>
 </context>
 <context>
     <name>Ms::NewWizardPage1</name>
     <message>
         <source>Create New Score</source>
-        <translation>Create New Score</translation>
+        <translation>Stovna nýtt nótablað</translation>
     </message>
     <message>
         <source>This wizard creates a new score</source>
-        <translation>This wizard creates a new score.</translation>
+        <translation>Hesin gandakallar stovnar nýtt nótablað.</translation>
     </message>
 </context>
 <context>
     <name>Ms::NewWizardPage2</name>
     <message>
         <source>Create New Score</source>
-        <translation>Create New Score</translation>
+        <translation>Stovna nýtt nótablað</translation>
     </message>
     <message>
         <source>Define a set of instruments. Each instrument is represented by one or more staves</source>
-        <translation type="unfinished"/>
+        <translation>Áset ein bólk av ljóðførum. Hvørt ljóðføri er umboða av einum ella fleiri stavum </translation>
     </message>
 </context>
 <context>
     <name>Ms::NewWizardPage3</name>
     <message>
         <source>Create New Score</source>
-        <translation>Create New Score</translation>
+        <translation>Stovna nýtt nótablað</translation>
     </message>
     <message>
         <source>Create Time Signature</source>
-        <translation>Create Time Signature</translation>
+        <translation>Stovna takt slag</translation>
     </message>
 </context>
 <context>
     <name>Ms::NewWizardPage4</name>
     <message>
         <source>Create New Score</source>
-        <translation>Create New Score</translation>
+        <translation>Stovna nýtt nótablað</translation>
     </message>
     <message>
         <source>Select Template File:</source>
-        <translation>Select Template File:</translation>
+        <translation>Vel skapilón fílu:</translation>
     </message>
 </context>
 <context>
     <name>Ms::NewWizardPage5</name>
     <message>
         <source>Create New Score</source>
-        <translation>Create New Score</translation>
+        <translation>Stovna nýtt nótablað</translation>
     </message>
     <message>
         <source>Select Key Signature and Tempo:</source>
-        <translation type="unfinished"/>
+        <translation>Vel ljómslagstekin og tempo</translation>
     </message>
     <message>
         <source>Key Signature</source>
-        <translation>Key Signature</translation>
+        <translation>Ljómslagstekin</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -7249,18 +7495,18 @@ please choose a different name:</source>
     </message>
     <message>
         <source>BPM:</source>
-        <translation>BPM</translation>
+        <translation>SUM</translation>
     </message>
     <message>
         <source>Beats per minute</source>
-        <translation type="unfinished"/>
+        <translation>Sløg um minuttin</translation>
     </message>
 </context>
 <context>
     <name>Ms::NoEffectGui</name>
     <message>
         <source>No Plugin</source>
-        <translation type="unfinished"/>
+        <translation>Einki plugin</translation>
     </message>
 </context>
 <context>
@@ -7271,15 +7517,15 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Grace note after</source>
-        <translation type="unfinished"/>
+        <translation>Skreyt nóta aftaná</translation>
     </message>
     <message>
         <source>Grace note before</source>
-        <translation type="unfinished"/>
+        <translation>Skreytnóta áðrenn</translation>
     </message>
     <message>
         <source>Invalid note</source>
-        <translation type="unfinished"/>
+        <translation>Ógildigur nóti</translation>
     </message>
     <message>
         <source>Note</source>
@@ -7287,7 +7533,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Voice: %1</source>
-        <translation type="unfinished"/>
+        <translation>Rødd: %1</translation>
     </message>
     <message>
         <source>Acciaccatura</source>
@@ -7295,56 +7541,56 @@ please choose a different name:</source>
     </message>
     <message>
         <source>%1 Start of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 byrjan av %2</translation>
     </message>
     <message>
         <source>%1 End of %2</source>
-        <translation type="unfinished"/>
+        <translation>%1 Endi av %2</translation>
     </message>
     <message>
         <source>%1; Pitch: %2; Duration: %3%4</source>
-        <translation type="unfinished"/>
+        <translation>%1; Tóni: %2; Tíðarbil: %3%4</translation>
     </message>
     <message>
         <source>Beat Slash</source>
-        <translation type="unfinished"/>
+        <translation>Slag strika</translation>
     </message>
     <message>
         <source>Rhythm Slash</source>
-        <translation type="unfinished"/>
+        <translation>Rútmu strika</translation>
     </message>
 </context>
 <context>
     <name>Ms::OmrPanel</name>
     <message>
         <source>OMR Panel</source>
-        <translation type="unfinished"/>
+        <translation>OMR Panel</translation>
     </message>
 </context>
 <context>
     <name>Ms::Palette</name>
     <message>
         <source>Clear</source>
-        <translation>Clear</translation>
+        <translation>Rudda</translation>
     </message>
     <message>
         <source>Properties...</source>
-        <translation>Properties…</translation>
+        <translation>Eginleikar...</translation>
     </message>
     <message>
         <source>More Elements...</source>
-        <translation type="unfinished"/>
+        <translation>Fleiri element...</translation>
     </message>
 </context>
 <context>
     <name>Ms::PaletteBox</name>
     <message>
         <source>Palettes</source>
-        <translation>Palettes</translation>
+        <translation>Palettir</translation>
     </message>
     <message>
         <source>Select workspace</source>
-        <translation type="unfinished"/>
+        <translation>Vel arbeiðsrúm</translation>
     </message>
     <message>
         <source>+</source>
@@ -7352,363 +7598,373 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Add new workspace</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat nýtt arbeiðsrúm</translation>
     </message>
     <message>
         <source>new Palette</source>
-        <translation type="unfinished"/>
+        <translation>Nýggj palett</translation>
     </message>
     <message>
         <source>Single Palette</source>
-        <translation type="unfinished"/>
+        <translation>Stak- palett</translation>
     </message>
 </context>
 <context>
     <name>Ms::PaletteBoxButton</name>
     <message>
         <source>Palette Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Palett eginleikar...</translation>
     </message>
     <message>
         <source>Insert New Palette...</source>
-        <translation type="unfinished"/>
+        <translation>Set inn nýggja palett...</translation>
     </message>
     <message>
         <source>Move Palette Up</source>
-        <translation>Move Palette Up</translation>
+        <translation>Flyt palett upp</translation>
     </message>
     <message>
         <source>Move Palette Down</source>
-        <translation>Move Palette Down</translation>
+        <translation>Flyt palett niður</translation>
     </message>
     <message>
         <source>Enable Editing</source>
-        <translation>Enable Editing</translation>
+        <translation>Gilda broyting</translation>
     </message>
     <message>
         <source>Save Palette</source>
-        <translation type="unfinished"/>
+        <translation>Goym palett</translation>
     </message>
     <message>
         <source>Load Palette</source>
-        <translation type="unfinished"/>
+        <translation>Tak fram palett</translation>
     </message>
     <message>
         <source>Delete Palette</source>
-        <translation>Delete Palette</translation>
+        <translation>Strika palett</translation>
     </message>
 </context>
 <context>
     <name>Ms::PathListDialog</name>
     <message>
         <source>Choose a directory</source>
-        <translation type="unfinished"/>
+        <translation>Vel eina filuskrá</translation>
     </message>
 </context>
 <context>
     <name>Ms::PianoTools</name>
     <message>
         <source>Piano Keyboard</source>
-        <translation type="unfinished"/>
+        <translation>Piano Knappaborð</translation>
     </message>
 </context>
 <context>
     <name>Ms::PluginCreator</name>
     <message>
         <source>File Operations</source>
-        <translation>File Operations</translation>
+        <translation>Fílu atgerðir</translation>
     </message>
     <message>
         <source>Edit Operations</source>
-        <translation type="unfinished"/>
+        <translation>Broyt atgerðir</translation>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>untitled</source>
-        <translation type="unfinished"/>
+        <translation>ónevnd</translation>
     </message>
     <message>
         <source>Manual</source>
-        <translation type="unfinished"/>
+        <translation>Handbók</translation>
     </message>
     <message>
         <source>MuseScore Plugin Creator</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Plugin stovnari</translation>
     </message>
     <message>
         <source>Plugin "%1" has changes.
 Save before closing?</source>
-        <translation type="unfinished"/>
+        <translation>Plugin "%1" er broytt.
+Goym áðrenn stong?</translation>
     </message>
     <message>
         <source>MuseScore: Save Plugin</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Goym plugin</translation>
     </message>
     <message>
         <source>Cannot determine file type</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki gera av fílu slag</translation>
     </message>
 </context>
 <context>
     <name>Ms::PreferenceDialog</name>
     <message>
         <source>The language will be changed once you restart MuseScore.</source>
-        <translation type="unfinished"/>
+        <translation>Málið verður broytt tá tú startar MuseScore av nýggju.</translation>
     </message>
     <message>
         <source>Choose Notepaper</source>
-        <translation>Choose Notepaper</translation>
+        <translation>Vel nótaark</translation>
     </message>
     <message>
         <source>Choose Background Wallpaper</source>
-        <translation>Choose Background Wallpaper</translation>
+        <translation>Vel bakgrund tapet</translation>
     </message>
     <message>
         <source>Choose Default Style</source>
-        <translation type="unfinished"/>
+        <translation>Vel forsett snið</translation>
     </message>
     <message>
         <source>Choose Default Style for Parts</source>
-        <translation type="unfinished"/>
+        <translation>Vel forsett snið fyri partar</translation>
     </message>
     <message>
         <source>Choose Instrument List</source>
-        <translation>Choose Instrument List</translation>
+        <translation>Vel ljóðføris lista</translation>
     </message>
     <message>
         <source>Instrument List (*.xml)</source>
-        <translation>Instrument List (*.xml)</translation>
+        <translation>Ljóðførislisti (*.xml)</translation>
     </message>
     <message>
         <source>Choose Starting Score</source>
-        <translation>Choose Starting Score</translation>
+        <translation>Vel byrjunar nótapappír</translation>
     </message>
     <message>
         <source>MuseScore Shortcuts</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Sniðvegir</translation>
     </message>
     <message>
         <source>Print Shortcuts</source>
-        <translation type="unfinished"/>
+        <translation>Prenta Sniðvegir</translation>
     </message>
     <message>
         <source>Choose Default Style for Imports</source>
-        <translation type="unfinished"/>
+        <translation>Vel forsett snið fyri innflyting</translation>
     </message>
     <message>
         <source>Choose Score Folder</source>
-        <translation type="unfinished"/>
+        <translation>Vel nótablað faldara</translation>
     </message>
     <message>
         <source>Choose Style Folder</source>
-        <translation type="unfinished"/>
+        <translation>Vel snið faldara</translation>
     </message>
     <message>
         <source>Choose Template Folder</source>
-        <translation type="unfinished"/>
+        <translation>Vel skapilón faldara</translation>
     </message>
     <message>
         <source>Choose Plugin Folder</source>
-        <translation type="unfinished"/>
+        <translation>Vel plugin faldara</translation>
     </message>
     <message>
         <source>Choose Image Folder</source>
-        <translation type="unfinished"/>
+        <translation>Vel mynd faldara</translation>
     </message>
     <message>
         <source>Action: %1; Shortcut: %2</source>
-        <translation type="unfinished"/>
+        <translation>Gerð: %1; Sniðvegur: %2</translation>
     </message>
     <message>
         <source>No shortcut defined</source>
-        <translation type="unfinished"/>
+        <translation>Eingin sniðvegur ásettur</translation>
     </message>
     <message>
         <source>MuseScore Files (*.mscz *.mscx);;All (*)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Fílir (*.mscz *.mscx);;All (*)</translation>
     </message>
     <message>
         <source>SoundFont Folders</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðfuntar faldarar</translation>
     </message>
 </context>
 <context>
     <name>Ms::ResourceManager</name>
     <message>
         <source>Languages</source>
-        <translation type="unfinished"/>
+        <translation>Mál</translation>
     </message>
     <message>
         <source>%1 KB</source>
-        <translation type="unfinished"/>
+        <translation>%1 KB</translation>
     </message>
     <message>
         <source>Update</source>
-        <translation>Update</translation>
+        <translation>Dagfør</translation>
     </message>
     <message>
         <source>No update</source>
-        <translation type="unfinished"/>
+        <translation>Eingin dagføring</translation>
     </message>
     <message>
         <source>Updating</source>
-        <translation type="unfinished"/>
+        <translation>Dagførir</translation>
     </message>
     <message>
         <source>Failed, try again</source>
-        <translation type="unfinished"/>
+        <translation>Miseydnað, royn aftur</translation>
     </message>
     <message>
         <source>Updated</source>
-        <translation type="unfinished"/>
+        <translation>Dagført</translation>
     </message>
 </context>
 <context>
     <name>Ms::Rest</name>
     <message>
         <source>Voice: %1</source>
-        <translation type="unfinished"/>
+        <translation>Rødd: %1</translation>
     </message>
     <message>
         <source>%1; Duration: %2; %3</source>
-        <translation type="unfinished"/>
+        <translation>%1; Tíðarbil: %2; %3</translation>
     </message>
 </context>
 <context>
     <name>Ms::Score</name>
     <message>
         <source>The style file is not compatible with this version of MuseScore.</source>
-        <translation type="unfinished"/>
+        <translation>Snið fílan kann ikki sameinast við hesi útgávu av MuseScore.</translation>
     </message>
     <message>
         <source>The following file is locked: 
 %1 
 
 Try saving to a different location.</source>
-        <translation>The following file is locked:
+        <translation>Nevnda fíla er stongd:
 %1
-Try saving to a different location.</translation>
+Royn at goyma á øðrum staði.</translation>
     </message>
     <message>
         <source>Open Temp File
 %1
 failed: %2</source>
-        <translation type="unfinished"/>
+        <translation>Opna Temp Fílu
+%1
+miseydnað: %2</translation>
     </message>
     <message>
         <source>MuseScore: Save File failed: %1</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Goym fílu miseydnað: %1</translation>
     </message>
     <message>
         <source>Renaming temp. file <%1> to <%2> failed:
 %3</source>
-        <translation type="unfinished"/>
+        <translation>Umdoypur temp. filu <%1> til <%2> miseydnað:
+%3</translation>
     </message>
     <message>
         <source>Open File
 %1
 failed: </source>
-        <translation type="unfinished"/>
+        <translation>Opna fílu
+%1
+villa:</translation>
     </message>
     <message>
         <source>Open File
 %1
 failed: %2</source>
-        <translation type="unfinished"/>
+        <translation>Opna fílu
+%1
+miseydnað: %2</translation>
     </message>
     <message>
         <source>Open Style File
 %1
 failed: %2</source>
-        <translation type="unfinished"/>
+        <translation>Opna snið fílu
+%1
+miseydnað: %2</translation>
     </message>
     <message>
         <source>Write Style failed: %1</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
+        <translation>Skrivað snið miseydnað: %1</translation>
     </message>
     <message>
         <source>No selection</source>
-        <translation type="unfinished"/>
+        <translation>Einki úrval</translation>
     </message>
     <message>
         <source>Measure %1 Staff %2 incomplete. Expected: %3; Found: %4</source>
-        <translation type="unfinished"/>
+        <translation>Takt %1 Stavur %2 óliðugur. Væntað: %3, Funnin: %4</translation>
     </message>
     <message>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
-        <translation type="unfinished"/>
+        <translation>Takt %1, stavur %2, rødd %3 ov long. Væntað: %4; Funnin: %5</translation>
+    </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>XML lesivilla við linju %1 teigur %2: %3</translation>
     </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
     <message>
         <source>No selection</source>
-        <translation type="unfinished"/>
+        <translation>Einki úrval</translation>
     </message>
     <message>
         <source>Beat: %1</source>
-        <translation type="unfinished"/>
+        <translation>Slag: %1</translation>
     </message>
     <message>
         <source>Range Selection</source>
-        <translation type="unfinished"/>
+        <translation>Spenni úrval</translation>
     </message>
     <message>
         <source>List Selection</source>
-        <translation type="unfinished"/>
+        <translation>Lista úrval</translation>
     </message>
     <message>
         <source>Measure: %1</source>
-        <translation type="unfinished"/>
+        <translation>Takt: %1</translation>
     </message>
     <message>
         <source>Start Measure: %1; Start Beat: %2</source>
-        <translation type="unfinished"/>
+        <translation>Byrja takt: %1; Byrja slag: %2</translation>
     </message>
     <message>
         <source>End Measure: %1; End Beat: %2</source>
-        <translation type="unfinished"/>
+        <translation>Síðsta takt: %1; Síðsta slag: %2</translation>
     </message>
     <message>
         <source>Staff %1</source>
-        <translation>Stave %1</translation>
+        <translation>Stavur %1</translation>
     </message>
 </context>
 <context>
     <name>Ms::ScoreBrowser</name>
     <message>
         <source>Choose Instruments</source>
-        <translation type="unfinished"/>
+        <translation>Vel ljóðføri</translation>
     </message>
     <message>
         <source>Create New Score</source>
-        <translation>Create New Score</translation>
+        <translation>Stovna nýtt nótablað</translation>
     </message>
     <message>
         <source>Custom Templates</source>
-        <translation type="unfinished"/>
+        <translation>Sergjørdar skapilónir</translation>
     </message>
     <message>
         <source>Getting Started</source>
-        <translation type="unfinished"/>
+        <translation>At byrja</translation>
     </message>
 </context>
 <context>
     <name>Ms::ScoreView</name>
     <message>
         <source>Set Standard Size...</source>
-        <translation type="unfinished"/>
+        <translation>Vil normala stødd...</translation>
     </message>
     <message>
         <source>MuseScore: Set Output Resolution</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Vel úttaks loysni</translation>
     </message>
     <message>
         <source>PNG Bitmap Graphic (*.png)</source>
@@ -7716,7 +7972,7 @@ failed: %2</source>
     </message>
     <message>
         <source>PDF File (*.pdf)</source>
-        <translation>PDF File (*.pdf)</translation>
+        <translation>PDF Fíla (*.pdf)</translation>
     </message>
     <message>
         <source>Scalable Vector Graphic (*.svg)</source>
@@ -7724,375 +7980,387 @@ failed: %2</source>
     </message>
     <message>
         <source>MuseScore: Save As</source>
-        <translation>MuseScore: Save As</translation>
+        <translation>MuseScore: Goym sum</translation>
     </message>
     <message>
         <source>Layer</source>
-        <translation type="unfinished"/>
+        <translation>Lag</translation>
     </message>
     <message>
         <source>Text Properties...</source>
-        <translation>Text Properties…</translation>
+        <translation>Tekst eginleikar…</translation>
     </message>
     <message>
         <source>Articulation Properties...</source>
-        <translation>Framsagnar eginleikar</translation>
+        <translation>Framburður eginleikar</translation>
     </message>
     <message>
         <source>Bend Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Bendingar eginleikar...</translation>
     </message>
     <message>
         <source>Add</source>
-        <translation>Add</translation>
+        <translation>Skoyt uppí</translation>
     </message>
     <message>
         <source>Volta Properties...</source>
-        <translation>Volta Properties…</translation>
+        <translation>Volta eginleikar…</translation>
     </message>
     <message>
         <source>Time Signature Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Takt slag eginleikar</translation>
     </message>
     <message>
         <source>Line Properties...</source>
-        <translation>Line Properties…</translation>
+        <translation>Striku eginleikar…</translation>
     </message>
     <message>
         <source>Staff Text Properties...</source>
-        <translation>Stave Text Properties...</translation>
+        <translation>Stav tekstur eginleikar...</translation>
     </message>
     <message>
         <source>Change Instrument Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Broyt ljóðføris eginleikar</translation>
     </message>
     <message>
         <source>Staff</source>
-        <translation>Stave</translation>
+        <translation>Stavur</translation>
     </message>
     <message>
         <source>Staff Properties...</source>
-        <translation>Stave Properties...</translation>
+        <translation>Stav eginleikar...</translation>
     </message>
     <message>
         <source>Measure</source>
-        <translation>Measure</translation>
+        <translation>Takt</translation>
     </message>
     <message>
         <source>Measure Properties...</source>
-        <translation>Measure Properties…</translation>
+        <translation>Takt eginleikar…</translation>
     </message>
     <message>
         <source>Style...</source>
-        <translation type="unfinished"/>
+        <translation>Snið...</translation>
     </message>
     <message>
         <source>Chord Articulation...</source>
-        <translation type="unfinished"/>
+        <translation>Akkord framburður...</translation>
     </message>
     <message>
         <source>Section Break Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Sektión reglubrot eginleikar...</translation>
     </message>
     <message>
         <source>Change Instrument...</source>
-        <translation>Change Instrument…</translation>
+        <translation>Broyt ljóðføri…</translation>
     </message>
     <message>
         <source>Glissando Properties...</source>
-        <translation>Glissando Properties…</translation>
+        <translation>Glissando eginleikar…</translation>
     </message>
     <message>
         <source>Select</source>
-        <translation>Select</translation>
+        <translation>Vel</translation>
     </message>
     <message>
         <source>More...</source>
-        <translation>More…</translation>
+        <translation>Meira…</translation>
     </message>
     <message>
         <source>Help</source>
-        <translation type="unfinished"/>
+        <translation>Hjálp</translation>
     </message>
     <message>
         <source>Debugger</source>
-        <translation type="unfinished"/>
+        <translation>Avlúsari</translation>
     </message>
     <message>
         <source>Edit Drumset...</source>
-        <translation>Edit Drumset…</translation>
+        <translation>Rætta Trummusett…</translation>
     </message>
     <message>
         <source>Drumroll Editor...</source>
-        <translation>Drumroll Editor…</translation>
+        <translation>Trummurulla ritil…</translation>
     </message>
     <message>
         <source>Pianoroll Editor...</source>
-        <translation>Pianoroll Editor…</translation>
+        <translation>Klaverrulla ritil…</translation>
     </message>
     <message>
         <source>Split Staff...</source>
-        <translation>Split Stave...</translation>
+        <translation>Být sundur stav...</translation>
     </message>
     <message>
         <source>Object Debugger</source>
-        <translation type="unfinished"/>
+        <translation>Luta avlúsari</translation>
     </message>
     <message>
         <source>No staves found:
 please use the instruments dialog to
 first create some staves</source>
-        <translation type="unfinished"/>
+        <translation>Eingin stavur funnin:
+Vinarliga brúka ljóðføris vindeyga og
+stovna nakrar stavir</translation>
     </message>
     <message>
         <source>No measure selected:
 Please select a measure and try again</source>
-        <translation>No Measure selected: please select a measure and try again.</translation>
+        <translation>Eingin takt vald:
+Vinarliga vel takt og royn aftur</translation>
     </message>
     <message>
         <source>Fretboard Diagram Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Bandaborð diagramm eginleikar...</translation>
     </message>
     <message>
         <source>Set output resolution for PNG/SVG</source>
-        <translation type="unfinished"/>
+        <translation>Vel úttakst loysni fyri PNG/SVG</translation>
     </message>
     <message>
         <source>Tremolo Bar Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Tremolo takt eginleikar...</translation>
     </message>
     <message>
         <source>Text Style...</source>
-        <translation type="unfinished"/>
+        <translation>Tekst snið...</translation>
     </message>
     <message>
         <source>System Text Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Skipan tekstur eginleikar</translation>
     </message>
     <message>
         <source>Resolution (%1 DPI)...</source>
-        <translation type="unfinished"/>
+        <translation>Loysni (%1DPI)...</translation>
     </message>
     <message>
         <source>Hide Courtesy Time Signature</source>
-        <translation type="unfinished"/>
+        <translation>Goym hjálpi takt slag</translation>
     </message>
     <message>
         <source>Show Courtesy Time Signature</source>
-        <translation type="unfinished"/>
+        <translation>Vís hjálpi takt slag</translation>
     </message>
     <message>
         <source>Hide Courtesy Key Signature</source>
-        <translation type="unfinished"/>
+        <translation>Goym hjálpi ljómslagstekin</translation>
     </message>
     <message>
         <source>Show Courtesy Key Signature</source>
-        <translation type="unfinished"/>
+        <translation>Vís hjálpi ljómslagstekin</translation>
     </message>
     <message>
         <source>No chord/rest selected:
 Please select a chord/rest and try again</source>
-        <translation type="unfinished"/>
+        <translation>Eingin akkord/tøgn vald:
+Vinarliga vel akkord/tøgn og royn aftur</translation>
     </message>
     <message>
         <source>Cannot split measure here:
 Cannot split tuplet</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki kloyva takt her:
+Kann ikki kloyva nótabólk</translation>
     </message>
     <message>
         <source>No measures selected:
 Please select a range of measures to join and try again</source>
-        <translation type="unfinished"/>
+        <translation>Eingin takt vald:
+Vinarliga vel taktir at sambinda og royn aftur</translation>
     </message>
     <message>
         <source>Auto-resize to page</source>
-        <translation type="unfinished"/>
+        <translation>Sjálvv.-støddbroying til síðu</translation>
     </message>
     <message>
         <source>Hide Courtesy Clef</source>
-        <translation type="unfinished"/>
+        <translation>Goym hjálpilykil</translation>
     </message>
     <message>
         <source>Show Courtesy Clef</source>
-        <translation type="unfinished"/>
+        <translation>Vís hjálpilykil</translation>
     </message>
     <message>
         <source>Please select the complete tuplet/tremolo and retry the command</source>
-        <translation type="unfinished"/>
+        <translation>Vinarliga vel allan nótabólkin/tremolo og royn aftur</translation>
     </message>
     <message>
         <source>Image Capture</source>
-        <translation type="unfinished"/>
+        <translation>Taka mynd</translation>
     </message>
     <message>
         <source>Save As (Print Mode)...</source>
-        <translation type="unfinished"/>
+        <translation>Goym sum (prent støða)...</translation>
     </message>
     <message>
         <source>Save As (Screenshot Mode)...</source>
-        <translation type="unfinished"/>
+        <translation>Goym sum (Skíggjamynd støða)...</translation>
     </message>
     <message>
         <source>Cannot determine file type</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki gera av fílu slag</translation>
     </message>
     <message>
         <source>No destination to paste</source>
-        <translation type="unfinished"/>
+        <translation>Eingin leið at seta inn</translation>
     </message>
     <message>
         <source>Cannot paste into tuplet</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki seta inn í nótabólk</translation>
     </message>
     <message>
         <source>Tuplet cannot cross barlines</source>
-        <translation type="unfinished"/>
+        <translation>Nótabólkur ikki yvirum taktstrikur</translation>
     </message>
     <message>
         <source>Transparent background</source>
-        <translation type="unfinished"/>
+        <translation>Glæru bakgrund</translation>
+    </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Kann ikki kloyva takt her:
+Fyrsta slag í taktini</translation>
     </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
     <message>
         <source>Search Box</source>
-        <translation type="unfinished"/>
+        <translation>Leitikassi</translation>
     </message>
     <message>
         <source>Type to search. Press Enter to return to score.</source>
-        <translation type="unfinished"/>
+        <translation>Skriva fyri at leita. Trýst enter fyri nótablað.</translation>
     </message>
 </context>
 <context>
     <name>Ms::Segment</name>
     <message>
         <source>Start of </source>
-        <translation type="unfinished"/>
+        <translation>Byrjan av</translation>
     </message>
     <message>
         <source>End of </source>
-        <translation type="unfinished"/>
+        <translation>Endi av</translation>
     </message>
     <message>
         <source>Annotations:</source>
-        <translation type="unfinished"/>
+        <translation>Viðmerkingar:</translation>
     </message>
 </context>
 <context>
     <name>Ms::SelectionListWidget</name>
     <message>
         <source>Selection filter</source>
-        <translation type="unfinished"/>
+        <translation>Úrvalsfiltur</translation>
     </message>
     <message>
         <source>Use Tab and Backtab to move through the check boxes</source>
-        <translation type="unfinished"/>
+        <translation>Brúka Tab og Backtab fyri at flyta millum avkrossingarteigar</translation>
     </message>
 </context>
 <context>
     <name>Ms::SelectionWindow</name>
     <message>
         <source>Selection</source>
-        <translation>Selection</translation>
+        <translation>Úrval</translation>
     </message>
 </context>
 <context>
     <name>Ms::ShortcutCaptureDialog</name>
     <message>
         <source>Shortcut conflicts with </source>
-        <translation>Shortcut conflicts with </translation>
+        <translation>Sniðvegur er í stríð við</translation>
     </message>
     <message>
         <source>Shortcut conflicts with</source>
-        <translation type="unfinished"/>
+        <translation>Sniðvegur er í stríð við</translation>
     </message>
     <message>
         <source>New shortcut</source>
-        <translation type="unfinished"/>
+        <translation>Nýggjur sniðvegur</translation>
     </message>
 </context>
 <context>
     <name>Ms::StaffTextProperties</name>
     <message>
         <source>normal</source>
-        <translation>normal</translation>
+        <translation>Vanligt</translation>
     </message>
     <message>
         <source>MuseScore: System Text Properties</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Skipan tekstur eginleikar</translation>
     </message>
     <message>
         <source>MuseScore: Staff Text Properties</source>
-        <translation>MuseScore: Stave Text Properties</translation>
+        <translation>MuseScore: Stav tekstur eginleikar</translation>
     </message>
 </context>
 <context>
     <name>Ms::StartDialog</name>
     <message>
         <source>MuseScore Startup Dialog</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Byrjunar vindeyga</translation>
     </message>
 </context>
 <context>
     <name>Ms::SymbolDialog</name>
     <message>
         <source>MuseScore: Symbols</source>
-        <translation>MuseScore: Symbols</translation>
+        <translation>MuseScore: Symbolir</translation>
     </message>
 </context>
 <context>
     <name>Ms::TempoText</name>
     <message>
         <source>note = %1</source>
-        <translation type="unfinished"/>
+        <translation>nóti = %1</translation>
     </message>
     <message>
         <source>Dotted %1</source>
-        <translation type="unfinished"/>
+        <translation>Prikkaður %1</translation>
     </message>
     <message>
         <source>Double dotted %1</source>
-        <translation type="unfinished"/>
+        <translation>Dupult prikkaður %1</translation>
     </message>
     <message>
         <source>Triple dotted %1</source>
-        <translation type="unfinished"/>
+        <translation>Trí - prikkaður %1</translation>
     </message>
 </context>
 <context>
     <name>Ms::TextEditor</name>
     <message>
         <source>Bold</source>
-        <translation type="unfinished"/>
+        <translation>Feitir</translation>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Skákskriva</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Strika undir</translation>
     </message>
     <message>
         <source>Align left</source>
-        <translation>align left</translation>
+        <translation>fylking vinstra</translation>
     </message>
     <message>
         <source>Align center</source>
-        <translation type="unfinished"/>
+        <translation>Stilla í miðju</translation>
     </message>
     <message>
         <source>Align right</source>
-        <translation type="unfinished"/>
+        <translation>Stilla til høgru</translation>
     </message>
     <message>
         <source>Subscript</source>
-        <translation type="unfinished"/>
+        <translation>Lágskrift</translation>
     </message>
     <message>
         <source>Superscript</source>
-        <translation type="unfinished"/>
+        <translation>Háskrift</translation>
     </message>
 </context>
 <context>
@@ -8112,72 +8380,73 @@ Please select a range of measures to join and try again</source>
     <name>Ms::TextProperties</name>
     <message>
         <source>MuseScore: Text Properties</source>
-        <translation>MuseScore: Text Properties</translation>
+        <translation>MuseScore: Tekst eginleikar</translation>
     </message>
 </context>
 <context>
     <name>Ms::TextStyleDialog</name>
     <message>
         <source>MuseScore: Read Style Name</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Les snið navn</translation>
     </message>
     <message>
         <source>'%1' does already exist,
 please choose a different name:</source>
-        <translation type="unfinished"/>
+        <translation>'%1' er longu til,
+vinarliga vel annað navn:</translation>
     </message>
     <message>
         <source>Apply to all Parts</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat øllum pørtum</translation>
     </message>
     <message>
         <source>Text style name:</source>
-        <translation type="unfinished"/>
+        <translation>Tekst snið navn:</translation>
     </message>
 </context>
 <context>
     <name>Ms::TextTools</name>
     <message>
         <source>Text Tools</source>
-        <translation>Text Tools</translation>
+        <translation>Tekst tól</translation>
     </message>
     <message>
         <source>Text Edit</source>
-        <translation>Text Edit</translation>
+        <translation>Broyt tekst</translation>
     </message>
     <message>
         <source>Bold</source>
-        <translation type="unfinished"/>
+        <translation>Feitir</translation>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Skákskriva</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Strika undir</translation>
     </message>
     <message>
         <source>Subscript</source>
-        <translation type="unfinished"/>
+        <translation>Lágskrift</translation>
     </message>
     <message>
         <source>Superscript</source>
-        <translation type="unfinished"/>
+        <translation>Háskrift</translation>
     </message>
 </context>
 <context>
     <name>Ms::TimeDialog</name>
     <message>
         <source>MuseScore: Time Signatures</source>
-        <translation>MuseScore: Time Signatures</translation>
+        <translation>MuseScore: takt slag</translation>
     </message>
 </context>
 <context>
     <name>Ms::TimeSig</name>
     <message>
         <source>Common time</source>
-        <translation type="unfinished"/>
+        <translation>Vanlig takt</translation>
     </message>
     <message>
         <source>Cut time</source>
@@ -8185,205 +8454,205 @@ please choose a different name:</source>
     </message>
     <message>
         <source>%1/%2 time</source>
-        <translation type="unfinished"/>
+        <translation>%1%2 tíð</translation>
     </message>
 </context>
 <context>
     <name>Ms::UpdateChecker</name>
     <message>
         <source>An update for MuseScore is available: <a href="%1">MuseScore %2 r.%3</a></source>
-        <translation>An update for MuseScore is available: <a href="%1">MuseScore %2 r.%3</a></translation>
+        <translation>Eitt update av MuseScore er tøkt: <a href="%1">MuseScore %2 r.%3</a></translation>
     </message>
     <message>
         <source>Update Available</source>
-        <translation>Update Available</translation>
+        <translation>Update tøkt</translation>
     </message>
     <message>
         <source>No Update Available</source>
-        <translation>No Update Available</translation>
+        <translation>Einki Update tøkt</translation>
     </message>
 </context>
 <context>
     <name>Ms::UploadScoreDialog</name>
     <message>
         <source>All Rights reserved</source>
-        <translation type="unfinished"/>
+        <translation>Øll rættindi umbiðin</translation>
     </message>
     <message>
         <source>Creative Commons Attribution</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Attribution</translation>
     </message>
     <message>
         <source>Creative Commons Attribution Share Alike</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Attribution Share Alike</translation>
     </message>
     <message>
         <source>Creative Commons Attribution No Derivative Works</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Attribution No Derivative Works</translation>
     </message>
     <message>
         <source>Creative Commons Attribution Noncommercial</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Attribution Noncommercial</translation>
     </message>
     <message>
         <source>Creative Commons Attribution Noncommercial Share Alike</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Attribution Noncommercial Share Alike</translation>
     </message>
     <message>
         <source>Creative Commons Attribution Noncommercial Non Derivate Works</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Attribution Noncommercial Non Derivate Works</translation>
     </message>
     <message>
         <source>Public Domain</source>
-        <translation type="unfinished"/>
+        <translation>Alment Øki</translation>
     </message>
     <message>
         <source>Creative Commons Zero</source>
-        <translation type="unfinished"/>
+        <translation>Creative Commons Zero</translation>
     </message>
     <message>
         <source>Missing title</source>
-        <translation type="unfinished"/>
+        <translation>Einki heiti</translation>
     </message>
     <message>
         <source>Please provide a title</source>
-        <translation type="unfinished"/>
+        <translation>Vinarliga áset heiti</translation>
     </message>
     <message>
         <source>Success</source>
-        <translation type="unfinished"/>
+        <translation>Gott úrslit</translation>
     </message>
     <message>
         <source>Finished! <a href="%1">Go to my score</a>.</source>
-        <translation type="unfinished"/>
+        <translation>Liðugt! <a href="%1">Far til mítt nótablað</a>.</translation>
     </message>
     <message>
         <source>Error</source>
-        <translation type="unfinished"/>
+        <translation>Villa</translation>
     </message>
     <message>
         <source><a href="%1">What does this mean?</a></source>
-        <translation type="unfinished"/>
+        <translation><a href="%1">Hvat merkir hetta?</a></translation>
     </message>
     <message>
         <source>Respect the <a href="%1">community guidelines</a>. Only make your scores accessible to anyone with permission from the right holders.</source>
-        <translation type="unfinished"/>
+        <translation>Virða <a href="%1">felagskaps leiðreglur</a>. Gev bert einum og hvørjum við røttu loyvunum atgongd til tíni nótabløð.</translation>
     </message>
     <message>
         <source>Use a comma to separate the tags</source>
-        <translation type="unfinished"/>
+        <translation>Brúka komma fyri at skilja millum merkir</translation>
     </message>
     <message>
         <source>[<a href="%1">link</a>]</source>
-        <translation type="unfinished"/>
+        <translation>[<a href="%1">leinkja</a>]</translation>
     </message>
 </context>
 <context>
     <name>Ms::Workspace</name>
     <message>
         <source>Advanced</source>
-        <translation type="unfinished"/>
+        <translation>Framkomin</translation>
     </message>
     <message>
         <source>Basic</source>
-        <translation type="unfinished"/>
+        <translation>Einfaldur</translation>
     </message>
 </context>
 <context>
     <name>Multi value editor</name>
     <message>
         <source>All</source>
-        <translation type="unfinished"/>
+        <translation>Øll</translation>
     </message>
     <message>
         <source>OK</source>
-        <translation>TAMAM</translation>
+        <translation>OK</translation>
     </message>
 </context>
 <context>
     <name>MuseScore</name>
     <message>
         <source>G major, E minor</source>
-        <translation>G major, E minor</translation>
+        <translation>G dur, E moll</translation>
     </message>
     <message>
         <source>D major, B minor</source>
-        <translation>D major, B minor</translation>
+        <translation>D dur, B moll</translation>
     </message>
     <message>
         <source>C major, A minor</source>
-        <translation>C major, A minor</translation>
+        <translation>C dur, A moll</translation>
     </message>
     <message>
         <source>F major, D minor</source>
-        <translation type="unfinished"/>
+        <translation>F dur, D moll</translation>
     </message>
     <message>
         <source>Cb major, Ab minor</source>
-        <translation>Cb major, Ab minor</translation>
+        <translation>Cb dur, Ab moll</translation>
     </message>
     <message>
         <source>Gb major, Eb minor</source>
-        <translation>Gb major, Eb minor</translation>
+        <translation>Gb dur, Eb moll</translation>
     </message>
     <message>
         <source>A major, F# minor</source>
-        <translation>A major, F# minor</translation>
+        <translation>A dur, F# moll</translation>
     </message>
     <message>
         <source>Db major, Bb minor</source>
-        <translation>Db major, Bb minor</translation>
+        <translation>Db dur, Bb moll</translation>
     </message>
     <message>
         <source>E major, C# minor</source>
-        <translation>E major, C# minor</translation>
+        <translation>E dur, C# moll</translation>
     </message>
     <message>
         <source>Ab major, F minor</source>
-        <translation>Ab major, F minor</translation>
+        <translation>Ab dur, F moll</translation>
     </message>
     <message>
         <source>B major, G# minor</source>
-        <translation>B major, G# minor</translation>
+        <translation>B dur, G# moll</translation>
     </message>
     <message>
         <source>Eb major, C minor</source>
-        <translation>Eb major, C minor</translation>
+        <translation>Eb dur, C moll</translation>
     </message>
     <message>
         <source>F# major, D# minor</source>
-        <translation>F# major, D# minor</translation>
+        <translation>F# dur, D# moll</translation>
     </message>
     <message>
         <source>Bb major, G minor</source>
-        <translation>Bb major, G minor</translation>
+        <translation>Bb dur, G moll</translation>
     </message>
     <message>
         <source>C# major, A# minor</source>
-        <translation>C# major, A# minor</translation>
+        <translation>C# dur, A# moll</translation>
     </message>
     <message>
         <source>Open/Atonal</source>
-        <translation type="unfinished"/>
+        <translation>Opin/Atonalur</translation>
     </message>
 </context>
 <context>
     <name>NewWizard</name>
     <message>
         <source>Title:</source>
-        <translation>Title:</translation>
+        <translation>Heiti:</translation>
     </message>
     <message>
         <source>Subtitle:</source>
-        <translation>Subtitle:</translation>
+        <translation>Undirheiti:</translation>
     </message>
     <message>
         <source>Composer:</source>
-        <translation>Composer:</translation>
+        <translation>Tónaskald:</translation>
     </message>
     <message>
         <source>Lyricist:</source>
-        <translation>Lyricist:</translation>
+        <translation>Yrkjari:</translation>
     </message>
     <message>
         <source>Copyright:</source>
@@ -8391,35 +8660,35 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Title</source>
-        <translation>Title</translation>
+        <translation>Heiti</translation>
     </message>
     <message>
         <source>Insert title here</source>
-        <translation type="unfinished"/>
+        <translation>Set inn heiti her</translation>
     </message>
     <message>
         <source>Subtitle</source>
-        <translation>Subtitle</translation>
+        <translation>Undirheiti</translation>
     </message>
     <message>
         <source>Insert subtitle here</source>
-        <translation type="unfinished"/>
+        <translation>Set inn undirheiti her</translation>
     </message>
     <message>
         <source>Composer</source>
-        <translation>Composer</translation>
+        <translation>Tónaskald</translation>
     </message>
     <message>
         <source>Insert composer's name here</source>
-        <translation type="unfinished"/>
+        <translation>Set inn navn tónaskaldsins her</translation>
     </message>
     <message>
         <source>Lyricist</source>
-        <translation type="unfinished"/>
+        <translation>Songtekstarithøvundur</translation>
     </message>
     <message>
         <source>Insert lyricist's name here</source>
-        <translation type="unfinished"/>
+        <translation>Set inn navn rithøvundans her</translation>
     </message>
     <message>
         <source>Copyright</source>
@@ -8427,30 +8696,30 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Insert copyright here</source>
-        <translation type="unfinished"/>
+        <translation>Set inn útgávurætt her</translation>
     </message>
 </context>
 <context>
     <name>NoteGroups</name>
     <message>
         <source>Note Groups</source>
-        <translation type="unfinished"/>
+        <translation>Nóta bólkar</translation>
     </message>
     <message>
         <source>1/16</source>
-        <translation>semiquaver</translation>
+        <translation>16prt nóti</translation>
     </message>
     <message>
         <source>1/32</source>
-        <translation>demisemiquaver</translation>
+        <translation>32prt nóti</translation>
     </message>
     <message>
         <source>1/8</source>
-        <translation>quaver</translation>
+        <translation>8prt nót</translation>
     </message>
     <message>
         <source>Reset</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla</translation>
     </message>
 </context>
 <context>
@@ -8461,58 +8730,58 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Process</source>
-        <translation type="unfinished"/>
+        <translation>Gongd</translation>
     </message>
     <message>
         <source>Mark staves</source>
-        <translation type="unfinished"/>
+        <translation>Merk stavir</translation>
     </message>
     <message>
         <source>Mark slices</source>
-        <translation type="unfinished"/>
+        <translation>Merk stykkir</translation>
     </message>
     <message>
         <source>Mark barlines</source>
-        <translation type="unfinished"/>
+        <translation>Marka taktstrikur</translation>
     </message>
     <message>
         <source>Show lines</source>
-        <translation type="unfinished"/>
+        <translation>Vís taktstrikur</translation>
     </message>
     <message>
         <source>Distance between two lines on a standard 5-line staff</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða millum tvær linjur á normalum 5-linju stavi</translation>
     </message>
     <message>
         <source>Staff space:</source>
-        <translation type="unfinished"/>
+        <translation>Stav rúm:</translation>
     </message>
 </context>
 <context>
     <name>PageSettingsBase</name>
     <message>
         <source>MuseScore: Page Settings</source>
-        <translation>MuseScore: Page Settings</translation>
+        <translation>MuseScore: Síða stilling</translation>
     </message>
     <message>
         <source>Page Size</source>
-        <translation>Page Size</translation>
+        <translation>Síða stødd</translation>
     </message>
     <message>
         <source>Landscape</source>
-        <translation>Landscape</translation>
+        <translation>Landslag</translation>
     </message>
     <message>
         <source>Height:</source>
-        <translation>Height</translation>
+        <translation>Hædd:</translation>
     </message>
     <message>
         <source>Width:</source>
-        <translation>Width:</translation>
+        <translation>Vídd:</translation>
     </message>
     <message>
         <source>Scaling</source>
-        <translation>Scaling</translation>
+        <translation>Stigi</translation>
     </message>
     <message>
         <source>mm</source>
@@ -8524,23 +8793,23 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Printable Area</source>
-        <translation type="unfinished"/>
+        <translation>Øki at prenta</translation>
     </message>
     <message>
         <source>Odd Page Margins</source>
-        <translation>Odd Page Margins</translation>
+        <translation>Stak síðu breddi</translation>
     </message>
     <message>
         <source>Even Page Margins</source>
-        <translation>Even Page Margins</translation>
+        <translation>Maka síðu breddi</translation>
     </message>
     <message>
         <source>Preview</source>
-        <translation>Preview</translation>
+        <translation>Undansýning</translation>
     </message>
     <message>
         <source>Apply</source>
-        <translation>Apply</translation>
+        <translation>Brúka</translation>
     </message>
     <message>
         <source>OK</source>
@@ -8548,58 +8817,58 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Cancel</source>
-        <translation>Cancel</translation>
+        <translation>Strika</translation>
     </message>
     <message>
         <source>Two sided</source>
-        <translation>Two Sided</translation>
+        <translation>Tvísíða</translation>
     </message>
     <message>
         <source>First page number:</source>
-        <translation type="unfinished"/>
+        <translation>Fyrsta síðu tal:</translation>
     </message>
     <message>
         <source>Apply to all Parts</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat øllum pørtum</translation>
     </message>
     <message>
         <source>Distance between two lines on a standard 5-line staff</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða millum tvær linjur á normalum 5-linju stavi</translation>
     </message>
     <message>
         <source>Staff space:</source>
-        <translation type="unfinished"/>
+        <translation>Stav rúm:</translation>
     </message>
 </context>
 <context>
     <name>Palette</name>
     <message>
         <source>Beam Properties</source>
-        <translation>Beam Properties</translation>
+        <translation>Bjálka eginleikar</translation>
     </message>
     <message>
         <source>Dynamics</source>
-        <translation>Dynamics</translation>
+        <translation>Dynamikkur</translation>
     </message>
     <message>
         <source>Key Signatures</source>
-        <translation>Key Signatures</translation>
+        <translation>Ljómslagstekin</translation>
     </message>
     <message>
         <source>Accidentals</source>
-        <translation>Accidentals</translation>
+        <translation>Leys fortekin</translation>
     </message>
     <message>
         <source>Barlines</source>
-        <translation>Bar lines</translation>
+        <translation>Taktstrikur</translation>
     </message>
     <message>
         <source>Breaks && Spacers</source>
-        <translation type="unfinished"/>
+        <translation>Reglubrot && Millumrúm</translation>
     </message>
     <message>
         <source>Fingering</source>
-        <translation>Fingering</translation>
+        <translation>Fingrasetningur</translation>
     </message>
     <message>
         <source>Tremolo</source>
@@ -8607,27 +8876,27 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Note Heads</source>
-        <translation>Note Heads</translation>
+        <translation>Nótahøvd</translation>
     </message>
     <message>
         <source>Brackets</source>
-        <translation>Brackets</translation>
+        <translation>Klombur</translation>
     </message>
     <message>
         <source>Breaths && Pauses</source>
-        <translation type="unfinished"/>
+        <translation>Steðgur && Íhald</translation>
     </message>
     <message>
         <source>Clefs</source>
-        <translation>Clefs</translation>
+        <translation>Lyklar</translation>
     </message>
     <message>
         <source>Grace Notes</source>
-        <translation>Grace Notes</translation>
+        <translation>Skreyt nótar</translation>
     </message>
     <message>
         <source>Lines</source>
-        <translation>Lines</translation>
+        <translation>Strikur</translation>
     </message>
     <message>
         <source>Diminuendo</source>
@@ -8667,11 +8936,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>22ma</source>
-        <translation type="unfinished"/>
+        <translation>22ma</translation>
     </message>
     <message>
         <source>22mb</source>
-        <translation type="unfinished"/>
+        <translation>22mb</translation>
     </message>
     <message>
         <source>Pedal</source>
@@ -8679,11 +8948,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Text line</source>
-        <translation>Text line</translation>
+        <translation>Tekst strika</translation>
     </message>
     <message>
         <source>Line</source>
-        <translation>Line</translation>
+        <translation>Strika</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -8691,124 +8960,126 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Text</source>
-        <translation>Text</translation>
+        <translation>Tekstur</translation>
     </message>
     <message>
         <source>Time Signatures</source>
-        <translation>Time Signatures</translation>
+        <translation>Takt slag</translation>
     </message>
     <message>
         <source>Staff Changes</source>
-        <translation type="unfinished"/>
+        <translation>Stav broytingar</translation>
     </message>
     <message>
         <source>Arpeggios && Glissandi</source>
-        <translation type="unfinished"/>
+        <translation>Arpeggio && Glissandi</translation>
     </message>
     <message>
         <source>Bagpipe Embellishments</source>
-        <translation type="unfinished"/>
+        <translation>Sekkjapípu príði</translation>
     </message>
     <message>
         <source>Frames && Measures</source>
-        <translation type="unfinished"/>
+        <translation>Rammur && Taktir</translation>
     </message>
     <message>
         <source>Articulations && Ornaments</source>
-        <translation>Articulations && Ornaments</translation>
+        <translation>Framburður && Príði</translation>
     </message>
     <message>
         <source>Ambitus</source>
-        <translation type="unfinished"/>
+        <translation>Ambitus</translation>
     </message>
     <message>
         <source>MuseScore: Writing Palette File</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Skrivar palett fílu</translation>
     </message>
     <message>
         <source>Writing Palette File
 %1
 failed: </source>
-        <translation type="unfinished"/>
+        <translation>Skrivar Palett Fílu
+%1
+miseydnað: </translation>
     </message>
     <message>
         <source>common symbols</source>
-        <translation type="unfinished"/>
+        <translation>Felags symbol</translation>
     </message>
     <message>
         <source>all font symbols</source>
-        <translation type="unfinished"/>
+        <translation>Symbol allir funtar</translation>
     </message>
     <message>
         <source>Tick 1 span</source>
-        <translation type="unfinished"/>
+        <translation>Klikk 1 spenni</translation>
     </message>
     <message>
         <source>Tick 2 span</source>
-        <translation type="unfinished"/>
+        <translation>Klikk 2 spenni</translation>
     </message>
     <message>
         <source>Short 1 span</source>
-        <translation type="unfinished"/>
+        <translation>Stutt 1 spenni</translation>
     </message>
     <message>
         <source>Short 2 span</source>
-        <translation type="unfinished"/>
+        <translation>Stutt 2 spenni</translation>
     </message>
     <message>
         <source>Repeats && Jumps</source>
-        <translation type="unfinished"/>
+        <translation>Endurtøkur && lop</translation>
     </message>
     <message>
         <source>Normal barline</source>
-        <translation type="unfinished"/>
+        <translation>Vanlig taktstrika</translation>
     </message>
     <message>
         <source>Dashed barline</source>
-        <translation type="unfinished"/>
+        <translation>Strokin taktstrika</translation>
     </message>
     <message>
         <source>Dotted barline</source>
-        <translation type="unfinished"/>
+        <translation>Prikkut taktstrika</translation>
     </message>
     <message>
         <source>End bar barline</source>
-        <translation type="unfinished"/>
+        <translation>Síðsta takt taktstrika</translation>
     </message>
     <message>
         <source>Double barline</source>
-        <translation type="unfinished"/>
+        <translation>Dupul taktstrika</translation>
     </message>
     <message>
         <source>Start repeat</source>
-        <translation>Start Repeat</translation>
+        <translation>Byrja endurtøku</translation>
     </message>
     <message>
         <source>End repeat</source>
-        <translation>End Repeat</translation>
+        <translation>Enda endurtøku</translation>
     </message>
     <message>
         <source>End-start repeat</source>
-        <translation>End-Start Repeat</translation>
+        <translation>Enda-Byrja endurtøku</translation>
     </message>
     <message>
         <source>Fretboard Diagrams</source>
-        <translation type="unfinished"/>
+        <translation>Bandaborð diagramm</translation>
     </message>
 </context>
 <context>
     <name>PaletteCellProperties</name>
     <message>
         <source>Cell Properties</source>
-        <translation type="unfinished"/>
+        <translation>Puntur eginleikar</translation>
     </message>
     <message>
         <source>Palette Cell Properties</source>
-        <translation>Palette Cell Properties</translation>
+        <translation>Palett punt eginleikar</translation>
     </message>
     <message>
         <source>Name:</source>
-        <translation>Ad:</translation>
+        <translation>Navn:</translation>
     </message>
     <message>
         <source>sp</source>
@@ -8816,7 +9087,7 @@ failed: </source>
     </message>
     <message>
         <source>Content offset</source>
-        <translation type="unfinished"/>
+        <translation>Innihalds offsett</translation>
     </message>
     <message>
         <source>Y:</source>
@@ -8828,22 +9099,22 @@ failed: </source>
     </message>
     <message>
         <source>Draw staff</source>
-        <translation type="unfinished"/>
+        <translation>Tekna stav</translation>
     </message>
     <message>
         <source>Content scale:</source>
-        <translation type="unfinished"/>
+        <translation>Innihald stigi:</translation>
     </message>
 </context>
 <context>
     <name>PaletteProperties</name>
     <message>
         <source>MuseScore: Palette Properties</source>
-        <translation>MuseScore: Palette Properties</translation>
+        <translation>MuseScore: Palett eginleikar</translation>
     </message>
     <message>
         <source>Name:</source>
-        <translation>Name:</translation>
+        <translation>Navn:</translation>
     </message>
     <message>
         <source>sp</source>
@@ -8851,31 +9122,31 @@ failed: </source>
     </message>
     <message>
         <source>Scale:</source>
-        <translation>Scale:</translation>
+        <translation>Stigi:</translation>
     </message>
     <message>
         <source>Width:</source>
-        <translation>Width:</translation>
+        <translation>Vídd:</translation>
     </message>
     <message>
         <source>Height:</source>
-        <translation>Height</translation>
+        <translation>Hædd:</translation>
     </message>
     <message>
         <source>Cell size:</source>
-        <translation>Cell Size:</translation>
+        <translation>Punkt Stødd:</translation>
     </message>
     <message>
         <source>Element offset:</source>
-        <translation>Element Offset</translation>
+        <translation>Element offsett:</translation>
     </message>
     <message>
         <source>Show grid</source>
-        <translation>Show Grid</translation>
+        <translation>Vís grind</translation>
     </message>
     <message>
         <source>Show 'More Elements...'</source>
-        <translation type="unfinished"/>
+        <translation>Vís "Fleiri element..."</translation>
     </message>
 </context>
 <context>
@@ -8918,39 +9189,39 @@ failed: </source>
     </message>
     <message>
         <source>Drumset</source>
-        <translation>drumset</translation>
+        <translation>Trummusett</translation>
     </message>
     <message>
         <source>Sound:</source>
-        <translation>Sound:</translation>
+        <translation>Ljóð:</translation>
     </message>
     <message>
         <source>MIDI sound for part</source>
-        <translation>midi sound for part</translation>
+        <translation>midi ljóð til part</translation>
     </message>
     <message>
         <source>Part name</source>
-        <translation type="unfinished"/>
+        <translation>Partur navn</translation>
     </message>
     <message>
         <source>Panorama position</source>
-        <translation type="unfinished"/>
+        <translation>Panorama plasering</translation>
     </message>
     <message>
         <source>MIDI sound</source>
-        <translation type="unfinished"/>
+        <translation>Midi ljóð</translation>
     </message>
     <message>
         <source>Part Name</source>
-        <translation>Part Name</translation>
+        <translation>Navn partur</translation>
     </message>
     <message>
         <source>Use arrows to modify</source>
-        <translation type="unfinished"/>
+        <translation>Brúka pílar at broyta</translation>
     </message>
     <message>
         <source>Sound</source>
-        <translation type="unfinished"/>
+        <translation>Ljóð</translation>
     </message>
 </context>
 <context>
@@ -8972,19 +9243,19 @@ failed: </source>
     <name>PianorollEditor</name>
     <message>
         <source>Toolbar 1</source>
-        <translation type="unfinished"/>
+        <translation>Amboðsbjálki 1</translation>
     </message>
     <message>
         <source>Wave</source>
-        <translation type="unfinished"/>
+        <translation>Bylgja</translation>
     </message>
     <message>
         <source>Show wave display</source>
-        <translation type="unfinished"/>
+        <translation>Vís bylgju skýggja</translation>
     </message>
     <message>
         <source>Toolbar 2</source>
-        <translation type="unfinished"/>
+        <translation>Tól bjálki 2</translation>
     </message>
     <message>
         <source>Cursor:</source>
@@ -9012,7 +9283,7 @@ failed: </source>
     </message>
     <message>
         <source>Len:</source>
-        <translation type="unfinished"/>
+        <translation>Len:</translation>
     </message>
     <message>
         <source>MuseScore: <%1> Staff: %2</source>
@@ -9023,7 +9294,7 @@ failed: </source>
     <name>PlayPanelBase</name>
     <message>
         <source>MuseScore: Play Panel</source>
-        <translation>MuseScore: Play Panel</translation>
+        <translation>MuseScore: spæl panel</translation>
     </message>
     <message>
         <source>001.01</source>
@@ -9039,11 +9310,11 @@ failed: </source>
     </message>
     <message>
         <source>Relative tempo</source>
-        <translation type="unfinished"/>
+        <translation>Lutfallsligt tempo</translation>
     </message>
     <message>
         <source>Master volume</source>
-        <translation type="unfinished"/>
+        <translation>Høvuðs ljóðstyrki</translation>
     </message>
     <message>
         <source>Volume</source>
@@ -9052,11 +9323,11 @@ failed: </source>
     </message>
     <message>
         <source>Actual tempo</source>
-        <translation type="unfinished"/>
+        <translation>Veruligt tempo</translation>
     </message>
     <message>
         <source>120BPM</source>
-        <translation type="unfinished"/>
+        <translation>120SUM</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -9069,42 +9340,42 @@ failed: </source>
     </message>
     <message>
         <source>Playback Position</source>
-        <translation type="unfinished"/>
+        <translation>Spæl plasering</translation>
     </message>
     <message>
         <source>Relative Tempo to 120 beats per minute</source>
-        <translation type="unfinished"/>
+        <translation>Lutfallsligt tempo til 120 sløg um min.</translation>
     </message>
     <message>
         <source>Use up and down arrows to change value</source>
-        <translation type="unfinished"/>
+        <translation>Brúka upp/niður pílar fyri at broyta virði</translation>
     </message>
     <message>
         <source>Master Volume</source>
-        <translation type="unfinished"/>
+        <translation>Høvuðs ljóðstyrki</translation>
     </message>
     <message>
         <source>Relative tempo to 120 beats per minute</source>
-        <translation type="unfinished"/>
+        <translation>Lutfallsligt tempo til 120 sløg um min.</translation>
     </message>
 </context>
 <context>
     <name>PluginCreatorBase</name>
     <message>
         <source>Run</source>
-        <translation type="unfinished"/>
+        <translation>Koyr</translation>
     </message>
     <message>
         <source>Stop</source>
-        <translation type="unfinished"/>
+        <translation>Stoppa</translation>
     </message>
     <message>
         <source>File</source>
-        <translation type="unfinished"/>
+        <translation>Fíla</translation>
     </message>
     <message>
         <source>Help</source>
-        <translation type="unfinished"/>
+        <translation>Hjálp</translation>
     </message>
     <message>
         <source>Edit</source>
@@ -9124,11 +9395,11 @@ failed: </source>
     </message>
     <message>
         <source>Manual</source>
-        <translation type="unfinished"/>
+        <translation>Handbók</translation>
     </message>
     <message>
         <source>Undo</source>
-        <translation>angra</translation>
+        <translation>Angra</translation>
     </message>
     <message>
         <source>Redo</source>
@@ -9136,30 +9407,30 @@ failed: </source>
     </message>
     <message>
         <source>R</source>
-        <translation type="unfinished"/>
+        <translation>R</translation>
     </message>
     <message>
         <source>Reload current plugin source</source>
-        <translation type="unfinished"/>
+        <translation>Løð verðandi plugin keldu umaftur</translation>
     </message>
     <message>
         <source>Close Plugin Creator</source>
-        <translation type="unfinished"/>
+        <translation>Stong plugin stovnara</translation>
     </message>
 </context>
 <context>
     <name>PluginManager</name>
     <message>
         <source>Plugin Manager</source>
-        <translation type="unfinished"/>
+        <translation>Plugin umsitari</translation>
     </message>
     <message>
         <source>Define Shortcut</source>
-        <translation type="unfinished"/>
+        <translation>Áset sniðveg</translation>
     </message>
     <message>
         <source>Path:</source>
-        <translation type="unfinished"/>
+        <translation>Leið:</translation>
     </message>
     <message>
         <source>Version:</source>
@@ -9171,26 +9442,26 @@ failed: </source>
     </message>
     <message>
         <source>Shortcut:</source>
-        <translation>Kısayol:</translation>
+        <translation>Sniðvegur:</translation>
     </message>
     <message>
         <source>Clear Shortcut</source>
-        <translation type="unfinished"/>
+        <translation>Strika Sniðveg</translation>
     </message>
 </context>
 <context>
     <name>PrefsDialogBase</name>
     <message>
         <source>MuseScore: Preferences</source>
-        <translation>MuseScore: Preferences</translation>
+        <translation>MuseScore: Serrættindi</translation>
     </message>
     <message>
         <source>MuseScore Preferences</source>
-        <translation>MuseScore Preferences</translation>
+        <translation>MuseScore Serrættindi</translation>
     </message>
     <message>
         <source>Reset All Preferences to Default</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla øll serrættindi til forsett</translation>
     </message>
     <message>
         <source>General</source>
@@ -9214,19 +9485,19 @@ failed: </source>
     </message>
     <message>
         <source>OSC remote control</source>
-        <translation type="unfinished"/>
+        <translation>OSC fjarstýring</translation>
     </message>
     <message>
         <source>Style</source>
-        <translation>Style</translation>
+        <translation>Snið</translation>
     </message>
     <message>
         <source>Icon size:</source>
-        <translation type="unfinished"/>
+        <translation>Ikon stødd:</translation>
     </message>
     <message>
         <source>Animations</source>
-        <translation type="unfinished"/>
+        <translation>Teknimyndagerðir</translation>
     </message>
     <message>
         <source>Canvas</source>
@@ -9246,15 +9517,15 @@ failed: </source>
     </message>
     <message>
         <source>Paper</source>
-        <translation type="unfinished"/>
+        <translation>Pappír</translation>
     </message>
     <message>
         <source>Miscellaneous</source>
-        <translation type="unfinished"/>
+        <translation>Blandaður</translation>
     </message>
     <message>
         <source>Enable MIDI input</source>
-        <translation>Enable MIDI input</translation>
+        <translation>Gilda MIDI inntak</translation>
     </message>
     <message>
         <source>Play notes when editing</source>
@@ -9270,11 +9541,11 @@ failed: </source>
     </message>
     <message>
         <source>16th note</source>
-        <translation type="unfinished"/>
+        <translation>16prt nóti</translation>
     </message>
     <message>
         <source>32nd note</source>
-        <translation type="unfinished"/>
+        <translation>32prt nóti</translation>
     </message>
     <message>
         <source>Clear</source>
@@ -9286,19 +9557,19 @@ failed: </source>
     </message>
     <message>
         <source>View</source>
-        <translation type="unfinished"/>
+        <translation>Vís</translation>
     </message>
     <message>
         <source>default scale for new score views</source>
-        <translation type="unfinished"/>
+        <translation>Forstettur stigi til sí nýggj nótabløð</translation>
     </message>
     <message>
         <source>Default Files</source>
-        <translation type="unfinished"/>
+        <translation>Forsettar fílar</translation>
     </message>
     <message>
         <source>Style:</source>
-        <translation>Style:</translation>
+        <translation>Snið:</translation>
     </message>
     <message>
         <source>I/O</source>
@@ -9306,7 +9577,7 @@ failed: </source>
     </message>
     <message>
         <source>Use JACK MIDI</source>
-        <translation type="unfinished"/>
+        <translation>Brúka JACK MIDI</translation>
     </message>
     <message>
         <source>Remember last connection(s)</source>
@@ -9314,15 +9585,15 @@ failed: </source>
     </message>
     <message>
         <source>PulseAudio</source>
-        <translation type="unfinished"/>
+        <translation>PulseAudio</translation>
     </message>
     <message>
         <source>PortAudio</source>
-        <translation type="unfinished"/>
+        <translation>PortAudio</translation>
     </message>
     <message>
         <source>API:</source>
-        <translation type="unfinished"/>
+        <translation>API:</translation>
     </message>
     <message>
         <source>Device:</source>
@@ -9330,7 +9601,7 @@ failed: </source>
     </message>
     <message>
         <source>default</source>
-        <translation>default</translation>
+        <translation>Forsett</translation>
     </message>
     <message>
         <source>192000</source>
@@ -9406,15 +9677,15 @@ failed: </source>
     </message>
     <message>
         <source>Style Used for Import</source>
-        <translation>Style Used for Import</translation>
+        <translation>Snið nýtt til innflutning</translation>
     </message>
     <message>
         <source>Built in style</source>
-        <translation>Built in style</translation>
+        <translation>Innbygt snið</translation>
     </message>
     <message>
         <source>Use style file:</source>
-        <translation>Use style file:</translation>
+        <translation>Nýt snið fílu:</translation>
     </message>
     <message>
         <source>Browse...</source>
@@ -9422,35 +9693,35 @@ failed: </source>
     </message>
     <message>
         <source>Overture import character set:</source>
-        <translation type="unfinished"/>
+        <translation>Flyt inn Overture skriftsnið:</translation>
     </message>
     <message>
         <source>Guitar Pro import character set:</source>
-        <translation type="unfinished"/>
+        <translation>Flyt inn Guitar Pro skriftsnið:</translation>
     </message>
     <message>
         <source>MusicXML</source>
-        <translation type="unfinished"/>
+        <translation>MusicXML</translation>
     </message>
     <message>
         <source>Import layout</source>
-        <translation type="unfinished"/>
+        <translation>Flyt inn uppseting</translation>
     </message>
     <message>
         <source>Import system and page breaks</source>
-        <translation type="unfinished"/>
+        <translation>Flyt inn skipan og síðu brot</translation>
     </message>
     <message>
         <source>MIDI</source>
-        <translation type="unfinished"/>
+        <translation>MIDI</translation>
     </message>
     <message>
         <source>Quarter</source>
-        <translation type="unfinished"/>
+        <translation>Kvartur</translation>
     </message>
     <message>
         <source>Eighth</source>
-        <translation type="unfinished"/>
+        <translation>Átta</translation>
     </message>
     <message>
         <source>16th</source>
@@ -9462,7 +9733,7 @@ failed: </source>
     </message>
     <message>
         <source>64th</source>
-        <translation type="unfinished"/>
+        <translation>64prt</translation>
     </message>
     <message>
         <source>Export</source>
@@ -9470,39 +9741,39 @@ failed: </source>
     </message>
     <message>
         <source>PNG/SVG</source>
-        <translation type="unfinished"/>
+        <translation>PNG/SVG</translation>
     </message>
     <message>
         <source>Transparent background</source>
-        <translation type="unfinished"/>
+        <translation>Glæru bakgrund</translation>
     </message>
     <message>
         <source>Expand repeats</source>
-        <translation>Expand Repeats</translation>
+        <translation>Víðkaðar endurtøkur</translation>
     </message>
     <message>
         <source>Audio</source>
-        <translation type="unfinished"/>
+        <translation>Ljóð</translation>
     </message>
     <message>
         <source>Export layout</source>
-        <translation type="unfinished"/>
+        <translation>Flyt út uppseting</translation>
     </message>
     <message>
         <source>Export all system and page breaks</source>
-        <translation type="unfinished"/>
+        <translation>Flyt út øll skipan og síðu brot</translation>
     </message>
     <message>
         <source>Export manually added system and page breaks only</source>
-        <translation type="unfinished"/>
+        <translation>Flyt út manuelt einans samanløgd skipan og síðu brot </translation>
     </message>
     <message>
         <source>Do not export system or page breaks</source>
-        <translation type="unfinished"/>
+        <translation>Flyt ikki út skipan og síðu brot</translation>
     </message>
     <message>
         <source>Shortcuts</source>
-        <translation>Shortcuts</translation>
+        <translation>Sniðvegur</translation>
     </message>
     <message>
         <source>Action</source>
@@ -9510,11 +9781,11 @@ failed: </source>
     </message>
     <message>
         <source>Shortcut</source>
-        <translation>Shortcut</translation>
+        <translation>Sniðvegur</translation>
     </message>
     <message>
         <source>Reset Shortcut to Default</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla sniðveg til forsett</translation>
     </message>
     <message>
         <source>Define...</source>
@@ -9522,7 +9793,7 @@ failed: </source>
     </message>
     <message>
         <source>Print</source>
-        <translation>Print</translation>
+        <translation>Prenta</translation>
     </message>
     <message>
         <source>Update</source>
@@ -9566,11 +9837,11 @@ failed: </source>
     </message>
     <message>
         <source>Default duration:</source>
-        <translation>Default duration:</translation>
+        <translation>Forsett tíðarlongd:</translation>
     </message>
     <message>
         <source>MIDI remote control</source>
-        <translation type="unfinished"/>
+        <translation>MIDI fjarstýring</translation>
     </message>
     <message>
         <source>Rewind</source>
@@ -9578,19 +9849,19 @@ failed: </source>
     </message>
     <message>
         <source>Toggle play</source>
-        <translation type="unfinished"/>
+        <translation>Skift spæl</translation>
     </message>
     <message>
         <source>Whole note</source>
-        <translation type="unfinished"/>
+        <translation>Heilnóti</translation>
     </message>
     <message>
         <source>Half note</source>
-        <translation type="unfinished"/>
+        <translation>Hálvnóti</translation>
     </message>
     <message>
         <source>Quarter note</source>
-        <translation type="unfinished"/>
+        <translation>Kvartnóti</translation>
     </message>
     <message>
         <source>Rest</source>
@@ -9598,7 +9869,7 @@ failed: </source>
     </message>
     <message>
         <source>Augmentation dot</source>
-        <translation type="unfinished"/>
+        <translation>Økingar prikkur</translation>
     </message>
     <message>
         <source>Tie</source>
@@ -9610,23 +9881,23 @@ failed: </source>
     </message>
     <message>
         <source>Stop</source>
-        <translation type="unfinished"/>
+        <translation>Stoppa</translation>
     </message>
     <message>
         <source>Instrument list 2:</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðføris listi 2:</translation>
     </message>
     <message>
         <source>Instrument list 1:</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðførislisti 1:</translation>
     </message>
     <message>
         <source>Style for part:</source>
-        <translation type="unfinished"/>
+        <translation>Snið til part</translation>
     </message>
     <message>
         <source>ALSA audio</source>
-        <translation type="unfinished"/>
+        <translation>ALSA ljóð</translation>
     </message>
     <message>
         <source>Sample rate:</source>
@@ -9634,19 +9905,19 @@ failed: </source>
     </message>
     <message>
         <source>JACK audio server</source>
-        <translation type="unfinished"/>
+        <translation>JACK ljóð ambætari</translation>
     </message>
     <message>
         <source>Character Set Used When Importing Binary Files</source>
-        <translation type="unfinished"/>
+        <translation>Skriftsnið brúkt tá tvítalsfílar verða innfluttir</translation>
     </message>
     <message>
         <source>Shortest note:</source>
-        <translation type="unfinished"/>
+        <translation>Stytsti nóti:</translation>
     </message>
     <message>
         <source>Double augmentation dot</source>
-        <translation type="unfinished"/>
+        <translation>Dupultur økingar prikkur</translation>
     </message>
     <message>
         <source>Save every:</source>
@@ -9654,36 +9925,36 @@ failed: </source>
     </message>
     <message>
         <source>Proximity for selecting elements:</source>
-        <translation>Proximity for selecting elements</translation>
+        <translation>Nærleiki tá element verða vald:</translation>
     </message>
     <message>
         <source>Default zoom:</source>
-        <translation type="unfinished"/>
+        <translation>Forsett suming</translation>
     </message>
     <message>
         <source>Resolution DPI:</source>
-        <translation type="unfinished"/>
+        <translation>Loysni DPI:</translation>
     </message>
     <message>
         <source>Port number:</source>
         <extracomment>The UDP port number on which the MuseScore OSC server will listen on</extracomment>
-        <translation type="unfinished"/>
+        <translation>Portur nummar:</translation>
     </message>
     <message>
         <source>Use JACK Audio</source>
-        <translation type="unfinished"/>
+        <translation>Brúka JACK ljóð</translation>
     </message>
     <message>
         <source>Use JACK Transport</source>
-        <translation type="unfinished"/>
+        <translation>Brúka JACK Flutning</translation>
     </message>
     <message>
         <source>Timebase Master</source>
-        <translation type="unfinished"/>
+        <translation>Tíðargrundarlag Høvuðs-</translation>
     </message>
     <message>
         <source>MIDI Input:</source>
-        <translation type="unfinished"/>
+        <translation>MIDI inntøka</translation>
     </message>
     <message>
         <source>Apply</source>
@@ -9691,551 +9962,551 @@ failed: </source>
     </message>
     <message>
         <source>Preferences Tab Manager</source>
-        <translation type="unfinished"/>
+        <translation>Serrættindis talvu fyrisitari</translation>
     </message>
     <message>
         <source>General Tab</source>
-        <translation type="unfinished"/>
+        <translation>Vanligt spjaldur</translation>
     </message>
     <message>
         <source>Select language</source>
-        <translation type="unfinished"/>
+        <translation>Vel mál</translation>
     </message>
     <message>
         <source>The language will be changed once you restart MuseScore.</source>
-        <translation type="unfinished"/>
+        <translation>Málið verður broytt tá tú startar MuseScore av nýggju.</translation>
     </message>
     <message>
         <source>Start with score</source>
-        <translation type="unfinished"/>
+        <translation>Byrja við nótablaði</translation>
     </message>
     <message>
         <source>Insert path to starting score</source>
-        <translation type="unfinished"/>
+        <translation>Set inn leið at byrja nótablað</translation>
     </message>
     <message>
         <source>Choose starting score</source>
-        <translation type="unfinished"/>
+        <translation>Vel byrjunar nótablað</translation>
     </message>
     <message>
         <source>Opens a file dialog for selecting the starting score</source>
-        <translation type="unfinished"/>
+        <translation>Opnar fílu vindeyga fyri val av byrjunar nótablaði</translation>
     </message>
     <message>
         <source>Select delay (in minutes) between auto saves</source>
-        <translation type="unfinished"/>
+        <translation>Vel seinking (í minuttum) millum sjálvv. goym</translation>
     </message>
     <message>
         <source>Port number</source>
-        <translation type="unfinished"/>
+        <translation>Portur nummar</translation>
     </message>
     <message>
         <source>Select style</source>
-        <translation type="unfinished"/>
+        <translation>Vel snið</translation>
     </message>
     <message>
         <source>Icon Height</source>
-        <translation type="unfinished"/>
+        <translation>Ikon hædd</translation>
     </message>
     <message>
         <source>Icon Width</source>
-        <translation type="unfinished"/>
+        <translation>Ikon vídd</translation>
     </message>
     <message>
         <source>Style folder</source>
-        <translation type="unfinished"/>
+        <translation>Snið faldari</translation>
     </message>
     <message>
         <source>Insert path for style folder</source>
-        <translation type="unfinished"/>
+        <translation>Set inn leið til snið faldara</translation>
     </message>
     <message>
         <source>Choose score folder</source>
-        <translation type="unfinished"/>
+        <translation>Vel nótablaðs faldara</translation>
     </message>
     <message>
         <source>Opens a folder dialog for selecting the score folder</source>
-        <translation type="unfinished"/>
+        <translation>Opnar faldara vindeyga: val av nótablaðs faldara</translation>
     </message>
     <message>
         <source>Choose style folder</source>
-        <translation type="unfinished"/>
+        <translation>Vel snið faldara</translation>
     </message>
     <message>
         <source>Opens a folder dialog for selecting the style folder</source>
-        <translation type="unfinished"/>
+        <translation>Opna faldara vindeyga fyri at velja snið faldara</translation>
     </message>
     <message>
         <source>Score folder</source>
-        <translation type="unfinished"/>
+        <translation>Nótablaðs faldari</translation>
     </message>
     <message>
         <source>Insert path to score folder.</source>
-        <translation type="unfinished"/>
+        <translation>Set inn leið til nótablaðs faldara</translation>
     </message>
     <message>
         <source>Template folder</source>
-        <translation type="unfinished"/>
+        <translation>Skapilón faldari</translation>
     </message>
     <message>
         <source>Insert path to Template folder</source>
-        <translation type="unfinished"/>
+        <translation>Set inn leið til skapilón faldara</translation>
     </message>
     <message>
         <source>Plugin folder</source>
-        <translation type="unfinished"/>
+        <translation>Plugin faldari</translation>
     </message>
     <message>
         <source>Insert path to plugin folder</source>
-        <translation type="unfinished"/>
+        <translation>Set inn leið til plugin faldara</translation>
     </message>
     <message>
         <source>Choose plugin folder</source>
-        <translation type="unfinished"/>
+        <translation>Vel plugin faldara</translation>
     </message>
     <message>
         <source>Opens a folder dialog for selecting the plugin folder</source>
-        <translation type="unfinished"/>
+        <translation>Opna faldara vindeyga - vel plugin faldaran</translation>
     </message>
     <message>
         <source>Image folder</source>
-        <translation type="unfinished"/>
+        <translation>Mynda faldari</translation>
     </message>
     <message>
         <source>Insert path to image folder</source>
-        <translation type="unfinished"/>
+        <translation>Set inn leið til mynda faldara</translation>
     </message>
     <message>
         <source>Choose template folder</source>
-        <translation type="unfinished"/>
+        <translation>Vel skapilón faldara</translation>
     </message>
     <message>
         <source>Opens a folder dialog for selecting the template folder</source>
-        <translation type="unfinished"/>
+        <translation>Vel faldara vindeyga at velja skapilón faldara</translation>
     </message>
     <message>
         <source>Opens a folder dialog for selecting the image folder</source>
-        <translation type="unfinished"/>
+        <translation>Opnar faldara vindeyga fyri vali av mynda faldara</translation>
     </message>
     <message>
         <source>Canvas Tab</source>
-        <translation type="unfinished"/>
+        <translation>Lørift spjaldur</translation>
     </message>
     <message>
         <source>Background Wallpaper</source>
-        <translation type="unfinished"/>
+        <translation>Bakgrunds tapet</translation>
     </message>
     <message>
         <source>Background Color</source>
-        <translation type="unfinished"/>
+        <translation>Bakgrunds litur</translation>
     </message>
     <message>
         <source>Background wallpaper path</source>
-        <translation type="unfinished"/>
+        <translation>Bakgrunds tapet leið</translation>
     </message>
     <message>
         <source>Insert path to background wallpaper file</source>
-        <translation type="unfinished"/>
+        <translation>Set inn leið til bakgrunds tapet fílu</translation>
     </message>
     <message>
         <source>Choose Background wallpaper file</source>
-        <translation type="unfinished"/>
+        <translation>Vel bakgrundstapet fílu</translation>
     </message>
     <message>
         <source>Opens a file dialog for selecting the wallpaper file</source>
-        <translation type="unfinished"/>
+        <translation>Opnar fílu vindeyga fyri vali av tapet fílu</translation>
     </message>
     <message>
         <source>Select background color</source>
-        <translation type="unfinished"/>
+        <translation>Vel bakgrunds lit</translation>
     </message>
     <message>
         <source>Opens a dialog for selecting the background color</source>
-        <translation type="unfinished"/>
+        <translation>Opna vindeyga til val av bakgrunds liti</translation>
     </message>
     <message>
         <source>Paper wallpaper path</source>
-        <translation type="unfinished"/>
+        <translation>Pappír tapet leið</translation>
     </message>
     <message>
         <source>Insert path to paper wallpaper file</source>
-        <translation type="unfinished"/>
+        <translation>Set inn leið til pappír tapet fílu</translation>
     </message>
     <message>
         <source>Choose paper wallpaper file</source>
-        <translation type="unfinished"/>
+        <translation>Vel pappír tapet fílu</translation>
     </message>
     <message>
         <source>Select paper color</source>
-        <translation type="unfinished"/>
+        <translation>Vel pappír lit</translation>
     </message>
     <message>
         <source>Opens a dialog for selecting the paper color</source>
-        <translation type="unfinished"/>
+        <translation>Opnar vindeyga til val av pappír liti</translation>
     </message>
     <message>
         <source>Paper Wallpaper</source>
-        <translation type="unfinished"/>
+        <translation>Pappír tapet</translation>
     </message>
     <message>
         <source>Paper Color</source>
-        <translation type="unfinished"/>
+        <translation>Pappír litur</translation>
     </message>
     <message>
         <source>Enable MIDI Input</source>
-        <translation>Enable MIDI Input</translation>
+        <translation>Gilda MIDI inntak</translation>
     </message>
     <message>
         <source>Default duration</source>
-        <translation type="unfinished"/>
+        <translation>Forsett tíðarlongd</translation>
     </message>
     <message>
         <source>Rewind is active</source>
-        <translation type="unfinished"/>
+        <translation>Spola aftur er virkið</translation>
     </message>
     <message>
         <source>Rewind record</source>
-        <translation type="unfinished"/>
+        <translation>Spola aftur upptak</translation>
     </message>
     <message>
         <source>Toggle play record</source>
-        <translation type="unfinished"/>
+        <translation>Skift spæl tak upp</translation>
     </message>
     <message>
         <source>Whole note is active</source>
-        <translation type="unfinished"/>
+        <translation>Heilnóti er virkin</translation>
     </message>
     <message>
         <source>Half note is active</source>
-        <translation type="unfinished"/>
+        <translation>Hálvnóti er virkin</translation>
     </message>
     <message>
         <source>Whole note record</source>
-        <translation type="unfinished"/>
+        <translation>Heiltóni upptak</translation>
     </message>
     <message>
         <source>Half note record</source>
-        <translation type="unfinished"/>
+        <translation>Hálvnóti upptak</translation>
     </message>
     <message>
         <source>Rest is active</source>
-        <translation type="unfinished"/>
+        <translation>Tøgn er virkin</translation>
     </message>
     <message>
         <source>Augmentation dot is active</source>
-        <translation type="unfinished"/>
+        <translation>Økingar prikkur er virkin</translation>
     </message>
     <message>
         <source>Augmentation dot record</source>
-        <translation type="unfinished"/>
+        <translation>Økingarprikkur upptak</translation>
     </message>
     <message>
         <source>Double augmentation dot is active</source>
-        <translation type="unfinished"/>
+        <translation>Dupultur økingarprikkur er virkin</translation>
     </message>
     <message>
         <source>Double augmentation dot record</source>
-        <translation type="unfinished"/>
+        <translation>Dupultur økingarprikkur upptak</translation>
     </message>
     <message>
         <source>Tie is active</source>
-        <translation type="unfinished"/>
+        <translation>Bindibogi er virkin</translation>
     </message>
     <message>
         <source>Tie record</source>
-        <translation type="unfinished"/>
+        <translation>Bindibogi upptak</translation>
     </message>
     <message>
         <source>Rest record</source>
-        <translation type="unfinished"/>
+        <translation>Tøgn upptak</translation>
     </message>
     <message>
         <source>Play is active</source>
-        <translation type="unfinished"/>
+        <translation>Spæl er virki</translation>
     </message>
     <message>
         <source>Stop is active</source>
-        <translation type="unfinished"/>
+        <translation>Stoppa er virki</translation>
     </message>
     <message>
         <source>Play record</source>
-        <translation type="unfinished"/>
+        <translation>Spæl upptak</translation>
     </message>
     <message>
         <source>Stop record</source>
-        <translation type="unfinished"/>
+        <translation>Stoppa upptak</translation>
     </message>
     <message>
         <source>16th note is active</source>
-        <translation type="unfinished"/>
+        <translation>16prt nóti er virkin</translation>
     </message>
     <message>
         <source>16th note record</source>
-        <translation type="unfinished"/>
+        <translation>16prt nóti upptak</translation>
     </message>
     <message>
         <source>32nd note is active</source>
-        <translation type="unfinished"/>
+        <translation>32prt nóti er virkin</translation>
     </message>
     <message>
         <source>32nd note record</source>
-        <translation type="unfinished"/>
+        <translation>32prt nóti upptak</translation>
     </message>
     <message>
         <source>Score Tab</source>
-        <translation type="unfinished"/>
+        <translation>Nótablað spjaldur</translation>
     </message>
     <message>
         <source>Default zoom</source>
-        <translation type="unfinished"/>
+        <translation>Forsett suming</translation>
     </message>
     <message>
         <source>Choose Instrument list 1</source>
-        <translation type="unfinished"/>
+        <translation>Vel instrumentlista 1</translation>
     </message>
     <message>
         <source>Opens a file dialog for selecting a instrument list file</source>
-        <translation type="unfinished"/>
+        <translation>Opnar eitt fílu vindeyga, vel ein ljóðføris lista fílu</translation>
     </message>
     <message>
         <source>Instrument list 1</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðførislisti 1</translation>
     </message>
     <message>
         <source>Insert path to a instrument list file</source>
-        <translation type="unfinished"/>
+        <translation>Set inn leið til eina ljóðførislista fílu</translation>
     </message>
     <message>
         <source>Insert path to style file</source>
-        <translation type="unfinished"/>
+        <translation>Set in leið til snið fílu</translation>
     </message>
     <message>
         <source>Choose style</source>
-        <translation type="unfinished"/>
+        <translation>Vel snið</translation>
     </message>
     <message>
         <source>Opens a file dialog for selecting a style file</source>
-        <translation type="unfinished"/>
+        <translation>Opna faldara vindeyga fyri at velja snið fílu</translation>
     </message>
     <message>
         <source>Style for part</source>
-        <translation type="unfinished"/>
+        <translation>Snið til part</translation>
     </message>
     <message>
         <source>Insert path to style file for part</source>
-        <translation type="unfinished"/>
+        <translation>Set inn leið til snið fílu fyri part</translation>
     </message>
     <message>
         <source>Choose style for part</source>
-        <translation type="unfinished"/>
+        <translation>Vel snið til part</translation>
     </message>
     <message>
         <source>Opens a file dialog for selecting a style file for part</source>
-        <translation type="unfinished"/>
+        <translation>Opnar eitt fílu vindeyga fyri val av snið fílu fyri part</translation>
     </message>
     <message>
         <source>Instrument list 2</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðførislisti 2</translation>
     </message>
     <message>
         <source>Choose Instrument list 2</source>
-        <translation type="unfinished"/>
+        <translation>Vel ljóðførislista 2</translation>
     </message>
     <message>
         <source>I/O Tab</source>
-        <translation type="unfinished"/>
+        <translation>I/O spjaldur</translation>
     </message>
     <message>
         <source>Port Audio</source>
-        <translation type="unfinished"/>
+        <translation>Ljóð portur</translation>
     </message>
     <message>
         <source>API</source>
-        <translation type="unfinished"/>
+        <translation>API</translation>
     </message>
     <message>
         <source>Choose API</source>
-        <translation type="unfinished"/>
+        <translation>Vel API</translation>
     </message>
     <message>
         <source>MIDI Input</source>
-        <translation type="unfinished"/>
+        <translation>MIDI inntak</translation>
     </message>
     <message>
         <source>Choose MIDI Input</source>
-        <translation type="unfinished"/>
+        <translation>Vel MIDI inntak</translation>
     </message>
     <message>
         <source>Device</source>
-        <translation type="unfinished"/>
+        <translation>Tól</translation>
     </message>
     <message>
         <source>Choose device</source>
-        <translation type="unfinished"/>
+        <translation>Vel tól</translation>
     </message>
     <message>
         <source>Fragments</source>
-        <translation type="unfinished"/>
+        <translation>Brot</translation>
     </message>
     <message>
         <source>Choose number of fragments</source>
-        <translation type="unfinished"/>
+        <translation>Vel nummar av brotum</translation>
     </message>
     <message>
         <source>Period Size</source>
-        <translation type="unfinished"/>
+        <translation>Punktum stødd</translation>
     </message>
     <message>
         <source>Choose period size</source>
-        <translation type="unfinished"/>
+        <translation>Vel punktum stødd</translation>
     </message>
     <message>
         <source>Sample rate</source>
-        <translation type="unfinished"/>
+        <translation>Sample rate</translation>
     </message>
     <message>
         <source>Choose sample rate</source>
-        <translation type="unfinished"/>
+        <translation>Vel sample rate</translation>
     </message>
     <message>
         <source>Import Tab</source>
-        <translation type="unfinished"/>
+        <translation>Innflytingar spjaldur</translation>
     </message>
     <message>
         <source>Build in style</source>
-        <translation type="unfinished"/>
+        <translation>Innbygt snið</translation>
     </message>
     <message>
         <source>Use style file</source>
-        <translation type="unfinished"/>
+        <translation>Brúka snið fílu</translation>
     </message>
     <message>
         <source>Overture import character set</source>
-        <translation type="unfinished"/>
+        <translation>Flyt inn Overture skriftsnið</translation>
     </message>
     <message>
         <source>Choose Overture import character set</source>
-        <translation type="unfinished"/>
+        <translation>Vel flyt inn Overture skriftsnið</translation>
     </message>
     <message>
         <source>Guitar Pro import character set</source>
-        <translation type="unfinished"/>
+        <translation>Flyt inn Guitar Pro skriftsnið</translation>
     </message>
     <message>
         <source>Choose Guitar Pro import character set</source>
-        <translation type="unfinished"/>
+        <translation>Vel flyt inn Guitar Pro skriftsnið</translation>
     </message>
     <message>
         <source>Shortest note</source>
-        <translation type="unfinished"/>
+        <translation>Stytsti nóti</translation>
     </message>
     <message>
         <source>Choose the shortest note value</source>
-        <translation type="unfinished"/>
+        <translation>Vel styststa nótavirði</translation>
     </message>
     <message>
         <source>Export Tab</source>
-        <translation type="unfinished"/>
+        <translation>Flyt út spjaldur</translation>
     </message>
     <message>
         <source>Resolution DPI</source>
-        <translation type="unfinished"/>
+        <translation>Loysni DPI</translation>
     </message>
     <message>
         <source>Choose resolution DPI</source>
-        <translation type="unfinished"/>
+        <translation>Vel loysni DPI</translation>
     </message>
     <message>
         <source>Shortcuts Tab</source>
-        <translation type="unfinished"/>
+        <translation>Sniðvegir spjaldur</translation>
     </message>
     <message>
         <source>Shortcuts table</source>
-        <translation type="unfinished"/>
+        <translation>Sniðvegir borð</translation>
     </message>
     <message>
         <source>Reset Shortcut to default</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla sniðveg til forsett</translation>
     </message>
     <message>
         <source>Define</source>
-        <translation type="unfinished"/>
+        <translation>Áset</translation>
     </message>
     <message>
         <source>Update Tab</source>
-        <translation type="unfinished"/>
+        <translation>Dagfør spjaldur</translation>
     </message>
     <message>
         <source>Eighth note</source>
-        <translation type="unfinished"/>
+        <translation>áttundnóti</translation>
     </message>
     <message>
         <source>Quarter note is active</source>
-        <translation type="unfinished"/>
+        <translation>Kvartnóti er virkin</translation>
     </message>
     <message>
         <source>Quarter note record</source>
-        <translation type="unfinished"/>
+        <translation>Kvartnóti tak upp</translation>
     </message>
     <message>
         <source>Eighth note is active</source>
-        <translation type="unfinished"/>
+        <translation>Áttundnóti er virkin</translation>
     </message>
     <message>
         <source>Eighth note record</source>
-        <translation type="unfinished"/>
+        <translation>Áttundnóti tak upp</translation>
     </message>
     <message>
         <source>64th note</source>
-        <translation type="unfinished"/>
+        <translation>64prt nóti</translation>
     </message>
     <message>
         <source>64th note is active</source>
-        <translation type="unfinished"/>
+        <translation>64prt nóti er virkin</translation>
     </message>
     <message>
         <source>64th note record</source>
-        <translation type="unfinished"/>
+        <translation>64prt nóti tak upp</translation>
     </message>
     <message>
         <source>Here you can configure shortcuts for actions</source>
-        <translation type="unfinished"/>
+        <translation>Her kanst tú innstilla sniðvegir til gerðir</translation>
     </message>
     <message>
         <source>Resets the shortcuts to their default assignment</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla sniðvegir til teirra forsettu uppgávu</translation>
     </message>
     <message>
         <source>Clears the shortcut assignment for the selected action</source>
-        <translation type="unfinished"/>
+        <translation>Strika sniðveg ásetanina til valdu gerðina</translation>
     </message>
     <message>
         <source>Opens a dialog for defining a new shortcut for the selected action</source>
-        <translation type="unfinished"/>
+        <translation>Opnar eitt vindeyga at áseta nýggjan sniðveg fyri valdu gerðina</translation>
     </message>
     <message>
         <source>Print the shortcuts list</source>
-        <translation type="unfinished"/>
+        <translation>Prenta sniðvegslista</translation>
     </message>
     <message>
         <source>Update translations</source>
-        <translation type="unfinished"/>
+        <translation>Dagfør umsetingar</translation>
     </message>
     <message>
         <source>Dark</source>
-        <translation type="unfinished"/>
+        <translation>Myrk</translation>
     </message>
     <message>
         <source>Light</source>
-        <translation type="unfinished"/>
+        <translation>Ljós</translation>
     </message>
     <message>
         <source>Enable MIDI remote control</source>
-        <translation type="unfinished"/>
+        <translation>Gilda MIDI fjarstýring</translation>
     </message>
     <message>
         <source>Is active</source>
-        <translation type="unfinished"/>
+        <translation>Er virkin</translation>
     </message>
     <message>
         <source>Record</source>
@@ -10243,19 +10514,19 @@ failed: </source>
     </message>
     <message>
         <source>Default scale for new score views</source>
-        <translation type="unfinished"/>
+        <translation>Forsettur stigi til sí nýggj nótabløð</translation>
     </message>
     <message>
         <source>Show play panel</source>
-        <translation type="unfinished"/>
+        <translation>Vís spæl panel</translation>
     </message>
     <message>
         <source>Show navigator</source>
-        <translation type="unfinished"/>
+        <translation>Vís Skipara</translation>
     </message>
     <message>
         <source>OSC Remote Control</source>
-        <translation type="unfinished"/>
+        <translation>OSC fjarstýring</translation>
     </message>
     <message>
         <source>MIDI Remote Control</source>
@@ -10263,39 +10534,39 @@ failed: </source>
     </message>
     <message>
         <source>Show start center</source>
-        <translation type="unfinished"/>
+        <translation>Vís byrjunar depil</translation>
     </message>
     <message>
         <source>Undo is active</source>
-        <translation type="unfinished"/>
+        <translation>Angra er virki</translation>
     </message>
     <message>
         <source>Undo record</source>
-        <translation type="unfinished"/>
+        <translation>Angra upptøku</translation>
     </message>
     <message>
         <source>Undo</source>
-        <translation>angra</translation>
+        <translation>Angra</translation>
     </message>
     <message>
         <source>Play whole chord when adding note</source>
-        <translation type="unfinished"/>
+        <translation>Spæl alla akkordina við nótatilsetan</translation>
     </message>
     <message>
         <source>SoundFont folders</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðfunta faldarar</translation>
     </message>
     <message>
         <source>Insert path to SoundFont folders</source>
-        <translation type="unfinished"/>
+        <translation>Set inn leið til ljóðfunta faldarar</translation>
     </message>
     <message>
         <source>Opens a dialog for configuring the SoundFont folders</source>
-        <translation type="unfinished"/>
+        <translation>Opnar vindeyga til stilling av ljóðfunta faldarum</translation>
     </message>
     <message>
         <source>Note Input Tab</source>
-        <translation type="unfinished"/>
+        <translation>Nót inntak spjaldur</translation>
     </message>
     <message>
         <source>Note Input</source>
@@ -10303,51 +10574,59 @@ failed: </source>
     </message>
     <message>
         <source>Note input</source>
-        <translation type="unfinished"/>
+        <translation>nóta inntak</translation>
     </message>
     <message>
         <source>Note input is active</source>
-        <translation type="unfinished"/>
+        <translation>Nóta inntak er virki</translation>
     </message>
     <message>
         <source>Note input record</source>
-        <translation type="unfinished"/>
+        <translation>Nóta inntak upptak</translation>
     </message>
     <message>
         <source>Folders</source>
-        <translation type="unfinished"/>
+        <translation>Faldarar</translation>
     </message>
     <message>
         <source>Images:</source>
-        <translation type="unfinished"/>
+        <translation>Myndir:</translation>
     </message>
     <message>
         <source>Scores:</source>
-        <translation type="unfinished"/>
+        <translation>Nótabløð:</translation>
     </message>
     <message>
         <source>Styles:</source>
-        <translation type="unfinished"/>
+        <translation>Snið:</translation>
     </message>
     <message>
         <source>Templates:</source>
-        <translation type="unfinished"/>
+        <translation>Skapilónir:</translation>
     </message>
     <message>
         <source>Plugins:</source>
-        <translation type="unfinished"/>
+        <translation>Plugin:</translation>
     </message>
     <message>
         <source>SoundFonts:</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðfuntar:</translation>
     </message>
     <message>
         <source>Check for new version of MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>Eftirkanna nýggjar útgávur av MuseScore</translation>
     </message>
     <message>
         <source>Filter</source>
-        <translation type="unfinished"/>
+        <translation>Filtur</translation>
+    </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Flyt út RPNs</translation>
     </message>
 </context>
 <context>
@@ -10356,42 +10635,48 @@ failed: </source>
         <source>No note or lyrics selected:
 Please select a single note or lyrics and retry operation
 </source>
-        <translation type="unfinished"/>
+        <translation>Eingin nóti ella tekstur valdur:
+Vinarliga vel nóta ella tekst og endurroyn atgerð
+</translation>
     </message>
     <message>
         <source>Please select a single note or slur and retry operation
 </source>
-        <translation>Please select a single note or slur and retry operation.
+        <translation>Vinarliga vel ein nóta ella bindiboga og endurroyn atgerð
 </translation>
     </message>
     <message>
         <source>Please select one or more staves and retry operation
 </source>
-        <translation>Please select one or more staves and retry operation.
+        <translation>Vinarliga vel ein ella fleiri stavir og endurroyn atgerð
 </translation>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>No note or figured bass selected:
 Please select a single note or figured bass and retry.
 </source>
-        <translation type="unfinished"/>
+        <translation>Eingin nóti ella besifringsbassur valdur:
+Vinarliga vel einkultan nóta ella besifringsbass og royn aftur.
+</translation>
     </message>
     <message>
         <source>No note selected:
 Please select a single note and retry operation
 </source>
-        <translation>No note selected: Please select a single note and retry operation.
+        <translation>Eingin nóti valdur:
+Vinarliga vel ein nóta og endurroyn atgerð
 </translation>
     </message>
     <message>
         <source>No note or rest selected:
 Please select a single note or rest and retry operation
 </source>
-        <translation>No note or rest selected: Please select a single note or rest and retry operation.
+        <translation>Eingin nóti ella tøgn vald: 
+Vinarliga vel ein nóta ella tøgn og endurroyn atgerð
 </translation>
     </message>
 </context>
@@ -10403,105 +10688,120 @@ Please select a single note or rest and retry operation
     </message>
     <message>
         <source>Perc. 3 lines</source>
-        <translation type="unfinished"/>
+        <translation>Perc. 3 linjur</translation>
     </message>
     <message>
         <source>Perc. 5 lines</source>
-        <translation type="unfinished"/>
+        <translation>Perc. 5 linjur</translation>
     </message>
     <message>
         <source>Tab. ukulele</source>
-        <translation type="unfinished"/>
+        <translation>Tab. ukulele</translation>
     </message>
     <message>
         <source>Perc. 1 line</source>
-        <translation type="unfinished"/>
+        <translation>Perc. 1 linja</translation>
     </message>
     <message>
         <source>Cannot open chord description:
 %1
 %2</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki opna akkordlýsing:
+%1
+%2</translation>
     </message>
     <message>
         <source>Open Chord Description
 %1
 failed: %2</source>
-        <translation type="unfinished"/>
+        <translation>Opna akkord lýsing
+%1
+miseydnað: %2</translation>
     </message>
     <message>
         <source>Write Chord Description failed: %1</source>
-        <translation type="unfinished"/>
+        <translation>Skriva akkord lýsing miseydnað: %1</translation>
     </message>
     <message>
         <source>Cannot open tablature font description:
 %1
 %2</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki opna tab funta lýsing
+%1
+%2</translation>
     </message>
     <message>
         <source>Cannot read file %1:
 </source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki lesa fílu %1:
+</translation>
     </message>
     <message>
         <source>bad format</source>
-        <translation type="unfinished"/>
+        <translation>Vánaligt snið</translation>
     </message>
     <message>
         <source>unknown type</source>
-        <translation type="unfinished"/>
+        <translation>Ókent slag</translation>
     </message>
     <message>
         <source>It was last saved with version 0.9.5 or older.<br>You can convert this score by opening and then saving with MuseScore version 1.x</a></source>
-        <translation type="unfinished"/>
+        <translation>Tað var goymt við útgávu 0.9.5 ella eldri. <br>Tú kanst umleggja hetta nótablaðið við opna og goyma við MuseScore versión 1.x</a></translation>
     </message>
     <message>
         <source>This score was saved using a newer version of MuseScore.<br>
 Visit the <a href="http://musescore.org">MuseScore website</a> to obtain the latest version.</source>
-        <translation type="unfinished"/>
+        <translation>Hetta nótablaðið var goymt við nýggjari útgávu av MuseScore.<br>
+Vitja <a href="http://musescore.org">MuseScore heimasíðuna</a> og tak niður nýggjastu útgávuna.</translation>
     </message>
     <message>
         <source>File not found %1</source>
-        <translation type="unfinished"/>
+        <translation>Fíla ikki funnin %1</translation>
     </message>
     <message>
         <source>MuseScore: Load Error</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Feilur: tak fram</translation>
     </message>
     <message>
         <source>Internal error: MusicXML schema is invalid
 </source>
-        <translation type="unfinished"/>
+        <translation>Innvortis villa: MusicXML skema er galið
+</translation>
     </message>
     <message>
         <source>Error reading container.xml at line %1 column %2: %3
 </source>
-        <translation type="unfinished"/>
+        <translation>Villa við lesing av container.xml við linju %1 teigur %2: %3
+</translation>
     </message>
     <message>
         <source>Can't find rootfile
 %1</source>
-        <translation type="unfinished"/>
+        <translation>Finnur ikki rótfílu
+%1</translation>
     </message>
     <message>
         <source>File '%1' is not a valid MusicXML file</source>
-        <translation type="unfinished"/>
+        <translation>Fíla '%1' er ikki galdandi MusicXML fíla</translation>
     </message>
     <message>
         <source>Error at line %1 column %2: %3
 </source>
-        <translation type="unfinished"/>
+        <translation>Villa við linju %1 teigur %2: %3
+
+</translation>
     </message>
     <message>
         <source>Could not open MusicXML file
 %1</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki opna MusicXML fílu
+%1</translation>
     </message>
     <message>
         <source>Could not open compressed MusicXML file
 %1</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki opna pakkaða MusicXML fílu
+%1</translation>
     </message>
     <message>
         <source>normal</source>
@@ -10509,31 +10809,31 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>Custom</source>
-        <translation type="unfinished"/>
+        <translation>Sergjørd</translation>
     </message>
     <message>
         <source>Long</source>
-        <translation type="unfinished"/>
+        <translation>Langur</translation>
     </message>
     <message>
         <source>Breve</source>
-        <translation type="unfinished"/>
+        <translation>Breve</translation>
     </message>
     <message>
         <source>Whole</source>
-        <translation type="unfinished"/>
+        <translation>Heilur</translation>
     </message>
     <message>
         <source>Half</source>
-        <translation type="unfinished"/>
+        <translation>Hálvur</translation>
     </message>
     <message>
         <source>Quarter</source>
-        <translation type="unfinished"/>
+        <translation>Kvartur</translation>
     </message>
     <message>
         <source>Eighth</source>
-        <translation type="unfinished"/>
+        <translation>Átta</translation>
     </message>
     <message>
         <source>16th</source>
@@ -10545,123 +10845,124 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>64th</source>
-        <translation type="unfinished"/>
+        <translation>64prt</translation>
     </message>
     <message>
         <source>128th</source>
-        <translation type="unfinished"/>
+        <translation>128prt</translation>
     </message>
     <message>
         <source>256th</source>
-        <translation type="unfinished"/>
+        <translation>256prt</translation>
     </message>
     <message>
         <source>512th</source>
-        <translation type="unfinished"/>
+        <translation>512prt</translation>
     </message>
     <message>
         <source>1024th</source>
-        <translation type="unfinished"/>
+        <translation>1024prt</translation>
     </message>
     <message>
         <source>Zero</source>
-        <translation type="unfinished"/>
+        <translation>Null</translation>
     </message>
     <message>
         <source>Measure</source>
-        <translation>Measure</translation>
+        <translation>Takt</translation>
     </message>
     <message>
         <source>Invalid</source>
-        <translation>invalid</translation>
+        <translation>Ógildugt</translation>
     </message>
     <message>
         <source>double flat</source>
-        <translation type="unfinished"/>
+        <translation>dupult b</translation>
     </message>
     <message>
         <source>flat</source>
-        <translation type="unfinished"/>
+        <translation>b fyri nótan</translation>
     </message>
     <message>
         <source>sharp</source>
-        <translation type="unfinished"/>
+        <translation>krossur</translation>
     </message>
     <message>
         <source>double sharp</source>
-        <translation type="unfinished"/>
+        <translation>dupultur krossur</translation>
     </message>
     <message>
         <source>Internal error: Could not open resource musicxml.xsd
 </source>
-        <translation type="unfinished"/>
+        <translation>Innvortis villa: Kann ikki opna tilfeingi musicxml.xsd
+</translation>
     </message>
     <message>
         <source>Tab. balalaika</source>
-        <translation type="unfinished"/>
+        <translation>Tab. balalaika</translation>
     </message>
     <message>
         <source>Tab. 6-str. simple</source>
-        <translation type="unfinished"/>
+        <translation>Tab. 6-str. einkul</translation>
     </message>
     <message>
         <source>Tab. 6-str. common</source>
-        <translation type="unfinished"/>
+        <translation>Tab. 6-str. vanligur</translation>
     </message>
     <message>
         <source>Tab. 6-str. full</source>
-        <translation type="unfinished"/>
+        <translation>Tab. 6-str. heilur</translation>
     </message>
     <message>
         <source>Tab. 4-str. simple</source>
-        <translation type="unfinished"/>
+        <translation>Tab. 4-str. einkul</translation>
     </message>
     <message>
         <source>Tab. 4-str. common</source>
-        <translation type="unfinished"/>
+        <translation>Tab. 4-str. vanligur</translation>
     </message>
     <message>
         <source>Tab. 4-str. full</source>
-        <translation type="unfinished"/>
+        <translation>Tab. 4-str. heilur</translation>
     </message>
     <message>
         <source>Tab. 5-str. simple</source>
-        <translation type="unfinished"/>
+        <translation>Tab. 5-str. einkul</translation>
     </message>
     <message>
         <source>Tab. 5-str. common</source>
-        <translation type="unfinished"/>
+        <translation>Tab. 5-str. vanligur</translation>
     </message>
     <message>
         <source>Tab. 5-str. full</source>
-        <translation type="unfinished"/>
+        <translation>Tab. 5-str. heilur</translation>
     </message>
     <message>
         <source>Tab. 6-str. Italian</source>
-        <translation type="unfinished"/>
+        <translation>Tab. 6-str. Italienskur</translation>
     </message>
     <message>
         <source>Tab. 6-str. French</source>
-        <translation type="unfinished"/>
+        <translation>Tab. 6-str. Franskur</translation>
     </message>
     <message>
         <source>File corrupted %1</source>
-        <translation type="unfinished"/>
+        <translation>Fiíla oyðiløgd %1</translation>
     </message>
     <message>
         <source>MuseScore: Upload Error</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Uppsend feilur</translation>
     </message>
     <message>
         <source>Do you want to try to load this file anyway?</source>
-        <translation type="unfinished"/>
+        <translation>Ynskir tú at royna at taka fram alíkavæl?</translation>
     </message>
 </context>
 <context>
     <name>QWidget</name>
     <message>
         <source>MuseScore: Save Album into Score</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Goym savn inn í nótablað</translation>
     </message>
     <message>
         <source>MuseScore: Save File</source>
@@ -10673,19 +10974,19 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Save Album</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Goym savn</translation>
     </message>
     <message>
         <source>Write Album failed: </source>
-        <translation type="unfinished"/>
+        <translation>Skriva savn miseydnað:</translation>
     </message>
     <message>
         <source>MuseScore: Write Album</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Skriva Savn</translation>
     </message>
     <message>
         <source>Untitled</source>
-        <translation>Untitled</translation>
+        <translation>Ónevnd</translation>
     </message>
     <message>
         <source>MuseScore: Import Capella</source>
@@ -10693,23 +10994,23 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>Load failed: </source>
-        <translation>Load failed: </translation>
+        <translation>Tak fram, miseydnað:</translation>
     </message>
     <message>
         <source>MuseScore: Import Guitar Pro</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Flyt inn Guitar Pro</translation>
     </message>
     <message>
         <source>MuseScore: Load MIDI</source>
-        <translation>MuseScore: load MIDI</translation>
+        <translation>MuseScore: Tak fram MIDI</translation>
     </message>
     <message>
         <source>MuseScore: Load Style Failed</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Miseydnað: tak fram snið</translation>
     </message>
     <message>
         <source>MuseScore: Load Languages Failed:</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Tak fram mál, miseydnað:</translation>
     </message>
     <message>
         <source>MuseScore: Invalid Command</source>
@@ -10717,50 +11018,53 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Open Album failed</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Opna savn, miseydnað</translation>
     </message>
     <message>
         <source>Open Album File
 %1
 failed: </source>
-        <translation type="unfinished"/>
+        <translation>Opna savn fílu
+%1
+miseydnað: </translation>
     </message>
     <message>
         <source>MuseScore: Open Album File</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Opna savns fílu</translation>
     </message>
     <message>
         <source>MuseScore File (*.mscz)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Fíla (*.mscz)</translation>
     </message>
     <message>
         <source>MuseScore Files (*.album)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Fílir (*.album)</translation>
     </message>
     <message>
         <source>Overwrite?</source>
-        <translation type="unfinished"/>
+        <translation>Yvirskriva?</translation>
     </message>
     <message>
         <source>%1 already exists.
 Do you want to overwrite it?</source>
-        <translation type="unfinished"/>
+        <translation>%1 er longu til.
+Ynskir tú at yvirskriva?</translation>
     </message>
     <message>
         <source>Install SoundFont</source>
-        <translation type="unfinished"/>
+        <translation>Innset ljóðfunt</translation>
     </message>
     <message>
         <source>Do you want to install the SoundFont %1?</source>
-        <translation type="unfinished"/>
+        <translation>Ynskir tú at innseta ljóðfuntin %1?</translation>
     </message>
     <message>
         <source>SoundFont installed</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðfuntur innsettur</translation>
     </message>
     <message>
         <source>SoundFont installed. Please go to View > Synthesizer to add it and View > Mixer to choose an instrument sound.</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðfuntur innsettur. Vinarliga far til Sýning > Synthesizer fyri at leggja afturat og Sýning > Miksari fyri at velja eitt ljóðføris ljóð</translation>
     </message>
 </context>
 <context>
@@ -10774,11 +11078,11 @@ Do you want to overwrite it?</source>
     <name>Resource</name>
     <message>
         <source>MuseScore Resources</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore tilfar</translation>
     </message>
     <message>
         <source>Tab 1</source>
-        <translation type="unfinished"/>
+        <translation>Skrá 1</translation>
     </message>
     <message>
         <source>Language</source>
@@ -10786,19 +11090,19 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Filename</source>
-        <translation type="unfinished"/>
+        <translation>Fílunavn</translation>
     </message>
     <message>
         <source>File Size</source>
-        <translation type="unfinished"/>
+        <translation>Fílu stødd</translation>
     </message>
     <message>
         <source>Install/Update</source>
-        <translation type="unfinished"/>
+        <translation>Legg inn/Dagfør</translation>
     </message>
     <message>
         <source>Tab 2</source>
-        <translation type="unfinished"/>
+        <translation>Skrá 2</translation>
     </message>
 </context>
 <context>
@@ -10813,7 +11117,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Created: </source>
-        <translation type="unfinished"/>
+        <translation>Stovnað:</translation>
     </message>
     <message>
         <source>Name:</source>
@@ -10821,30 +11125,30 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Nothing selected</source>
-        <translation type="unfinished"/>
+        <translation>Einki valt</translation>
     </message>
 </context>
 <context>
     <name>SectionBreakProperties</name>
     <message>
         <source>MuseScore: Section Break Properties</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Sektión reglubrot eginleikar</translation>
     </message>
     <message>
         <source>Pause:</source>
-        <translation type="unfinished"/>
+        <translation>Pausa:</translation>
     </message>
     <message>
         <source>sec</source>
-        <translation type="unfinished"/>
+        <translation>sek</translation>
     </message>
     <message>
         <source>Start new section with long instrument names</source>
-        <translation type="unfinished"/>
+        <translation>Byrja nýggja sektión við longum ljóðførisnøvnum</translation>
     </message>
     <message>
         <source>Start new section with measure number one</source>
-        <translation type="unfinished"/>
+        <translation>Byrja nýggja sektión við takt nummar eitt.</translation>
     </message>
 </context>
 <context>
@@ -10859,62 +11163,62 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Select</source>
-        <translation>Select</translation>
+        <translation>Vel</translation>
     </message>
     <message>
         <source>Element type:</source>
-        <translation type="unfinished"/>
+        <translation>Element Slag</translation>
     </message>
     <message>
         <source>Same staff</source>
-        <translation type="unfinished"/>
+        <translation>Sami stavur</translation>
     </message>
     <message>
         <source>Same voice</source>
-        <translation type="unfinished"/>
+        <translation>Sama rødd</translation>
     </message>
     <message>
         <source>Same subtype:</source>
-        <translation type="unfinished"/>
+        <translation>Sama undirslag</translation>
     </message>
     <message>
         <source>Same system</source>
-        <translation type="unfinished"/>
+        <translation>Sama skipan</translation>
     </message>
     <message>
         <source>Replace selection</source>
-        <translation type="unfinished"/>
+        <translation>Být um úrval</translation>
     </message>
     <message>
         <source>Add to selection</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat úrvali</translation>
     </message>
     <message>
         <source>Search in selection</source>
-        <translation type="unfinished"/>
+        <translation>Leita í úrvali</translation>
     </message>
     <message>
         <source>Subtract from selection</source>
-        <translation type="unfinished"/>
+        <translation>Tak frá úrvali</translation>
     </message>
     <message>
         <source>In selection</source>
-        <translation type="unfinished"/>
+        <translation>Í úrvali</translation>
     </message>
 </context>
 <context>
     <name>SelectInstrument</name>
     <message>
         <source>MuseScore: Select Instrument</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Vel ljóðføri</translation>
     </message>
     <message>
         <source>0</source>
-        <translation type="unfinished"/>
+        <translation>0</translation>
     </message>
     <message>
         <source>Search</source>
-        <translation type="unfinished"/>
+        <translation>Leita</translation>
     </message>
     <message>
         <source>Clear</source>
@@ -10922,37 +11226,37 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Current instrument:</source>
-        <translation type="unfinished"/>
+        <translation>Verandi ljóðføri:</translation>
     </message>
 </context>
 <context>
     <name>SfListDialog</name>
     <message>
         <source>SoundFont Files</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðfuntu fílar</translation>
     </message>
 </context>
 <context>
     <name>SfzListDialog</name>
     <message>
         <source>SFZ Files</source>
-        <translation type="unfinished"/>
+        <translation>SFZ fílar</translation>
     </message>
 </context>
 <context>
     <name>ShortcutCaptureDialogBase</name>
     <message>
         <source>Old shortcuts:</source>
-        <translation type="unfinished"/>
+        <translation>Gamlir sniðvegir</translation>
     </message>
     <message>
         <source>New shortcut:</source>
-        <translation>New shortcut:</translation>
+        <translation>Nýggjur sniðvegur:</translation>
     </message>
     <message>
         <source>Type to set shortcut</source>
         <comment>placeholder text</comment>
-        <translation type="unfinished"/>
+        <translation>Slag sum ásetur sniðveg</translation>
     </message>
     <message>
         <source>Clear</source>
@@ -10964,7 +11268,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Replace</source>
-        <translation type="unfinished"/>
+        <translation>Skift út</translation>
     </message>
     <message>
         <source>Cancel</source>
@@ -10972,23 +11276,23 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Enter Shortcut Sequence</source>
-        <translation type="unfinished"/>
+        <translation>Innrita sniðvegsrøð</translation>
     </message>
     <message>
         <source>Press up to four keys to enter shortcut sequence</source>
-        <translation type="unfinished"/>
+        <translation>Trýst upp til fýra knappar: innrita sniðvegsrøð</translation>
     </message>
     <message>
         <source>Old shortcuts</source>
-        <translation type="unfinished"/>
+        <translation>Gamlir sniðvegir</translation>
     </message>
     <message>
         <source>New shortcut</source>
-        <translation type="unfinished"/>
+        <translation>Nýggjur sniðvegur</translation>
     </message>
     <message>
         <source>Type to set shortcut</source>
-        <translation type="unfinished"/>
+        <translation>Slag sum ásetur sniðveg</translation>
     </message>
 </context>
 <context>
@@ -11003,7 +11307,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Split point:</source>
-        <translation type="unfinished"/>
+        <translation>Klúgv punkt</translation>
     </message>
 </context>
 <context>
@@ -11025,7 +11329,7 @@ Do you want to overwrite it?</source>
     <name>StaffTextProperties</name>
     <message>
         <source>Change Channel</source>
-        <translation type="unfinished"/>
+        <translation>Broyt kanal</translation>
     </message>
     <message>
         <source>1</source>
@@ -11045,7 +11349,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Channel:</source>
-        <translation type="unfinished"/>
+        <translation>Kanal:</translation>
     </message>
     <message>
         <source>Name</source>
@@ -11053,37 +11357,39 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Description</source>
-        <translation type="unfinished"/>
+        <translation>Lýsing</translation>
     </message>
     <message>
         <source>Actions for selected channel:</source>
-        <translation type="unfinished"/>
+        <translation>Hendingar hjá valdu kanal:</translation>
     </message>
     <message>
         <source>Aeolus Stops</source>
-        <translation type="unfinished"/>
+        <translation>Aeolus Stopp</translation>
     </message>
     <message>
         <source>III</source>
-        <translation type="unfinished"/>
+        <translation>III</translation>
     </message>
     <message>
         <source>Principal
 8</source>
-        <translation type="unfinished"/>
+        <translation>Prinsipal
+8</translation>
     </message>
     <message>
         <source>Gemshorn
 8</source>
-        <translation type="unfinished"/>
+        <translation>Gemshorn
+8</translation>
     </message>
     <message>
         <source>PushButton</source>
-        <translation type="unfinished"/>
+        <translation>Trýstknappur</translation>
     </message>
     <message>
         <source>Switch one or more voices to a specified channel:</source>
-        <translation type="unfinished"/>
+        <translation>Skift eina ella fleiri røddir til ávísa kanal:</translation>
     </message>
     <message>
         <source>MIDI Action</source>
@@ -11095,7 +11401,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Swing Settings</source>
-        <translation type="unfinished"/>
+        <translation>Swing stilling</translation>
     </message>
     <message>
         <source>Swing:</source>
@@ -11103,11 +11409,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Off</source>
-        <translation type="unfinished"/>
+        <translation>Av</translation>
     </message>
     <message>
         <source>Select swing ratio:</source>
-        <translation type="unfinished"/>
+        <translation>Vel swing lutfall</translation>
     </message>
     <message>
         <source>%</source>
@@ -11115,26 +11421,26 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Eighth note</source>
-        <translation type="unfinished"/>
+        <translation>áttundnóti</translation>
     </message>
     <message>
         <source>Sixteenth note</source>
-        <translation type="unfinished"/>
+        <translation>sekstansnóti</translation>
     </message>
 </context>
 <context>
     <name>StaffTypeTemplates</name>
     <message>
         <source>Staff Type Templates</source>
-        <translation type="unfinished"/>
+        <translation>Stav slag skapilónir</translation>
     </message>
     <message>
         <source>Save Templates</source>
-        <translation type="unfinished"/>
+        <translation>Goym skapilónir</translation>
     </message>
     <message>
         <source>Load Templates</source>
-        <translation type="unfinished"/>
+        <translation>Tak fram skapilón</translation>
     </message>
 </context>
 <context>
@@ -11149,22 +11455,22 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Load Score</source>
-        <translation type="unfinished"/>
+        <translation>Tak fram nótablað</translation>
     </message>
     <message>
         <source>Startup Dialog</source>
-        <translation type="unfinished"/>
+        <translation>Byrjunar Gluggi</translation>
     </message>
 </context>
 <context>
     <name>Startcenter</name>
     <message>
         <source>Start Center</source>
-        <translation type="unfinished"/>
+        <translation>Byrjunar depil</translation>
     </message>
     <message>
         <source>Open a score...</source>
-        <translation type="unfinished"/>
+        <translation>Opna eitt nótablað...</translation>
     </message>
     <message>
         <source>Close</source>
@@ -11179,7 +11485,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>System flag</source>
-        <translation type="unfinished"/>
+        <translation>Skipanarmerki</translation>
+    </message>
+    <message>
+        <source>Search...</source>
+        <translation>Leita...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Rudda</translation>
     </message>
 </context>
 <context>
@@ -11190,11 +11504,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Save to Score</source>
-        <translation type="unfinished"/>
+        <translation>Goym til nótablað</translation>
     </message>
     <message>
         <source>Load from Score</source>
-        <translation type="unfinished"/>
+        <translation>Tak fram úr nótablaði</translation>
     </message>
     <message>
         <source>Vol</source>
@@ -11202,15 +11516,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Master Effects</source>
-        <translation type="unfinished"/>
+        <translation>Høvuðs effektir</translation>
     </message>
     <message>
         <source>Effect B:</source>
-        <translation type="unfinished"/>
+        <translation>Effekt B:</translation>
     </message>
     <message>
         <source>Effect A:</source>
-        <translation type="unfinished"/>
+        <translation>Effekt A:</translation>
     </message>
     <message>
         <source>Tuning</source>
@@ -11223,81 +11537,81 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Change Tuning</source>
-        <translation type="unfinished"/>
+        <translation>Broyt stilling</translation>
     </message>
     <message>
         <source>Master volume</source>
-        <translation type="unfinished"/>
+        <translation>Høvuðs ljóðstyrki</translation>
     </message>
     <message>
         <source>Set as Default</source>
-        <translation type="unfinished"/>
+        <translation>Set sum forsett</translation>
     </message>
     <message>
         <source>Load Default</source>
-        <translation type="unfinished"/>
+        <translation>Tak fram forsett</translation>
     </message>
     <message>
         <source>Master tuning:</source>
-        <translation type="unfinished"/>
+        <translation>Høvuðs stilling:</translation>
     </message>
     <message>
         <source>Save to score</source>
-        <translation type="unfinished"/>
+        <translation>Goym til nótablað</translation>
     </message>
     <message>
         <source>Load from score</source>
-        <translation type="unfinished"/>
+        <translation>Tak fram úr nótablaði</translation>
     </message>
     <message>
         <source>Use up and down arrows to modify</source>
-        <translation type="unfinished"/>
+        <translation>Brúka upp og niður pílar at broyta</translation>
     </message>
     <message>
         <source>Metronome gain</source>
-        <translation type="unfinished"/>
+        <translation>Metronom styrki</translation>
     </message>
     <message>
         <source>Effect A</source>
-        <translation type="unfinished"/>
+        <translation>Effekt A</translation>
     </message>
     <message>
         <source>Effect B</source>
-        <translation type="unfinished"/>
+        <translation>Effekt B</translation>
     </message>
     <message>
         <source>Hertz</source>
-        <translation type="unfinished"/>
+        <translation>Hertz</translation>
     </message>
     <message>
         <source>Master tuning</source>
-        <translation type="unfinished"/>
+        <translation>Høvuðs stilling</translation>
     </message>
 </context>
 <context>
     <name>TextPaletteBase</name>
     <message>
         <source>MuseScore: Special Characters</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Serstakt skriftsnið</translation>
     </message>
     <message>
         <source>Code Page:</source>
-        <translation type="unfinished"/>
+        <translation>Kodu síða</translation>
     </message>
     <message>
         <source>Common</source>
-        <translation type="unfinished"/>
+        <translation>Vanligt</translation>
     </message>
     <message>
         <source>All</source>
-        <translation type="unfinished"/>
+        <translation>Øll</translation>
     </message>
 </context>
 <context>
     <name>TextProperties</name>
     <message>
         <source>Style:</source>
-        <translation>Style:</translation>
+        <translation>Snið:</translation>
     </message>
     <message>
         <source>Text</source>
@@ -11317,7 +11631,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>System flag</source>
-        <translation type="unfinished"/>
+        <translation>Skipanarmerki</translation>
     </message>
     <message>
         <source>Offset</source>
@@ -11326,12 +11640,12 @@ Do you want to overwrite it?</source>
     <message>
         <source>Horizontal:</source>
         <extracomment>coordinate</extracomment>
-        <translation type="unfinished"/>
+        <translation>Vatnrætt</translation>
     </message>
     <message>
         <source>Vertical:</source>
         <extracomment>coordinate</extracomment>
-        <translation type="unfinished"/>
+        <translation>Loddrætt</translation>
     </message>
     <message>
         <source>Unit:</source>
@@ -11359,155 +11673,155 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Foreground color:</source>
-        <translation type="unfinished"/>
+        <translation>Litur frammanfyri:</translation>
     </message>
     <message>
         <source>Background color:</source>
-        <translation type="unfinished"/>
+        <translation>Litur aftanfyri</translation>
     </message>
     <message>
         <source>Alignment</source>
-        <translation type="unfinished"/>
+        <translation>Í beinum rað</translation>
     </message>
     <message>
         <source>Reset to Style</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla til snið</translation>
     </message>
     <message>
         <source>Text margin:</source>
-        <translation type="unfinished"/>
+        <translation>Tekst breddi:</translation>
     </message>
     <message>
         <source>Border radius:</source>
-        <translation type="unfinished"/>
+        <translation>Rammi radius:</translation>
     </message>
     <message>
         <source>Font face</source>
-        <translation type="unfinished"/>
+        <translation>Funt høvd</translation>
     </message>
     <message>
         <source>Font point size</source>
-        <translation type="unfinished"/>
+        <translation>Funt punt stødd</translation>
     </message>
     <message>
         <source>Bold</source>
-        <translation type="unfinished"/>
+        <translation>Feitir</translation>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Skákskriva</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Strika undir</translation>
     </message>
     <message>
         <source>Text color</source>
-        <translation type="unfinished"/>
+        <translation>Tekst litur</translation>
     </message>
     <message>
         <source>Horizontal offset to reference point</source>
-        <translation type="unfinished"/>
+        <translation>Vatnrætt offsett til tilvísingar punkt</translation>
     </message>
     <message>
         <source>Vertical offset to reference point</source>
-        <translation type="unfinished"/>
+        <translation>Loddrætt offsett til tilvísingar punkt</translation>
     </message>
     <message>
         <source>Offset is absolute</source>
-        <translation type="unfinished"/>
+        <translation>Offsett er treytaleyst</translation>
     </message>
     <message>
         <source>Align left edge of text to reference point</source>
-        <translation type="unfinished"/>
+        <translation>Stilla vinstra bredda av teksti til tilvísingarpunkt</translation>
     </message>
     <message>
         <source>Center text on reference point</source>
-        <translation type="unfinished"/>
+        <translation>Miðset tekst á tilvísingar punkt</translation>
     </message>
     <message>
         <source>Align top edge of text to reference point</source>
-        <translation type="unfinished"/>
+        <translation>Stilla ovara bredda av teksti til tilvísingar punkt</translation>
     </message>
     <message>
         <source>Align right edge of text to reference point</source>
-        <translation type="unfinished"/>
+        <translation>Stilla høgra bredda av teksti til tilvísingar punkt</translation>
     </message>
     <message>
         <source>Center text vertical to reference point</source>
-        <translation type="unfinished"/>
+        <translation>Miðset tekst loddrætt til tilvísingar punkt</translation>
     </message>
     <message>
         <source>Align bottom edge of text to reference point</source>
-        <translation type="unfinished"/>
+        <translation>Stilla niðara bredda av teksti til tilvísingar punkt</translation>
     </message>
     <message>
         <source>Enable text frame</source>
-        <translation type="unfinished"/>
+        <translation>Gilda tekst rammu</translation>
     </message>
     <message>
         <source>Draw circled frame</source>
-        <translation type="unfinished"/>
+        <translation>Tekna sirkul rammu</translation>
     </message>
     <message>
         <source>Draw boxed frame</source>
-        <translation type="unfinished"/>
+        <translation>Tekna kassa rammu</translation>
     </message>
     <message>
         <source>Border thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Rammu tjúkt:</translation>
     </message>
     <message>
         <source>Frame line thickness</source>
-        <translation type="unfinished"/>
+        <translation>Rammu striku vídd</translation>
     </message>
     <message>
         <source>Frame inner margin</source>
-        <translation type="unfinished"/>
+        <translation>Innari breddi á rammu</translation>
     </message>
     <message>
         <source>Corner round</source>
-        <translation type="unfinished"/>
+        <translation>Horn runt</translation>
     </message>
     <message>
         <source>Text background color</source>
-        <translation type="unfinished"/>
+        <translation>Tekst bakgrund mynd</translation>
     </message>
     <message>
         <source>Frame color</source>
-        <translation type="unfinished"/>
+        <translation>Rammu litur</translation>
     </message>
     <message>
         <source>Distance between two lines on a standard 5-line staff</source>
-        <translation type="unfinished"/>
+        <translation>Fjarstøða millum tvær linjur á normalum 5-linju stavi</translation>
     </message>
     <message>
         <source>Offset in staff space units</source>
-        <translation type="unfinished"/>
+        <translation>Offsett í stav millumrúms eindum</translation>
     </message>
     <message>
         <source>Staff space</source>
         <extracomment>spatium unit</extracomment>
-        <translation type="unfinished"/>
+        <translation>Stav millumrúm</translation>
     </message>
     <message>
         <source>Size follows 'Staff space' setting</source>
-        <translation type="unfinished"/>
+        <translation>Stødd fylgir "stav millumrúm" stilling</translation>
     </message>
     <message>
         <source>Align baseline of text to reference point</source>
-        <translation type="unfinished"/>
+        <translation>Stilla grundlinju á teksti til tilvísingar punkt</translation>
     </message>
 </context>
 <context>
     <name>TextStyle</name>
     <message>
         <source>Title</source>
-        <translation>Title</translation>
+        <translation>Heiti</translation>
     </message>
     <message>
         <source>Subtitle</source>
-        <translation>Subtitle</translation>
+        <translation>Undirheiti</translation>
     </message>
     <message>
         <source>Composer</source>
@@ -11515,15 +11829,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Lyricist</source>
-        <translation type="unfinished"/>
+        <translation>Songtekstarithøvundur</translation>
     </message>
     <message>
         <source>Lyrics Odd Lines</source>
-        <translation type="unfinished"/>
+        <translation>Tekstur stak linja</translation>
     </message>
     <message>
         <source>Lyrics Even Lines</source>
-        <translation type="unfinished"/>
+        <translation>Tekstur maka linja</translation>
     </message>
     <message>
         <source>Fingering</source>
@@ -11531,15 +11845,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Instrument Name (Long)</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðførisnavn (Langt)</translation>
     </message>
     <message>
         <source>Instrument Name (Short)</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðførisnavn (Stutt)</translation>
     </message>
     <message>
         <source>Instrument Name (Part)</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðførisnavn (Partur)</translation>
     </message>
     <message>
         <source>Dynamics</source>
@@ -11547,7 +11861,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Technique</source>
-        <translation type="unfinished"/>
+        <translation>Teknikkur</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -11567,11 +11881,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Nótabólkur</translation>
     </message>
     <message>
         <source>System</source>
-        <translation>System</translation>
+        <translation>Skipan</translation>
     </message>
     <message>
         <source>Staff</source>
@@ -11579,7 +11893,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Chord Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Akkord symbol</translation>
     </message>
     <message>
         <source>Rehearsal Mark</source>
@@ -11587,11 +11901,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Repeat Text Left</source>
-        <translation type="unfinished"/>
+        <translation>Endurtak tekst vinstru</translation>
     </message>
     <message>
         <source>Repeat Text Right</source>
-        <translation type="unfinished"/>
+        <translation>Endurtak tekst høgru</translation>
     </message>
     <message>
         <source>Repeat Text</source>
@@ -11607,7 +11921,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Text Line</source>
-        <translation type="unfinished"/>
+        <translation>Tekst linja</translation>
     </message>
     <message>
         <source>Glissando</source>
@@ -11623,42 +11937,42 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Bend</source>
-        <translation type="unfinished"/>
+        <translation>Bend</translation>
     </message>
     <message>
         <source>Header</source>
-        <translation type="unfinished"/>
+        <translation>Teksthøvd</translation>
     </message>
     <message>
         <source>Footer</source>
-        <translation type="unfinished"/>
+        <translation>Tekstfótur</translation>
     </message>
     <message>
         <source>Instrument Change</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðføri, broyting</translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation type="unfinished"/>
+        <translation>Besiffraður bassur</translation>
     </message>
     <message>
         <source>LH Guitar Fingering</source>
-        <translation type="unfinished"/>
+        <translation>VH guitar fingrasetningur</translation>
     </message>
     <message>
         <source>RH Guitar Fingering</source>
-        <translation type="unfinished"/>
+        <translation>HH guitar fingrasetingur</translation>
     </message>
     <message>
         <source>Pedal</source>
-        <translation type="unfinished"/>
+        <translation>Pedal</translation>
     </message>
 </context>
 <context>
     <name>TextStyleDialog</name>
     <message>
         <source>MuseScore: Edit Text Styles</source>
-        <translation>MuseScore: Edit Text Styles</translation>
+        <translation>MuseScore: broyt tekst snið</translation>
     </message>
     <message>
         <source>New</source>
@@ -11676,11 +11990,11 @@ Do you want to overwrite it?</source>
     <name>TimeDialogBase</name>
     <message>
         <source>Create Time Signature</source>
-        <translation>Create Time Signature</translation>
+        <translation>Stovna takt slag</translation>
     </message>
     <message>
         <source>Value:</source>
-        <translation type="unfinished"/>
+        <translation>Virði:</translation>
     </message>
     <message>
         <source>/</source>
@@ -11700,15 +12014,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>8</source>
-        <translation type="unfinished"/>
+        <translation>8</translation>
     </message>
     <message>
         <source>16</source>
-        <translation type="unfinished"/>
+        <translation>16</translation>
     </message>
     <message>
         <source>32</source>
-        <translation type="unfinished"/>
+        <translation>32</translation>
     </message>
     <message>
         <source>64</source>
@@ -11724,14 +12038,14 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Add time signature to palette</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat takt slag til palett</translation>
     </message>
 </context>
 <context>
     <name>TimeSigProperties</name>
     <message>
         <source>Time Signature Properties</source>
-        <translation type="unfinished"/>
+        <translation>Takt slag eginleikar</translation>
     </message>
     <message>
         <source>/</source>
@@ -11743,15 +12057,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Note Groups</source>
-        <translation type="unfinished"/>
+        <translation>Nóta bólkar</translation>
     </message>
     <message>
         <source>Values</source>
-        <translation type="unfinished"/>
+        <translation>Virðir</translation>
     </message>
     <message>
         <source>Appearance</source>
-        <translation type="unfinished"/>
+        <translation>Framkoma</translation>
     </message>
     <message>
         <source>Other:</source>
@@ -11759,18 +12073,18 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Global value:</source>
-        <translation type="unfinished"/>
+        <translation>Globalt virði:</translation>
     </message>
     <message>
         <source>Actual value:</source>
-        <translation type="unfinished"/>
+        <translation>Veruligt virði:</translation>
     </message>
 </context>
 <context>
     <name>TimesigWizard</name>
     <message>
         <source>Enter Time Signature:</source>
-        <translation>Enter Time Signature:</translation>
+        <translation>Set inn takt slag:</translation>
     </message>
     <message>
         <source>/</source>
@@ -11790,15 +12104,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>8</source>
-        <translation type="unfinished"/>
+        <translation>8</translation>
     </message>
     <message>
         <source>16</source>
-        <translation type="unfinished"/>
+        <translation>16</translation>
     </message>
     <message>
         <source>32</source>
-        <translation type="unfinished"/>
+        <translation>32</translation>
     </message>
     <message>
         <source>64</source>
@@ -11810,7 +12124,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Duration:</source>
-        <translation type="unfinished"/>
+        <translation>Tíðarbil:</translation>
     </message>
     <message>
         <source>Enter Number of Measures:</source>
@@ -11826,23 +12140,23 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Common time</source>
-        <translation type="unfinished"/>
+        <translation>Vanlig takt</translation>
     </message>
     <message>
         <source>Time Signature Wizard</source>
-        <translation type="unfinished"/>
+        <translation>Takt slag flogvit</translation>
     </message>
     <message>
         <source>Beat unit</source>
-        <translation type="unfinished"/>
+        <translation>Slag eind</translation>
     </message>
     <message>
         <source>Common Time</source>
-        <translation type="unfinished"/>
+        <translation>vanlig takt</translation>
     </message>
     <message>
         <source>Enter Number of Measures</source>
-        <translation type="unfinished"/>
+        <translation>Skriva tal av taktum</translation>
     </message>
     <message>
         <source>Measures</source>
@@ -11850,22 +12164,22 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Cut Time</source>
-        <translation type="unfinished"/>
+        <translation>Klipp tíð</translation>
     </message>
     <message>
         <source>Beats in a measure</source>
-        <translation type="unfinished"/>
+        <translation>Sløg í einari takt</translation>
     </message>
     <message>
         <source>Hint: You can also add or remove measures after creation of the score.</source>
-        <translation type="unfinished"/>
+        <translation>Ráð: Legg afturat ella tak burtur taktir aftaná nótablaðið er framleitt.</translation>
     </message>
 </context>
 <context>
     <name>TransposeDialogBase</name>
     <message>
         <source>MuseScore: Transpose</source>
-        <translation>MuseScore: Transpose</translation>
+        <translation>MuseScore: Transponera</translation>
     </message>
     <message>
         <source>F major / D minor</source>
@@ -12001,35 +12315,35 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Transpose key signatures</source>
-        <translation>Transpose key signatures</translation>
+        <translation>Transponera ljómslagstekin</translation>
     </message>
     <message>
         <source>Second</source>
-        <translation type="unfinished"/>
+        <translation>Annar</translation>
     </message>
     <message>
         <source>Third</source>
-        <translation type="unfinished"/>
+        <translation>Triðji</translation>
     </message>
     <message>
         <source>Fourth</source>
-        <translation type="unfinished"/>
+        <translation>Fjórði</translation>
     </message>
     <message>
         <source>Fifth</source>
-        <translation type="unfinished"/>
+        <translation>Fimti</translation>
     </message>
     <message>
         <source>Sixth</source>
-        <translation type="unfinished"/>
+        <translation>Sætti</translation>
     </message>
     <message>
         <source>Seventh</source>
-        <translation type="unfinished"/>
+        <translation>Sjeyndi</translation>
     </message>
     <message>
         <source>Keep degree alterations</source>
-        <translation type="unfinished"/>
+        <translation>Goym stig broytingar</translation>
     </message>
     <message>
         <source>Options</source>
@@ -12037,163 +12351,163 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Transpose chord symbols</source>
-        <translation type="unfinished"/>
+        <translation>Transponera akkord symbol</translation>
     </message>
     <message>
         <source>Câ™­ major / Aâ™­ minor</source>
-        <translation type="unfinished"/>
+        <translation>Câ™­ dur / Aâ™­ moll</translation>
     </message>
     <message>
         <source>Gâ™­ major / Eâ™­ minor</source>
-        <translation type="unfinished"/>
+        <translation>Gâ™­ dur / Eâ™­ moll</translation>
     </message>
     <message>
         <source>Dâ™­ major / Bâ™­ minor</source>
-        <translation type="unfinished"/>
+        <translation>Dâ™­ dur / Bâ™­ moll</translation>
     </message>
     <message>
         <source>Aâ™­ major / F minor</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ dur / F moll</translation>
     </message>
     <message>
         <source>Eâ™­ major / C minor</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ dur / C moll</translation>
     </message>
     <message>
         <source>Bâ™­ major / G minor</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ dur / G moll</translation>
     </message>
     <message>
         <source>A major / F♯ minor</source>
-        <translation type="unfinished"/>
+        <translation>A dur / F♯ moll</translation>
     </message>
     <message>
         <source>E major / C♯ minor</source>
-        <translation type="unfinished"/>
+        <translation>E dur / C♯ moll</translation>
     </message>
     <message>
         <source>B major / G♯ minor</source>
-        <translation type="unfinished"/>
+        <translation>B dur / G♯ moll</translation>
     </message>
     <message>
         <source>F♯ major / D♯ minor</source>
-        <translation type="unfinished"/>
+        <translation>F♯ dur / D♯ moll</translation>
     </message>
     <message>
         <source>C♯ major / A♯ minor</source>
-        <translation type="unfinished"/>
+        <translation>C♯ dur / A♯ moll</translation>
     </message>
     <message>
         <source>Single Sharps and Flats Only</source>
-        <translation type="unfinished"/>
+        <translation>Bert einstakir krossar og b</translation>
     </message>
     <message>
         <source>Use Double Sharps and Flats</source>
-        <translation type="unfinished"/>
+        <translation>Brúka dupult krossar og b</translation>
     </message>
     <message>
         <source>Transpose Chromatically</source>
-        <translation type="unfinished"/>
+        <translation>Transponera kromatiskt</translation>
     </message>
     <message>
         <source>By Key</source>
-        <translation type="unfinished"/>
+        <translation>Eftir ljómslagi</translation>
     </message>
     <message>
         <source>By Interval</source>
-        <translation type="unfinished"/>
+        <translation>Eftir intervalli</translation>
     </message>
     <message>
         <source>Transpose Diatonically</source>
-        <translation type="unfinished"/>
+        <translation>Transponera diatoniskt</translation>
     </message>
 </context>
 <context>
     <name>Tremolo</name>
     <message>
         <source>Eighth through stem</source>
-        <translation type="unfinished"/>
+        <translation>Áttund gjøgnum legg</translation>
     </message>
     <message>
         <source>16th through stem</source>
-        <translation type="unfinished"/>
+        <translation>16prt gjøgnum legg</translation>
     </message>
     <message>
         <source>32nd through stem</source>
-        <translation type="unfinished"/>
+        <translation>32prt gjøgnum legg</translation>
     </message>
     <message>
         <source>64th through stem</source>
-        <translation type="unfinished"/>
+        <translation>64prt gjøgnum legg</translation>
     </message>
     <message>
         <source>Eighth between notes</source>
-        <translation type="unfinished"/>
+        <translation>Áttund millum nótar</translation>
     </message>
     <message>
         <source>16th between notes</source>
-        <translation type="unfinished"/>
+        <translation>16prt millum nótar</translation>
     </message>
     <message>
         <source>32nd between notes</source>
-        <translation type="unfinished"/>
+        <translation>32prt millum nótar</translation>
     </message>
     <message>
         <source>64th between notes</source>
-        <translation type="unfinished"/>
+        <translation>64prt millum nótar</translation>
     </message>
 </context>
 <context>
     <name>TremoloBarDialog</name>
     <message>
         <source>Bend type:</source>
-        <translation type="unfinished"/>
+        <translation>Bendingar slag</translation>
     </message>
     <message>
         <source>Click to add or remove some points</source>
-        <translation type="unfinished"/>
+        <translation>Klikk og legg afturat tak frá nøkur punkt</translation>
     </message>
     <message>
         <source>Dip</source>
-        <translation type="unfinished"/>
+        <translation>Dypp</translation>
     </message>
     <message>
         <source>Dive</source>
-        <translation type="unfinished"/>
+        <translation>Kav</translation>
     </message>
     <message>
         <source>Inverted Dip</source>
-        <translation type="unfinished"/>
+        <translation>Umvent dyp</translation>
     </message>
     <message>
         <source>Return</source>
-        <translation type="unfinished"/>
+        <translation>Aftur</translation>
     </message>
     <message>
         <source>MuseScore: Tremolo Bar Properties</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Tremolo takt eginleiki</translation>
     </message>
     <message>
         <source>Release(Up)</source>
-        <translation type="unfinished"/>
+        <translation>Sleppa (Upp)</translation>
     </message>
     <message>
         <source>Release(Down)</source>
-        <translation type="unfinished"/>
+        <translation>Sleppa (niður)</translation>
     </message>
 </context>
 <context>
     <name>TupletBase</name>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Nótabólkur</translation>
     </message>
 </context>
 <context>
     <name>TupletDialog</name>
     <message>
         <source>MuseScore: Create Tuplet</source>
-        <translation>MuseScore: create tuplet</translation>
+        <translation>MuseScore: Stovna nótabólk</translation>
     </message>
     <message>
         <source>Type</source>
@@ -12213,11 +12527,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Bracket</source>
-        <translation>Bracket</translation>
+        <translation>Klombur</translation>
     </message>
     <message>
         <source>Relation:</source>
-        <translation type="unfinished"/>
+        <translation>Samband:</translation>
     </message>
     <message>
         <source>Relation</source>
@@ -12229,54 +12543,54 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Auto bracket</source>
-        <translation>auto bracket</translation>
+        <translation>Auto klombur</translation>
     </message>
 </context>
 <context>
     <name>UploadScoreDialog</name>
     <message>
         <source>Score Information</source>
-        <translation type="unfinished"/>
+        <translation>Nótablaðs upplýsingar</translation>
     </message>
     <message>
         <source>You're logged in as</source>
-        <translation type="unfinished"/>
+        <translation>Tú ert innritaður sum</translation>
     </message>
     <message>
         <source>USERNAME</source>
-        <translation type="unfinished"/>
+        <translation>BRÚKARANAVN</translation>
     </message>
     <message>
         <source>Sign out</source>
-        <translation type="unfinished"/>
+        <translation>Rita út</translation>
     </message>
     <message>
         <source>Sign out on exit</source>
-        <translation type="unfinished"/>
+        <translation>Rita út við útgongd</translation>
     </message>
     <message>
         <source>Title</source>
-        <translation>Title</translation>
+        <translation>Heiti</translation>
     </message>
     <message>
         <source>Description</source>
-        <translation type="unfinished"/>
+        <translation>Lýsing</translation>
     </message>
     <message>
         <source>License</source>
-        <translation type="unfinished"/>
+        <translation>Hald</translation>
     </message>
     <message>
         <source>Tags</source>
-        <translation type="unfinished"/>
+        <translation>Frámerkir</translation>
     </message>
     <message>
         <source>Update the existing score </source>
-        <translation type="unfinished"/>
+        <translation>Dagfør nótablað sum er</translation>
     </message>
     <message>
         <source>Make this score private</source>
-        <translation type="unfinished"/>
+        <translation>Ger nótablaðið privat</translation>
     </message>
 </context>
 <context>
@@ -12298,104 +12612,106 @@ Do you want to overwrite it?</source>
     <name>Workspace</name>
     <message>
         <source>MuseScore: Writing Workspace File</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Skrivar arbeiðsrúm fílu</translation>
     </message>
     <message>
         <source>Writing Workspace File
 %1
 failed: </source>
-        <translation type="unfinished"/>
+        <translation>Skrivar arbeiðsrúm fílu
+%1
+miseydnað: </translation>
     </message>
 </context>
 <context>
     <name>XmlStream</name>
     <message>
         <source>Extra content at end of document.</source>
-        <translation type="unfinished"/>
+        <translation>Eyka innihald við enda á skjali</translation>
     </message>
     <message>
         <source>Invalid entity value.</source>
-        <translation type="unfinished"/>
+        <translation>Ógildugt einindis virðir</translation>
     </message>
     <message>
         <source>Invalid XML character.</source>
-        <translation type="unfinished"/>
+        <translation>Ógildigur XML eginleiki</translation>
     </message>
     <message>
         <source>Sequence ']]>' not allowed in content.</source>
-        <translation type="unfinished"/>
+        <translation>Rað ']]>' ikki loyvt í innihaldi.</translation>
     </message>
     <message>
         <source>Encountered incorrectly encoded content.</source>
-        <translation type="unfinished"/>
+        <translation>Møtti skeivt kodaðum innihaldi</translation>
     </message>
     <message>
         <source>Namespace prefix '%1' not declared</source>
-        <translation type="unfinished"/>
+        <translation>Navnamillumrúm forskoyti '%1' ikki fráboða</translation>
     </message>
     <message>
         <source>Illegal namespace declaration.</source>
-        <translation type="unfinished"/>
+        <translation>Ólógligt navnamillumrúm fráboðan.</translation>
     </message>
     <message>
         <source>Attribute redefined.</source>
-        <translation type="unfinished"/>
+        <translation>Eginleiki umásettur.</translation>
     </message>
     <message>
         <source>Unexpected character '%1' in public id literal.</source>
-        <translation type="unfinished"/>
+        <translation>Óvæntaður karakterur '%1' í almennum id orðarætt.</translation>
     </message>
     <message>
         <source>Invalid XML version string.</source>
-        <translation type="unfinished"/>
+        <translation>Ógildugur XML útgávu strongur.</translation>
     </message>
     <message>
         <source>Unsupported XML version.</source>
-        <translation type="unfinished"/>
+        <translation>Ikki stuðlað XML útgáva</translation>
     </message>
     <message>
         <source>The standalone pseudo attribute must appear after the encoding.</source>
-        <translation type="unfinished"/>
+        <translation>Sjálvstøðugi falski eginleikin má koma fram aftaná kodingina</translation>
     </message>
     <message>
         <source>%1 is an invalid encoding name.</source>
-        <translation type="unfinished"/>
+        <translation>%1 er eitt ógildugt kodu navn.</translation>
     </message>
     <message>
         <source>Encoding %1 is unsupported</source>
-        <translation type="unfinished"/>
+        <translation>Koda %1 er óstuðlað</translation>
     </message>
     <message>
         <source>Standalone accepts only yes or no.</source>
-        <translation type="unfinished"/>
+        <translation>Sjálvstøðugi góðtekur bert ja ella nei</translation>
     </message>
     <message>
         <source>Invalid attribute in XML declaration.</source>
-        <translation type="unfinished"/>
+        <translation>Ógildigur eginleiki í XML lýsing</translation>
     </message>
     <message>
         <source>Premature end of document.</source>
-        <translation type="unfinished"/>
+        <translation>Ófullborin endi á skjali.</translation>
     </message>
     <message>
         <source>Invalid document.</source>
-        <translation type="unfinished"/>
+        <translation>Ógildugt skjal.</translation>
     </message>
     <message>
         <source>Expected </source>
-        <translation type="unfinished"/>
+        <translation>Væntað</translation>
     </message>
     <message>
         <source>, but got '</source>
-        <translation type="unfinished"/>
+        <translation>, Men hevur '</translation>
     </message>
     <message>
         <source>Unexpected '</source>
-        <translation type="unfinished"/>
+        <translation>Óvæntað '</translation>
     </message>
     <message>
         <source>Expected character data.</source>
-        <translation type="unfinished"/>
+        <translation>Væntað sermerkis tilfar.</translation>
     </message>
 </context>
 <context>
@@ -12410,15 +12726,15 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>SoundFont %1 already loaded</source>
-        <translation type="unfinished"/>
+        <translation>SoundFont %1 longu frammi</translation>
     </message>
     <message>
         <source>Cannot load SoundFont %1</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki taka fram SoundFont %1</translation>
     </message>
 </context>
 <context>
@@ -12429,7 +12745,7 @@ failed: </source>
     </message>
     <message>
         <source>Sharp</source>
-        <translation>sharp</translation>
+        <translation>krossur</translation>
     </message>
     <message>
         <source>Flat</source>
@@ -12437,7 +12753,7 @@ failed: </source>
     </message>
     <message>
         <source>Double sharp</source>
-        <translation>double sharp</translation>
+        <translation>dupultur krossur</translation>
     </message>
     <message>
         <source>Double flat</source>
@@ -12449,94 +12765,94 @@ failed: </source>
     </message>
     <message>
         <source>Flat-slash</source>
-        <translation type="unfinished"/>
+        <translation>b tekin-strika</translation>
     </message>
     <message>
         <source>Flat-slash2</source>
-        <translation type="unfinished"/>
+        <translation>b tekin-strika2</translation>
     </message>
     <message>
         <source>Mirrored-flat2</source>
-        <translation type="unfinished"/>
+        <translation>Speglað-b tekin2</translation>
     </message>
     <message>
         <source>Mirrored-flat</source>
-        <translation type="unfinished"/>
+        <translation>Speglað-b tekin</translation>
     </message>
     <message>
         <source>Mirrored-flat-slash</source>
-        <translation type="unfinished"/>
+        <translation>Speglað-b tekin-stirka</translation>
     </message>
     <message>
         <source>Flat-flat-slash</source>
-        <translation type="unfinished"/>
+        <translation>b tekin-b tekin-strika</translation>
     </message>
     <message>
         <source>Sharp-slash</source>
-        <translation type="unfinished"/>
+        <translation>Krossur-strika</translation>
     </message>
     <message>
         <source>Sharp-slash2</source>
-        <translation type="unfinished"/>
+        <translation>Krossur-strika2</translation>
     </message>
     <message>
         <source>Sharp-slash3</source>
-        <translation type="unfinished"/>
+        <translation>Krossur-strika3</translation>
     </message>
     <message>
         <source>Sharp-slash4</source>
-        <translation type="unfinished"/>
+        <translation>Krossur-strika4</translation>
     </message>
     <message>
         <source>Sharp arrow up</source>
-        <translation type="unfinished"/>
+        <translation>Kross pílur upp</translation>
     </message>
     <message>
         <source>Sharp arrow down</source>
-        <translation type="unfinished"/>
+        <translation>Kross pílur niður</translation>
     </message>
     <message>
         <source>Sharp arrow both</source>
-        <translation type="unfinished"/>
+        <translation>Kross pílar báðir</translation>
     </message>
     <message>
         <source>Flat arrow up</source>
-        <translation type="unfinished"/>
+        <translation>b tekin pílur upp</translation>
     </message>
     <message>
         <source>Flat arrow down</source>
-        <translation type="unfinished"/>
+        <translation>b tekin pílur niður</translation>
     </message>
     <message>
         <source>Flat arrow both</source>
-        <translation type="unfinished"/>
+        <translation>b tekin pílar báðir</translation>
     </message>
     <message>
         <source>Natural arrow up</source>
-        <translation type="unfinished"/>
+        <translation>reinur nóti pílur upp</translation>
     </message>
     <message>
         <source>Natural arrow down</source>
-        <translation type="unfinished"/>
+        <translation>Reinur nóti pílur niður</translation>
     </message>
     <message>
         <source>Natural arrow both</source>
-        <translation type="unfinished"/>
+        <translation>Reinur nóti báðir pílar</translation>
     </message>
     <message>
         <source>Sori</source>
-        <translation type="unfinished"/>
+        <translation>Sori</translation>
     </message>
     <message>
         <source>Koron</source>
-        <translation type="unfinished"/>
+        <translation>Koron</translation>
     </message>
 </context>
 <context>
     <name>action</name>
     <message>
         <source>Local Handbook...</source>
-        <translation type="unfinished"/>
+        <translation>StaðbundinHandbók</translation>
     </message>
     <message>
         <source>Local handbook</source>
@@ -12552,7 +12868,7 @@ failed: </source>
     </message>
     <message>
         <source>Load score from file</source>
-        <translation>Load score from file</translation>
+        <translation>Tak fram nótablað úr fílu</translation>
     </message>
     <message>
         <source>Save</source>
@@ -12572,11 +12888,11 @@ failed: </source>
     </message>
     <message>
         <source>Save Selection...</source>
-        <translation type="unfinished"/>
+        <translation>Goym úrval...</translation>
     </message>
     <message>
         <source>Save current selection as new score</source>
-        <translation type="unfinished"/>
+        <translation>Goym verandi úrval sum nýtt nótablað</translation>
     </message>
     <message>
         <source>Save a Copy...</source>
@@ -12588,23 +12904,23 @@ failed: </source>
     </message>
     <message>
         <source>Export...</source>
-        <translation type="unfinished"/>
+        <translation>Flyt út...</translation>
     </message>
     <message>
         <source>Export score</source>
-        <translation type="unfinished"/>
+        <translation>Flyt út nótablað</translation>
     </message>
     <message>
         <source>Save a copy of the score in various formats</source>
-        <translation type="unfinished"/>
+        <translation>Goym eitt avrit av nótablaðnum í ymsum forsniði</translation>
     </message>
     <message>
         <source>Export Parts...</source>
-        <translation type="unfinished"/>
+        <translation>Flyt út partar...</translation>
     </message>
     <message>
         <source>Save a copy of the score's parts in various formats</source>
-        <translation type="unfinished"/>
+        <translation>Goym avrit av pørtum nótablaðsins í ymsum forsniði</translation>
     </message>
     <message>
         <source>Close</source>
@@ -12624,23 +12940,23 @@ failed: </source>
     </message>
     <message>
         <source>Print...</source>
-        <translation>Printa</translation>
+        <translation>Prenta...</translation>
     </message>
     <message>
         <source>Print</source>
-        <translation>Print</translation>
+        <translation>Prenta</translation>
     </message>
     <message>
         <source>Print score</source>
-        <translation>Print score</translation>
+        <translation>Prenta nótabløð</translation>
     </message>
     <message>
         <source>Undo</source>
-        <translation>angra</translation>
+        <translation>Angra</translation>
     </message>
     <message>
         <source>Undo last change</source>
-        <translation>Undo last change</translation>
+        <translation>Angra seinastu broyting</translation>
     </message>
     <message>
         <source>Redo</source>
@@ -12648,7 +12964,7 @@ failed: </source>
     </message>
     <message>
         <source>Redo last undo</source>
-        <translation>Redo last undone change</translation>
+        <translation>Ger umaftur seinasta angra</translation>
     </message>
     <message>
         <source>Cut</source>
@@ -12668,7 +12984,7 @@ failed: </source>
     </message>
     <message>
         <source>Show instruments dialog</source>
-        <translation>Show instruments dialog</translation>
+        <translation>Vís ljóðføris vindeyga</translation>
     </message>
     <message>
         <source>Note Input</source>
@@ -12924,59 +13240,59 @@ failed: </source>
     </message>
     <message>
         <source>Insert A</source>
-        <translation type="unfinished"/>
+        <translation>Set inn A</translation>
     </message>
     <message>
         <source>Insert note A</source>
-        <translation type="unfinished"/>
+        <translation>Set inn nóta A</translation>
     </message>
     <message>
         <source>Insert B</source>
-        <translation type="unfinished"/>
+        <translation>Set inn B</translation>
     </message>
     <message>
         <source>Insert note B</source>
-        <translation type="unfinished"/>
+        <translation>Set inn nóta B</translation>
     </message>
     <message>
         <source>Insert C</source>
-        <translation type="unfinished"/>
+        <translation>Set inn C</translation>
     </message>
     <message>
         <source>Insert note C</source>
-        <translation type="unfinished"/>
+        <translation>Set inn C nóta</translation>
     </message>
     <message>
         <source>Insert D</source>
-        <translation type="unfinished"/>
+        <translation>Set inn D</translation>
     </message>
     <message>
         <source>Insert note D</source>
-        <translation type="unfinished"/>
+        <translation>Set inn D nóta</translation>
     </message>
     <message>
         <source>Insert E</source>
-        <translation type="unfinished"/>
+        <translation>Set inn E</translation>
     </message>
     <message>
         <source>Insert note E</source>
-        <translation type="unfinished"/>
+        <translation>Set inn E nóta</translation>
     </message>
     <message>
         <source>Insert F</source>
-        <translation type="unfinished"/>
+        <translation>Set inn F</translation>
     </message>
     <message>
         <source>Insert note F</source>
-        <translation type="unfinished"/>
+        <translation>Set inn F nóta</translation>
     </message>
     <message>
         <source>Insert G</source>
-        <translation type="unfinished"/>
+        <translation>Set inn G</translation>
     </message>
     <message>
         <source>Insert note G</source>
-        <translation type="unfinished"/>
+        <translation>Set inn G nóta</translation>
     </message>
     <message>
         <source>Rest</source>
@@ -12992,7 +13308,7 @@ failed: </source>
     </message>
     <message>
         <source>Tenuto</source>
-        <translation type="unfinished"/>
+        <translation>Tenuto</translation>
     </message>
     <message>
         <source>Trill</source>
@@ -13000,7 +13316,7 @@ failed: </source>
     </message>
     <message>
         <source>Marcato</source>
-        <translation type="unfinished"/>
+        <translation>Marcato</translation>
     </message>
     <message>
         <source>Reset Beam Mode</source>
@@ -13008,7 +13324,7 @@ failed: </source>
     </message>
     <message>
         <source>Reset beam mode</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla bjálka støðu</translation>
     </message>
     <message>
         <source>Reset beam mode of selected measures</source>
@@ -13024,11 +13340,11 @@ failed: </source>
     </message>
     <message>
         <source>Pitch up or move text or articulation up</source>
-        <translation type="unfinished"/>
+        <translation>Tóna upp ella flyt tekst ella framburðartekin upp</translation>
     </message>
     <message>
         <source>Diatonic pitch up</source>
-        <translation type="unfinished"/>
+        <translation>Tóna upp diatoniskt</translation>
     </message>
     <message>
         <source>Up Octave</source>
@@ -13040,7 +13356,7 @@ failed: </source>
     </message>
     <message>
         <source>Pitch up by an octave or move text or articulation up</source>
-        <translation type="unfinished"/>
+        <translation>Tóna upp ein áttund ella flyt tekst ella framburðartekin upp</translation>
     </message>
     <message>
         <source>Up Note in Chord</source>
@@ -13068,11 +13384,11 @@ failed: </source>
     </message>
     <message>
         <source>Pitch down or move text or articulation down</source>
-        <translation type="unfinished"/>
+        <translation>Tóna niður ella flyt tekst ella framburðartekin niður</translation>
     </message>
     <message>
         <source>Diatonic pitch down</source>
-        <translation type="unfinished"/>
+        <translation>Tóni niður diatoniskt</translation>
     </message>
     <message>
         <source>Pitch down octave</source>
@@ -13080,7 +13396,7 @@ failed: </source>
     </message>
     <message>
         <source>Pitch down by an octave or move text or articulation down</source>
-        <translation type="unfinished"/>
+        <translation>Tóna niður ein áttund ella flyt tekst ella framburðartekin niður</translation>
     </message>
     <message>
         <source>Down Note in Chord</source>
@@ -13104,27 +13420,27 @@ failed: </source>
     </message>
     <message>
         <source>Go to previous chord or move text left</source>
-        <translation type="unfinished"/>
+        <translation>Far til fyrru akkord ella flyt tekst til vinstru</translation>
     </message>
     <message>
         <source>Go to previous measure or move text left</source>
-        <translation type="unfinished"/>
+        <translation>Far til fyrru taktina ella flyt tekst til vinstru</translation>
     </message>
     <message>
         <source>Previous staff or voice</source>
-        <translation type="unfinished"/>
+        <translation>Fyrri stavur ella rødd</translation>
     </message>
     <message>
         <source>Go to next chord or move text right</source>
-        <translation type="unfinished"/>
+        <translation>Far til næstu akkord ella flyt tekst til høgru</translation>
     </message>
     <message>
         <source>Go to next measure or move text right</source>
-        <translation type="unfinished"/>
+        <translation>Far til næstu takt ella flyt tekst til høgru</translation>
     </message>
     <message>
         <source>Next staff or voice</source>
-        <translation type="unfinished"/>
+        <translation>Næsti stavur ella rødd</translation>
     </message>
     <message>
         <source>Add previous chord to selection</source>
@@ -13140,15 +13456,15 @@ failed: </source>
     </message>
     <message>
         <source>Select Section</source>
-        <translation type="unfinished"/>
+        <translation>Vel sektión</translation>
     </message>
     <message>
         <source>Move chord/rest right</source>
-        <translation type="unfinished"/>
+        <translation>Flyt akkord/tøgn til høgru</translation>
     </message>
     <message>
         <source>Move chord/rest left</source>
-        <translation type="unfinished"/>
+        <translation>Flyt akkord/tøgn til vinstru</translation>
     </message>
     <message>
         <source>Select to end of measure</source>
@@ -13156,11 +13472,11 @@ failed: </source>
     </message>
     <message>
         <source>Select to beginning of line</source>
-        <translation>select to beginning of line</translation>
+        <translation>Val til byrjan av linju</translation>
     </message>
     <message>
         <source>Select to end of line</source>
-        <translation>select to end of line</translation>
+        <translation>Val til enda á linju</translation>
     </message>
     <message>
         <source>Select to beginning of score</source>
@@ -13192,7 +13508,7 @@ failed: </source>
     </message>
     <message>
         <source>Add crescendo</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat crescendo</translation>
     </message>
     <message>
         <source>Decrescendo</source>
@@ -13200,23 +13516,23 @@ failed: </source>
     </message>
     <message>
         <source>Add decrescendo</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat decrescendo</translation>
     </message>
     <message>
         <source>Ottava 8va</source>
-        <translation type="unfinished"/>
+        <translation>Ottava 8va</translation>
     </message>
     <message>
         <source>Add ottava 8va</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat ottava 8va</translation>
     </message>
     <message>
         <source>Ottava 8vb</source>
-        <translation type="unfinished"/>
+        <translation>Ottava 8vb</translation>
     </message>
     <message>
         <source>Add ottava 8vb</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat ottava 8vb</translation>
     </message>
     <message>
         <source>Escape</source>
@@ -13232,7 +13548,7 @@ failed: </source>
     </message>
     <message>
         <source>Timewise delete</source>
-        <translation type="unfinished"/>
+        <translation>Sletta eftir tíð</translation>
     </message>
     <message>
         <source>Timewise Delete</source>
@@ -13240,7 +13556,7 @@ failed: </source>
     </message>
     <message>
         <source>Delete element and duration</source>
-        <translation>Delete element and duration</translation>
+        <translation>Strika element og tíðarbil</translation>
     </message>
     <message>
         <source>Delete Selected Measures</source>
@@ -13248,7 +13564,7 @@ failed: </source>
     </message>
     <message>
         <source>Append One Measure</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat eina takt</translation>
     </message>
     <message>
         <source>Append Measures...</source>
@@ -13260,7 +13576,7 @@ failed: </source>
     </message>
     <message>
         <source>Insert One Measure</source>
-        <translation type="unfinished"/>
+        <translation>Set inn eina takt</translation>
     </message>
     <message>
         <source>Insert Measures...</source>
@@ -13276,11 +13592,11 @@ failed: </source>
     </message>
     <message>
         <source>Insert Text Frame</source>
-        <translation type="unfinished"/>
+        <translation>Set inn tekst rammu</translation>
     </message>
     <message>
         <source>Append Text Frame</source>
-        <translation type="unfinished"/>
+        <translation>Broyt tekst rammu</translation>
     </message>
     <message>
         <source>Insert Vertical Frame</source>
@@ -13308,19 +13624,19 @@ failed: </source>
     </message>
     <message>
         <source>Quintuplet</source>
-        <translation>Quintuplet</translation>
+        <translation>Fimmbólkur</translation>
     </message>
     <message>
         <source>Sextuplet</source>
-        <translation>Sextuplet</translation>
+        <translation>Seksbólkur</translation>
     </message>
     <message>
         <source>Septuplet</source>
-        <translation>Septuplet</translation>
+        <translation>Sjeybólkur</translation>
     </message>
     <message>
         <source>Octuplet</source>
-        <translation>Octuplet</translation>
+        <translation>Áttabólkur</translation>
     </message>
     <message>
         <source>Nonuplet</source>
@@ -13332,7 +13648,7 @@ failed: </source>
     </message>
     <message>
         <source>Other tuplets</source>
-        <translation>Other Tuplets</translation>
+        <translation>Aðrir nótabólkar</translation>
     </message>
     <message>
         <source>Longa</source>
@@ -13340,67 +13656,67 @@ failed: </source>
     </message>
     <message>
         <source>Double whole note</source>
-        <translation type="unfinished"/>
+        <translation>Dupultur heilnóti</translation>
     </message>
     <message>
         <source>Whole note</source>
-        <translation type="unfinished"/>
+        <translation>Heilnóti</translation>
     </message>
     <message>
         <source>Half note</source>
-        <translation type="unfinished"/>
+        <translation>Hálvnóti</translation>
     </message>
     <message>
         <source>Quarter note</source>
-        <translation type="unfinished"/>
+        <translation>Kvartnóti</translation>
     </message>
     <message>
         <source>16th note</source>
-        <translation type="unfinished"/>
+        <translation>16prt nóti</translation>
     </message>
     <message>
         <source>Note duration: 16th</source>
-        <translation type="unfinished"/>
+        <translation>Nóta longd: 16prt</translation>
     </message>
     <message>
         <source>32nd note</source>
-        <translation type="unfinished"/>
+        <translation>32prt nóti</translation>
     </message>
     <message>
         <source>Note duration: 32nd</source>
-        <translation type="unfinished"/>
+        <translation>Nóta longd: 32prt</translation>
     </message>
     <message>
         <source>64th note</source>
-        <translation type="unfinished"/>
+        <translation>64prt nóti</translation>
     </message>
     <message>
         <source>Note duration: 64th</source>
-        <translation type="unfinished"/>
+        <translation>Nóta longd: 64prt</translation>
     </message>
     <message>
         <source>128th note</source>
-        <translation type="unfinished"/>
+        <translation>128prt nóti</translation>
     </message>
     <message>
         <source>Note duration: 128th</source>
-        <translation type="unfinished"/>
+        <translation>nóta longd: 128prt</translation>
     </message>
     <message>
         <source>Increase active duration</source>
-        <translation type="unfinished"/>
+        <translation>Veks um virkna tíðarbil</translation>
     </message>
     <message>
         <source>Decrease active duration</source>
-        <translation type="unfinished"/>
+        <translation>Minka um virkna tíðarbil</translation>
     </message>
     <message>
         <source>Augmentation dot</source>
-        <translation type="unfinished"/>
+        <translation>Økingar prikkur</translation>
     </message>
     <message>
         <source>Double augmentation dot</source>
-        <translation type="unfinished"/>
+        <translation>Dupultur økingar prikkur</translation>
     </message>
     <message>
         <source>Tie</source>
@@ -13432,7 +13748,7 @@ failed: </source>
     </message>
     <message>
         <source>Add acciaccatura</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat acciaccatura</translation>
     </message>
     <message>
         <source>Appoggiatura</source>
@@ -13440,27 +13756,27 @@ failed: </source>
     </message>
     <message>
         <source>Add appoggiatura</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat appoggiatura</translation>
     </message>
     <message>
         <source>Grace: quarter</source>
-        <translation type="unfinished"/>
+        <translation>Skreyt: fjórðnóti</translation>
     </message>
     <message>
         <source>Grace: 16th</source>
-        <translation type="unfinished"/>
+        <translation>Skreyt: 16prt</translation>
     </message>
     <message>
         <source>Add 16th grace note</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat 16prt skreyt nóti</translation>
     </message>
     <message>
         <source>Grace: 32nd</source>
-        <translation type="unfinished"/>
+        <translation>Skreyt: 32prt</translation>
     </message>
     <message>
         <source>Add 32nd grace note</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat 32prt skreyt nóti</translation>
     </message>
     <message>
         <source>1</source>
@@ -13496,7 +13812,7 @@ failed: </source>
     </message>
     <message>
         <source>Enable MIDI input</source>
-        <translation>Enable MIDI input</translation>
+        <translation>Gilda MIDI inntak</translation>
     </message>
     <message>
         <source>Beam start</source>
@@ -13504,7 +13820,7 @@ failed: </source>
     </message>
     <message>
         <source>Beam middle</source>
-        <translation type="unfinished"/>
+        <translation>Bjálki miðja</translation>
     </message>
     <message>
         <source>No beam</source>
@@ -13512,7 +13828,7 @@ failed: </source>
     </message>
     <message>
         <source>Beam 32nd sub</source>
-        <translation type="unfinished"/>
+        <translation>Bjálki 32prt undir</translation>
     </message>
     <message>
         <source>Auto beam</source>
@@ -13520,27 +13836,23 @@ failed: </source>
     </message>
     <message>
         <source>Feathered beam, slower</source>
-        <translation type="unfinished"/>
+        <translation>Fjarðaður bjálki, seinni</translation>
     </message>
     <message>
         <source>Feathered beam, faster</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>Palette</source>
-        <translation>Palette</translation>
+        <translation>Fjarðaður bjálki, skjótari</translation>
     </message>
     <message>
         <source>Play Panel</source>
-        <translation>Play Panel</translation>
+        <translation>Spæl panel</translation>
     </message>
     <message>
         <source>Navigator</source>
-        <translation>Navigator</translation>
+        <translation>Skipari</translation>
     </message>
     <message>
         <source>MIDI Import Panel</source>
-        <translation type="unfinished"/>
+        <translation>MIDI flyt inn panel</translation>
     </message>
     <message>
         <source>Mixer</source>
@@ -13556,7 +13868,7 @@ failed: </source>
     </message>
     <message>
         <source>Zoom canvas</source>
-        <translation type="unfinished"/>
+        <translation>Sum lørift</translation>
     </message>
     <message>
         <source>Lyrics</source>
@@ -13564,23 +13876,19 @@ failed: </source>
     </message>
     <message>
         <source>Add lyrics</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat sangtekst</translation>
     </message>
     <message>
         <source>Add tempo marking</source>
-        <translation type="unfinished"/>
+        <translation>Legg tempo merki afturat</translation>
     </message>
     <message>
         <source>System Text</source>
-        <translation>System Text</translation>
+        <translation>Skipan tekstur</translation>
     </message>
     <message>
         <source>Add system text</source>
-        <translation>Add System Text</translation>
+        <translation>Legg afturat skipan tekstur</translation>
     </message>
     <message>
         <source>Staff Text</source>
@@ -13596,7 +13904,7 @@ failed: </source>
     </message>
     <message>
         <source>Add frame text</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat rammu tekst</translation>
     </message>
     <message>
         <source>Title</source>
@@ -13604,7 +13912,7 @@ failed: </source>
     </message>
     <message>
         <source>Add title text</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat heitis tekst</translation>
     </message>
     <message>
         <source>Subtitle</source>
@@ -13612,7 +13920,7 @@ failed: </source>
     </message>
     <message>
         <source>Add subtitle text</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat undirheiti</translation>
     </message>
     <message>
         <source>Composer</source>
@@ -13620,15 +13928,15 @@ failed: </source>
     </message>
     <message>
         <source>Add composer text</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat tónaskald tekst</translation>
     </message>
     <message>
         <source>Lyricist</source>
-        <translation type="unfinished"/>
+        <translation>Songtekstarithøvundur</translation>
     </message>
     <message>
         <source>Add lyricist text</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat skald tekst</translation>
     </message>
     <message>
         <source>Rehearsal Mark</source>
@@ -13636,7 +13944,7 @@ failed: </source>
     </message>
     <message>
         <source>Add rehearsal mark</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat venjingar merki</translation>
     </message>
     <message>
         <source>Picture</source>
@@ -13644,7 +13952,7 @@ failed: </source>
     </message>
     <message>
         <source>Add picture</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat mynd</translation>
     </message>
     <message>
         <source>Play</source>
@@ -13660,23 +13968,23 @@ failed: </source>
     </message>
     <message>
         <source>Play Previous Chord</source>
-        <translation type="unfinished"/>
+        <translation>Spæl fyrru akkord</translation>
     </message>
     <message>
         <source>Play Previous Measure</source>
-        <translation type="unfinished"/>
+        <translation>Spæl fyrru taktina</translation>
     </message>
     <message>
         <source>Play Next Chord</source>
-        <translation type="unfinished"/>
+        <translation>Spæl næstu akkord</translation>
     </message>
     <message>
         <source>Play Next Measure</source>
-        <translation type="unfinished"/>
+        <translation>Spæl næstu taktina</translation>
     </message>
     <message>
         <source>Player Seek to Begin</source>
-        <translation type="unfinished"/>
+        <translation>Spælari finn byrjan</translation>
     </message>
     <message>
         <source>Rewind</source>
@@ -13688,19 +13996,19 @@ failed: </source>
     </message>
     <message>
         <source>Rewind to start position</source>
-        <translation>Rewind to start position</translation>
+        <translation>Bakka til byrjanarplasering</translation>
     </message>
     <message>
         <source>Player Seek to End</source>
-        <translation type="unfinished"/>
+        <translation>Spælari finn endan</translation>
     </message>
     <message>
         <source>Play repeats</source>
-        <translation type="unfinished"/>
+        <translation>Spæl endurtøkur</translation>
     </message>
     <message>
         <source>Toggle repeats playback</source>
-        <translation type="unfinished"/>
+        <translation>Skift endurtøkur spæl</translation>
     </message>
     <message>
         <source>Pan</source>
@@ -13708,27 +14016,27 @@ failed: </source>
     </message>
     <message>
         <source>Toggle pan score</source>
-        <translation type="unfinished"/>
+        <translation>Skift víðmynd av nótablaði</translation>
     </message>
     <message>
         <source>Pan score during playback</source>
-        <translation type="unfinished"/>
+        <translation>Fylg nótablaðnum tá spælt verður</translation>
     </message>
     <message>
         <source>Load Style...</source>
-        <translation>Load Style…</translation>
+        <translation>Tak fram snið…</translation>
     </message>
     <message>
         <source>Load style</source>
-        <translation>Load style</translation>
+        <translation>Tak fram snið</translation>
     </message>
     <message>
         <source>Save Style...</source>
-        <translation>Save Style…</translation>
+        <translation>Goym snið…</translation>
     </message>
     <message>
         <source>Save style</source>
-        <translation>Save style</translation>
+        <translation>Goym snið</translation>
     </message>
     <message>
         <source>Select All</source>
@@ -13736,27 +14044,27 @@ failed: </source>
     </message>
     <message>
         <source>&Transpose...</source>
-        <translation type="unfinished"/>
+        <translation>&Transponera...</translation>
     </message>
     <message>
         <source>Transpose</source>
-        <translation>Transpose</translation>
+        <translation>Transponera</translation>
     </message>
     <message>
         <source>Treble Clef</source>
-        <translation type="unfinished"/>
+        <translation>G-lykil</translation>
     </message>
     <message>
         <source>Add treble clef</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat G-lykil</translation>
     </message>
     <message>
         <source>Bass Clef</source>
-        <translation type="unfinished"/>
+        <translation>F-lykil</translation>
     </message>
     <message>
         <source>Add bass clef</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat F-lykil</translation>
     </message>
     <message>
         <source>Exchange Voice 1-2</source>
@@ -13796,15 +14104,15 @@ failed: </source>
     </message>
     <message>
         <source>Info...</source>
-        <translation type="unfinished"/>
+        <translation>leiðbein...</translation>
     </message>
     <message>
         <source>Edit score info</source>
-        <translation type="unfinished"/>
+        <translation>Broyt nótablaðs uppl.</translation>
     </message>
     <message>
         <source>Toggle System Break</source>
-        <translation>Toggle System Break</translation>
+        <translation>Skift skipan brot</translation>
     </message>
     <message>
         <source>Toggle Page Break</source>
@@ -13812,23 +14120,23 @@ failed: </source>
     </message>
     <message>
         <source>Toggle Section Break</source>
-        <translation type="unfinished"/>
+        <translation>Být um sektión reglubrot</translation>
     </message>
     <message>
         <source>Edit Element</source>
-        <translation>Edit Element</translation>
+        <translation>Broyt element</translation>
     </message>
     <message>
         <source>Reset</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla</translation>
     </message>
     <message>
         <source>Reset user settings</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla brúkara stillingar</translation>
     </message>
     <message>
         <source>Debugger</source>
-        <translation type="unfinished"/>
+        <translation>Avlúsari</translation>
     </message>
     <message>
         <source>Reset Stretch</source>
@@ -13836,7 +14144,7 @@ failed: </source>
     </message>
     <message>
         <source>Reset measure stretch</source>
-        <translation type="unfinished"/>
+        <translation>Nullstilla takt vídd</translation>
     </message>
     <message>
         <source>Show Invisible</source>
@@ -13844,7 +14152,7 @@ failed: </source>
     </message>
     <message>
         <source>Show Unprintable</source>
-        <translation type="unfinished"/>
+        <translation>Vís Óprenta</translation>
     </message>
     <message>
         <source>Show Frames</source>
@@ -13852,15 +14160,15 @@ failed: </source>
     </message>
     <message>
         <source>Show Page Margins</source>
-        <translation type="unfinished"/>
+        <translation>Vís síðubreddar</translation>
     </message>
     <message>
         <source>Insert Special Characters...</source>
-        <translation type="unfinished"/>
+        <translation>Set in serstakt skriftsnið</translation>
     </message>
     <message>
         <source>Backspace</source>
-        <translation type="unfinished"/>
+        <translation>Millumrúm</translation>
     </message>
     <message>
         <source>Find</source>
@@ -13876,39 +14184,39 @@ failed: </source>
     </message>
     <message>
         <source>Mirror note head</source>
-        <translation type="unfinished"/>
+        <translation>Spegla nótahøvd</translation>
     </message>
     <message>
         <source>General...</source>
-        <translation type="unfinished"/>
+        <translation>Høvuðs...</translation>
     </message>
     <message>
         <source>Edit general style</source>
-        <translation type="unfinished"/>
+        <translation>Broyt vanligt snið</translation>
     </message>
     <message>
         <source>Text...</source>
-        <translation type="unfinished"/>
+        <translation>Tekstur...</translation>
     </message>
     <message>
         <source>Edit text style</source>
-        <translation type="unfinished"/>
+        <translation>Broyt tekst snið</translation>
     </message>
     <message>
         <source>All Similar Elements</source>
-        <translation>All Similar Elements</translation>
+        <translation>Øll líknandi element</translation>
     </message>
     <message>
         <source>Select all similar elements</source>
-        <translation>Select all similar elements</translation>
+        <translation>Vel øll líknandi element</translation>
     </message>
     <message>
         <source>All Similar Elements in Same Staff</source>
-        <translation>All Similar Elements in Same Stave</translation>
+        <translation>Øll líknandi Element í sama stavi</translation>
     </message>
     <message>
         <source>Select all similar elements in same staff</source>
-        <translation>Select all similar emements in same stave</translation>
+        <translation>Vel øll líknandi element í sama stavi</translation>
     </message>
     <message>
         <source>Synthesizer</source>
@@ -13916,27 +14224,23 @@ failed: </source>
     </message>
     <message>
         <source>Double duration</source>
-        <translation type="unfinished"/>
+        <translation>Dupult tíðarbil</translation>
     </message>
     <message>
         <source>Half duration</source>
-        <translation type="unfinished"/>
+        <translation>Hálvt tíðarbil</translation>
     </message>
     <message>
         <source>Repeat selection</source>
         <translation>Repeat selection</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
-        <translation type="unfinished"/>
+        <translation>Skift víðmynd av klaver rullu</translation>
     </message>
     <message>
         <source>Pan roll during playback</source>
-        <translation type="unfinished"/>
+        <translation>Fylg við rullu tá spæl</translation>
     </message>
     <message>
         <source>Documents Side by Side</source>
@@ -13944,7 +14248,7 @@ failed: </source>
     </message>
     <message>
         <source>Display documents side by side</source>
-        <translation type="unfinished"/>
+        <translation>Vís skjøl síðu um síðu</translation>
     </message>
     <message>
         <source>Documents Stacked</source>
@@ -13952,7 +14256,7 @@ failed: </source>
     </message>
     <message>
         <source>Display documents stacked</source>
-        <translation type="unfinished"/>
+        <translation>Vís skjøl uppstáplað</translation>
     </message>
     <message>
         <source>Parts...</source>
@@ -13960,51 +14264,51 @@ failed: </source>
     </message>
     <message>
         <source>Manage parts</source>
-        <translation type="unfinished"/>
+        <translation>Umsit partar</translation>
     </message>
     <message>
         <source>Enharmonic up</source>
-        <translation type="unfinished"/>
+        <translation>Enharmoniskt upp</translation>
     </message>
     <message>
         <source>Enharmonic down</source>
-        <translation type="unfinished"/>
+        <translation>Enharmoniskt niður</translation>
     </message>
     <message>
         <source>Create new revision</source>
-        <translation type="unfinished"/>
+        <translation>Stovna nýggja rætting</translation>
     </message>
     <message>
         <source>Show OMR image</source>
-        <translation type="unfinished"/>
+        <translation>Vís OMR mynd</translation>
     </message>
     <message>
         <source>Full Screen</source>
-        <translation type="unfinished"/>
+        <translation>Fullur skermur</translation>
     </message>
     <message>
         <source>Re-Pitch Mode</source>
-        <translation type="unfinished"/>
+        <translation>Um-tóna støða</translation>
     </message>
     <message>
         <source>Replace pitches without changing rhythms</source>
-        <translation type="unfinished"/>
+        <translation>Skift út tónar uttan at broyta rútmur</translation>
     </message>
     <message>
         <source>Piano Keyboard</source>
-        <translation type="unfinished"/>
+        <translation>Piano Knappaborð</translation>
     </message>
     <message>
         <source>Additional Media...</source>
-        <translation type="unfinished"/>
+        <translation>Eyka miðlar...</translation>
     </message>
     <message>
         <source>Show media dialog</source>
-        <translation type="unfinished"/>
+        <translation>Vís miðla vindeyga</translation>
     </message>
     <message>
         <source>Split Measure</source>
-        <translation type="unfinished"/>
+        <translation>Kloyv takt</translation>
     </message>
     <message>
         <source>Page Settings...</source>
@@ -14012,47 +14316,47 @@ failed: </source>
     </message>
     <message>
         <source>Album...</source>
-        <translation type="unfinished"/>
+        <translation>Savn...</translation>
     </message>
     <message>
         <source>Album</source>
-        <translation type="unfinished"/>
+        <translation>Savn</translation>
     </message>
     <message>
         <source>Layers...</source>
-        <translation type="unfinished"/>
+        <translation>Løg...</translation>
     </message>
     <message>
         <source>Layers</source>
-        <translation type="unfinished"/>
+        <translation>Løg</translation>
     </message>
     <message>
         <source>Next Score</source>
-        <translation type="unfinished"/>
+        <translation>Næsta nótablað</translation>
     </message>
     <message>
         <source>Previous Score</source>
-        <translation type="unfinished"/>
+        <translation>Fyrra nótablað</translation>
     </message>
     <message>
         <source>Inspector</source>
-        <translation>Inspector</translation>
+        <translation>Inspektor</translation>
     </message>
     <message>
         <source>Show inspector</source>
-        <translation type="unfinished"/>
+        <translation>Vís inspektor</translation>
     </message>
     <message>
         <source>Loop</source>
-        <translation type="unfinished"/>
+        <translation>Lykkja</translation>
     </message>
     <message>
         <source>Toggle loop playback</source>
-        <translation type="unfinished"/>
+        <translation>Skift loop spæl</translation>
     </message>
     <message>
         <source>Loop playback</source>
-        <translation type="unfinished"/>
+        <translation>Lykkju spæl</translation>
     </message>
     <message>
         <source>Metronome</source>
@@ -14060,339 +14364,339 @@ failed: </source>
     </message>
     <message>
         <source>Toggle metronome playback</source>
-        <translation type="unfinished"/>
+        <translation>Skift metronom spæl</translation>
     </message>
     <message>
         <source>Play metronome during playback</source>
-        <translation type="unfinished"/>
+        <translation>Spæl metronom meðan spæl</translation>
     </message>
     <message>
         <source>Toggle count-in playback</source>
-        <translation type="unfinished"/>
+        <translation>Skift tel-inn spæl</translation>
     </message>
     <message>
         <source>Play count-in at playback start</source>
-        <translation type="unfinished"/>
+        <translation>Spæl tel-inn við spæl byrjan</translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation type="unfinished"/>
+        <translation>Besiffraður bassur</translation>
     </message>
     <message>
         <source>Add figured bass</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat besifringsbass</translation>
     </message>
     <message>
         <source>Transpose Up</source>
-        <translation type="unfinished"/>
+        <translation>Transponera upp</translation>
     </message>
     <message>
         <source>Transpose Down</source>
-        <translation type="unfinished"/>
+        <translation>Transponera niður</translation>
     </message>
     <message>
         <source>Master Palette...</source>
-        <translation type="unfinished"/>
+        <translation>Høvuðs palett...</translation>
     </message>
     <message>
         <source>Show master palette</source>
-        <translation type="unfinished"/>
+        <translation>Vís høvuðs palett</translation>
     </message>
     <message>
         <source>Toggle View Mode</source>
-        <translation type="unfinished"/>
+        <translation>Skift sýnishátt</translation>
     </message>
     <message>
         <source>Next syllable</source>
-        <translation type="unfinished"/>
+        <translation>Næsta stavilsi</translation>
     </message>
     <message>
         <source>Previous syllable</source>
-        <translation type="unfinished"/>
+        <translation>Fyrra stavilsi</translation>
     </message>
     <message>
         <source>Toggle visibility</source>
-        <translation type="unfinished"/>
+        <translation>Skift sýni</translation>
     </message>
     <message>
         <source>Set visible</source>
-        <translation type="unfinished"/>
+        <translation>Set sjónligt</translation>
     </message>
     <message>
         <source>Set invisible</source>
-        <translation type="unfinished"/>
+        <translation>Set ósjónligt</translation>
     </message>
     <message>
         <source>Lock Score</source>
-        <translation type="unfinished"/>
+        <translation>Læs nótablað</translation>
     </message>
     <message>
         <source>Longa (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Longa (TAB)</translation>
     </message>
     <message>
         <source>Note duration: 16th (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: 16prt (TAB)</translation>
     </message>
     <message>
         <source>Note duration: 32nd (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: 32prt (TAB)</translation>
     </message>
     <message>
         <source>Note duration: 64th (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: 64prt (TAB)</translation>
     </message>
     <message>
         <source>Note duration: 128th (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: 128prt (TAB)</translation>
     </message>
     <message>
         <source>Increase active duration (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Veks um virkna tíðarbil (TAB)</translation>
     </message>
     <message>
         <source>Decrease active duration (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Minka virkna tíðarbil (TAB)</translation>
     </message>
     <message>
         <source>Rest (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Tøgn (TAB)</translation>
     </message>
     <message>
         <source>Enter rest (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Set inn Tøgn (TAB)</translation>
     </message>
     <message>
         <source>Select string above (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Vel strong omanfyri (bert TAB)</translation>
     </message>
     <message>
         <source>Select string below (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Vel strong niðanfyri (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 0 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 0 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 0 on current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 0 á valda strong (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 1 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 1 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 1 on current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 1 á valda strong (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 2 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 2 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 2 on current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 2a valda strong (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 3 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 3 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 3 on current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 3 á valda strong (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 4 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 4 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 4 of current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 4 á valda strong (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 5 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 5 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 5 of current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat 5 á valda strong (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 6 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 6 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 6 of current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 6 á verandi strong (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 7 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 7 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 7 of current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 7 á verandi strong (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 8 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 8 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 8 of current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 8 á verandi strong (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 9 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 9 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 9 of current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 9 á verandi strong (bert TAB)</translation>
     </message>
     <message>
         <source>Insert Fretboard Diagram Frame</source>
-        <translation type="unfinished"/>
+        <translation>Set inn bandaborð diagramm rammu</translation>
     </message>
     <message>
         <source>Add quarter grace note</source>
-        <translation type="unfinished"/>
+        <translation>Legg kvartnóta afturat skreytnóta </translation>
     </message>
     <message>
         <source>Chord Symbols...</source>
-        <translation type="unfinished"/>
+        <translation>Akkord symbol...</translation>
     </message>
     <message>
         <source>Edit chord symbols style</source>
-        <translation type="unfinished"/>
+        <translation>Broyt akkord symbol snið</translation>
     </message>
     <message>
         <source>Chord Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Akkord symbol</translation>
     </message>
     <message>
         <source>Add chord symbol</source>
-        <translation type="unfinished"/>
+        <translation>Legg akkord symbol afturat</translation>
     </message>
     <message>
         <source>Previous beat (Chord symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Fyrra slag (Akkord symbol)</translation>
     </message>
     <message>
         <source>Next beat (Chord symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Næsta slag (Akkord symbol)</translation>
     </message>
     <message>
         <source>Respell Pitches</source>
-        <translation type="unfinished"/>
+        <translation>Stava tónar aftur</translation>
     </message>
     <message>
         <source>Full Measure Rest</source>
-        <translation type="unfinished"/>
+        <translation>Tøgn heila takt</translation>
     </message>
     <message>
         <source>Converts the measure to a full measure rest</source>
-        <translation type="unfinished"/>
+        <translation>Ger taktina um til tøgn heila takt</translation>
     </message>
     <message>
         <source>Join Measures</source>
-        <translation type="unfinished"/>
+        <translation>Set saman taktir</translation>
     </message>
     <message>
         <source>OMR Panel</source>
-        <translation type="unfinished"/>
+        <translation>OMR Panel</translation>
     </message>
     <message>
         <source>Fret 10 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 10 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 10 of current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 10 á verandi strong (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 11 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 11 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 11 of current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 11 á verandi strong (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 12 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 12 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 12 of current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 12 á verandi strong (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 13 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 13 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 13 of current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 13 á verandi strong (bert TAB)</translation>
     </message>
     <message>
         <source>Fret 14 (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Band 14 (TAB)</translation>
     </message>
     <message>
         <source>Add fret 14 of current string (TAB only)</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat band 14 á verandi strong (bert TAB)</translation>
     </message>
     <message>
         <source>Grace: 16th after</source>
-        <translation type="unfinished"/>
+        <translation>Skreyt: 16prt eftir</translation>
     </message>
     <message>
         <source>Add 16th grace note after</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat 16prt skreyt nóta eftir</translation>
     </message>
     <message>
         <source>Grace: 32nd after</source>
-        <translation type="unfinished"/>
+        <translation>Skreyt: 32prt eftir</translation>
     </message>
     <message>
         <source>Add 32nd grace note after</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat 32prt skreyt nóta eftir</translation>
     </message>
     <message>
         <source>All Similar Elements in Range Selection</source>
-        <translation type="unfinished"/>
+        <translation>Øll líknandi element í økis vali</translation>
     </message>
     <message>
         <source>Select all similar elements in the range selection</source>
-        <translation type="unfinished"/>
+        <translation>Vel øll líknandi element í økis vali</translation>
     </message>
     <message>
         <source>Add brackets to element</source>
-        <translation type="unfinished"/>
+        <translation>Legg klombur afturat elementi</translation>
     </message>
     <message>
         <source>Selection Filter</source>
-        <translation type="unfinished"/>
+        <translation>Val filtur</translation>
     </message>
     <message>
         <source>Eighth note</source>
-        <translation type="unfinished"/>
+        <translation>áttundnóti</translation>
     </message>
     <message>
         <source>Add Eighth grace note after</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat 8prt skreyt nóta eftir</translation>
     </message>
     <message>
         <source>Beam 16th sub</source>
-        <translation type="unfinished"/>
+        <translation>Bjálki 16prt undir</translation>
     </message>
     <message>
         <source>Go to the first element</source>
-        <translation type="unfinished"/>
+        <translation>Far til fyrsta element</translation>
     </message>
     <message>
         <source>Go to the last element</source>
-        <translation type="unfinished"/>
+        <translation>Far til seinasta element</translation>
     </message>
     <message>
         <source>Key Signatures...</source>
@@ -14400,15 +14704,15 @@ failed: </source>
     </message>
     <message>
         <source>Show key signature palette</source>
-        <translation type="unfinished"/>
+        <translation>Vís ljómslagstekn palett</translation>
     </message>
     <message>
         <source>Time Signatures...</source>
-        <translation>Time Signatures…</translation>
+        <translation>Takt sløg…</translation>
     </message>
     <message>
         <source>Show time signature palette</source>
-        <translation type="unfinished"/>
+        <translation>Vís takt slag palett</translation>
     </message>
     <message>
         <source>Symbols...</source>
@@ -14416,39 +14720,39 @@ failed: </source>
     </message>
     <message>
         <source>Show symbol palette</source>
-        <translation type="unfinished"/>
+        <translation>Vís symbol palett</translation>
     </message>
     <message>
         <source>Grace: eighth after</source>
-        <translation type="unfinished"/>
+        <translation>Skreyt: 8prt eftir</translation>
     </message>
     <message>
         <source>Enable snap to horizontal grid</source>
-        <translation type="unfinished"/>
+        <translation>Gilda samband við vatnrætt net</translation>
     </message>
     <message>
         <source>Enable snap to vertical grid</source>
-        <translation type="unfinished"/>
+        <translation>Gilda samband við Loddrætt net</translation>
     </message>
     <message>
         <source>Configure grid</source>
-        <translation type="unfinished"/>
+        <translation>Samanset netmynstur</translation>
     </message>
     <message>
         <source>Insert one measure</source>
-        <translation type="unfinished"/>
+        <translation>Set in eina takt</translation>
     </message>
     <message>
         <source>Insert horizontal frame</source>
-        <translation type="unfinished"/>
+        <translation>Set inn vatnrætta rammu</translation>
     </message>
     <message>
         <source>Insert text frame</source>
-        <translation type="unfinished"/>
+        <translation>Set inn tekst rammu</translation>
     </message>
     <message>
         <source>Insert vertical frame</source>
-        <translation type="unfinished"/>
+        <translation>Set in loddrætta rammu</translation>
     </message>
     <message>
         <source>Part Name</source>
@@ -14456,135 +14760,135 @@ failed: </source>
     </message>
     <message>
         <source>Add part name</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat part navn</translation>
     </message>
     <message>
         <source>Save Online...</source>
-        <translation type="unfinished"/>
+        <translation>Goym álinju</translation>
     </message>
     <message>
         <source>Save score on MuseScore.com</source>
-        <translation type="unfinished"/>
+        <translation>Goym nótablað á MuseScore.com</translation>
     </message>
     <message>
         <source>Explode</source>
-        <translation type="unfinished"/>
+        <translation>Brest</translation>
     </message>
     <message>
         <source>Explode contents of top selected staff into staves below</source>
-        <translation type="unfinished"/>
+        <translation>Brest innihald í ovara stavi í stavir niðanfyri</translation>
     </message>
     <message>
         <source>Implode</source>
-        <translation type="unfinished"/>
+        <translation>Fell saman</translation>
     </message>
     <message>
         <source>Implode contents of selected staves into top selected staff</source>
-        <translation type="unfinished"/>
+        <translation>Fell saman innihald í valdum stavum í óvasta valda stav</translation>
     </message>
     <message>
         <source>Fill With Slashes</source>
-        <translation type="unfinished"/>
+        <translation>Fill við strikum</translation>
     </message>
     <message>
         <source>Toggle Rhythmic Slash Notation</source>
-        <translation type="unfinished"/>
+        <translation>Skift strikurútmu nótaskrift</translation>
     </message>
     <message>
         <source>Start Center</source>
-        <translation type="unfinished"/>
+        <translation>Byrjunar depil</translation>
     </message>
     <message>
         <source>Toggle create multimeasure rest</source>
-        <translation type="unfinished"/>
+        <translation>Slá til frá: ger fleir takta tøgn</translation>
     </message>
     <message>
         <source>Resequence Rehearsal Marks</source>
-        <translation type="unfinished"/>
+        <translation>Umskipa venjingar merki</translation>
     </message>
     <message>
         <source>Increase Stretch</source>
-        <translation type="unfinished"/>
+        <translation>Hækka strekki</translation>
     </message>
     <message>
         <source>Increase stretch</source>
-        <translation type="unfinished"/>
+        <translation>Hækka strekki</translation>
     </message>
     <message>
         <source>Increase stretch of selected measures</source>
-        <translation type="unfinished"/>
+        <translation>Hækka vídd av valdum taktum</translation>
     </message>
     <message>
         <source>Decrease Stretch</source>
-        <translation type="unfinished"/>
+        <translation>Lækka strekki</translation>
     </message>
     <message>
         <source>Decrease stretch</source>
-        <translation type="unfinished"/>
+        <translation>Lækka strekki</translation>
     </message>
     <message>
         <source>Decrease stretch of selected measures</source>
-        <translation type="unfinished"/>
+        <translation>Lækka vídd av valdum taktum</translation>
     </message>
     <message>
         <source>Plugin Creator...</source>
-        <translation type="unfinished"/>
+        <translation>Plugin stovnari...</translation>
     </message>
     <message>
         <source>Plugin Manager...</source>
-        <translation type="unfinished"/>
+        <translation>Plugin umsitari...</translation>
     </message>
     <message>
         <source>Resource Manager...</source>
-        <translation type="unfinished"/>
+        <translation>Tilfar umsitari...</translation>
     </message>
     <message>
         <source>Add/Remove Line Breaks...</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat/tak burtur linju brot</translation>
     </message>
     <message>
         <source>File: Open</source>
-        <translation type="unfinished"/>
+        <translation>Fíla: opna</translation>
     </message>
     <message>
         <source>File: Save</source>
-        <translation type="unfinished"/>
+        <translation>Fíla: goym</translation>
     </message>
     <message>
         <source>File: Save online</source>
-        <translation type="unfinished"/>
+        <translation>Fíla: goym álinju</translation>
     </message>
     <message>
         <source>File: Save as</source>
-        <translation type="unfinished"/>
+        <translation>Fíla: goym sum</translation>
     </message>
     <message>
         <source>Save selection</source>
-        <translation type="unfinished"/>
+        <translation>Goym úrval</translation>
     </message>
     <message>
         <source>File: Save a copy</source>
-        <translation type="unfinished"/>
+        <translation>File: goym eitt avrit</translation>
     </message>
     <message>
         <source>Export parts</source>
-        <translation type="unfinished"/>
+        <translation>Flyt út partar</translation>
     </message>
     <message>
         <source>File: Close</source>
-        <translation type="unfinished"/>
+        <translation>Fíla: stong</translation>
     </message>
     <message>
         <source>File: New</source>
-        <translation type="unfinished"/>
+        <translation>Fíla: nýggj</translation>
     </message>
     <message>
         <source>Note input</source>
-        <translation type="unfinished"/>
+        <translation>nóta inntak</translation>
     </message>
     <message>
         <source>Respell pitches</source>
-        <translation type="unfinished"/>
+        <translation>Umstava tónar</translation>
     </message>
     <message>
         <source>Flip Direction</source>
@@ -14592,47 +14896,47 @@ failed: </source>
     </message>
     <message>
         <source>Diatonic Up</source>
-        <translation type="unfinished"/>
+        <translation>Diatoniskt upp</translation>
     </message>
     <message>
         <source>Move Up</source>
-        <translation type="unfinished"/>
+        <translation>Flyt upp</translation>
     </message>
     <message>
         <source>Diatonic Down</source>
-        <translation type="unfinished"/>
+        <translation>Diatoniskt niður</translation>
     </message>
     <message>
         <source>Down Octave</source>
-        <translation type="unfinished"/>
+        <translation>Niður Áttund</translation>
     </message>
     <message>
         <source>Next Element</source>
-        <translation type="unfinished"/>
+        <translation>Næsta element</translation>
     </message>
     <message>
         <source>Accessibility: Next element</source>
-        <translation type="unfinished"/>
+        <translation>Atgongd: næsta element</translation>
     </message>
     <message>
         <source>Previous Element</source>
-        <translation type="unfinished"/>
+        <translation>Fyrra element</translation>
     </message>
     <message>
         <source>Accessibility: Previous element</source>
-        <translation type="unfinished"/>
+        <translation>Atgongd: fyrra element</translation>
     </message>
     <message>
         <source>First Element</source>
-        <translation type="unfinished"/>
+        <translation>Fyrsta element</translation>
     </message>
     <message>
         <source>Last Element</source>
-        <translation type="unfinished"/>
+        <translation>Seinasta element</translation>
     </message>
     <message>
         <source>Move Down</source>
-        <translation type="unfinished"/>
+        <translation>Flyt niður</translation>
     </message>
     <message>
         <source>Previous Chord</source>
@@ -14644,7 +14948,7 @@ failed: </source>
     </message>
     <message>
         <source>Previous Staff or Voice</source>
-        <translation type="unfinished"/>
+        <translation>Fyrri stavur ella rødd</translation>
     </message>
     <message>
         <source>Next Chord</source>
@@ -14656,75 +14960,75 @@ failed: </source>
     </message>
     <message>
         <source>Next Staff or Voice</source>
-        <translation type="unfinished"/>
+        <translation>Næsti stavur ella rødd</translation>
     </message>
     <message>
         <source>Add Previous Chord to Selection</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat fyrru akkord í úrval</translation>
     </message>
     <message>
         <source>Select to Beginning of Measure</source>
-        <translation type="unfinished"/>
+        <translation>Vel til byrjan av takt</translation>
     </message>
     <message>
         <source>Add Next Chord to Selection</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat næstu akkord í úrval</translation>
     </message>
     <message>
         <source>Select section</source>
-        <translation type="unfinished"/>
+        <translation>Vel sektión</translation>
     </message>
     <message>
         <source>Move Chord/Rest Right</source>
-        <translation type="unfinished"/>
+        <translation>Flyt akkord/tøgn til høgru</translation>
     </message>
     <message>
         <source>Move Chord/Rest left</source>
-        <translation type="unfinished"/>
+        <translation>Flyt akkord/tøgn til vinstru</translation>
     </message>
     <message>
         <source>Select to Beginning of Line</source>
-        <translation type="unfinished"/>
+        <translation>Val til byrjan av linju</translation>
     </message>
     <message>
         <source>Select to End of Line</source>
-        <translation type="unfinished"/>
+        <translation>Val til enda á linju</translation>
     </message>
     <message>
         <source>Select to Beginning of Score</source>
-        <translation type="unfinished"/>
+        <translation>Val til byrjan av nótablaði</translation>
     </message>
     <message>
         <source>Select to End of Score</source>
-        <translation type="unfinished"/>
+        <translation>Val til enda av nótablaði</translation>
     </message>
     <message>
         <source>Add Staff Above to Selection</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat stav omanfyri úrvali</translation>
     </message>
     <message>
         <source>Add Staff Below to Selection</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat stav niðanfyri úrval</translation>
     </message>
     <message>
         <source>Page: Previous</source>
-        <translation type="unfinished"/>
+        <translation>Síða: Fyrra</translation>
     </message>
     <message>
         <source>Page: Next</source>
-        <translation type="unfinished"/>
+        <translation>Síða: Næsta</translation>
     </message>
     <message>
         <source>Page: Top</source>
-        <translation type="unfinished"/>
+        <translation>Síða: ovast</translation>
     </message>
     <message>
         <source>Page: End</source>
-        <translation type="unfinished"/>
+        <translation>Síða: endi</translation>
     </message>
     <message>
         <source>Full measure rest</source>
-        <translation type="unfinished"/>
+        <translation>Tøgn heila takt</translation>
     </message>
     <message>
         <source>Delete selected measures</source>
@@ -14732,199 +15036,199 @@ failed: </source>
     </message>
     <message>
         <source>Append one measure</source>
-        <translation type="unfinished"/>
+        <translation>Legg eina takt afturat</translation>
     </message>
     <message>
         <source>Append text frame</source>
-        <translation type="unfinished"/>
+        <translation>Broyt tekst rammu</translation>
     </message>
     <message>
         <source>Insert fretboard diagram frame</source>
-        <translation type="unfinished"/>
+        <translation>Set inn bandaborð diagramm rammu</translation>
     </message>
     <message>
         <source>Append horizontal frame</source>
-        <translation type="unfinished"/>
+        <translation>Broyt vatnrøttu rammu</translation>
     </message>
     <message>
         <source>Append vertical frame</source>
-        <translation type="unfinished"/>
+        <translation>Broyt loddrøttu rammu</translation>
     </message>
     <message>
         <source>Note duration: Longa</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: Longa</translation>
     </message>
     <message>
         <source>Double Whole Note</source>
-        <translation type="unfinished"/>
+        <translation>Dupul heilnóti</translation>
     </message>
     <message>
         <source>Note duration: Double whole</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: Dupul heil</translation>
     </message>
     <message>
         <source>Whole Note</source>
-        <translation type="unfinished"/>
+        <translation>Heiltóni</translation>
     </message>
     <message>
         <source>Note duration: Whole</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: Heil</translation>
     </message>
     <message>
         <source>Half Note</source>
-        <translation type="unfinished"/>
+        <translation>Hálvnóti</translation>
     </message>
     <message>
         <source>Note duration: Half</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: Hálvur</translation>
     </message>
     <message>
         <source>Quarter Note</source>
-        <translation type="unfinished"/>
+        <translation>Kvart nóti</translation>
     </message>
     <message>
         <source>Note duration: Quarter</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: kvart</translation>
     </message>
     <message>
         <source>Eighth Note</source>
-        <translation type="unfinished"/>
+        <translation>Áttandapartur</translation>
     </message>
     <message>
         <source>Note duration: Eighth</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: Áttund</translation>
     </message>
     <message>
         <source>16th Note</source>
-        <translation type="unfinished"/>
+        <translation>16prt nóti</translation>
     </message>
     <message>
         <source>32nd Note</source>
-        <translation type="unfinished"/>
+        <translation>32prt nóti</translation>
     </message>
     <message>
         <source>64th Note</source>
-        <translation type="unfinished"/>
+        <translation>64prt nóti</translation>
     </message>
     <message>
         <source>128th Note</source>
-        <translation type="unfinished"/>
+        <translation>128prt nóti</translation>
     </message>
     <message>
         <source>Increase Active Duration</source>
-        <translation type="unfinished"/>
+        <translation>Veks um virkna tíðarbil</translation>
     </message>
     <message>
         <source>Decrease Active Duration</source>
-        <translation type="unfinished"/>
+        <translation>minka virkna tíðarbil</translation>
     </message>
     <message>
         <source>Augmentation Dot</source>
-        <translation type="unfinished"/>
+        <translation>Økingar prikkur</translation>
     </message>
     <message>
         <source>Note duration: Augmentation dot</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: Økingar prikkur</translation>
     </message>
     <message>
         <source>Double Augmentation Dot</source>
-        <translation type="unfinished"/>
+        <translation>Dupul økingar prikkur</translation>
     </message>
     <message>
         <source>Note duration: Double augmentation dot</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: dupul økingar prikkur</translation>
     </message>
     <message>
         <source>Note duration: Tie</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: bindibogi</translation>
     </message>
     <message>
         <source>Note input: Rest</source>
-        <translation type="unfinished"/>
+        <translation>Nóta inntøka: Tøgn</translation>
     </message>
     <message>
         <source>Double Sharp</source>
-        <translation type="unfinished"/>
+        <translation>Dupul krossur</translation>
     </message>
     <message>
         <source>Note input: Double sharp</source>
-        <translation type="unfinished"/>
+        <translation>Nóta innsetan: dupul krossur</translation>
     </message>
     <message>
         <source>Note input: Sharp</source>
-        <translation type="unfinished"/>
+        <translation>Nóta innsetan: krossur</translation>
     </message>
     <message>
         <source>Note input: Natural</source>
-        <translation type="unfinished"/>
+        <translation>Nóta innsetan: Einki fortekin</translation>
     </message>
     <message>
         <source>Note input: Flat</source>
-        <translation type="unfinished"/>
+        <translation>Nóta innsetan: b tekin</translation>
     </message>
     <message>
         <source>Double Flat</source>
-        <translation type="unfinished"/>
+        <translation>Dupult b tekin</translation>
     </message>
     <message>
         <source>Note input: Double flat</source>
-        <translation type="unfinished"/>
+        <translation>Nóta innsetan: dupul b tekin</translation>
     </message>
     <message>
         <source>Grace: Quarter</source>
-        <translation type="unfinished"/>
+        <translation>Skreyt: Kvart</translation>
     </message>
     <message>
         <source>Grace: Eighth after</source>
-        <translation type="unfinished"/>
+        <translation>Skreyt: Áttund aftaná</translation>
     </message>
     <message>
         <source>MIDI Input</source>
-        <translation type="unfinished"/>
+        <translation>MIDI inntak</translation>
     </message>
     <message>
         <source>Beam Start</source>
-        <translation type="unfinished"/>
+        <translation>Bjálka byrjan</translation>
     </message>
     <message>
         <source>Beam Middle</source>
-        <translation type="unfinished"/>
+        <translation>Bjálka miðja</translation>
     </message>
     <message>
         <source>No Beam</source>
-        <translation type="unfinished"/>
+        <translation>Eingin bjálki</translation>
     </message>
     <message>
         <source>Beam 16th Sub</source>
-        <translation type="unfinished"/>
+        <translation>Bjálki 16prt undir</translation>
     </message>
     <message>
         <source>Beam 32nd Sub</source>
-        <translation type="unfinished"/>
+        <translation>Bjálki 32prt undir</translation>
     </message>
     <message>
         <source>Auto Beam</source>
-        <translation type="unfinished"/>
+        <translation>Sjálvv. bjálki</translation>
     </message>
     <message>
         <source>Feathered Beam, Slower</source>
-        <translation type="unfinished"/>
+        <translation>Fjarðaður bjálki, seinni</translation>
     </message>
     <message>
         <source>Feathered Beam, Faster</source>
-        <translation type="unfinished"/>
+        <translation>Fjarðaður bjálki, skjótari</translation>
     </message>
     <message>
         <source>Play panel</source>
-        <translation type="unfinished"/>
+        <translation>Spæl panel</translation>
     </message>
     <message>
         <source>Selection filter</source>
-        <translation type="unfinished"/>
+        <translation>Úrvalsfiltur</translation>
     </message>
     <message>
         <source>MIDI import panel</source>
-        <translation type="unfinished"/>
+        <translation>MIDI flyt inn panel</translation>
     </message>
     <message>
         <source>Status bar</source>
@@ -14936,31 +15240,31 @@ failed: </source>
     </message>
     <message>
         <source>Play previous chord</source>
-        <translation type="unfinished"/>
+        <translation>Spæl fyrru akkord</translation>
     </message>
     <message>
         <source>Play previous measure</source>
-        <translation type="unfinished"/>
+        <translation>Spæl fyrru taktina</translation>
     </message>
     <message>
         <source>Play next chord</source>
-        <translation type="unfinished"/>
+        <translation>Spæl næstu akkord</translation>
     </message>
     <message>
         <source>Play next measure</source>
-        <translation type="unfinished"/>
+        <translation>Spæl næstu takt</translation>
     </message>
     <message>
         <source>Player seek to begin</source>
-        <translation type="unfinished"/>
+        <translation>Spælari, royn at byrja</translation>
     </message>
     <message>
         <source>Player seek to end</source>
-        <translation type="unfinished"/>
+        <translation>Spælari, royn at enda</translation>
     </message>
     <message>
         <source>Play Repeats</source>
-        <translation type="unfinished"/>
+        <translation>Spæl endurtøkur</translation>
     </message>
     <message>
         <source>Select all</source>
@@ -14968,243 +15272,243 @@ failed: </source>
     </message>
     <message>
         <source>Exchange voice 1-2</source>
-        <translation type="unfinished"/>
+        <translation>Být um rødd 1-2</translation>
     </message>
     <message>
         <source>Exchange voice 1-3</source>
-        <translation type="unfinished"/>
+        <translation>Být um rødd 1-3</translation>
     </message>
     <message>
         <source>Exchange voice 1-4</source>
-        <translation type="unfinished"/>
+        <translation>Byt um rødd 1-4</translation>
     </message>
     <message>
         <source>Exchange voice 2-3</source>
-        <translation type="unfinished"/>
+        <translation>Být um rødd 2-3</translation>
     </message>
     <message>
         <source>Exchange voice 2-4</source>
-        <translation type="unfinished"/>
+        <translation>Být um rødd 2-4</translation>
     </message>
     <message>
         <source>Exchange voice 3-4</source>
-        <translation type="unfinished"/>
+        <translation>Být um rødd 3-4</translation>
     </message>
     <message>
         <source>Repeat Last Command</source>
-        <translation type="unfinished"/>
+        <translation>Endurtak seinastu boðini</translation>
     </message>
     <message>
         <source>Toggle system break</source>
-        <translation type="unfinished"/>
+        <translation>Skift skipan brot</translation>
     </message>
     <message>
         <source>Toggle page break</source>
-        <translation type="unfinished"/>
+        <translation>Skift síðuskift</translation>
     </message>
     <message>
         <source>Toggle section break</source>
-        <translation type="unfinished"/>
+        <translation>Být um sektión reglubrot</translation>
     </message>
     <message>
         <source>Edit element</source>
-        <translation type="unfinished"/>
+        <translation>Broyt element</translation>
     </message>
     <message>
         <source>Show invisible</source>
-        <translation type="unfinished"/>
+        <translation>Vís ósjónlig</translation>
     </message>
     <message>
         <source>Show unprintable</source>
-        <translation type="unfinished"/>
+        <translation>Vís óprenta</translation>
     </message>
     <message>
         <source>Show frames</source>
-        <translation type="unfinished"/>
+        <translation>Vís rammur</translation>
     </message>
     <message>
         <source>Show page margins</source>
-        <translation type="unfinished"/>
+        <translation>Vís síðu breddar</translation>
     </message>
     <message>
         <source>Insert special characters</source>
-        <translation type="unfinished"/>
+        <translation>Set in serstakt skriftsnið</translation>
     </message>
     <message>
         <source>Whole Rest</source>
-        <translation type="unfinished"/>
+        <translation>Heil tøgn</translation>
     </message>
     <message>
         <source>Note input: Whole rest</source>
-        <translation type="unfinished"/>
+        <translation>Nóta innsetan: heil tøgn</translation>
     </message>
     <message>
         <source>Half Rest</source>
-        <translation type="unfinished"/>
+        <translation>Hálv tøgn</translation>
     </message>
     <message>
         <source>Note input: Half rest</source>
-        <translation type="unfinished"/>
+        <translation>Nóta innsetan: hálv tøgn</translation>
     </message>
     <message>
         <source>Quarter Rest</source>
-        <translation type="unfinished"/>
+        <translation>Kvart tøgn</translation>
     </message>
     <message>
         <source>Note input: Quarter rest</source>
-        <translation type="unfinished"/>
+        <translation>Nóta innsetan: Kvart tøgn</translation>
     </message>
     <message>
         <source>Eighth Rest</source>
-        <translation type="unfinished"/>
+        <translation>Áttund tøgn</translation>
     </message>
     <message>
         <source>Note input: Eighth rest</source>
-        <translation type="unfinished"/>
+        <translation>Nóta innsetan: Áttund tøgn</translation>
     </message>
     <message>
         <source>Zoom in</source>
-        <translation type="unfinished"/>
+        <translation>Suma inn</translation>
     </message>
     <message>
         <source>Zoom out</source>
-        <translation type="unfinished"/>
+        <translation>Suma út</translation>
     </message>
     <message>
         <source>Mirror Note Head</source>
-        <translation type="unfinished"/>
+        <translation>Spegla nóta høvd</translation>
     </message>
     <message>
         <source>Double Duration</source>
-        <translation type="unfinished"/>
+        <translation>Dupult tíðarbil</translation>
     </message>
     <message>
         <source>Half Duration</source>
-        <translation type="unfinished"/>
+        <translation>Hálvt tíðarbil</translation>
     </message>
     <message>
         <source>Repeat Selection</source>
-        <translation type="unfinished"/>
+        <translation>Endurtak úrval</translation>
     </message>
     <message>
         <source>Enharmonic Up</source>
-        <translation type="unfinished"/>
+        <translation>Enharmoniskt upp</translation>
     </message>
     <message>
         <source>Enharmonic Down</source>
-        <translation type="unfinished"/>
+        <translation>Enharmoniskt niður</translation>
     </message>
     <message>
         <source>Create New Revision</source>
-        <translation type="unfinished"/>
+        <translation>Stovna nýggja endurskoðan</translation>
     </message>
     <message>
         <source>Toggle Image Capture</source>
-        <translation type="unfinished"/>
+        <translation>Skift myndafangan</translation>
     </message>
     <message>
         <source>Toggle image capture</source>
-        <translation type="unfinished"/>
+        <translation>Skift myndafangan</translation>
     </message>
     <message>
         <source>Show OMR Image</source>
-        <translation type="unfinished"/>
+        <translation>Vís OMR mynd</translation>
     </message>
     <message>
         <source>Full screen</source>
-        <translation type="unfinished"/>
+        <translation>Fullur skermur</translation>
     </message>
     <message>
         <source>Enable Snap to Horizontal Grid</source>
-        <translation type="unfinished"/>
+        <translation>Gílda samband við vatnrætt net</translation>
     </message>
     <message>
         <source>Enable Snap to Vertical Grid</source>
-        <translation type="unfinished"/>
+        <translation>Gilda samband við loddrætt net</translation>
     </message>
     <message>
         <source>Configure Grid</source>
-        <translation type="unfinished"/>
+        <translation>Stilla grind</translation>
     </message>
     <message>
         <source>Piano keyboard</source>
-        <translation type="unfinished"/>
+        <translation>Piano keyboard</translation>
     </message>
     <message>
         <source>Split measure</source>
-        <translation type="unfinished"/>
+        <translation>Kloyv takt</translation>
     </message>
     <message>
         <source>Join measures</source>
-        <translation type="unfinished"/>
+        <translation>Set saman taktir</translation>
     </message>
     <message>
         <source>Page settings</source>
-        <translation type="unfinished"/>
+        <translation>Síðu innstilling</translation>
     </message>
     <message>
         <source>Next score</source>
-        <translation type="unfinished"/>
+        <translation>Næsta nótablað</translation>
     </message>
     <message>
         <source>Previous score</source>
-        <translation type="unfinished"/>
+        <translation>Fyrra nótablað</translation>
     </message>
     <message>
         <source>Plugin creator</source>
-        <translation type="unfinished"/>
+        <translation>Plugin stovnari</translation>
     </message>
     <message>
         <source>Plugin manager</source>
-        <translation type="unfinished"/>
+        <translation>Plugin umsitari</translation>
     </message>
     <message>
         <source>Resource manager</source>
-        <translation type="unfinished"/>
+        <translation>Tilfar umsitari...</translation>
     </message>
     <message>
         <source>Show OMR panel</source>
-        <translation type="unfinished"/>
+        <translation>Vís OMR panel</translation>
     </message>
     <message>
         <source>Loop In</source>
-        <translation type="unfinished"/>
+        <translation>Lykkja inn</translation>
     </message>
     <message>
         <source>Loop Out</source>
-        <translation type="unfinished"/>
+        <translation>Lykkja út</translation>
     </message>
     <message>
         <source>Set loop out position</source>
-        <translation type="unfinished"/>
+        <translation>Áset sloyfu út plasering</translation>
     </message>
     <message>
         <source>Count-In</source>
-        <translation type="unfinished"/>
+        <translation>Tel-inn</translation>
     </message>
     <message>
         <source>Transpose up</source>
-        <translation type="unfinished"/>
+        <translation>Transponera upp</translation>
     </message>
     <message>
         <source>Transpose down</source>
-        <translation type="unfinished"/>
+        <translation>Transponera niður</translation>
     </message>
     <message>
         <source>Toggle view mode</source>
-        <translation type="unfinished"/>
+        <translation>Skift sýnishátt</translation>
     </message>
     <message>
         <source>Next Syllable</source>
-        <translation type="unfinished"/>
+        <translation>Næsta stavilsi</translation>
     </message>
     <message>
         <source>Previous Syllable</source>
-        <translation type="unfinished"/>
+        <translation>Fyrra stavilsi</translation>
     </message>
     <message>
         <source>Toggle Visibility</source>
-        <translation type="unfinished"/>
+        <translation>Skift sýni</translation>
     </message>
     <message>
         <source>Set Visible</source>
@@ -15216,343 +15520,361 @@ failed: </source>
     </message>
     <message>
         <source>Note Anchored Textline</source>
-        <translation type="unfinished"/>
+        <translation>Nótafest tekstlinja</translation>
     </message>
     <message>
         <source>Note anchored textline</source>
-        <translation type="unfinished"/>
+        <translation>Nótafest tekstlinja</translation>
     </message>
     <message>
         <source>Lock score</source>
-        <translation type="unfinished"/>
+        <translation>Stong nótablað</translation>
     </message>
     <message>
         <source>Note duration: Longa (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: Longa (TAB</translation>
     </message>
     <message>
         <source>Double Whole Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Dupul heilnóti (TAB)</translation>
     </message>
     <message>
         <source>Note duration: Double whole (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: Dupul heilur (TAB)</translation>
     </message>
     <message>
         <source>Whole Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Heilur nóti (TAB)</translation>
     </message>
     <message>
         <source>Note duration: Whole (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: heilur (TAB)</translation>
     </message>
     <message>
         <source>Half Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Hálvur nóti (TAB)</translation>
     </message>
     <message>
         <source>Note duration: Half (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: Hálvur (TAB)</translation>
     </message>
     <message>
         <source>Quarter Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Kvart nóti (TAB)</translation>
     </message>
     <message>
         <source>Note duration: Quarter (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: Kvart (TAB)</translation>
     </message>
     <message>
         <source>Eighth Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Áttund nóti (TAB)</translation>
     </message>
     <message>
         <source>Note duration: Eighth (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nóta tíðarbil: Áttund (TAB)</translation>
     </message>
     <message>
         <source>16th Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>16prt nóti (TAB)</translation>
     </message>
     <message>
         <source>32nd Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>32prt nóti (TAB)</translation>
     </message>
     <message>
         <source>64th Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>64prt nóti (TAB)</translation>
     </message>
     <message>
         <source>128th Note (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>128prt nóti (TAB)</translation>
     </message>
     <message>
         <source>Increase Active Duration (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Veks um virkið tíðarbil (TAB)</translation>
     </message>
     <message>
         <source>Decrease Active Duration (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Minka um virkið tíðarbil (TAB)</translation>
     </message>
     <message>
         <source>Note input: Rest (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Nóta innsetan: tøgn (TAB)</translation>
     </message>
     <message>
         <source>String Above (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Strongur omanfyri (TAB)</translation>
     </message>
     <message>
         <source>String Below (TAB)</source>
-        <translation type="unfinished"/>
+        <translation>Strongur niðanfyri (TAB)</translation>
     </message>
     <message>
         <source>Previous Beat (Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Fyrra slag (Akkord symbol)</translation>
     </message>
     <message>
         <source>Next Beat (Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Næsta slag (Akkord symbol)</translation>
     </message>
     <message>
         <source>Add Brackets to Element</source>
-        <translation type="unfinished"/>
+        <translation>Legg klombur afturat elementi</translation>
     </message>
     <message>
         <source>Toggle Create Multimeasure Rest</source>
-        <translation type="unfinished"/>
+        <translation>Slá til frá: ger fleirtakta tøgn</translation>
     </message>
     <message>
         <source>Bold Face</source>
-        <translation type="unfinished"/>
+        <translation>Høvd feitir stavir</translation>
     </message>
     <message>
         <source>Bold face</source>
-        <translation type="unfinished"/>
+        <translation>Høvd feitir stavir</translation>
     </message>
     <message>
         <source>Italic</source>
-        <translation type="unfinished"/>
+        <translation>Skákskriva</translation>
     </message>
     <message>
         <source>Underline</source>
-        <translation type="unfinished"/>
+        <translation>Strika undir</translation>
     </message>
     <message>
         <source>Move Word Left</source>
-        <translation type="unfinished"/>
+        <translation>Flyt orð til vinstru</translation>
     </message>
     <message>
         <source>Move word left</source>
-        <translation type="unfinished"/>
+        <translation>Flyt orð til vinstru</translation>
     </message>
     <message>
         <source>Move Word Right</source>
-        <translation type="unfinished"/>
+        <translation>Flyt orð til høgru</translation>
     </message>
     <message>
         <source>Move word right</source>
-        <translation type="unfinished"/>
+        <translation>Flyt orð til høgru</translation>
     </message>
     <message>
         <source>Fill with slashes</source>
-        <translation type="unfinished"/>
+        <translation>Fill við strikum</translation>
     </message>
     <message>
         <source>Toggle rhythmic slash notation</source>
-        <translation type="unfinished"/>
+        <translation>Skift strikurútmu nótaskrift</translation>
     </message>
     <message>
         <source>Add/remove line breaks</source>
-        <translation type="unfinished"/>
+        <translation>Legg afturat/tak burtur linju brot</translation>
     </message>
     <message>
         <source>Resequence rehearsal marks</source>
-        <translation type="unfinished"/>
+        <translation>Umskipa venjingar merki</translation>
     </message>
     <message>
         <source>Start center</source>
-        <translation type="unfinished"/>
+        <translation>Byrjunar depil</translation>
     </message>
     <message>
         <source>Longa Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Longa hækking (b.f. bass/akk. symb.)</translation>
     </message>
     <message>
         <source>Advance of a longa (Figured bass/Chord symbol only)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við longa (bert besifringsbassur/akkord symbol)</translation>
     </message>
     <message>
         <source>Breve Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Breve hækking (b.f.bass/akk. symb.)</translation>
     </message>
     <message>
         <source>Advance of a double whole note (Figured bass/Chord symbol only)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við dupul heilnóta (bert besifringsbassur/akkord symbol)</translation>
     </message>
     <message>
         <source>Whole Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka heilan nóta (b.s. bass/akk. symb.)</translation>
     </message>
     <message>
         <source>Advance of a whole note (Figured bass/Chord symbol only)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við heilum nóta (bert besifringsbass/akkord symbol)</translation>
     </message>
     <message>
         <source>Half Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við hálvum nóta (b.f. bass/akk. symb.)</translation>
     </message>
     <message>
         <source>Advance of a half note (Figured bass/Chord symbol only)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við hálvum nóta (bert besifringsbass/akkord symbol)</translation>
     </message>
     <message>
         <source>Quarter Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við kvartum nóta (b.f. bass/akk. symb.)</translation>
     </message>
     <message>
         <source>Advance of a quarter note (Figured bass/Chord symbol only)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við kvart nóta (bert besifringsbass/akkord symbol)</translation>
     </message>
     <message>
         <source>Eighth Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við áttund nóta (b.f. bass/akk. symb.)</translation>
     </message>
     <message>
         <source>Advance of an eighth note (Figured bass/Chord symbol only)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við áttund nóta (bert besifringsbass/akkord symbol)</translation>
     </message>
     <message>
         <source>16th Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við 16prt nóta (b.f. bass/akk. symb.)</translation>
     </message>
     <message>
         <source>Advance of a 16th note (Figured bass/Chord symbol only)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við 16prt nóta (bert besifringsbass/Akkord symbol)</translation>
     </message>
     <message>
         <source>32nd Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við 32prt nóta (b.f. bass/akk. symb.)</translation>
     </message>
     <message>
         <source>Advance of a 32nd note (Figured bass/Chord symbol only)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við 32prt nóta (bert besifringsbass/akkord symbol)</translation>
     </message>
     <message>
         <source>64th Note Advance (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við 64prt nóta (b.f. bass/akk. symb.)</translation>
     </message>
     <message>
         <source>Advance of a 64th note (Figured bass/Chord symbol only)</source>
-        <translation type="unfinished"/>
+        <translation>Hækka við 64prt nóta (bert besifringsbass/akkord symbol)</translation>
     </message>
     <message>
         <source>Previous Measure (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Fyrru takt (F.B./akkord symbol)</translation>
     </message>
     <message>
         <source>Previous measure (Figured bass/Chord symbol only)</source>
-        <translation type="unfinished"/>
+        <translation>Fyrru takt (bert besifrings bassur/akkord symbol)</translation>
     </message>
     <message>
         <source>Next Measure (F.B./Chord Symbol)</source>
-        <translation type="unfinished"/>
+        <translation>Næsta takt (F.B./akkord symbol)</translation>
     </message>
     <message>
         <source>Next measure (Figured bass/Chord symbol only)</source>
-        <translation type="unfinished"/>
+        <translation>Næsta takt (bert besifrings bassur/akkord symbol)</translation>
     </message>
     <message>
         <source>Toggle staccato</source>
-        <translation type="unfinished"/>
+        <translation>Skift staccato</translation>
     </message>
     <message>
         <source>Toggle tenuto</source>
-        <translation type="unfinished"/>
+        <translation>Skift tenuto</translation>
     </message>
     <message>
         <source>Toggle trill</source>
-        <translation type="unfinished"/>
+        <translation>Skift trillu</translation>
     </message>
     <message>
         <source>Toggle marcato</source>
-        <translation type="unfinished"/>
+        <translation>Skift marcato</translation>
     </message>
     <message>
         <source>Import PDF...</source>
-        <translation type="unfinished"/>
+        <translation>Innflyt PDF...</translation>
     </message>
     <message>
         <source>Import PDF</source>
-        <translation type="unfinished"/>
+        <translation>Innflyt PDF</translation>
     </message>
     <message>
         <source>Import a PDF file with an experimental service on musescore.com</source>
-        <translation type="unfinished"/>
+        <translation>Innflyt PDF fílu við royndar tænastu á musescore.com</translation>
     </message>
     <message>
         <source>Set loop in position</source>
-        <translation type="unfinished"/>
+        <translation>Áset sloyfu inn plasering</translation>
+    </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Palettir</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Tempo merki</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Suma til 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Panorera piano rullu</translation>
     </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>Cannot rewrite measures:
 Tuplet would cross measure</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki umskriva taktir:
+Nótabólkar fara um takt</translation>
     </message>
     <message>
         <source>Cannot change local time signature:
 Measure is not empty</source>
-        <translation type="unfinished"/>
+        <translation>Kann ikki broyta staðbundi takt slag:
+Takt er ikki tóm</translation>
     </message>
 </context>
 <context>
     <name>articulation</name>
     <message>
         <source>Bend</source>
-        <translation type="unfinished"/>
+        <translation>Bend</translation>
     </message>
     <message>
         <source>Slide out down</source>
-        <translation type="unfinished"/>
+        <translation>Glíð út niður</translation>
     </message>
     <message>
         <source>Slide out up</source>
-        <translation type="unfinished"/>
+        <translation>Glíð út upp</translation>
     </message>
     <message>
         <source>Slide in below</source>
-        <translation type="unfinished"/>
+        <translation>Glíð inn niðanfyri</translation>
     </message>
     <message>
         <source>Slide in above</source>
-        <translation type="unfinished"/>
+        <translation>Glíð inn omanfyri</translation>
     </message>
     <message>
         <source>Fermata</source>
-        <translation type="unfinished"/>
+        <translation>Fermata</translation>
     </message>
     <message>
         <source>Short fermata</source>
-        <translation type="unfinished"/>
+        <translation>Stutt fermata</translation>
     </message>
     <message>
         <source>Long fermata</source>
-        <translation type="unfinished"/>
+        <translation>Long fermata</translation>
     </message>
     <message>
         <source>Very long fermata</source>
-        <translation type="unfinished"/>
+        <translation>Sera long fermata</translation>
     </message>
     <message>
         <source>Sforzato</source>
-        <translation type="unfinished"/>
+        <translation>Sforzato</translation>
     </message>
     <message>
         <source>Staccato</source>
@@ -15560,71 +15882,71 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Staccatissimo</source>
-        <translation type="unfinished"/>
+        <translation>Staccatissimo</translation>
     </message>
     <message>
         <source>Tenuto</source>
-        <translation type="unfinished"/>
+        <translation>Tenuto</translation>
     </message>
     <message>
         <source>Portato</source>
-        <translation type="unfinished"/>
+        <translation>Portato</translation>
     </message>
     <message>
         <source>Marcato</source>
-        <translation type="unfinished"/>
+        <translation>Marcato</translation>
     </message>
     <message>
         <source>Fade in</source>
-        <translation type="unfinished"/>
+        <translation>Fada inn</translation>
     </message>
     <message>
         <source>Fade out</source>
-        <translation type="unfinished"/>
+        <translation>Fada út</translation>
     </message>
     <message>
         <source>Volume swell</source>
-        <translation type="unfinished"/>
+        <translation>Styrki svella</translation>
     </message>
     <message>
         <source>Wiggle sawtooth</source>
-        <translation type="unfinished"/>
+        <translation>Vagga sawtooth</translation>
     </message>
     <message>
         <source>Wiggle sawtooth wide</source>
-        <translation type="unfinished"/>
+        <translation>Vagga sawtooth vítt</translation>
     </message>
     <message>
         <source>Wiggle vibrato large faster</source>
-        <translation type="unfinished"/>
+        <translation>Vagga stórt vibrato skjótari</translation>
     </message>
     <message>
         <source>Wiggle vibrato large slowest</source>
-        <translation type="unfinished"/>
+        <translation>Vagga stórt vibrato seinni</translation>
     </message>
     <message>
         <source>Ouvert</source>
-        <translation type="unfinished"/>
+        <translation>Ouvert</translation>
     </message>
     <message>
         <source>Stopped/Pizzicato left hand</source>
-        <translation type="unfinished"/>
+        <translation>Stoppa/Pizzicato vinstra hond</translation>
     </message>
     <message>
         <source>Up bow</source>
-        <translation type="unfinished"/>
+        <translation>Boga upp</translation>
     </message>
     <message>
         <source>Down bow</source>
-        <translation type="unfinished"/>
+        <translation>Boga niður</translation>
     </message>
     <message>
         <source>Reverse turn</source>
-        <translation type="unfinished"/>
+        <translation>Umvent vend</translation>
     </message>
     <message>
         <source>Turn</source>
-        <translation type="unfinished"/>
+        <translation>Vend</translation>
     </message>
     <message>
         <source>Trill</source>
@@ -15632,91 +15954,91 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Prall</source>
-        <translation type="unfinished"/>
+        <translation>Prall</translation>
     </message>
     <message>
         <source>Mordent</source>
-        <translation type="unfinished"/>
+        <translation>Mordent</translation>
     </message>
     <message>
         <source>Prall prall</source>
-        <translation type="unfinished"/>
+        <translation>Prall prall</translation>
     </message>
     <message>
         <source>Prall mordent</source>
-        <translation type="unfinished"/>
+        <translation>Prall mordent</translation>
     </message>
     <message>
         <source>Up prall</source>
-        <translation type="unfinished"/>
+        <translation>Upp prall</translation>
     </message>
     <message>
         <source>Down prall</source>
-        <translation type="unfinished"/>
+        <translation>Niður prall</translation>
     </message>
     <message>
         <source>Up mordent</source>
-        <translation type="unfinished"/>
+        <translation>Upp mordent</translation>
     </message>
     <message>
         <source>Down mordent</source>
-        <translation type="unfinished"/>
+        <translation>Niður mordent</translation>
     </message>
     <message>
         <source>Prall down</source>
-        <translation type="unfinished"/>
+        <translation>Prall niður</translation>
     </message>
     <message>
         <source>Prall up</source>
-        <translation type="unfinished"/>
+        <translation>Prall upp</translation>
     </message>
     <message>
         <source>Line prall</source>
-        <translation type="unfinished"/>
+        <translation>Linju prall</translation>
     </message>
     <message>
         <source>Schleifer</source>
-        <translation type="unfinished"/>
+        <translation>Schleifer</translation>
     </message>
     <message>
         <source>Snap pizzicato</source>
-        <translation type="unfinished"/>
+        <translation>Klikk pizzicato</translation>
     </message>
     <message>
         <source>Tapping</source>
-        <translation type="unfinished"/>
+        <translation>Pikkan</translation>
     </message>
     <message>
         <source>Slapping</source>
-        <translation type="unfinished"/>
+        <translation>Klamsan</translation>
     </message>
     <message>
         <source>Popping</source>
-        <translation type="unfinished"/>
+        <translation>Smellan</translation>
     </message>
     <message>
         <source>Thumb pos.</source>
-        <translation type="unfinished"/>
+        <translation>Tummil st.</translation>
     </message>
     <message>
         <source>Lute thumb fing.</source>
-        <translation type="unfinished"/>
+        <translation>Lutt tummil fingraset.</translation>
     </message>
     <message>
         <source>Lute 1 fing.</source>
-        <translation type="unfinished"/>
+        <translation>Lutt 1 fing.</translation>
     </message>
     <message>
         <source>Lute 2 fing.</source>
-        <translation type="unfinished"/>
+        <translation>Lutt 2 fing.</translation>
     </message>
     <message>
         <source>Lute 3 fing.</source>
-        <translation type="unfinished"/>
+        <translation>Lutt 3 fing.</translation>
     </message>
     <message>
         <source>Tremolo bar</source>
-        <translation type="unfinished"/>
+        <translation>Tremolo bjálki</translation>
     </message>
 </context>
 <context>
@@ -15727,7 +16049,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>c#</source>
-        <translation type="unfinished"/>
+        <translation>c#</translation>
     </message>
     <message>
         <source>d</source>
@@ -15735,7 +16057,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>d#</source>
-        <translation type="unfinished"/>
+        <translation>d#</translation>
     </message>
     <message>
         <source>e</source>
@@ -15747,15 +16069,15 @@ Measure is not empty</source>
     </message>
     <message>
         <source>f#</source>
-        <translation type="unfinished"/>
+        <translation>f#</translation>
     </message>
     <message>
         <source>g</source>
-        <translation type="unfinished"/>
+        <translation>g</translation>
     </message>
     <message>
         <source>g#</source>
-        <translation type="unfinished"/>
+        <translation>g#</translation>
     </message>
     <message>
         <source>a</source>
@@ -15763,11 +16085,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>a#</source>
-        <translation type="unfinished"/>
+        <translation>a#</translation>
     </message>
     <message>
         <source>b</source>
-        <translation type="unfinished"/>
+        <translation>b</translation>
     </message>
     <message>
         <source>C</source>
@@ -15775,7 +16097,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>C#</translation>
     </message>
     <message>
         <source>D</source>
@@ -15783,7 +16105,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>D#</source>
-        <translation type="unfinished"/>
+        <translation>D#</translation>
     </message>
     <message>
         <source>E</source>
@@ -15795,7 +16117,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>F#</translation>
     </message>
     <message>
         <source>G</source>
@@ -15803,7 +16125,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>G#</source>
-        <translation type="unfinished"/>
+        <translation>G#</translation>
     </message>
     <message>
         <source>A</source>
@@ -15811,7 +16133,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>A#</source>
-        <translation type="unfinished"/>
+        <translation>A#</translation>
     </message>
     <message>
         <source>B</source>
@@ -15822,643 +16144,643 @@ Measure is not empty</source>
     <name>bagpipe</name>
     <message>
         <source>Single grace low G</source>
-        <translation type="unfinished"/>
+        <translation>Einkul skreyt lágt G</translation>
     </message>
     <message>
         <source>Single grace low A</source>
-        <translation type="unfinished"/>
+        <translation>Einkul skreyt lágt A</translation>
     </message>
     <message>
         <source>Single grace B</source>
-        <translation type="unfinished"/>
+        <translation>Einkul skreyt B</translation>
     </message>
     <message>
         <source>Single grace C</source>
-        <translation type="unfinished"/>
+        <translation>Einkul skreyt C</translation>
     </message>
     <message>
         <source>Single grace D</source>
-        <translation type="unfinished"/>
+        <translation>Einkul skreyt D</translation>
     </message>
     <message>
         <source>Single grace E</source>
-        <translation type="unfinished"/>
+        <translation>Einkul skreyt E</translation>
     </message>
     <message>
         <source>Single grace F</source>
-        <translation type="unfinished"/>
+        <translation>Einkul skreyt F</translation>
     </message>
     <message>
         <source>Single grace high G</source>
-        <translation type="unfinished"/>
+        <translation>Einkul skreyt høgt G</translation>
     </message>
     <message>
         <source>Single grace high A</source>
-        <translation type="unfinished"/>
+        <translation>Einkul skreyt høgt A</translation>
     </message>
     <message>
         <source>Double grace</source>
-        <translation type="unfinished"/>
+        <translation>Dupul skreyt</translation>
     </message>
     <message>
         <source>Half doubling on low G</source>
-        <translation type="unfinished"/>
+        <translation>Hálv dupult á lágt G</translation>
     </message>
     <message>
         <source>Half doubling on low A</source>
-        <translation type="unfinished"/>
+        <translation>Hálv dupult á lágt A</translation>
     </message>
     <message>
         <source>Half doubling on B</source>
-        <translation type="unfinished"/>
+        <translation>Hálv dupult á B</translation>
     </message>
     <message>
         <source>Half doubling on C</source>
-        <translation type="unfinished"/>
+        <translation>Hálv dupult á C</translation>
     </message>
     <message>
         <source>Half doubling on D</source>
-        <translation type="unfinished"/>
+        <translation>Hálv dupult á D</translation>
     </message>
     <message>
         <source>Half doubling on E</source>
-        <translation type="unfinished"/>
+        <translation>Hálv dupult á E</translation>
     </message>
     <message>
         <source>Half doubling on F</source>
-        <translation type="unfinished"/>
+        <translation>Hálv dupult á F</translation>
     </message>
     <message>
         <source>Doubling on high G</source>
-        <translation type="unfinished"/>
+        <translation>Dupult á høgt G</translation>
     </message>
     <message>
         <source>Doubling on high A</source>
-        <translation type="unfinished"/>
+        <translation>Dupult á høgt A</translation>
     </message>
     <message>
         <source>Half strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on low A</translation>
     </message>
     <message>
         <source>Half strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on B</translation>
     </message>
     <message>
         <source>Half strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on C</translation>
     </message>
     <message>
         <source>Half strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on D</translation>
     </message>
     <message>
         <source>Half strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on E</translation>
     </message>
     <message>
         <source>Half strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on F</translation>
     </message>
     <message>
         <source>Half strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Half strike on high G</translation>
     </message>
     <message>
         <source>Grip</source>
-        <translation type="unfinished"/>
+        <translation>Grip</translation>
     </message>
     <message>
         <source>Half D throw</source>
-        <translation type="unfinished"/>
+        <translation>Half D throw</translation>
     </message>
     <message>
         <source>Doubling on low G</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on low G</translation>
     </message>
     <message>
         <source>Doubling on low A</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on low A</translation>
     </message>
     <message>
         <source>Doubling on B</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on B</translation>
     </message>
     <message>
         <source>Doubling on C</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on C</translation>
     </message>
     <message>
         <source>Doubling on D</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on D</translation>
     </message>
     <message>
         <source>Doubling on E</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on E</translation>
     </message>
     <message>
         <source>Doubling on F</source>
-        <translation type="unfinished"/>
+        <translation>Doubling on F</translation>
     </message>
     <message>
         <source>Thumb doubling on low G</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on low G</translation>
     </message>
     <message>
         <source>Thumb doubling on low A</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on low A</translation>
     </message>
     <message>
         <source>Thumb doubling on B</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on B</translation>
     </message>
     <message>
         <source>Thumb doubling on C</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on C</translation>
     </message>
     <message>
         <source>Thumb doubling on D</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on D</translation>
     </message>
     <message>
         <source>Thumb doubling on E</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on E</translation>
     </message>
     <message>
         <source>Thumb doubling on F</source>
-        <translation type="unfinished"/>
+        <translation>Thumb doubling on F</translation>
     </message>
     <message>
         <source>G grace note on low A</source>
-        <translation type="unfinished"/>
+        <translation>G grace note on low A</translation>
     </message>
     <message>
         <source>G grace note on B</source>
-        <translation type="unfinished"/>
+        <translation>G grace note on B</translation>
     </message>
     <message>
         <source>G grace note on C</source>
-        <translation type="unfinished"/>
+        <translation>G grace note on C</translation>
     </message>
     <message>
         <source>G grace note on D</source>
-        <translation type="unfinished"/>
+        <translation>G grace note on D</translation>
     </message>
     <message>
         <source>G grace note on E</source>
-        <translation type="unfinished"/>
+        <translation>G grace note on E</translation>
     </message>
     <message>
         <source>G grace note on F</source>
-        <translation type="unfinished"/>
+        <translation>G grace note on F</translation>
     </message>
     <message>
         <source>Double strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on low A</translation>
     </message>
     <message>
         <source>Double strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on B</translation>
     </message>
     <message>
         <source>Double strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on C</translation>
     </message>
     <message>
         <source>Double strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on D</translation>
     </message>
     <message>
         <source>Double strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on E</translation>
     </message>
     <message>
         <source>Double strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on F</translation>
     </message>
     <message>
         <source>Double strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on high G</translation>
     </message>
     <message>
         <source>Double strike on high A</source>
-        <translation type="unfinished"/>
+        <translation>Double strike on high A</translation>
     </message>
     <message>
         <source>Thumb strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on low A</translation>
     </message>
     <message>
         <source>Thumb strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on B</translation>
     </message>
     <message>
         <source>Thumb strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on C</translation>
     </message>
     <message>
         <source>Thumb strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on D</translation>
     </message>
     <message>
         <source>Thumb strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on E</translation>
     </message>
     <message>
         <source>Thumb strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on F</translation>
     </message>
     <message>
         <source>Thumb strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Thumb strike on high G</translation>
     </message>
     <message>
         <source>Birl</source>
-        <translation type="unfinished"/>
+        <translation>Birl</translation>
     </message>
     <message>
         <source>D throw</source>
-        <translation type="unfinished"/>
+        <translation>D throw</translation>
     </message>
     <message>
         <source>Half heavy D throw</source>
-        <translation type="unfinished"/>
+        <translation>Half heavy D throw</translation>
     </message>
     <message>
         <source>Taorluath</source>
-        <translation type="unfinished"/>
+        <translation>Taorluath</translation>
     </message>
     <message>
         <source>Bubly</source>
-        <translation type="unfinished"/>
+        <translation>Bubly</translation>
     </message>
     <message>
         <source>Heavy D throw</source>
-        <translation type="unfinished"/>
+        <translation>Heavy D throw</translation>
     </message>
     <message>
         <source>Half double strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on low A</translation>
     </message>
     <message>
         <source>Half double strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on B</translation>
     </message>
     <message>
         <source>Half double strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on C</translation>
     </message>
     <message>
         <source>Half double strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on D</translation>
     </message>
     <message>
         <source>Half double strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on E</translation>
     </message>
     <message>
         <source>Half double strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on F</translation>
     </message>
     <message>
         <source>Half double strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on high G</translation>
     </message>
     <message>
         <source>Half double strike on high A</source>
-        <translation type="unfinished"/>
+        <translation>Half double strike on high A</translation>
     </message>
     <message>
         <source>Half grip on low A</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on low A</translation>
     </message>
     <message>
         <source>Half grip on B</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on B</translation>
     </message>
     <message>
         <source>Half grip on C</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on C</translation>
     </message>
     <message>
         <source>Half grip on D</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on D</translation>
     </message>
     <message>
         <source>Half grip on E</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on E</translation>
     </message>
     <message>
         <source>Half grip on F</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on F</translation>
     </message>
     <message>
         <source>Half grip on high G</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on high G</translation>
     </message>
     <message>
         <source>Half grip on high A</source>
-        <translation type="unfinished"/>
+        <translation>Half grip on high A</translation>
     </message>
     <message>
         <source>Half pele on low A</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on low A</translation>
     </message>
     <message>
         <source>Half pele on B</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on B</translation>
     </message>
     <message>
         <source>Half pele on C</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on C</translation>
     </message>
     <message>
         <source>Half pele on D</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on D</translation>
     </message>
     <message>
         <source>Half pele on E</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on E</translation>
     </message>
     <message>
         <source>Half pele on F</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on F</translation>
     </message>
     <message>
         <source>Half pele on high G</source>
-        <translation type="unfinished"/>
+        <translation>Half pele on high G</translation>
     </message>
     <message>
         <source>G grace note grip on low A</source>
-        <translation type="unfinished"/>
+        <translation>G grace note grip on low A</translation>
     </message>
     <message>
         <source>G grace note grip on B</source>
-        <translation type="unfinished"/>
+        <translation>G grace note grip on B</translation>
     </message>
     <message>
         <source>G grace note grip on C</source>
-        <translation type="unfinished"/>
+        <translation>G grace note grip on C</translation>
     </message>
     <message>
         <source>G grace note grip on D</source>
-        <translation type="unfinished"/>
+        <translation>G grace note grip on D</translation>
     </message>
     <message>
         <source>G grace note grip on E</source>
-        <translation type="unfinished"/>
+        <translation>G grace note grip on E</translation>
     </message>
     <message>
         <source>G grace note grip on F</source>
-        <translation type="unfinished"/>
+        <translation>G grace note grip on F</translation>
     </message>
     <message>
         <source>Thumb grip on low A</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on low A</translation>
     </message>
     <message>
         <source>Thumb grip on B</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on B</translation>
     </message>
     <message>
         <source>Thumb grip on C</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on C</translation>
     </message>
     <message>
         <source>Thumb grip on D</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on D</translation>
     </message>
     <message>
         <source>Thumb grip on E</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on E</translation>
     </message>
     <message>
         <source>Thumb grip on F</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on F</translation>
     </message>
     <message>
         <source>Thumb grip on high G</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grip on high G</translation>
     </message>
     <message>
         <source>Pele on low A</source>
-        <translation type="unfinished"/>
+        <translation>Pele on low A</translation>
     </message>
     <message>
         <source>Pele on B</source>
-        <translation type="unfinished"/>
+        <translation>Pele on B</translation>
     </message>
     <message>
         <source>Pele on C</source>
-        <translation type="unfinished"/>
+        <translation>Pele on C</translation>
     </message>
     <message>
         <source>Pele on D</source>
-        <translation type="unfinished"/>
+        <translation>Pele on D</translation>
     </message>
     <message>
         <source>Pele on E</source>
-        <translation type="unfinished"/>
+        <translation>Pele on E</translation>
     </message>
     <message>
         <source>Pele on F</source>
-        <translation type="unfinished"/>
+        <translation>Pele on F</translation>
     </message>
     <message>
         <source>Thumb grace note pele on low A</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on low A</translation>
     </message>
     <message>
         <source>Thumb grace note pele on B</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on B</translation>
     </message>
     <message>
         <source>Thumb grace note pele on C</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on C</translation>
     </message>
     <message>
         <source>Thumb grace note pele on D</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on D</translation>
     </message>
     <message>
         <source>Thumb grace note pele on E</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on E</translation>
     </message>
     <message>
         <source>Thumb grace note pele on F</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on F</translation>
     </message>
     <message>
         <source>Thumb grace note pele on high G</source>
-        <translation type="unfinished"/>
+        <translation>Thumb grace note pele on high G</translation>
     </message>
     <message>
         <source>G grace note double strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>G grace note double strike on low A</translation>
     </message>
     <message>
         <source>G grace note double strike on B</source>
-        <translation type="unfinished"/>
+        <translation>G grace note double strike on B</translation>
     </message>
     <message>
         <source>G grace note double strike on C</source>
-        <translation type="unfinished"/>
+        <translation>G grace note double strike on C</translation>
     </message>
     <message>
         <source>G grace note double strike on D</source>
-        <translation type="unfinished"/>
+        <translation>G grace note double strike on D</translation>
     </message>
     <message>
         <source>G grace note double strike on E</source>
-        <translation type="unfinished"/>
+        <translation>G grace note double strike on E</translation>
     </message>
     <message>
         <source>G grace note double strike on F</source>
-        <translation type="unfinished"/>
+        <translation>G grace note double strike on F</translation>
     </message>
     <message>
         <source>Thumb double strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on low A</translation>
     </message>
     <message>
         <source>Thumb double strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on B</translation>
     </message>
     <message>
         <source>Thumb double strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on C</translation>
     </message>
     <message>
         <source>Thumb double strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on D</translation>
     </message>
     <message>
         <source>Thumb double strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on E</translation>
     </message>
     <message>
         <source>Thumb double strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on F</translation>
     </message>
     <message>
         <source>Thumb double strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Thumb double strike on high G</translation>
     </message>
     <message>
         <source>Triple strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on low A</translation>
     </message>
     <message>
         <source>Triple strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on B</translation>
     </message>
     <message>
         <source>Triple strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on C</translation>
     </message>
     <message>
         <source>Triple strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on D</translation>
     </message>
     <message>
         <source>Triple strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on E</translation>
     </message>
     <message>
         <source>Triple strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on F</translation>
     </message>
     <message>
         <source>Triple strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on high G</translation>
     </message>
     <message>
         <source>Triple strike on high A</source>
-        <translation type="unfinished"/>
+        <translation>Triple strike on high A</translation>
     </message>
     <message>
         <source>Half triple strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on low A</translation>
     </message>
     <message>
         <source>Half triple strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on B</translation>
     </message>
     <message>
         <source>Half triple strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on C</translation>
     </message>
     <message>
         <source>Half triple strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on D</translation>
     </message>
     <message>
         <source>Half triple strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on E</translation>
     </message>
     <message>
         <source>Half triple strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on F</translation>
     </message>
     <message>
         <source>Half triple strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on high G</translation>
     </message>
     <message>
         <source>Half triple strike on high A</source>
-        <translation type="unfinished"/>
+        <translation>Half triple strike on high A</translation>
     </message>
     <message>
         <source>G grace note triple strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>G grace note triple strike on low A</translation>
     </message>
     <message>
         <source>G grace note triple strike on B</source>
-        <translation type="unfinished"/>
+        <translation>G grace note triple strike on B</translation>
     </message>
     <message>
         <source>G grace note triple strike on C</source>
-        <translation type="unfinished"/>
+        <translation>G grace note triple strike on C</translation>
     </message>
     <message>
         <source>G grace note triple strike on D</source>
-        <translation type="unfinished"/>
+        <translation>G grace note triple strike on D</translation>
     </message>
     <message>
         <source>G grace note triple strike on E</source>
-        <translation type="unfinished"/>
+        <translation>G grace note triple strike on E</translation>
     </message>
     <message>
         <source>G grace note triple strike on F</source>
-        <translation type="unfinished"/>
+        <translation>G grace note triple strike on F</translation>
     </message>
     <message>
         <source>Thumb triple strike on low A</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on low A</translation>
     </message>
     <message>
         <source>Thumb triple strike on B</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on B</translation>
     </message>
     <message>
         <source>Thumb triple strike on C</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on C</translation>
     </message>
     <message>
         <source>Thumb triple strike on D</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on D</translation>
     </message>
     <message>
         <source>Thumb triple strike on E</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on E</translation>
     </message>
     <message>
         <source>Thumb triple strike on F</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on F</translation>
     </message>
     <message>
         <source>Thumb triple strike on high G</source>
-        <translation type="unfinished"/>
+        <translation>Thumb triple strike on high G</translation>
     </message>
 </context>
 <context>
@@ -16541,7 +16863,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Tablature2</source>
-        <translation type="unfinished"/>
+        <translation>Tablature2</translation>
+    </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>G lykil møguliga 8vb</translation>
     </message>
 </context>
 <context>
@@ -16560,235 +16886,235 @@ Measure is not empty</source>
     </message>
     <message>
         <source>High Q</source>
-        <translation type="unfinished"/>
+        <translation>Høgt Q</translation>
     </message>
     <message>
         <source>Slap</source>
-        <translation type="unfinished"/>
+        <translation>Slag</translation>
     </message>
     <message>
         <source>Scratch Push</source>
-        <translation type="unfinished"/>
+        <translation>Skrav skump</translation>
     </message>
     <message>
         <source>Scratch Pull</source>
-        <translation type="unfinished"/>
+        <translation>Skrav hál</translation>
     </message>
     <message>
         <source>Sticks</source>
-        <translation type="unfinished"/>
+        <translation>Stikkarar</translation>
     </message>
     <message>
         <source>Metronome Click</source>
-        <translation type="unfinished"/>
+        <translation>Metronom Klikk</translation>
     </message>
     <message>
         <source>Metronome Bell</source>
-        <translation type="unfinished"/>
+        <translation>Metronom Klokka</translation>
     </message>
     <message>
         <source>Bass Drum 1</source>
-        <translation type="unfinished"/>
+        <translation>Bass trumma 1</translation>
     </message>
     <message>
         <source>Acoustic Snare</source>
-        <translation type="unfinished"/>
+        <translation>Akkustisk snare</translation>
     </message>
     <message>
         <source>Hand Clap</source>
-        <translation type="unfinished"/>
+        <translation>Hond klapp</translation>
     </message>
     <message>
         <source>Electric Snare</source>
-        <translation type="unfinished"/>
+        <translation>Elektrisk Snare</translation>
     </message>
     <message>
         <source>Low Floor Tom</source>
-        <translation type="unfinished"/>
+        <translation>Djúp gólv tam</translation>
     </message>
     <message>
         <source>Closed Hi-Hat</source>
-        <translation type="unfinished"/>
+        <translation>Læstur Hi-Hattur</translation>
     </message>
     <message>
         <source>High Floor Tom</source>
-        <translation type="unfinished"/>
+        <translation>Høg gólv tam</translation>
     </message>
     <message>
         <source>Pedal Hi-Hat</source>
-        <translation type="unfinished"/>
+        <translation>Pedal Hi-Hattur</translation>
     </message>
     <message>
         <source>Low Tom</source>
-        <translation type="unfinished"/>
+        <translation>Lá tam</translation>
     </message>
     <message>
         <source>Open Hi-Hat</source>
-        <translation type="unfinished"/>
+        <translation>Opin Hi-hattur</translation>
     </message>
     <message>
         <source>Low-Mid Tom</source>
-        <translation type="unfinished"/>
+        <translation>Lá-mið tam</translation>
     </message>
     <message>
         <source>Hi-Mid Tom</source>
-        <translation type="unfinished"/>
+        <translation>Høg-mið tam</translation>
     </message>
     <message>
         <source>Crash Cymbal 1</source>
-        <translation type="unfinished"/>
+        <translation>Krash bekkari 1</translation>
     </message>
     <message>
         <source>High Tom</source>
-        <translation type="unfinished"/>
+        <translation>Høg tam</translation>
     </message>
     <message>
         <source>Ride Bell</source>
-        <translation type="unfinished"/>
+        <translation>Ride klokka</translation>
     </message>
     <message>
         <source>Cowbell</source>
-        <translation type="unfinished"/>
+        <translation>Kúklokkar</translation>
     </message>
     <message>
         <source>Vibraslap</source>
-        <translation type="unfinished"/>
+        <translation>Vibraslap</translation>
     </message>
     <message>
         <source>Low Bongo</source>
-        <translation type="unfinished"/>
+        <translation>Lág Bongo</translation>
     </message>
     <message>
         <source>Mute Hi Conga</source>
-        <translation type="unfinished"/>
+        <translation>Dempa Høg Konga</translation>
     </message>
     <message>
         <source>Open Hi Conga</source>
-        <translation type="unfinished"/>
+        <translation>Opin høg Konga</translation>
     </message>
     <message>
         <source>Low Conga</source>
-        <translation type="unfinished"/>
+        <translation>Lág Konga</translation>
     </message>
     <message>
         <source>High Timbale</source>
-        <translation type="unfinished"/>
+        <translation>Høg Timbale</translation>
     </message>
     <message>
         <source>Low Timbale</source>
-        <translation type="unfinished"/>
+        <translation>Lág Timbale</translation>
     </message>
     <message>
         <source>High Agogo</source>
-        <translation type="unfinished"/>
+        <translation>Høgt Agogo</translation>
     </message>
     <message>
         <source>Low Agogo</source>
-        <translation type="unfinished"/>
+        <translation>Lág Agogo</translation>
     </message>
     <message>
         <source>Cabasa</source>
-        <translation type="unfinished"/>
+        <translation>Kabasa</translation>
     </message>
     <message>
         <source>Maracas</source>
-        <translation type="unfinished"/>
+        <translation>Marakas</translation>
     </message>
     <message>
         <source>Short Whistle</source>
-        <translation type="unfinished"/>
+        <translation>Stutt floyta</translation>
     </message>
     <message>
         <source>Long Whistle</source>
-        <translation type="unfinished"/>
+        <translation>Long Floyta</translation>
     </message>
     <message>
         <source>Short Guiro</source>
-        <translation type="unfinished"/>
+        <translation>Stutt Guiro</translation>
     </message>
     <message>
         <source>Long Guiro</source>
-        <translation type="unfinished"/>
+        <translation>Long Guiro</translation>
     </message>
     <message>
         <source>Claves</source>
-        <translation type="unfinished"/>
+        <translation>Klaves</translation>
     </message>
     <message>
         <source>Hi Wood Block</source>
-        <translation type="unfinished"/>
+        <translation>Høgur Wood Block</translation>
     </message>
     <message>
         <source>Low Wood Block</source>
-        <translation type="unfinished"/>
+        <translation>Lágur Wood Block</translation>
     </message>
     <message>
         <source>Mute Cuica</source>
-        <translation type="unfinished"/>
+        <translation>Dempa Cucia</translation>
     </message>
     <message>
         <source>Open Cuica</source>
-        <translation type="unfinished"/>
+        <translation>Opin Cucia</translation>
     </message>
     <message>
         <source>Mute Triangle</source>
-        <translation type="unfinished"/>
+        <translation>Dempaður triangul</translation>
     </message>
     <message>
         <source>Open Triangle</source>
-        <translation type="unfinished"/>
+        <translation>Opin triangul</translation>
     </message>
     <message>
         <source>Shaker</source>
-        <translation type="unfinished"/>
+        <translation>Shaker</translation>
     </message>
     <message>
         <source>Bell Tree</source>
-        <translation type="unfinished"/>
+        <translation>Klokku træ</translation>
     </message>
     <message>
         <source>Mute Surdo</source>
-        <translation type="unfinished"/>
+        <translation>Demp. Surdo</translation>
     </message>
     <message>
         <source>Open Surdo</source>
-        <translation type="unfinished"/>
+        <translation>Opin Surdo</translation>
     </message>
     <message>
         <source>Ride Cymbal 1</source>
-        <translation type="unfinished"/>
+        <translation>Ride bekkari 1</translation>
     </message>
     <message>
         <source>Chinese Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Kina bekkari</translation>
     </message>
     <message>
         <source>Splash Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Splash Bekkari</translation>
     </message>
     <message>
         <source>Crash Cymbal 2</source>
-        <translation type="unfinished"/>
+        <translation>Krasj Bekkari 2</translation>
     </message>
     <message>
         <source>Ride Cymbal 2</source>
-        <translation type="unfinished"/>
+        <translation>Ride bekkari 2</translation>
     </message>
     <message>
         <source>Castanets</source>
-        <translation type="unfinished"/>
+        <translation>Kastanettir</translation>
     </message>
     <message>
         <source>Square Click</source>
-        <translation type="unfinished"/>
+        <translation>Square Klikk</translation>
     </message>
     <message>
         <source>Hi Bongo</source>
-        <translation type="unfinished"/>
+        <translation>Høg Bongo</translation>
     </message>
     <message>
         <source>Sleigh Bell</source>
-        <translation type="unfinished"/>
+        <translation>Sledu Klokka</translation>
     </message>
 </context>
 <context>
@@ -16799,7 +17125,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>C#</translation>
     </message>
     <message>
         <source>D</source>
@@ -16807,7 +17133,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Eb</source>
-        <translation type="unfinished"/>
+        <translation>Eb</translation>
     </message>
     <message>
         <source>E</source>
@@ -16819,7 +17145,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>F#</translation>
     </message>
     <message>
         <source>G</source>
@@ -16827,7 +17153,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ab</source>
-        <translation type="unfinished"/>
+        <translation>Ab</translation>
     </message>
     <message>
         <source>A</source>
@@ -16850,7 +17176,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>C#</translation>
     </message>
     <message>
         <source>D</source>
@@ -16858,7 +17184,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Eb</source>
-        <translation type="unfinished"/>
+        <translation>Eb</translation>
     </message>
     <message>
         <source>E</source>
@@ -16870,7 +17196,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>F#</translation>
     </message>
     <message>
         <source>G</source>
@@ -16878,7 +17204,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ab</source>
-        <translation type="unfinished"/>
+        <translation>Ab</translation>
     </message>
     <message>
         <source>A</source>
@@ -16897,7 +17223,7 @@ Measure is not empty</source>
     <name>elementName</name>
     <message>
         <source>invalid</source>
-        <translation type="unfinished"/>
+        <translation>Ógildigur</translation>
     </message>
     <message>
         <source>Symbol</source>
@@ -16909,11 +17235,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Line</source>
-        <translation>Line</translation>
+        <translation>Linja</translation>
     </message>
     <message>
         <source>Bracket</source>
-        <translation>Bracket</translation>
+        <translation>Klombur</translation>
     </message>
     <message>
         <source>Arpeggio</source>
@@ -16941,7 +17267,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Breath</source>
-        <translation>Breath</translation>
+        <translation>Steðgur</translation>
     </message>
     <message>
         <source>Glissando</source>
@@ -16957,7 +17283,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Articulation</source>
-        <translation>Articulation</translation>
+        <translation>Framburður</translation>
     </message>
     <message>
         <source>Dynamic</source>
@@ -16989,7 +17315,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Nótabólkur</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -16997,7 +17323,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Bend</source>
-        <translation type="unfinished"/>
+        <translation>Bend</translation>
     </message>
     <message>
         <source>Volta</source>
@@ -17045,7 +17371,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>System</source>
-        <translation>System</translation>
+        <translation>Skipan</translation>
     </message>
     <message>
         <source>Compound</source>
@@ -17069,27 +17395,27 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ossia</source>
-        <translation type="unfinished"/>
+        <translation>Ossia</translation>
     </message>
     <message>
         <source>Instrument Name</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðførisnavn</translation>
     </message>
     <message>
         <source>Slur Segment</source>
-        <translation type="unfinished"/>
+        <translation>Bindiboga partur</translation>
     </message>
     <message>
         <source>Staff Lines</source>
-        <translation type="unfinished"/>
+        <translation>Stav linjur</translation>
     </message>
     <message>
         <source>Bar Line</source>
-        <translation type="unfinished"/>
+        <translation>Takt strikur</translation>
     </message>
     <message>
         <source>Stem Slash</source>
-        <translation type="unfinished"/>
+        <translation>Legg strika</translation>
     </message>
     <message>
         <source>Key Signature</source>
@@ -17097,19 +17423,19 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Time Signature</source>
-        <translation>Enter Time Signature:</translation>
+        <translation>Takt slag</translation>
     </message>
     <message>
         <source>Repeat Measure</source>
-        <translation type="unfinished"/>
+        <translation>Endurtak takt</translation>
     </message>
     <message>
         <source>Chord Line</source>
-        <translation type="unfinished"/>
+        <translation>Akkord linjur</translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation type="unfinished"/>
+        <translation>Besiffraður bassur</translation>
     </message>
     <message>
         <source>Staff Text</source>
@@ -17121,23 +17447,23 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Instrument Change</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðføri, broyting</translation>
     </message>
     <message>
         <source>Hairpin Segment</source>
-        <translation type="unfinished"/>
+        <translation>Hárnál partur</translation>
     </message>
     <message>
         <source>Ottava Segment</source>
-        <translation type="unfinished"/>
+        <translation>Ottava partur</translation>
     </message>
     <message>
         <source>Trill Segment</source>
-        <translation type="unfinished"/>
+        <translation>Trillu partur</translation>
     </message>
     <message>
         <source>Text Line Segment</source>
-        <translation type="unfinished"/>
+        <translation>Tekst linju petti</translation>
     </message>
     <message>
         <source>Volta Segment</source>
@@ -17145,39 +17471,39 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Pedal Segment</source>
-        <translation type="unfinished"/>
+        <translation>Pedal partur</translation>
     </message>
     <message>
         <source>Layout Break</source>
-        <translation type="unfinished"/>
+        <translation>Uppseting brot</translation>
     </message>
     <message>
         <source>Staff State</source>
-        <translation type="unfinished"/>
+        <translation>Stav støða</translation>
     </message>
     <message>
         <source>Ledger Line</source>
-        <translation type="unfinished"/>
+        <translation>Eykalinja</translation>
     </message>
     <message>
         <source>Note Head</source>
-        <translation type="unfinished"/>
+        <translation>Nóta høvd</translation>
     </message>
     <message>
         <source>Note Dot</source>
-        <translation type="unfinished"/>
+        <translation>Nóta prikkur</translation>
     </message>
     <message>
         <source>Shadow Note</source>
-        <translation type="unfinished"/>
+        <translation>Skugga nóti</translation>
     </message>
     <message>
         <source>Tab Duration Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Tab tíðarbil symbol</translation>
     </message>
     <message>
         <source>Font Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Funt symbol</translation>
     </message>
     <message>
         <source>Hairpin</source>
@@ -17185,106 +17511,106 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Text Line</source>
-        <translation type="unfinished"/>
+        <translation>Tekst linja</translation>
     </message>
     <message>
         <source>Note Line</source>
-        <translation type="unfinished"/>
+        <translation>Nótalinja</translation>
     </message>
     <message>
         <source>Element List</source>
-        <translation type="unfinished"/>
+        <translation>Element listi</translation>
     </message>
     <message>
         <source>Staff List</source>
-        <translation type="unfinished"/>
+        <translation>Stav listi</translation>
     </message>
     <message>
         <source>Measure List</source>
-        <translation type="unfinished"/>
+        <translation>Takt listi</translation>
     </message>
     <message>
         <source>Horizontal Frame</source>
-        <translation type="unfinished"/>
+        <translation>Vatnrøtt ramma</translation>
     </message>
     <message>
         <source>Vertical Frame</source>
-        <translation type="unfinished"/>
+        <translation>Loddrøtt ramma</translation>
     </message>
     <message>
         <source>Text Frame</source>
-        <translation type="unfinished"/>
+        <translation>Tekst ramma</translation>
     </message>
     <message>
         <source>Fretboard Diagram Frame</source>
-        <translation type="unfinished"/>
+        <translation>Bandaborð diagramm ramma</translation>
     </message>
     <message>
         <source>Bagpipe Embellishment</source>
-        <translation type="unfinished"/>
+        <translation>Sekkjapípu skreyt</translation>
     </message>
     <message>
         <source>Fretboard Diagram</source>
-        <translation type="unfinished"/>
+        <translation>Bandaborð diagramm</translation>
     </message>
     <message>
         <source>Ambitus</source>
-        <translation type="unfinished"/>
+        <translation>Ambitus</translation>
     </message>
     <message>
         <source>Chord Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Akkord symbol</translation>
     </message>
     <message>
         <source>Tremolo Bar</source>
-        <translation type="unfinished"/>
+        <translation>Tremolo bummur</translation>
     </message>
     <message>
         <source>Melisma Line</source>
-        <translation type="unfinished"/>
+        <translation>Melismu linja</translation>
     </message>
     <message>
         <source>Glissando Segment</source>
-        <translation type="unfinished"/>
+        <translation>Glissando partur</translation>
     </message>
     <message>
         <source>Melisma Line Segment</source>
-        <translation type="unfinished"/>
+        <translation>Melismu linju petti</translation>
     </message>
 </context>
 <context>
     <name>fotomode</name>
     <message>
         <source>Resize to A</source>
-        <translation type="unfinished"/>
+        <translation>Broyt til A</translation>
     </message>
     <message>
         <source>Resize to B</source>
-        <translation type="unfinished"/>
+        <translation>Broyt til B</translation>
     </message>
     <message>
         <source>Resize to C</source>
-        <translation type="unfinished"/>
+        <translation>Broyt til C</translation>
     </message>
     <message>
         <source>Resize to D</source>
-        <translation type="unfinished"/>
+        <translation>Broyt til D</translation>
     </message>
     <message>
         <source>Set size A</source>
-        <translation type="unfinished"/>
+        <translation>Áset stødd A</translation>
     </message>
     <message>
         <source>Set size B</source>
-        <translation type="unfinished"/>
+        <translation>Áset stødd B</translation>
     </message>
     <message>
         <source>Set size C</source>
-        <translation type="unfinished"/>
+        <translation>Áset stødd C</translation>
     </message>
     <message>
         <source>Set size D</source>
-        <translation type="unfinished"/>
+        <translation>Áset stødd D</translation>
     </message>
 </context>
 <context>
@@ -17298,27 +17624,27 @@ Measure is not empty</source>
     <name>inspector</name>
     <message>
         <source>Staff default</source>
-        <translation type="unfinished"/>
+        <translation>Forsettur stavur</translation>
     </message>
     <message>
         <source>Tick 1</source>
-        <translation type="unfinished"/>
+        <translation>Tick 1</translation>
     </message>
     <message>
         <source>Tick 2</source>
-        <translation type="unfinished"/>
+        <translation>Tick 2</translation>
     </message>
     <message>
         <source>Short 1</source>
-        <translation type="unfinished"/>
+        <translation>Stutt 1</translation>
     </message>
     <message>
         <source>Short 2</source>
-        <translation type="unfinished"/>
+        <translation>Stutt 2</translation>
     </message>
     <message>
         <source>[Custom]</source>
-        <translation type="unfinished"/>
+        <translation>[Sergjørd]</translation>
     </message>
 </context>
 <context>
@@ -17337,11 +17663,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>D.S. al Coda</source>
-        <translation type="unfinished"/>
+        <translation>D.S. al Coda</translation>
     </message>
     <message>
         <source>D.S. al Fine</source>
-        <translation type="unfinished"/>
+        <translation>D.S. al Fine</translation>
     </message>
     <message>
         <source>D.S.</source>
@@ -17398,15 +17724,15 @@ Measure is not empty</source>
     </message>
     <message>
         <source>To Coda</source>
-        <translation type="unfinished"/>
+        <translation>TIl Coda</translation>
     </message>
     <message>
         <source>Custom</source>
-        <translation type="unfinished"/>
+        <translation>Sergjørd</translation>
     </message>
     <message>
         <source>Segno variation</source>
-        <translation type="unfinished"/>
+        <translation>Segno variatión</translation>
     </message>
 </context>
 <context>
@@ -17417,11 +17743,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Cross</source>
-        <translation type="unfinished"/>
+        <translation>Krossur</translation>
     </message>
     <message>
         <source>Diamond</source>
-        <translation type="unfinished"/>
+        <translation>Diamantur</translation>
     </message>
     <message>
         <source>Triangle</source>
@@ -17429,50 +17755,50 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Mi</source>
-        <translation type="unfinished"/>
+        <translation>Mi</translation>
     </message>
     <message>
         <source>Slash</source>
-        <translation type="unfinished"/>
+        <translation>Skák</translation>
     </message>
     <message>
         <source>XCircle</source>
-        <translation type="unfinished"/>
+        <translation>XSirkul</translation>
     </message>
     <message>
         <source>Do</source>
-        <translation type="unfinished"/>
+        <translation>Do</translation>
     </message>
     <message>
         <source>Re</source>
-        <translation type="unfinished"/>
+        <translation>Re</translation>
     </message>
     <message>
         <source>Fa</source>
-        <translation type="unfinished"/>
+        <translation>Fa</translation>
     </message>
     <message>
         <source>La</source>
-        <translation type="unfinished"/>
+        <translation>La</translation>
     </message>
     <message>
         <source>Ti</source>
-        <translation type="unfinished"/>
+        <translation>Ti</translation>
     </message>
     <message>
         <source>Sol</source>
-        <translation type="unfinished"/>
+        <translation>Sol</translation>
     </message>
     <message>
         <source>Alt. Brevis</source>
-        <translation type="unfinished"/>
+        <translation>Alt. Brevis</translation>
     </message>
 </context>
 <context>
     <name>plugins_directory</name>
     <message>
         <source>Plugins</source>
-        <translation type="unfinished"/>
+        <translation>Plugin</translation>
     </message>
 </context>
 <context>
@@ -17483,34 +17809,34 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Every Day</source>
-        <translation type="unfinished"/>
+        <translation>Hvønn dag</translation>
     </message>
     <message>
         <source>Every 3 Days</source>
-        <translation type="unfinished"/>
+        <translation>3 hvønn dag</translation>
     </message>
     <message>
         <source>Every Week</source>
-        <translation type="unfinished"/>
+        <translation>Hvørja viku</translation>
     </message>
     <message>
         <source>Every 2 Weeks</source>
-        <translation type="unfinished"/>
+        <translation>2 hvørja viku</translation>
     </message>
     <message>
         <source>Every Month</source>
-        <translation type="unfinished"/>
+        <translation>Hvønn mánað</translation>
     </message>
     <message>
         <source>Every 2 Months</source>
-        <translation type="unfinished"/>
+        <translation>2 hvønn mánað</translation>
     </message>
 </context>
 <context>
     <name>scores_directory</name>
     <message>
         <source>Scores</source>
-        <translation type="unfinished"/>
+        <translation>Nótabløð</translation>
     </message>
 </context>
 <context>
@@ -17529,23 +17855,23 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Chord Symbols</source>
-        <translation type="unfinished"/>
+        <translation>Akkord symbol</translation>
     </message>
     <message>
         <source>Other Text</source>
-        <translation type="unfinished"/>
+        <translation>Annar tekstur</translation>
     </message>
     <message>
         <source>Articulations</source>
-        <translation type="unfinished"/>
+        <translation>Framburðar</translation>
     </message>
     <message>
         <source>Slurs</source>
-        <translation type="unfinished"/>
+        <translation>Bindibogar</translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation type="unfinished"/>
+        <translation>Besiffraður bassur</translation>
     </message>
     <message>
         <source>Ottava</source>
@@ -17561,11 +17887,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Pedal Lines</source>
-        <translation type="unfinished"/>
+        <translation>Pedal linja</translation>
     </message>
     <message>
         <source>Other Lines</source>
-        <translation type="unfinished"/>
+        <translation>Aðrar linjur</translation>
     </message>
     <message>
         <source>Arpeggios</source>
@@ -17573,90 +17899,86 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Glissandi</source>
-        <translation type="unfinished"/>
+        <translation>Glissandi</translation>
     </message>
     <message>
         <source>Fretboard Diagrams</source>
-        <translation type="unfinished"/>
+        <translation>Bandaborð diagramm</translation>
     </message>
     <message>
         <source>Breath Marks</source>
-        <translation type="unfinished"/>
+        <translation>Steðgir merki</translation>
     </message>
     <message>
         <source>Voice 1</source>
-        <translation type="unfinished"/>
+        <translation>Rødd 1</translation>
     </message>
     <message>
         <source>Voice 2</source>
-        <translation type="unfinished"/>
+        <translation>Rødd 2</translation>
     </message>
     <message>
         <source>Voice 3</source>
-        <translation type="unfinished"/>
+        <translation>Rødd 3</translation>
     </message>
     <message>
         <source>Voice 4</source>
-        <translation type="unfinished"/>
+        <translation>Rødd 4</translation>
     </message>
 </context>
 <context>
     <name>soundfonts_directory</name>
     <message>
         <source>Soundfonts</source>
-        <translation type="unfinished"/>
+        <translation>Ljóðfuntar</translation>
     </message>
 </context>
 <context>
     <name>staff group header name</name>
     <message>
         <source>STANDARD STAFF</source>
-        <translation type="unfinished"/>
+        <translation>VANLIGUR STAVUR</translation>
     </message>
     <message>
         <source>PERCUSSION STAFF</source>
-        <translation type="unfinished"/>
+        <translation>PERKUSSIÓN STAVUR</translation>
     </message>
     <message>
         <source>TABLATURE STAFF</source>
-        <translation type="unfinished"/>
+        <translation>TABLATURE STAVUR</translation>
     </message>
 </context>
 <context>
     <name>styles_directory</name>
     <message>
         <source>Styles</source>
-        <translation>Style</translation>
+        <translation>Snið</translation>
     </message>
 </context>
 <context>
     <name>templates_directory</name>
     <message>
         <source>Templates</source>
-        <translation type="unfinished"/>
+        <translation>Skapilónir</translation>
     </message>
 </context>
 <context>
     <name>trillType</name>
     <message>
         <source>Trill line</source>
-        <translation>Trill line</translation>
+        <translation>Trillu linja</translation>
     </message>
     <message>
         <source>Upprall line</source>
-        <translation type="unfinished"/>
+        <translation>Upp prall linja</translation>
     </message>
     <message>
         <source>Downprall line</source>
-        <translation type="unfinished"/>
+        <translation>Niður prall linja</translation>
     </message>
     <message>
         <source>Prallprall line</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
+        <translation>Prallprall linja</translation>
     </message>
 </context>
 <context>
@@ -17667,7 +17989,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>c#</source>
-        <translation type="unfinished"/>
+        <translation>c#</translation>
     </message>
     <message>
         <source>d</source>
@@ -17675,7 +17997,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>d#</source>
-        <translation type="unfinished"/>
+        <translation>d#</translation>
     </message>
     <message>
         <source>e</source>
@@ -17687,15 +18009,15 @@ Measure is not empty</source>
     </message>
     <message>
         <source>f#</source>
-        <translation type="unfinished"/>
+        <translation>f#</translation>
     </message>
     <message>
         <source>g</source>
-        <translation type="unfinished"/>
+        <translation>g</translation>
     </message>
     <message>
         <source>g#</source>
-        <translation type="unfinished"/>
+        <translation>g#</translation>
     </message>
     <message>
         <source>a</source>
@@ -17703,11 +18025,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>a#</source>
-        <translation type="unfinished"/>
+        <translation>a#</translation>
     </message>
     <message>
         <source>b</source>
-        <translation type="unfinished"/>
+        <translation>b</translation>
     </message>
     <message>
         <source>C</source>
@@ -17715,7 +18037,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>C#</translation>
     </message>
     <message>
         <source>D</source>
@@ -17723,7 +18045,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>D#</source>
-        <translation type="unfinished"/>
+        <translation>D#</translation>
     </message>
     <message>
         <source>E</source>
@@ -17735,7 +18057,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>F#</translation>
     </message>
     <message>
         <source>G</source>
@@ -17743,7 +18065,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>G#</source>
-        <translation type="unfinished"/>
+        <translation>G#</translation>
     </message>
     <message>
         <source>A</source>
@@ -17751,7 +18073,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>A#</source>
-        <translation type="unfinished"/>
+        <translation>A#</translation>
     </message>
     <message>
         <source>B</source>
diff --git a/share/locale/mscore_fr.ts b/share/locale/mscore_fr.ts
index b530780..4b3589d 100644
--- a/share/locale/mscore_fr.ts
+++ b/share/locale/mscore_fr.ts
@@ -1512,7 +1512,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Beside staff</source>
-        <translation>En-dessous de la portée</translation>
+        <translation>Au-dessous de la portée</translation>
     </message>
     <message>
         <source>Through staff</source>
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Inspecteur de glissando</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpège</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Lecture</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Réinitialiser la lecture</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Réinitialiser l'étirement du temps</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Style d'ornement</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Défaut</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Baroque</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Réinitialiser le style d'ornement</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Lecture</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Réinitialiser la lecture</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Inspecteur de glissando</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Bend</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Lecture</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Réinitialiser la lecture</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Afficher le texte</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Style</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Réinitialiser le style</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Style de lecture</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Chromatique</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Touches blanches</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Touches noires</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonique</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Lecture</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Réinitialiser la lecture</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -3612,19 +3710,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Right gap</source>
-        <translation>Espacement à droite</translation>
+        <translation>Marge droite</translation>
     </message>
     <message>
         <source>Left gap</source>
-        <translation>Espacement à gauche</translation>
+        <translation>Marge gauche</translation>
     </message>
     <message>
         <source>Reset Left gap value</source>
-        <translation>Réinitialiser l'espacement à gauche</translation>
+        <translation>Réinitialiser la marge gauche</translation>
     </message>
     <message>
         <source>Reset Right gap value</source>
-        <translation>Réinitialiser l'espacement à droite</translation>
+        <translation>Réinitialiser la marge droite</translation>
     </message>
 </context>
 <context>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Inspecteur de cadre de texte</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Cadre de texte</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Marge inférieure</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Marge du haut</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Réinitialiser la valeur</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Réinitialiser la marge supérieure</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Réinitialiser la marge inférieure</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Marge de gauche</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Marge du bas</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Réinitialiser la marge de droite</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Marge de droite</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Réinitialiser la marge du bas</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Réinitialiser la marge du haut</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Réinitialiser la marge gauche</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Marge supérieure</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>esp.</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Trille</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Ligne de trille</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Remettre à zéro la valeur</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Style d'ornement</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Direction</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Défaut</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Baroque</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Réinitialiser le style d'ornement</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Lecture</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Réinitialiser la lecture</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4608,11 +4802,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Top gap value</source>
-        <translation>Réinitialiser l'espacement du haut</translation>
+        <translation>Réinitialiser la marge supérieure</translation>
     </message>
     <message>
         <source>Reset Bottom gap value</source>
-        <translation>Réinitialiser l'espacement du bas</translation>
+        <translation>Réinitialiser la marge inférieure</translation>
     </message>
     <message>
         <source>Bottom margin</source>
@@ -4624,11 +4818,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Top gap</source>
-        <translation>Espacement du haut</translation>
+        <translation>Marge supérieure</translation>
     </message>
     <message>
         <source>Bottom gap</source>
-        <translation>Espacement du bas</translation>
+        <translation>Marge inférieure</translation>
     </message>
     <message>
         <source>Top margin</source>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -5057,7 +5258,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Below</source>
-        <translation>En-dessous</translation>
+        <translation>Au-dessous</translation>
     </message>
     <message>
         <source>Left</source>
@@ -5301,7 +5502,7 @@ pointées</translation>
         <source>Show
 tempo text</source>
         <translation>Afficher
-le texte de tempo</translation>
+l'indication de tempo</translation>
     </message>
     <message>
         <source>Recognize
@@ -6048,14 +6249,6 @@ a échoué :</translation>
         <translation>Le signe $ lui-même</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>Balise de métadonnées</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Balises disponibles et leurs valeurs actuelles :</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Appliquer à l'ensemble des parties</translation>
     </message>
@@ -6071,6 +6264,14 @@ a échoué :</translation>
         <source>page number, if there is more than one page</source>
         <translation>Numéro de page, s'il y a plus d'une page</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>Balise de métadonnées, voir ci-dessous</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Balises de métadonnées disponibles et leurs valeurs :</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -6675,11 +6876,11 @@ Voulez-vous le remplacer ?
     </message>
     <message>
         <source>Fingering %1</source>
-        <translation>Doigté </translation>
+        <translation>Doigté %1</translation>
     </message>
     <message>
         <source>String number %1</source>
-        <translation>Numéro de corde </translation>
+        <translation>Corde %1</translation>
     </message>
     <message>
         <source>Bracket</source>
@@ -7200,6 +7401,10 @@ veuillez choisir un nom différent :</translation>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation>La partition ne peut pas être enregistrée en ligne. Merci de corriger les mesures corrompues et essayez de nouveau.</translation>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Demander de l'aide</translation>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7683,10 +7888,6 @@ a échoué : %2</translation>
         <translation>Échec lors de l'écriture du style : %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>Fichier non trouvé</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Aucune sélection</translation>
     </message>
@@ -7698,6 +7899,10 @@ a échoué : %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Mesure %1, portée %2, voix %3 trop longue. Attendu : %4 ; Trouvé : %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>Erreur de lecture XML à la ligne %1 colonne %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8011,6 +8216,12 @@ Veuillez sélectionner un ensemble de mesures et réessayer</translation>
         <source>Transparent background</source>
         <translation>Arrière-plan transparent</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Impossible de diviser la mesure ici :
+premier temps de la mesure</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -8104,7 +8315,7 @@ Veuillez sélectionner un ensemble de mesures et réessayer</translation>
     <name>Ms::TempoText</name>
     <message>
         <source>note = %1</source>
-        <translation>note = %1</translation>
+        <translation> = %1</translation>
     </message>
     <message>
         <source>Dotted %1</source>
@@ -9135,7 +9346,7 @@ a échoué :</translation>
     </message>
     <message>
         <source>Relative Tempo to 120 beats per minute</source>
-        <translation>Tempo relatif par rapport à 120 tic par minute</translation>
+        <translation>Tempo relatif par rapport à 120 pulsations par minute</translation>
     </message>
     <message>
         <source>Use up and down arrows to change value</source>
@@ -9147,7 +9358,7 @@ a échoué :</translation>
     </message>
     <message>
         <source>Relative tempo to 120 beats per minute</source>
-        <translation>Tempo relatif par rapport à 120 tic par minute</translation>
+        <translation>Tempo relatif par rapport à 120 pulsations par minute</translation>
     </message>
 </context>
 <context>
@@ -10411,6 +10622,14 @@ a échoué :</translation>
         <source>Filter</source>
         <translation>Filtre</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Exporter les RPNs</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11269,6 +11488,14 @@ Voulez-vous le remplacer ?</translation>
         <source>System flag</source>
         <translation>Texte de système</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Chercher...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Effacer</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11302,7 +11529,7 @@ Voulez-vous le remplacer ?</translation>
     </message>
     <message>
         <source>Tuning</source>
-        <translation>Décalage de la hauteur tonale</translation>
+        <translation>Réglage du diapason</translation>
     </message>
     <message>
         <source>Hz</source>
@@ -11311,7 +11538,7 @@ Voulez-vous le remplacer ?</translation>
     </message>
     <message>
         <source>Change Tuning</source>
-        <translation>Changer le décalage de la hauteur tonale</translation>
+        <translation>Changer la fréquence du diapason</translation>
     </message>
     <message>
         <source>Master volume</source>
@@ -11327,7 +11554,7 @@ Voulez-vous le remplacer ?</translation>
     </message>
     <message>
         <source>Master tuning:</source>
-        <translation>Fréquence de l'accord de référence :</translation>
+        <translation>Fréquence du diapason :</translation>
     </message>
     <message>
         <source>Save to score</source>
@@ -11359,7 +11586,7 @@ Voulez-vous le remplacer ?</translation>
     </message>
     <message>
         <source>Master tuning</source>
-        <translation>Fréquence d'accord de référence</translation>
+        <translation>Fréquence du diapason</translation>
     </message>
 </context>
 <context>
@@ -12543,19 +12770,19 @@ a échoué :</translation>
     </message>
     <message>
         <source>Flat-slash2</source>
-        <translation>Bémol double-barré</translation>
+        <translation>Bémol double barré</translation>
     </message>
     <message>
         <source>Mirrored-flat2</source>
-        <translation>Bémol-miroir double</translation>
+        <translation>Bémol miroir double</translation>
     </message>
     <message>
         <source>Mirrored-flat</source>
-        <translation>Bémol-miroir</translation>
+        <translation>Bémol miroir</translation>
     </message>
     <message>
         <source>Mirrored-flat-slash</source>
-        <translation>Bémol-miroir barré</translation>
+        <translation>Bémol miroir barré</translation>
     </message>
     <message>
         <source>Flat-flat-slash</source>
@@ -13046,11 +13273,11 @@ a échoué :</translation>
     </message>
     <message>
         <source>Insert E</source>
-        <translation>Insérer MI</translation>
+        <translation>Insérer Mi</translation>
     </message>
     <message>
         <source>Insert note E</source>
-        <translation>Insérer la note MI</translation>
+        <translation>Insérer la note Mi</translation>
     </message>
     <message>
         <source>Insert F</source>
@@ -13617,10 +13844,6 @@ a échoué :</translation>
         <translation>Ligature en accélérant</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Palettes</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Fenêtre de lecture</translation>
     </message>
@@ -13657,10 +13880,6 @@ a échoué :</translation>
         <translation>Ajouter des paroles</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Indication de tempo</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Ajouter une indication de tempo</translation>
     </message>
@@ -14017,10 +14236,6 @@ a échoué :</translation>
         <translation>Répéter la selection</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Suivre la musique</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Activer le suivi de la musique</translation>
     </message>
@@ -15584,6 +15799,22 @@ a échoué :</translation>
         <source>Set loop in position</source>
         <translation>Définir la position initiale de la boucle</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Palettes</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Indication de tempo</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Zoom à 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Suivre la musique</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16635,6 +16866,10 @@ La mesure n'est pas vide</translation>
         <source>Tablature2</source>
         <translation>Tablature 2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Clef de Sol optionnelle 8vb</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17746,10 +17981,6 @@ La mesure n'est pas vide</translation>
         <source>Prallprall line</source>
         <translation>Ligne de trille long</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Ligne de trille</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_gl.ts b/share/locale/mscore_gl.ts
index 2fdc3ba..408ec61 100644
--- a/share/locale/mscore_gl.ts
+++ b/share/locale/mscore_gl.ts
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Inspector de glissandi</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpexo</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproducir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar o valor de reprodución</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Restaurar a anchura do tempo</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Tipo de ornamentación</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Predefinido</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barroco</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Restaurar o valor do ornamento</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproducir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar o valor de reprodución</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Inspector de glissandi</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Curvar</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproducir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar o valor de reprodución</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Mostrar texto</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Estilo</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Restaurar o valor do estilo</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Estilo de reprodución</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Cromático</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Teclas brancas</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Teclas negras</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatónico</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproducir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar o valor de reprodución</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Inspector de molduras de texto</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Moldura de texto</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Oco inferior</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Marxe superior</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Restaurar o valor</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Restaurar o valor do oco superior</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Restaurar o valor do oco inferior</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Marxe esquerda</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Marxe inferior</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Restaurar o valor da marxe dereita</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Marxe dereita</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Restaurar o valor da marxe inferior</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Restaurar o valor da marxe superior</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Restaurar o valor da marxe esquerda</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Oco superior</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Mordente duplo superior</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Liña ondulada</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Restaurar o valor</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Tipo de ornamentación</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Dirección</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>predefinido</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barroco</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Restaurar o valor do ornamento</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproducir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar o valor de reprodución</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -5601,7 +5802,7 @@ a quiáltera atravesaría os compases</translation>
     </message>
     <message>
         <source>Break multimeasure rest</source>
-        <translation>Qebrar o silencio de varios compases</translation>
+        <translation>Quebrar un silencio de varios compases</translation>
     </message>
 </context>
 <context>
@@ -6045,14 +6246,6 @@ produciu un fallo: </translation>
         <translation>o símbolo $ mesmo</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>etiqueta de meta-datos</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Etiquetas dispoñíbeis e os seus valores actuais:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Aplicar a todas as partes</translation>
     </message>
@@ -6068,6 +6261,14 @@ produciu un fallo: </translation>
         <source>page number, if there is more than one page</source>
         <translation>número de páxina, de haber máis de unha</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>etiqueta de meta-datos, ver embaixo</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Etiquetas de meta-datos dispoñíbeis e os seus valores actuais:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7195,6 +7396,10 @@ escolla un nome diferente:</translation>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation>Non foi posíbel gardar esta partitura na rede. Solucione os compases corrompidos e ténteo de novo.</translation>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Solicitar axuda</translation>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7676,10 +7881,6 @@ o ficheiro de estilo %1:
         <translation>Produciuse un fallo ao escribir o estilo: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>non foi posíbel abrir o ficheiro</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Non hai ningunha selección</translation>
     </message>
@@ -7691,6 +7892,10 @@ o ficheiro de estilo %1:
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Compás %1, pentagrama 2%, voz %3 demasiado longo. Esperado: %4; Atopado: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>Erro de lectura de XML na liña %1, columna %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8002,6 +8207,12 @@ Seleccione un intervalo de compases que unir e ténteo de novo</translation>
         <source>Transparent background</source>
         <translation>Fondo transparente</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Non é posíbel quebrar o compás aquí:
+É o primeiro pulso do compás</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -8999,7 +9210,7 @@ produciu un erro:</translation>
     </message>
     <message>
         <source>Use arrows to modify</source>
-        <translation>Use as flechas para modificar</translation>
+        <translation>Use as frechas para modificar</translation>
     </message>
     <message>
         <source>Sound</source>
@@ -10402,6 +10613,14 @@ produciu un erro:</translation>
         <source>Filter</source>
         <translation>Filtro</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Export RPN</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10723,7 +10942,7 @@ Visite o <a href="http://musescore.org/gl">sitio web do MuseScor
     </message>
     <message>
         <source>Do you want to try to load this file anyway?</source>
-        <translation type="unfinished"/>
+        <translation>Queres cargar este ficheiro en calquera caso?</translation>
     </message>
 </context>
 <context>
@@ -11255,6 +11474,14 @@ Desexa substituílo?</translation>
         <source>System flag</source>
         <translation>Bandeira de sistema</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Buscar...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Limpar</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13603,10 +13830,6 @@ produciu un fallo: </translation>
         <translation>Barra inclinada, máis rápido</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paleta</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Panel de reprodución</translation>
     </message>
@@ -13643,10 +13866,6 @@ produciu un fallo: </translation>
         <translation>Engadir a letra</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Marca de tempo...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Engadir marca de tempo</translation>
     </message>
@@ -14003,10 +14222,6 @@ produciu un fallo: </translation>
         <translation>Repetir a selección</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Desprazar a pianola</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Conmutar o desprazamento da pianola</translation>
     </message>
@@ -15570,6 +15785,22 @@ produciu un fallo: </translation>
         <source>Set loop in position</source>
         <translation>Establecer o inicio do bucle</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Paletas</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Marca de tempo</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Aumentar ao 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Desprazar a pianola</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16620,6 +16851,10 @@ O compás non está baleiro</translation>
         <source>Tablature2</source>
         <translation>Tabulatura2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Clave de sol 8vb</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17731,10 +17966,6 @@ O compás non está baleiro</translation>
         <source>Prallprall line</source>
         <translation>Liña de mordente duplo superior</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Liña ondulada</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_he.ts b/share/locale/mscore_he.ts
index a54a445..d1dbe67 100644
--- a/share/locale/mscore_he.ts
+++ b/share/locale/mscore_he.ts
@@ -2083,7 +2083,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Ottava</source>
-        <translation type="unfinished"/>
+        <translation>אוקטבה</translation>
     </message>
     <message>
         <source>Pedal Line</source>
@@ -2996,7 +2996,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Sol</source>
-        <translation type="unfinished"/>
+        <translation>סול</translation>
     </message>
     <message>
         <source>La</source>
@@ -3032,6 +3032,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>ארפג'יו</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>נגן</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>אפס ערך נגן</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3097,6 +3116,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3269,6 +3312,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3504,7 +3566,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Fretboard Diagram</source>
-        <translation type="unfinished"/>
+        <translation>דיאגרמת צוואר</translation>
     </message>
 </context>
 <context>
@@ -3549,6 +3611,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>הצג טקסט</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -3581,7 +3679,7 @@ space unit</extracomment>
     <name>InspectorHBox</name>
     <message>
         <source>Horizontal Frame</source>
-        <translation type="unfinished"/>
+        <translation>מסגרת אופקית</translation>
     </message>
     <message>
         <source>sp</source>
@@ -3621,7 +3719,7 @@ space unit</extracomment>
     <name>InspectorHairpin</name>
     <message>
         <source>Hairpin</source>
-        <translation type="unfinished"/>
+        <translation>סימן קרשנדו/דימינואנדו</translation>
     </message>
     <message>
         <source>Height</source>
@@ -3956,7 +4054,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Segno</source>
-        <translation type="unfinished"/>
+        <translation>סימן</translation>
     </message>
     <message>
         <source>Coda</source>
@@ -4166,7 +4264,7 @@ space unit</extracomment>
     <name>InspectorOttava</name>
     <message>
         <source>Ottava</source>
-        <translation type="unfinished"/>
+        <translation>אוקטבה</translation>
     </message>
     <message>
         <source>Type</source>
@@ -4356,6 +4454,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>מסגרת טקסט</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4486,12 +4656,36 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
+        <translation>אפס ערך</translation>
+    </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation> כיוון</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>ברירת מחדל</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
-        <translation>אפס ערך</translation>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>נגן</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>אפס ערך נגן</translation>
     </message>
 </context>
 <context>
@@ -4869,6 +5063,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -5349,7 +5550,7 @@ Would you like to locate %2 now?</source>
     </message>
     <message>
         <source>Grace Notes</source>
-        <translation type="unfinished"/>
+        <translation>קישוטים</translation>
     </message>
     <message>
         <source>Clefs</source>
@@ -6028,14 +6229,6 @@ failed: </source>
         <translation>סימן ה$ בעצמו</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>ישם על כל התפקידים</translation>
     </message>
@@ -6051,6 +6244,14 @@ failed: </source>
         <source>page number, if there is more than one page</source>
         <translation>מספר עמוד, אם יש יותר מאחד</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7173,6 +7374,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7644,10 +7849,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7659,6 +7860,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7967,6 +8172,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -8638,7 +8848,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Grace Notes</source>
-        <translation type="unfinished"/>
+        <translation>קישוטים</translation>
     </message>
     <message>
         <source>Lines</source>
@@ -10364,6 +10574,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11198,6 +11416,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11596,7 +11822,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Chord Symbol</source>
-        <translation type="unfinished"/>
+        <translation>סימן אקורד</translation>
     </message>
     <message>
         <source>Rehearsal Mark</source>
@@ -11636,7 +11862,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Ottava</source>
-        <translation type="unfinished"/>
+        <translation>אוקטבה</translation>
     </message>
     <message>
         <source>Bend</source>
@@ -11652,7 +11878,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Instrument Change</source>
-        <translation type="unfinished"/>
+        <translation>שינוי כלי</translation>
     </message>
     <message>
         <source>Figured Bass</source>
@@ -13485,7 +13711,7 @@ failed: </source>
     </message>
     <message>
         <source>Voice 1</source>
-        <translation type="unfinished"/>
+        <translation>קול 1</translation>
     </message>
     <message>
         <source>2</source>
@@ -13493,7 +13719,7 @@ failed: </source>
     </message>
     <message>
         <source>Voice 2</source>
-        <translation type="unfinished"/>
+        <translation>קול 2</translation>
     </message>
     <message>
         <source>3</source>
@@ -13501,7 +13727,7 @@ failed: </source>
     </message>
     <message>
         <source>Voice 3</source>
-        <translation type="unfinished"/>
+        <translation>קול 3</translation>
     </message>
     <message>
         <source>4</source>
@@ -13509,7 +13735,7 @@ failed: </source>
     </message>
     <message>
         <source>Voice 4</source>
-        <translation type="unfinished"/>
+        <translation>קול 4</translation>
     </message>
     <message>
         <source>Enable MIDI input</source>
@@ -13544,10 +13770,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>סרגלי כלים</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation type="unfinished"/>
     </message>
@@ -13584,10 +13806,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13944,10 +14162,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -14285,7 +14499,7 @@ failed: </source>
     </message>
     <message>
         <source>Chord Symbol</source>
-        <translation type="unfinished"/>
+        <translation>סימן אקורד</translation>
     </message>
     <message>
         <source>Add chord symbol</source>
@@ -15511,6 +15725,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -15744,7 +15974,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>c#</source>
-        <translation type="unfinished"/>
+        <translation>דו#</translation>
     </message>
     <message>
         <source>d</source>
@@ -15752,7 +15982,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>d#</source>
-        <translation type="unfinished"/>
+        <translation>רה#</translation>
     </message>
     <message>
         <source>e</source>
@@ -15764,7 +15994,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>f#</source>
-        <translation type="unfinished"/>
+        <translation>פה#</translation>
     </message>
     <message>
         <source>g</source>
@@ -15772,7 +16002,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>g#</source>
-        <translation type="unfinished"/>
+        <translation>סול#</translation>
     </message>
     <message>
         <source>a</source>
@@ -15780,11 +16010,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>a#</source>
-        <translation type="unfinished"/>
+        <translation>לה#</translation>
     </message>
     <message>
         <source>b</source>
-        <translation type="unfinished"/>
+        <translation>סי</translation>
     </message>
     <message>
         <source>C</source>
@@ -15792,7 +16022,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>דו#</translation>
     </message>
     <message>
         <source>D</source>
@@ -15800,7 +16030,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>D#</source>
-        <translation type="unfinished"/>
+        <translation>רה#</translation>
     </message>
     <message>
         <source>E</source>
@@ -15812,7 +16042,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>פה#</translation>
     </message>
     <message>
         <source>G</source>
@@ -16482,15 +16712,15 @@ Measure is not empty</source>
     <name>clefTable</name>
     <message>
         <source>Treble clef</source>
-        <translation type="unfinished"/>
+        <translation>מפתח סול</translation>
     </message>
     <message>
         <source>Treble clef 8va</source>
-        <translation type="unfinished"/>
+        <translation>מפתח סול +אוקטבה</translation>
     </message>
     <message>
         <source>Treble clef 15ma</source>
-        <translation type="unfinished"/>
+        <translation>מפתח סול+2 אוקטבות</translation>
     </message>
     <message>
         <source>Treble clef 8vb</source>
@@ -16558,6 +16788,10 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Tablature2</source>
+        <translation>טאבלטורה 2</translation>
+    </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -16565,7 +16799,7 @@ Measure is not empty</source>
     <name>drumset</name>
     <message>
         <source>Acoustic Bass Drum</source>
-        <translation type="unfinished"/>
+        <translation>בייס-דראם אקוסטי</translation>
     </message>
     <message>
         <source>Side Stick</source>
@@ -16573,7 +16807,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Tambourine</source>
-        <translation type="unfinished"/>
+        <translation>תוף-מרים</translation>
     </message>
     <message>
         <source>High Q</source>
@@ -16597,75 +16831,75 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Metronome Click</source>
-        <translation type="unfinished"/>
+        <translation>קליק מטרונום</translation>
     </message>
     <message>
         <source>Metronome Bell</source>
-        <translation type="unfinished"/>
+        <translation>פעמון מטרונום</translation>
     </message>
     <message>
         <source>Bass Drum 1</source>
-        <translation type="unfinished"/>
+        <translation>בייס-דראם 1</translation>
     </message>
     <message>
         <source>Acoustic Snare</source>
-        <translation type="unfinished"/>
+        <translation>סנייר אקוסטי</translation>
     </message>
     <message>
         <source>Hand Clap</source>
-        <translation type="unfinished"/>
+        <translation>מחיאת כף</translation>
     </message>
     <message>
         <source>Electric Snare</source>
-        <translation type="unfinished"/>
+        <translation>סנייר אלקטרוני</translation>
     </message>
     <message>
         <source>Low Floor Tom</source>
-        <translation type="unfinished"/>
+        <translation>פלור נמוך</translation>
     </message>
     <message>
         <source>Closed Hi-Hat</source>
-        <translation type="unfinished"/>
+        <translation>היי-האט סגור</translation>
     </message>
     <message>
         <source>High Floor Tom</source>
-        <translation type="unfinished"/>
+        <translation>פלור גבוה</translation>
     </message>
     <message>
         <source>Pedal Hi-Hat</source>
-        <translation type="unfinished"/>
+        <translation>פדאל היי-האט</translation>
     </message>
     <message>
         <source>Low Tom</source>
-        <translation type="unfinished"/>
+        <translation>טמטם נמוך</translation>
     </message>
     <message>
         <source>Open Hi-Hat</source>
-        <translation type="unfinished"/>
+        <translation>היי-האט פתוח</translation>
     </message>
     <message>
         <source>Low-Mid Tom</source>
-        <translation type="unfinished"/>
+        <translation>טמטם בינוני-נמוך</translation>
     </message>
     <message>
         <source>Hi-Mid Tom</source>
-        <translation type="unfinished"/>
+        <translation>טמטם בינוני-גבוה</translation>
     </message>
     <message>
         <source>Crash Cymbal 1</source>
-        <translation type="unfinished"/>
+        <translation>מצילת קראש 1</translation>
     </message>
     <message>
         <source>High Tom</source>
-        <translation type="unfinished"/>
+        <translation>טמטם גבוה</translation>
     </message>
     <message>
         <source>Ride Bell</source>
-        <translation type="unfinished"/>
+        <translation>פעמון רייד</translation>
     </message>
     <message>
         <source>Cowbell</source>
-        <translation type="unfinished"/>
+        <translation>קאו-בל</translation>
     </message>
     <message>
         <source>Vibraslap</source>
@@ -16673,63 +16907,63 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Low Bongo</source>
-        <translation type="unfinished"/>
+        <translation>בונגו נמוך</translation>
     </message>
     <message>
         <source>Mute Hi Conga</source>
-        <translation type="unfinished"/>
+        <translation>קונגה גבוה מעומעם</translation>
     </message>
     <message>
         <source>Open Hi Conga</source>
-        <translation type="unfinished"/>
+        <translation>קונגה גבוה פתוח</translation>
     </message>
     <message>
         <source>Low Conga</source>
-        <translation type="unfinished"/>
+        <translation>קונגה נמוך</translation>
     </message>
     <message>
         <source>High Timbale</source>
-        <translation type="unfinished"/>
+        <translation>טימבאל גבוה</translation>
     </message>
     <message>
         <source>Low Timbale</source>
-        <translation type="unfinished"/>
+        <translation>טימבאל נמוך</translation>
     </message>
     <message>
         <source>High Agogo</source>
-        <translation type="unfinished"/>
+        <translation>אגוגו גבוה</translation>
     </message>
     <message>
         <source>Low Agogo</source>
-        <translation type="unfinished"/>
+        <translation>אגוגו נמוך</translation>
     </message>
     <message>
         <source>Cabasa</source>
-        <translation type="unfinished"/>
+        <translation>קבאסה</translation>
     </message>
     <message>
         <source>Maracas</source>
-        <translation type="unfinished"/>
+        <translation>מראקאס</translation>
     </message>
     <message>
         <source>Short Whistle</source>
-        <translation type="unfinished"/>
+        <translation>משרוקית קצרה</translation>
     </message>
     <message>
         <source>Long Whistle</source>
-        <translation type="unfinished"/>
+        <translation>משרוקית ארוכה</translation>
     </message>
     <message>
         <source>Short Guiro</source>
-        <translation type="unfinished"/>
+        <translation>גווירו קצר</translation>
     </message>
     <message>
         <source>Long Guiro</source>
-        <translation type="unfinished"/>
+        <translation>גווירו ארוך</translation>
     </message>
     <message>
         <source>Claves</source>
-        <translation type="unfinished"/>
+        <translation>קלאווה</translation>
     </message>
     <message>
         <source>Hi Wood Block</source>
@@ -16749,15 +16983,15 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Mute Triangle</source>
-        <translation type="unfinished"/>
+        <translation>משולש מעומעם</translation>
     </message>
     <message>
         <source>Open Triangle</source>
-        <translation type="unfinished"/>
+        <translation>משולש פתוח</translation>
     </message>
     <message>
         <source>Shaker</source>
-        <translation type="unfinished"/>
+        <translation>רשרשן</translation>
     </message>
     <message>
         <source>Bell Tree</source>
@@ -16765,35 +16999,35 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Mute Surdo</source>
-        <translation type="unfinished"/>
+        <translation>סורדו מעומעם</translation>
     </message>
     <message>
         <source>Open Surdo</source>
-        <translation type="unfinished"/>
+        <translation>סורדו פתוח</translation>
     </message>
     <message>
         <source>Ride Cymbal 1</source>
-        <translation type="unfinished"/>
+        <translation>מצילת רייד 1</translation>
     </message>
     <message>
         <source>Chinese Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>מצילת צ'יינה</translation>
     </message>
     <message>
         <source>Splash Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>מצילת ספלאש</translation>
     </message>
     <message>
         <source>Crash Cymbal 2</source>
-        <translation type="unfinished"/>
+        <translation>מצילת קראש 2</translation>
     </message>
     <message>
         <source>Ride Cymbal 2</source>
-        <translation type="unfinished"/>
+        <translation>מצילת רייד 2</translation>
     </message>
     <message>
         <source>Castanets</source>
-        <translation type="unfinished"/>
+        <translation>קסטנייטות</translation>
     </message>
     <message>
         <source>Square Click</source>
@@ -16801,11 +17035,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Hi Bongo</source>
-        <translation type="unfinished"/>
+        <translation>בונגו גבוה</translation>
     </message>
     <message>
         <source>Sleigh Bell</source>
-        <translation type="unfinished"/>
+        <translation>פעמון מזחלת</translation>
     </message>
 </context>
 <context>
@@ -16816,7 +17050,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>דו#</translation>
     </message>
     <message>
         <source>D</source>
@@ -16824,7 +17058,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Eb</source>
-        <translation type="unfinished"/>
+        <translation>מי b</translation>
     </message>
     <message>
         <source>E</source>
@@ -16836,7 +17070,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>פה#</translation>
     </message>
     <message>
         <source>G</source>
@@ -16844,7 +17078,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ab</source>
-        <translation type="unfinished"/>
+        <translation>לה b</translation>
     </message>
     <message>
         <source>A</source>
@@ -16852,7 +17086,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Bb</source>
-        <translation>סי</translation>
+        <translation>סי b</translation>
     </message>
     <message>
         <source>B</source>
@@ -16867,7 +17101,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>דו#</translation>
     </message>
     <message>
         <source>D</source>
@@ -16875,7 +17109,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Eb</source>
-        <translation type="unfinished"/>
+        <translation>מי b</translation>
     </message>
     <message>
         <source>E</source>
@@ -16887,7 +17121,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>פה#</translation>
     </message>
     <message>
         <source>G</source>
@@ -16895,7 +17129,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ab</source>
-        <translation type="unfinished"/>
+        <translation>לה b</translation>
     </message>
     <message>
         <source>A</source>
@@ -16903,7 +17137,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Bb</source>
-        <translation>סי</translation>
+        <translation>סי b</translation>
     </message>
     <message>
         <source>B</source>
@@ -17046,7 +17280,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ottava</source>
-        <translation type="unfinished"/>
+        <translation>אוקטבה</translation>
     </message>
     <message>
         <source>Pedal</source>
@@ -17086,15 +17320,15 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ossia</source>
-        <translation type="unfinished"/>
+        <translation>אלטרנטיבה</translation>
     </message>
     <message>
         <source>Instrument Name</source>
-        <translation type="unfinished"/>
+        <translation>שם כלי</translation>
     </message>
     <message>
         <source>Slur Segment</source>
-        <translation type="unfinished"/>
+        <translation>מקטע קשתות</translation>
     </message>
     <message>
         <source>Staff Lines</source>
@@ -17102,7 +17336,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Bar Line</source>
-        <translation type="unfinished"/>
+        <translation>קו תיבה</translation>
     </message>
     <message>
         <source>Stem Slash</source>
@@ -17138,19 +17372,19 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Instrument Change</source>
-        <translation type="unfinished"/>
+        <translation>שינוי כלי</translation>
     </message>
     <message>
         <source>Hairpin Segment</source>
-        <translation type="unfinished"/>
+        <translation>מקטע קרשנדו/דימינואנדו</translation>
     </message>
     <message>
         <source>Ottava Segment</source>
-        <translation type="unfinished"/>
+        <translation>מקטע אוקטבה</translation>
     </message>
     <message>
         <source>Trill Segment</source>
-        <translation type="unfinished"/>
+        <translation>מקטע טריל</translation>
     </message>
     <message>
         <source>Text Line Segment</source>
@@ -17158,7 +17392,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Volta Segment</source>
-        <translation>וולטה</translation>
+        <translation>מקטע וולטה</translation>
     </message>
     <message>
         <source>Pedal Segment</source>
@@ -17174,11 +17408,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ledger Line</source>
-        <translation type="unfinished"/>
+        <translation>קו עזר</translation>
     </message>
     <message>
         <source>Note Head</source>
-        <translation type="unfinished"/>
+        <translation>ראש תו</translation>
     </message>
     <message>
         <source>Note Dot</source>
@@ -17194,11 +17428,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Font Symbol</source>
-        <translation type="unfinished"/>
+        <translation>סימן גופן</translation>
     </message>
     <message>
         <source>Hairpin</source>
-        <translation type="unfinished"/>
+        <translation>סימן קרשנדו/דימינואנדו</translation>
     </message>
     <message>
         <source>Text Line</source>
@@ -17222,7 +17456,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Horizontal Frame</source>
-        <translation type="unfinished"/>
+        <translation>מסגרת אופקית</translation>
     </message>
     <message>
         <source>Vertical Frame</source>
@@ -17230,7 +17464,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Text Frame</source>
-        <translation type="unfinished"/>
+        <translation>מסגרת טקסט</translation>
     </message>
     <message>
         <source>Fretboard Diagram Frame</source>
@@ -17242,7 +17476,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Fretboard Diagram</source>
-        <translation type="unfinished"/>
+        <translation>דיאגרמת צוואר</translation>
     </message>
     <message>
         <source>Ambitus</source>
@@ -17250,7 +17484,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Chord Symbol</source>
-        <translation type="unfinished"/>
+        <translation>סימן אקורד</translation>
     </message>
     <message>
         <source>Tremolo Bar</source>
@@ -17273,19 +17507,19 @@ Measure is not empty</source>
     <name>fotomode</name>
     <message>
         <source>Resize to A</source>
-        <translation type="unfinished"/>
+        <translation>שנה גודל ל A</translation>
     </message>
     <message>
         <source>Resize to B</source>
-        <translation type="unfinished"/>
+        <translation>שנה גודל ל B</translation>
     </message>
     <message>
         <source>Resize to C</source>
-        <translation type="unfinished"/>
+        <translation>שנה גודל ל C</translation>
     </message>
     <message>
         <source>Resize to D</source>
-        <translation type="unfinished"/>
+        <translation>שנה גודל ל D</translation>
     </message>
     <message>
         <source>Set size A</source>
@@ -17308,7 +17542,7 @@ Measure is not empty</source>
     <name>images_directory</name>
     <message>
         <source>Images</source>
-        <translation>תמונה</translation>
+        <translation>תמונות</translation>
     </message>
 </context>
 <context>
@@ -17335,34 +17569,34 @@ Measure is not empty</source>
     </message>
     <message>
         <source>[Custom]</source>
-        <translation type="unfinished"/>
+        <translation>[מותאם אישית]</translation>
     </message>
 </context>
 <context>
     <name>jumpType</name>
     <message>
         <source>Da Capo</source>
-        <translation type="unfinished"/>
+        <translation>Da Capo</translation>
     </message>
     <message>
         <source>Da Capo al Fine</source>
-        <translation type="unfinished"/>
+        <translation>Da Capo al Fine</translation>
     </message>
     <message>
         <source>Da Capo al Coda</source>
-        <translation type="unfinished"/>
+        <translation>Da Capo al Coda</translation>
     </message>
     <message>
         <source>D.S. al Coda</source>
-        <translation type="unfinished"/>
+        <translation>D.S. al Coda</translation>
     </message>
     <message>
         <source>D.S. al Fine</source>
-        <translation type="unfinished"/>
+        <translation>D.S. al Fine</translation>
     </message>
     <message>
         <source>D.S.</source>
-        <translation type="unfinished"/>
+        <translation>D.S.</translation>
     </message>
 </context>
 <context>
@@ -17395,7 +17629,7 @@ Measure is not empty</source>
     <name>markerType</name>
     <message>
         <source>Segno</source>
-        <translation type="unfinished"/>
+        <translation>סימן</translation>
     </message>
     <message>
         <source>Coda</source>
@@ -17478,7 +17712,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Sol</source>
-        <translation type="unfinished"/>
+        <translation>סול</translation>
     </message>
     <message>
         <source>Alt. Brevis</source>
@@ -17489,7 +17723,7 @@ Measure is not empty</source>
     <name>plugins_directory</name>
     <message>
         <source>Plugins</source>
-        <translation type="unfinished"/>
+        <translation>פלאגינים</translation>
     </message>
 </context>
 <context>
@@ -17500,34 +17734,34 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Every Day</source>
-        <translation type="unfinished"/>
+        <translation>כל יום</translation>
     </message>
     <message>
         <source>Every 3 Days</source>
-        <translation type="unfinished"/>
+        <translation>כל 3 ימים</translation>
     </message>
     <message>
         <source>Every Week</source>
-        <translation type="unfinished"/>
+        <translation>כל שבוע</translation>
     </message>
     <message>
         <source>Every 2 Weeks</source>
-        <translation type="unfinished"/>
+        <translation>כל שבועיים</translation>
     </message>
     <message>
         <source>Every Month</source>
-        <translation type="unfinished"/>
+        <translation>כל חודש</translation>
     </message>
     <message>
         <source>Every 2 Months</source>
-        <translation type="unfinished"/>
+        <translation>כל חודשיים</translation>
     </message>
 </context>
 <context>
     <name>scores_directory</name>
     <message>
         <source>Scores</source>
-        <translation type="unfinished"/>
+        <translation>פרטיטורות</translation>
     </message>
 </context>
 <context>
@@ -17550,15 +17784,15 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Other Text</source>
-        <translation type="unfinished"/>
+        <translation>טקסט אחר</translation>
     </message>
     <message>
         <source>Articulations</source>
-        <translation type="unfinished"/>
+        <translation>ארטיקולציות</translation>
     </message>
     <message>
         <source>Slurs</source>
-        <translation type="unfinished"/>
+        <translation>קשתות</translation>
     </message>
     <message>
         <source>Figured Bass</source>
@@ -17566,7 +17800,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ottava</source>
-        <translation type="unfinished"/>
+        <translation>אוקטבה</translation>
     </message>
     <message>
         <source>Tremolo</source>
@@ -17574,7 +17808,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Grace Notes</source>
-        <translation type="unfinished"/>
+        <translation>קישוטים</translation>
     </message>
     <message>
         <source>Pedal Lines</source>
@@ -17582,7 +17816,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Other Lines</source>
-        <translation type="unfinished"/>
+        <translation>קווים אחרים</translation>
     </message>
     <message>
         <source>Arpeggios</source>
@@ -17590,7 +17824,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Glissandi</source>
-        <translation type="unfinished"/>
+        <translation>גליסנדי</translation>
     </message>
     <message>
         <source>Fretboard Diagrams</source>
@@ -17598,23 +17832,23 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Breath Marks</source>
-        <translation type="unfinished"/>
+        <translation>סימני נשימה</translation>
     </message>
     <message>
         <source>Voice 1</source>
-        <translation type="unfinished"/>
+        <translation>קול 1</translation>
     </message>
     <message>
         <source>Voice 2</source>
-        <translation type="unfinished"/>
+        <translation>קול 2</translation>
     </message>
     <message>
         <source>Voice 3</source>
-        <translation type="unfinished"/>
+        <translation>קול 3</translation>
     </message>
     <message>
         <source>Voice 4</source>
-        <translation type="unfinished"/>
+        <translation>קול 4</translation>
     </message>
 </context>
 <context>
@@ -17632,25 +17866,25 @@ Measure is not empty</source>
     </message>
     <message>
         <source>PERCUSSION STAFF</source>
-        <translation type="unfinished"/>
+        <translation>חמשת כלי הקשה</translation>
     </message>
     <message>
         <source>TABLATURE STAFF</source>
-        <translation type="unfinished"/>
+        <translation>שורת טאבלטורה</translation>
     </message>
 </context>
 <context>
     <name>styles_directory</name>
     <message>
         <source>Styles</source>
-        <translation>סגנון</translation>
+        <translation>סגנונות</translation>
     </message>
 </context>
 <context>
     <name>templates_directory</name>
     <message>
         <source>Templates</source>
-        <translation type="unfinished"/>
+        <translation>תבניות</translation>
     </message>
 </context>
 <context>
@@ -17671,10 +17905,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
@@ -17684,7 +17914,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>c#</source>
-        <translation type="unfinished"/>
+        <translation>דו#</translation>
     </message>
     <message>
         <source>d</source>
@@ -17692,7 +17922,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>d#</source>
-        <translation type="unfinished"/>
+        <translation>רה#</translation>
     </message>
     <message>
         <source>e</source>
@@ -17704,7 +17934,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>f#</source>
-        <translation type="unfinished"/>
+        <translation>פה#</translation>
     </message>
     <message>
         <source>g</source>
@@ -17712,7 +17942,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>g#</source>
-        <translation type="unfinished"/>
+        <translation>סול#</translation>
     </message>
     <message>
         <source>a</source>
@@ -17720,11 +17950,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>a#</source>
-        <translation type="unfinished"/>
+        <translation>לה#</translation>
     </message>
     <message>
         <source>b</source>
-        <translation type="unfinished"/>
+        <translation>סי</translation>
     </message>
     <message>
         <source>C</source>
@@ -17732,7 +17962,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>דו#</translation>
     </message>
     <message>
         <source>D</source>
@@ -17740,7 +17970,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>D#</source>
-        <translation type="unfinished"/>
+        <translation>רה#</translation>
     </message>
     <message>
         <source>E</source>
@@ -17752,7 +17982,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>פה#</translation>
     </message>
     <message>
         <source>G</source>
@@ -17760,7 +17990,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>G#</source>
-        <translation>סול דיאז</translation>
+        <translation>סול#</translation>
     </message>
     <message>
         <source>A</source>
@@ -17768,7 +17998,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>A#</source>
-        <translation>לה דיאז</translation>
+        <translation>לה#</translation>
     </message>
     <message>
         <source>B</source>
diff --git a/share/locale/mscore_hi_IN.ts b/share/locale/mscore_hi_IN.ts
index 4d0c112..73c411a 100644
--- a/share/locale/mscore_hi_IN.ts
+++ b/share/locale/mscore_hi_IN.ts
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7158,6 +7359,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7628,10 +7833,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7643,6 +7844,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7950,6 +8155,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10347,6 +10557,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11175,6 +11393,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13521,10 +13747,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation type="unfinished"/>
     </message>
@@ -13561,10 +13783,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13921,10 +14139,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15488,6 +15702,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16537,6 +16767,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17648,10 +17882,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_hr.ts b/share/locale/mscore_hr.ts
index fe75656..cbddd13 100644
--- a/share/locale/mscore_hr.ts
+++ b/share/locale/mscore_hr.ts
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Sviraj</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Pokaži tekst</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>default</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Sviraj</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7158,6 +7359,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7630,10 +7835,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7645,6 +7846,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7952,6 +8157,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10349,6 +10559,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11181,6 +11399,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13527,10 +13753,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Palette</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Play Panel</translation>
     </message>
@@ -13567,10 +13789,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13927,10 +14145,6 @@ failed: </source>
         <translation>Repeat selection</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15494,6 +15708,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16543,6 +16773,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17654,10 +17888,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_hu.ts b/share/locale/mscore_hu.ts
index 7127aaf..4ff8cb8 100644
--- a/share/locale/mscore_hu.ts
+++ b/share/locale/mscore_hu.ts
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissando-vizsgáló</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Lejátszás</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Lejátszás visszaállítása</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Időbeli nyújtás visszaállítása</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Díszítés stílusa</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Alapértelmezett</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barokk</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Díszítés típusának visszaállítása</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Lejátszás</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Lejátszási érték visszaállítása</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissando-vizsgáló</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Hajlítás</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Lejátszás</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Lejátszási érték visszaállítása</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Mutasd a szöveget</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Stílus</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Stílusérték visszaállítása</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Lejátszás stílusa</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Kromatikus</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Fehér billentyűk</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Fekete billentyűk</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonikus</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Lejátszás</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Lejátszási érték visszaállítása</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Szövegkeret-vizsgáló</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Szövegkeret</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Alsó térköz</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Felső margó</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Érték visszaállítása</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Felső térköz visszaállítása</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Alsó térköz visszaállítása</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Bal margó</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Alsó margó</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Jobb margóérték visszaállítása</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Jobb margó</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Alsó margóérték visszaállítása</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Felső margóérték visszaállítása</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Bal margóérték visszaállítása</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Felső térköz</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Kettős paránytrilla</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Hullámos vonal</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Érték visszaállítása</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Díszítés stílusa</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Irány</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Alapértelmezett</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barokk</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Díszítés típusának visszaállítása</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Lejátszás</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Lejátszási érték visszaállítása</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonális</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6048,14 +6249,6 @@ sikertelen:</translation>
         <translation>a $ jel maga</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>metaadat-címke</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Elérhető címkék és aktuális értékük:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Alkalmazás minden kivonatra</translation>
     </message>
@@ -6071,6 +6264,14 @@ sikertelen:</translation>
         <source>page number, if there is more than one page</source>
         <translation>oldalszám, ha több mint egy oldal van</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>metaadat-címke, lásd alább</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Elérhető metaadat-címkék és aktuális értékük:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7198,7 +7399,11 @@ válassz egy másik nevet:</translation>
     </message>
     <message>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
-        <translation type="unfinished"/>
+        <translation>A kotta nem menthető online. Javítsa a hibás ütemeket és próbálja újra.</translation>
+    </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Kérjen segítséget</translation>
     </message>
 </context>
 <context>
@@ -7683,10 +7888,6 @@ nem sikerült: %2</translation>
         <translation>A stílus írása nem sikerült: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>fájl nem található</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Nincs kijelölés</translation>
     </message>
@@ -7698,6 +7899,10 @@ nem sikerült: %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>%2. sor %1. ütem %3. szólam túl hosszú. Várt: %4; Kapott: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>XML-olvasási hiba az %1. sor %2. oszlopában: %3 </translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8011,6 +8216,12 @@ Jelöld ki az egyesítendő ütemeket és próbáld újra</translation>
         <source>Transparent background</source>
         <translation>Átlátszó háttér</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Az ütemet nem lehet itt elválasztani:
+Az ütem első időegysége</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10410,6 +10621,14 @@ paletta-fájl írása sikertelen:</translation>
         <source>Filter</source>
         <translation>Szűrő</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>RPN értékek exportálása</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10732,11 +10951,11 @@ Látogass el a <a href="http://musescore.org">MuseScore weboldal
     </message>
     <message>
         <source>MuseScore: Upload Error</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Feltöltési hiba</translation>
     </message>
     <message>
         <source>Do you want to try to load this file anyway?</source>
-        <translation type="unfinished"/>
+        <translation>Megpróbálja mindenképp betölteni a fájlt?</translation>
     </message>
 </context>
 <context>
@@ -11268,6 +11487,14 @@ Szeretnéd felülírni?</translation>
         <source>System flag</source>
         <translation>Sorcsoportjelzés</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Keresés...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Törlés</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13615,10 +13842,6 @@ munkaterület-fájl írása sikertelen:</translation>
         <translation>Tollas gerenda, gyorsabb</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paletta</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Lejátszás panel</translation>
     </message>
@@ -13655,10 +13878,6 @@ munkaterület-fájl írása sikertelen:</translation>
         <translation>Dalszöveg hozzáadása</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Tempójelzés...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Tempójelzés hozzáadása</translation>
     </message>
@@ -14015,16 +14234,12 @@ munkaterület-fájl írása sikertelen:</translation>
         <translation>Kijelölés ismétlése</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Zongora-leporelló követése</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
-        <translation>Zongora-leporelló követése ki/be</translation>
+        <translation>Zongorahenger követése ki/be</translation>
     </message>
     <message>
         <source>Pan roll during playback</source>
-        <translation>A zongora-leporelló követése lejátszás alatt</translation>
+        <translation>Zongorahenger követése lejátszás alatt</translation>
     </message>
     <message>
         <source>Documents Side by Side</source>
@@ -15582,6 +15797,22 @@ munkaterület-fájl írása sikertelen:</translation>
         <source>Set loop in position</source>
         <translation>Újrakezdés elejének pozíciója</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Eszköztárak</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Tempójelzés</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Nagyítás 100%-ra</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Zongorahenger görgetése</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16633,6 +16864,10 @@ az ütem nem üres</translation>
         <source>Tablature2</source>
         <translation>Tabulatúra 2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Violinkulcs opcionális 8vb</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17744,10 +17979,6 @@ az ütem nem üres</translation>
         <source>Prallprall line</source>
         <translation>Kettős paránytrilla vonal</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Hullámos vonal</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_id.ts b/share/locale/mscore_id.ts
index 39efbd5..4b0a568 100644
--- a/share/locale/mscore_id.ts
+++ b/share/locale/mscore_id.ts
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,11 +4666,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6040,27 +6241,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7184,6 +7385,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7655,10 +7860,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7670,6 +7871,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7980,6 +8185,11 @@ Mohon pilih jarak ruas birama yang ingin digabungkan dan coba lagi.</translation
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10377,6 +10587,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11206,6 +11424,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13554,10 +13780,6 @@ gagal:</translation>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation type="unfinished"/>
     </message>
@@ -13594,10 +13816,6 @@ gagal:</translation>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13954,10 +14172,6 @@ gagal:</translation>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15521,6 +15735,22 @@ gagal:</translation>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16570,6 +16800,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17681,10 +17915,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_it.ts b/share/locale/mscore_it.ts
index aa956ff..3a1dbf7 100644
--- a/share/locale/mscore_it.ts
+++ b/share/locale/mscore_it.ts
@@ -1158,15 +1158,15 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>MuseScore: Edit Grid</source>
-        <translation>MuseScore: Modifica reticolo</translation>
+        <translation>MuseScore: Modifica griglia</translation>
     </message>
     <message>
         <source>Edit Grid</source>
-        <translation>Modifica reticolo</translation>
+        <translation>Modifica griglia</translation>
     </message>
     <message>
         <source>Horizontal grid:</source>
-        <translation>Reticolo orizzontale:</translation>
+        <translation>Griglia orizzontale:</translation>
     </message>
     <message>
         <source>Vertical  grid:</source>
@@ -1365,7 +1365,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Edit String Data...</source>
-        <translation>Modifica stringa dati...</translation>
+        <translation>Modifica dati corda...</translation>
     </message>
     <message>
         <source>Show time signature</source>
@@ -1635,7 +1635,7 @@ p, li { white-space: pre-wrap; }
     <name>EditStringDataBase</name>
     <message>
         <source>String Data</source>
-        <translation>Dati stringa</translation>
+        <translation>Dati corda</translation>
     </message>
     <message>
         <source>Strings Tuning:</source>
@@ -1659,7 +1659,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Open</source>
-        <translation>Apri</translation>
+        <translation>Aperta</translation>
     </message>
     <message>
         <source>Pitch</source>
@@ -1731,7 +1731,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation>Basso figurato</translation>
+        <translation>Basso continuo</translation>
     </message>
     <message>
         <source>Articulations, Ornaments</source>
@@ -2918,7 +2918,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Update Range</source>
-        <translation>Aggiorna gamma</translation>
+        <translation>Aggiorna intervallo</translation>
     </message>
     <message>
         <source>Direction</source>
@@ -2958,7 +2958,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Update range</source>
-        <translation>Aggiorna gamma</translation>
+        <translation>Aggiorna intervallo</translation>
     </message>
     <message>
         <source>Reset Head type value</source>
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Ispettore Glissando</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Riproduci</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reimposta il valore riproduci</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Ripristina valore aumento tempo</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Stile abbellimenti</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Predefinito</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barocco</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Reimposta il valore Tipo abbellimento</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Riproduci</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reimposta il valore riproduci</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Ispettore Glissando</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Bend</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Riproduci</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reimposta il valore riproduci</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Mostra testo</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Stile</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Reimposta il valore stile</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Riproduci stile</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Cromatico</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Tasti bianchi</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Tasti neri</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonico</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Riproduci</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reimposta il valore riproduci</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Ispettore casella testo</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Casella di testo</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Spazio vuoto inferiore</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Margine superiore</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Reimposta il valore</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Reimposta il valore spazio vuoto superiore</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Reimposta il valore spazio vuoto inferiore</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Margine sinistro</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Margine inferiore</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Reimposta il valore margine destro</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Margine destro</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Reimposta il valore margine inferiore</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Reimposta il valore margine superiore</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Reimposta il valore margine sinistro</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Spazio vuoto superiore</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Prall prall</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Linea ondulata</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Reimposta il valore</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Stile abbellimenti</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Direzione:</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Predefinito</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barocco</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Reimposta il valore Tipo abbellimento</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Riproduci</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reimposta il valore riproduci</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonale</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -5965,7 +6166,7 @@ fallita: </translation>
     <message>
         <source>Open</source>
         <comment>string data</comment>
-        <translation>Apri</translation>
+        <translation>Aperta</translation>
     </message>
     <message>
         <source>Pitch</source>
@@ -6048,14 +6249,6 @@ fallita: </translation>
         <translation>il $ indica se stesso</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>etichetta meta dati</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Tag disponibili e loro valori correnti:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Applica a tutte le parti</translation>
     </message>
@@ -6071,6 +6264,14 @@ fallita: </translation>
         <source>page number, if there is more than one page</source>
         <translation>numero di pagina, se c'è più di una pagina</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>etichetta meta dati, vedere sotto</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Disponibili etichette di metadati e loro valori correnti:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -6078,7 +6279,7 @@ fallita: </translation>
         <source>Cannot open figured bass description:
 %1
 %2</source>
-        <translation>Impossibile aprire descrizione basso figurato:
+        <translation>Impossibile aprire descrizione basso continuo:
 %1
 %2</translation>
     </message>
@@ -6811,7 +7012,7 @@ selezionare una battuta e riprovare</translation>
     </message>
     <message>
         <source>W&orkspaces</source>
-        <translation>&Set di tavolozze</translation>
+        <translation>&Area di lavoro</translation>
     </message>
     <message>
         <source>&Preferences...</source>
@@ -6964,7 +7165,7 @@ scegli un nome diverso:</translation>
     </message>
     <message>
         <source>New...</source>
-        <translation>Nuovo...</translation>
+        <translation>Nuova...</translation>
     </message>
     <message>
         <source>Clear Recent Files</source>
@@ -7136,7 +7337,7 @@ scegli un nome diverso:</translation>
     </message>
     <message>
         <source>Chord symbol/figured bass edit mode</source>
-        <translation>Modalità modifica simbolo accordo/basso figurato</translation>
+        <translation>Modalità modifica simbolo accordo/basso continuo</translation>
     </message>
     <message>
         <source>Play</source>
@@ -7202,6 +7403,10 @@ scegli un nome diverso:</translation>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation>Questo spartito non può essere salvato online. Si prega di correggere le battute corrotte e riprovare.</translation>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Chiedere aiuto</translation>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7685,10 +7890,6 @@ fallita: %2</translation>
         <translation>Scittura dello stile fallita: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>file non trovato</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Nessuna selezione</translation>
     </message>
@@ -7700,6 +7901,10 @@ fallita: %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Battuta %1, pentagramma %2, voce %3 troppo lungo. Atteso: %4; Trovato: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>XML Errore di lettura alla riga %1 colonna %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8013,6 +8218,12 @@ Selezionare un intervallo di battute da unire e riprovare</translation>
         <source>Transparent background</source>
         <translation>Sfondo trasparente</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Non è possibile dividere la battuta qui: 
+Primo battito della battuta</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -8317,7 +8528,7 @@ scegli un nome diverso:</translation>
     </message>
     <message>
         <source>Finished! <a href="%1">Go to my score</a>.</source>
-        <translation>Finito! <a href="%1">Vai al mio punteggio</a>.</translation>
+        <translation>Finito! <a href="%1">Vai al mio spartito</a>.</translation>
     </message>
     <message>
         <source>Error</source>
@@ -9714,7 +9925,7 @@ fallita: </translation>
     </message>
     <message>
         <source>Save every:</source>
-        <translation>Salva tutto</translation>
+        <translation>Salva ogni</translation>
     </message>
     <message>
         <source>Proximity for selecting elements:</source>
@@ -10413,6 +10624,14 @@ fallita: </translation>
         <source>Filter</source>
         <translation>Filtro</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Esporta RPN</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10444,8 +10663,8 @@ selezionare una nota o una pausa e ripetere l'operazione
         <source>No note or figured bass selected:
 Please select a single note or figured bass and retry.
 </source>
-        <translation>Nessuna nota o basso figurato selezionata:
-Selezionare una singola nota o basso figurato e riprovare.
+        <translation>Nessuna nota o basso continuo selezionata:
+Selezionare una singola nota o basso continuo e riprovare.
 </translation>
     </message>
     <message>
@@ -11271,6 +11490,14 @@ Vuoi sovrascriverlo?</translation>
         <source>System flag</source>
         <translation>Marcatore di accollatura</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Cerca...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Pulisci</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11729,7 +11956,7 @@ Vuoi sovrascriverlo?</translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation>Basso figurato</translation>
+        <translation>Basso continuo</translation>
     </message>
     <message>
         <source>LH Guitar Fingering</source>
@@ -13612,15 +13839,11 @@ fallita: </translation>
     </message>
     <message>
         <source>Feathered beam, slower</source>
-        <translation>Codette a raggiera, più lento</translation>
+        <translation>Travature convergenti, più lento</translation>
     </message>
     <message>
         <source>Feathered beam, faster</source>
-        <translation>Codette a raggiera, più veloce</translation>
-    </message>
-    <message>
-        <source>Palette</source>
-        <translation>Tavolozza</translation>
+        <translation>Travature divergenti, più veloce</translation>
     </message>
     <message>
         <source>Play Panel</source>
@@ -13659,10 +13882,6 @@ fallita: </translation>
         <translation>Aggiungi parole</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Marcatore di tempo</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Aggiungi marcatore di tempo</translation>
     </message>
@@ -14019,10 +14238,6 @@ fallita: </translation>
         <translation>Ripeti la selezione</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Bilanciamento rullo pianola</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Attiva/disattiva bilanciamento rullo pianola</translation>
     </message>
@@ -14168,11 +14383,11 @@ fallita: </translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation>Basso figurato</translation>
+        <translation>Basso continuo</translation>
     </message>
     <message>
         <source>Add figured bass</source>
-        <translation>Aggiungi basso figurato</translation>
+        <translation>Aggiungi basso continuo</translation>
     </message>
     <message>
         <source>Transpose Up</source>
@@ -14516,15 +14731,15 @@ fallita: </translation>
     </message>
     <message>
         <source>Enable snap to horizontal grid</source>
-        <translation>Abilita aggancia al reticolo orizzontale</translation>
+        <translation>Abilita aggancia alla griglia orizzontale</translation>
     </message>
     <message>
         <source>Enable snap to vertical grid</source>
-        <translation>Abilita aggancia al reticolo verticale</translation>
+        <translation>Abilita aggancia alla griglia verticale</translation>
     </message>
     <message>
         <source>Configure grid</source>
-        <translation>Configura reticolo</translation>
+        <translation>Configura griglia</translation>
     </message>
     <message>
         <source>Insert one measure</source>
@@ -15000,11 +15215,11 @@ fallita: </translation>
     </message>
     <message>
         <source>Feathered Beam, Slower</source>
-        <translation>Codette a raggiera, più lento</translation>
+        <translation>Travature convergenti, più lento</translation>
     </message>
     <message>
         <source>Feathered Beam, Faster</source>
-        <translation>Codette a raggiera, più veloce</translation>
+        <translation>Travature divergenti, più veloce</translation>
     </message>
     <message>
         <source>Play panel</source>
@@ -15208,15 +15423,15 @@ fallita: </translation>
     </message>
     <message>
         <source>Enable Snap to Horizontal Grid</source>
-        <translation>Abilita aggancia al reticolo orizzontale</translation>
+        <translation>Abilita aggancia alla griglia orizzontale</translation>
     </message>
     <message>
         <source>Enable Snap to Vertical Grid</source>
-        <translation>Abilita aggancia al reticolo verticale</translation>
+        <translation>Abilita aggancia alla griglia verticale</translation>
     </message>
     <message>
         <source>Configure Grid</source>
-        <translation>Configura reticolo</translation>
+        <translation>Configura griglia</translation>
     </message>
     <message>
         <source>Piano keyboard</source>
@@ -15520,7 +15735,7 @@ fallita: </translation>
     </message>
     <message>
         <source>Advance of a 16th note (Figured bass/Chord symbol only)</source>
-        <translation>Avanza di una semicroma (Basso figurato/ solo simboli accordo)</translation>
+        <translation>Avanza di una semicroma (Basso continuo/ solo simboli accordo)</translation>
     </message>
     <message>
         <source>32nd Note Advance (F.B./Chord Symbol)</source>
@@ -15544,7 +15759,7 @@ fallita: </translation>
     </message>
     <message>
         <source>Previous measure (Figured bass/Chord symbol only)</source>
-        <translation>Battuta precedente (Basso Figurato/solo simboli accordo)</translation>
+        <translation>Battuta precedente (Basso continuo/solo simboli accordo)</translation>
     </message>
     <message>
         <source>Next Measure (F.B./Chord Symbol)</source>
@@ -15552,7 +15767,7 @@ fallita: </translation>
     </message>
     <message>
         <source>Next measure (Figured bass/Chord symbol only)</source>
-        <translation>Battuta successiva (Basso figurato/solo simboli accordo)</translation>
+        <translation>Battuta successiva (Basso continuo/solo simboli accordo)</translation>
     </message>
     <message>
         <source>Toggle staccato</source>
@@ -15586,6 +15801,22 @@ fallita: </translation>
         <source>Set loop in position</source>
         <translation>Imposta posizione inizio ciclo</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Tavolozze</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Marcatore di tempo</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Ingrandisci al 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Bilanciamento rullo pianola</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16637,6 +16868,10 @@ la battuta non è vuota</translation>
         <source>Tablature2</source>
         <translation>Tablatura2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Chiave di violino 8vb opzionale</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17203,7 +17438,7 @@ la battuta non è vuota</translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation>Basso figurato</translation>
+        <translation>Basso continuo</translation>
     </message>
     <message>
         <source>Staff Text</source>
@@ -17639,7 +17874,7 @@ la battuta non è vuota</translation>
     </message>
     <message>
         <source>Figured Bass</source>
-        <translation>Basso figurato</translation>
+        <translation>Basso continuo</translation>
     </message>
     <message>
         <source>Ottava</source>
@@ -17748,10 +17983,6 @@ la battuta non è vuota</translation>
         <source>Prallprall line</source>
         <translation>Linea Prallprall</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Linea ondulata</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_ja.ts b/share/locale/mscore_ja.ts
index 2e4f3b6..1ccdc46 100644
--- a/share/locale/mscore_ja.ts
+++ b/share/locale/mscore_ja.ts
@@ -1307,7 +1307,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Number of strings:</source>
-        <translation>文字列の数:</translation>
+        <translation>弦の数:</translation>
     </message>
     <message>
         <source>Staff Properties</source>
@@ -1363,7 +1363,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Edit String Data...</source>
-        <translation>文字列データの編集...</translation>
+        <translation>弦の設定...</translation>
     </message>
     <message>
         <source>Show time signature</source>
@@ -1633,23 +1633,23 @@ p, li { white-space: pre-wrap; }
     <name>EditStringDataBase</name>
     <message>
         <source>String Data</source>
-        <translation>文字列データ</translation>
+        <translation>弦の設定</translation>
     </message>
     <message>
         <source>Strings Tuning:</source>
-        <translation>文字の調整:</translation>
+        <translation>弦の調整:</translation>
     </message>
     <message>
         <source>New String...</source>
-        <translation>新しい文字列...</translation>
+        <translation>新しい弦...</translation>
     </message>
     <message>
         <source>Edit String...</source>
-        <translation>文字列の編集...</translation>
+        <translation>弦の編集...</translation>
     </message>
     <message>
         <source>Delete String</source>
-        <translation>文字列の削除...</translation>
+        <translation>弦の削除...</translation>
     </message>
     <message>
         <source>Number of frets:</source>
@@ -1657,7 +1657,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Open</source>
-        <translation>開く</translation>
+        <translation>開放</translation>
     </message>
     <message>
         <source>Pitch</source>
@@ -2020,7 +2020,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Hook length:</source>
-        <translation>符尾の長さ:</translation>
+        <translation>フックの長さ:</translation>
     </message>
     <message>
         <source>Beam thickness:</source>
@@ -2084,7 +2084,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Hook height:</source>
-        <translation>符尾の高さ:</translation>
+        <translation>フックの高さ:</translation>
     </message>
     <message>
         <source>Line style:</source>
@@ -2237,7 +2237,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Distance after the stem of the last note:</source>
-        <translation>最後の音符の、符頭の後の間隔:</translation>
+        <translation>最後の音符の、符幹の後の間隔:</translation>
     </message>
     <message>
         <source>Distance after the head of the last note:</source>
@@ -3040,6 +3040,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>グリッサンド インスペクタ</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>アルペジオ</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>再生</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>再生のリセット</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3105,6 +3124,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>タイムストレッチのリセット</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>装飾記号のスタイル</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>既定値</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>バロック</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>装飾記号のスタイルをリセット</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>再生</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>再生のリセット</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3277,6 +3320,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>グリッサンド インスペクタ</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>ベンド</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>再生</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>再生のリセット</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3557,6 +3619,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>テキストを表示</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>スタイル</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>スタイルのリセット</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>演奏スタイル</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>クロマチック</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>白鍵</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>黒鍵</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>ダイアトニック</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>再生</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>再生のリセット</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4364,6 +4462,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>テキストフレーム インスペクタ</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>テキストフレーム</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>下外側余白</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>上余白</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>値のリセット</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>上外側余白のリセット</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>下外側余白のリセット</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>左余白</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>下余白</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>右余白のリセット</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>右余白</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>下余白のリセット</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>上余白のリセット</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>左余白のリセット</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>上外側余白</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4494,13 +4664,37 @@ space unit</extracomment>
         <translation>プラル・プラル</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>波線</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>値のリセット</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>装飾記号のスタイル</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>方向</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>既定値</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>バロック</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>装飾記号のスタイルをリセット</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>再生</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>再生のリセット</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4877,6 +5071,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>無調性</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -5091,7 +5292,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Hook:</source>
-        <translation>符尾:</translation>
+        <translation>フック:</translation>
     </message>
     <message>
         <source>Text:</source>
@@ -5801,7 +6002,7 @@ tuplet would cross measure</source>
     <name>Ms::Breath</name>
     <message>
         <source>Caesura</source>
-        <translation>カエスーレ</translation>
+        <translation>カエスーラ</translation>
     </message>
     <message>
         <source>Breath</source>
@@ -5963,7 +6164,7 @@ failed: </source>
     <message>
         <source>Open</source>
         <comment>string data</comment>
-        <translation>開く</translation>
+        <translation>開放</translation>
     </message>
     <message>
         <source>Pitch</source>
@@ -6046,14 +6247,6 @@ failed: </source>
         <translation>セーニョ記号そのもの</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>メタデータタグ</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>利用可能なタグとその現在の値:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>全要素に適用</translation>
     </message>
@@ -6069,6 +6262,14 @@ failed: </source>
         <source>page number, if there is more than one page</source>
         <translation>1 ページ以上存在する場合のページ番号</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>メタデータタグは、以下を参照してください</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>利用可能なメタデータタグとその現在の値:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -6174,7 +6375,7 @@ failed: </source>
     </message>
     <message>
         <source>Hook</source>
-        <translation>符尾</translation>
+        <translation>フック</translation>
     </message>
     <message>
         <source>Stem</source>
@@ -6677,7 +6878,7 @@ Do you want to replace it?
     </message>
     <message>
         <source>String number %1</source>
-        <translation>文字列数 %1</translation>
+        <translation>弦番 %1</translation>
     </message>
     <message>
         <source>Bracket</source>
@@ -6701,7 +6902,7 @@ Do you want to replace it?
     </message>
     <message>
         <source>Caesura</source>
-        <translation>カエスーレ</translation>
+        <translation>カエスーラ</translation>
     </message>
     <message>
         <source>Arpeggio</source>
@@ -7196,6 +7397,10 @@ please choose a different name:</source>
     </message>
     <message>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
+        <translation>このスコアはオンライン保存できません。エラーがある小節を修正してからもう一度実行してください。</translation>
+    </message>
+    <message>
+        <source>Ask for Help</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7681,10 +7886,6 @@ failed: %2</source>
         <translation>スタイルの書き込みに失敗: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>ファイルが見つかりません</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>選択なし</translation>
     </message>
@@ -7696,6 +7897,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>小節 %1, 譜表 %2, 声部 %3 は長すぎます。 予想: %4; 判定: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>XMLリーダー エラー箇所 %1 行目  カラム %2:%3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8008,6 +8213,12 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation>背景の透過</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>ここでは小節を分割できません:
+小節の1拍目</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10408,6 +10619,14 @@ failed: </source>
         <source>Filter</source>
         <translation>フィルタ</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>RPNのエクスポート</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10731,11 +10950,11 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Upload Error</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: アップロードエラー</translation>
     </message>
     <message>
         <source>Do you want to try to load this file anyway?</source>
-        <translation type="unfinished"/>
+        <translation>このファイルを強制的に読み込みますか?</translation>
     </message>
 </context>
 <context>
@@ -11265,7 +11484,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>System flag</source>
-        <translation>五線のアンカーポイント</translation>
+        <translation>段テキスト</translation>
+    </message>
+    <message>
+        <source>Search...</source>
+        <translation>検索...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>クリア</translation>
     </message>
 </context>
 <context>
@@ -11403,7 +11630,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>System flag</source>
-        <translation>五線のアンカーポイント</translation>
+        <translation>段テキスト</translation>
     </message>
     <message>
         <source>Offset</source>
@@ -13615,10 +13842,6 @@ failed: </source>
         <translation>羽根付連桁, 速く</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>パレット</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>再生パネル</translation>
     </message>
@@ -13655,10 +13878,6 @@ failed: </source>
         <translation>歌詞の追加</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>速度標語...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>速度標語の追加</translation>
     </message>
@@ -14015,10 +14234,6 @@ failed: </source>
         <translation>直前の選択範囲を再現</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>ピアノロールのパン</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>ピアノロールのパン 切替</translation>
     </message>
@@ -14252,11 +14467,11 @@ failed: </source>
     </message>
     <message>
         <source>Select string above (TAB only)</source>
-        <translation>選択中のフレット番号を上に(TAB譜)</translation>
+        <translation>選択中の弦を上に(TAB譜)</translation>
     </message>
     <message>
         <source>Select string below (TAB only)</source>
-        <translation>選択中のフレット番号を下に(TAB譜)</translation>
+        <translation>選択中の弦を下に(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 0 (TAB)</source>
@@ -14264,7 +14479,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 0 on current string (TAB only)</source>
-        <translation>現在の文字列にフレット0を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット0を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 1 (TAB)</source>
@@ -14272,7 +14487,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 1 on current string (TAB only)</source>
-        <translation>現在の文字列にフレット1を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット1を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 2 (TAB)</source>
@@ -14280,7 +14495,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 2 on current string (TAB only)</source>
-        <translation>現在の文字列にフレット2を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット2を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 3 (TAB)</source>
@@ -14288,7 +14503,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 3 on current string (TAB only)</source>
-        <translation>現在の文字列にフレット3を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット3を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 4 (TAB)</source>
@@ -14296,7 +14511,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 4 of current string (TAB only)</source>
-        <translation>現在の文字列にフレット4を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット4を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 5 (TAB)</source>
@@ -14304,7 +14519,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 5 of current string (TAB only)</source>
-        <translation>現在の文字列にフレット5を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット5を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 6 (TAB)</source>
@@ -14312,7 +14527,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 6 of current string (TAB only)</source>
-        <translation>現在の文字列にフレット6を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット6を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 7 (TAB)</source>
@@ -14320,7 +14535,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 7 of current string (TAB only)</source>
-        <translation>現在の文字列にフレット7を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット7を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 8 (TAB)</source>
@@ -14328,7 +14543,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 8 of current string (TAB only)</source>
-        <translation>現在の文字列にフレット8を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット8を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 9 (TAB)</source>
@@ -14336,7 +14551,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 9 of current string (TAB only)</source>
-        <translation>現在の文字列にフレット9を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット9を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Insert Fretboard Diagram Frame</source>
@@ -14396,7 +14611,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 10 of current string (TAB only)</source>
-        <translation>現在の文字列にフレット10を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット10を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 11 (TAB)</source>
@@ -14404,7 +14619,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 11 of current string (TAB only)</source>
-        <translation>現在の文字列にフレット11を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット11を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 12 (TAB)</source>
@@ -14412,7 +14627,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 12 of current string (TAB only)</source>
-        <translation>現在の文字列にフレット12を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット12を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 13 (TAB)</source>
@@ -14420,7 +14635,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 13 of current string (TAB only)</source>
-        <translation>現在の文字列にフレット13を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット13を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Fret 14 (TAB)</source>
@@ -14428,7 +14643,7 @@ failed: </source>
     </message>
     <message>
         <source>Add fret 14 of current string (TAB only)</source>
-        <translation>現在の文字列にフレット14を追加(TAB譜)</translation>
+        <translation>現在の弦にフレット14を追加(TAB譜)</translation>
     </message>
     <message>
         <source>Grace: 16th after</source>
@@ -15388,11 +15603,11 @@ failed: </source>
     </message>
     <message>
         <source>String Above (TAB)</source>
-        <translation>フレット番号を上に(TAB譜)</translation>
+        <translation>弦を上に(TAB譜)</translation>
     </message>
     <message>
         <source>String Below (TAB)</source>
-        <translation>フレット番号を下に(TAB譜)</translation>
+        <translation>弦を下に(TAB譜)</translation>
     </message>
     <message>
         <source>Previous Beat (Chord Symbol)</source>
@@ -15582,6 +15797,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation>ループ開始位置の設定</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>パレット</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>テンポマーク</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16633,6 +16864,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation>タブ譜2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>ト音記号オプション8vb</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17059,7 +17294,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Hook</source>
-        <translation>符尾</translation>
+        <translation>フック</translation>
     </message>
     <message>
         <source>Lyrics</source>
@@ -17744,10 +17979,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation>複転回モルデント線</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>波線</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_ka.ts b/share/locale/mscore_ka.ts
index eca5908..e17b7de 100644
--- a/share/locale/mscore_ka.ts
+++ b/share/locale/mscore_ka.ts
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>დაკვრა</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>მიმართულება</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>დაკვრა</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7158,6 +7359,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7628,10 +7833,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>ფაილი არაა ნაპოვნი</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7643,6 +7844,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7950,6 +8155,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10347,6 +10557,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11175,6 +11393,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13521,10 +13747,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation type="unfinished"/>
     </message>
@@ -13561,10 +13783,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13921,10 +14139,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15488,6 +15702,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16537,6 +16767,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17648,10 +17882,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_ko.ts b/share/locale/mscore_ko.ts
index fd2b399..fbf6711 100644
--- a/share/locale/mscore_ko.ts
+++ b/share/locale/mscore_ko.ts
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>아르페지오</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>재생</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>텍스트 표시</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,11 +4666,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>기본값</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>재생</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6033,27 +6234,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7173,6 +7374,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7643,10 +7848,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7658,6 +7859,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7965,6 +8170,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10362,6 +10572,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11190,6 +11408,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13536,10 +13762,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>파레트</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>재생 패널</translation>
     </message>
@@ -13576,10 +13798,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13936,10 +14154,6 @@ failed: </source>
         <translation>선택의 재현</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15503,6 +15717,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16552,6 +16782,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17663,10 +17897,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_lt.ts b/share/locale/mscore_lt.ts
index e1789ba..8203d86 100644
--- a/share/locale/mscore_lt.ts
+++ b/share/locale/mscore_lt.ts
@@ -56,7 +56,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>The MusicXML Public License:</source>
-        <translation>MusicXML Viešinimo Licencija:</translation>
+        <translation>MusicXML viešoji licencija:</translation>
     </message>
 </context>
 <context>
@@ -67,11 +67,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Width</source>
-        <translation>plotis</translation>
+        <translation>Plotis</translation>
     </message>
     <message>
         <source>Reflect</source>
-        <translation>atspindi</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Reverb</source>
@@ -79,11 +79,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Delay</source>
-        <translation>Aidas</translation>
+        <translation>Delsa</translation>
     </message>
     <message>
         <source>Time</source>
-        <translation>Tempas</translation>
+        <translation>Metras</translation>
     </message>
     <message>
         <source>Direct</source>
@@ -107,7 +107,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Position</source>
-        <translation>pozicija</translation>
+        <translation>Pozicija</translation>
     </message>
 </context>
 <context>
@@ -134,7 +134,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>New</source>
-        <translation>Nauja</translation>
+        <translation>Nauja(s)</translation>
     </message>
     <message>
         <source>Load</source>
@@ -142,7 +142,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Print Album</source>
-        <translation>Atspausdinti albumÄ…</translation>
+        <translation>Spausdinti albumÄ…</translation>
     </message>
     <message>
         <source>Join Scores</source>
@@ -166,7 +166,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Remove current score</source>
-        <translation>Pašalinti iš esamos partitūros</translation>
+        <translation>Pašalinti šią partitūrą</translation>
     </message>
     <message>
         <source>Create new album</source>
@@ -240,7 +240,7 @@ p, li { white-space: pre-wrap; }
     <name>Awl::ColorLabel</name>
     <message>
         <source>MuseScore: Select Color</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: pasirinkite spalvÄ…</translation>
     </message>
 </context>
 <context>
@@ -301,7 +301,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Number of measures</source>
-        <translation type="unfinished"/>
+        <translation>Taktų skaičius</translation>
     </message>
     <message>
         <source>measures</source>
@@ -351,7 +351,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>ID</source>
-        <translation type="unfinished"/>
+        <translation>ID</translation>
     </message>
 </context>
 <context>
@@ -386,11 +386,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Do</source>
-        <translation>do</translation>
+        <translation>Do</translation>
     </message>
     <message>
         <source>Re</source>
-        <translation>re</translation>
+        <translation>Re</translation>
     </message>
     <message>
         <source>Fa</source>
@@ -421,7 +421,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Save</source>
-        <translation>IÅ¡saugoti</translation>
+        <translation>Įrašyti</translation>
     </message>
     <message>
         <source>No.</source>
@@ -433,7 +433,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Shortcut</source>
-        <translation>Greitieji klavišai</translation>
+        <translation>Å aukinys</translation>
     </message>
     <message>
         <source>Name</source>
@@ -469,7 +469,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Shortcut:</source>
-        <translation>Greitasis klavišas:</translation>
+        <translation>Å aukinys:</translation>
     </message>
     <message>
         <source>A</source>
@@ -540,7 +540,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Name:</source>
-        <translation>Paavdinimas:</translation>
+        <translation>Pavadinimas:</translation>
     </message>
     <message>
         <source>Pitch:</source>
@@ -575,43 +575,43 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Octave 8</source>
-        <translation>Oktava 8</translation>
+        <translation>8 oktava</translation>
     </message>
     <message>
         <source>Octave 7</source>
-        <translation>Oktava 7</translation>
+        <translation>7 oktava</translation>
     </message>
     <message>
         <source>Octave 6</source>
-        <translation>Oktava 6</translation>
+        <translation>6 oktava</translation>
     </message>
     <message>
         <source>Octave 5</source>
-        <translation>Oktava 5</translation>
+        <translation>5 oktava</translation>
     </message>
     <message>
         <source>Octave 4</source>
-        <translation>Oktava 4</translation>
+        <translation>4 oktava</translation>
     </message>
     <message>
         <source>Octave 3</source>
-        <translation>Oktava 3</translation>
+        <translation>3 oktava</translation>
     </message>
     <message>
         <source>Octave 2</source>
-        <translation>Oktava 2</translation>
+        <translation>2 oktava</translation>
     </message>
     <message>
         <source>Octave 1</source>
-        <translation>Oktava 1</translation>
+        <translation>1 oktava</translation>
     </message>
     <message>
         <source>Octave 0</source>
-        <translation>Oktava 0</translation>
+        <translation>0 oktava</translation>
     </message>
     <message>
         <source>Octave -1</source>
-        <translation>Oktava -1</translation>
+        <translation>-1 oktava</translation>
     </message>
     <message>
         <source>C</source>
@@ -799,7 +799,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>G 3</source>
-        <translation type="unfinished"/>
+        <translation>G 3</translation>
     </message>
     <message>
         <source>A 3</source>
@@ -807,135 +807,135 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>B 3</source>
-        <translation type="unfinished"/>
+        <translation>B 3</translation>
     </message>
     <message>
         <source>C 2</source>
-        <translation type="unfinished"/>
+        <translation>C 2</translation>
     </message>
     <message>
         <source>D 2</source>
-        <translation type="unfinished"/>
+        <translation>D 2</translation>
     </message>
     <message>
         <source>E 2</source>
-        <translation type="unfinished"/>
+        <translation>E 2</translation>
     </message>
     <message>
         <source>F 2</source>
-        <translation type="unfinished"/>
+        <translation>F 2</translation>
     </message>
     <message>
         <source>G 2</source>
-        <translation type="unfinished"/>
+        <translation>G 2</translation>
     </message>
     <message>
         <source>A 2</source>
-        <translation type="unfinished"/>
+        <translation>A 2</translation>
     </message>
     <message>
         <source>B 2</source>
-        <translation type="unfinished"/>
+        <translation>B 2</translation>
     </message>
     <message>
         <source>C 1</source>
-        <translation type="unfinished"/>
+        <translation>C 1</translation>
     </message>
     <message>
         <source>D 1</source>
-        <translation type="unfinished"/>
+        <translation>D 1</translation>
     </message>
     <message>
         <source>E 1</source>
-        <translation type="unfinished"/>
+        <translation>E 1</translation>
     </message>
     <message>
         <source>F 1</source>
-        <translation type="unfinished"/>
+        <translation>F 1</translation>
     </message>
     <message>
         <source>G 1</source>
-        <translation type="unfinished"/>
+        <translation>G 1</translation>
     </message>
     <message>
         <source>A 1</source>
-        <translation type="unfinished"/>
+        <translation>A 1</translation>
     </message>
     <message>
         <source>B 1</source>
-        <translation type="unfinished"/>
+        <translation>B 1</translation>
     </message>
     <message>
         <source>C 0</source>
-        <translation type="unfinished"/>
+        <translation>C 0</translation>
     </message>
     <message>
         <source>D 0</source>
-        <translation type="unfinished"/>
+        <translation>D 0</translation>
     </message>
     <message>
         <source>E 0</source>
-        <translation type="unfinished"/>
+        <translation>E 0</translation>
     </message>
     <message>
         <source>F 0</source>
-        <translation type="unfinished"/>
+        <translation>F 0</translation>
     </message>
     <message>
         <source>G 0</source>
-        <translation type="unfinished"/>
+        <translation>G 0</translation>
     </message>
     <message>
         <source>A 0</source>
-        <translation type="unfinished"/>
+        <translation>A 0</translation>
     </message>
     <message>
         <source>B 0</source>
-        <translation type="unfinished"/>
+        <translation>B 0</translation>
     </message>
     <message>
         <source>C -1</source>
-        <translation type="unfinished"/>
+        <translation>C -1</translation>
     </message>
     <message>
         <source>D -1</source>
-        <translation type="unfinished"/>
+        <translation>D -1</translation>
     </message>
     <message>
         <source>E -1</source>
-        <translation type="unfinished"/>
+        <translation>E -1</translation>
     </message>
     <message>
         <source>F -1</source>
-        <translation type="unfinished"/>
+        <translation>F -1</translation>
     </message>
     <message>
         <source>G -1</source>
-        <translation type="unfinished"/>
+        <translation>G -1</translation>
     </message>
     <message>
         <source>A -1</source>
-        <translation type="unfinished"/>
+        <translation>A -1</translation>
     </message>
     <message>
         <source>B -1</source>
-        <translation type="unfinished"/>
+        <translation>B -1</translation>
     </message>
     <message>
         <source>C♯</source>
-        <translation type="unfinished"/>
+        <translation>C♯</translation>
     </message>
     <message>
         <source>Eâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­</translation>
     </message>
     <message>
         <source>F♯</source>
-        <translation type="unfinished"/>
+        <translation>F♯</translation>
     </message>
     <message>
         <source>Aâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­</translation>
     </message>
     <message>
         <source>Bâ™­</source>
@@ -943,218 +943,218 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>C♯ 8</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 8</translation>
     </message>
     <message>
         <source>Eâ™­ 8</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 8</translation>
     </message>
     <message>
         <source>F♯ 8</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 8</translation>
     </message>
     <message>
         <source>Aâ™­ 8</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 8</translation>
     </message>
     <message>
         <source>Bâ™­ 8</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 8</translation>
     </message>
     <message>
         <source>C♯ 7</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 7</translation>
     </message>
     <message>
         <source>Eâ™­ 7</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 7</translation>
     </message>
     <message>
         <source>F♯ 7</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 7</translation>
     </message>
     <message>
         <source>Aâ™­ 7</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 7</translation>
     </message>
     <message>
         <source>Bâ™­ 7</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 7</translation>
     </message>
     <message>
         <source>C♯ 6</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 6</translation>
     </message>
     <message>
         <source>Eâ™­ 6</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 6</translation>
     </message>
     <message>
         <source>F♯ 6</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 6</translation>
     </message>
     <message>
         <source>Aâ™­ 6</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 6</translation>
     </message>
     <message>
         <source>Bâ™­ 6</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 6</translation>
     </message>
     <message>
         <source>C♯ 5</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 5</translation>
     </message>
     <message>
         <source>Eâ™­ 5</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 5</translation>
     </message>
     <message>
         <source>F♯ 5</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 5</translation>
     </message>
     <message>
         <source>Aâ™­ 5</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 5</translation>
     </message>
     <message>
         <source>Bâ™­ 5</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 5</translation>
     </message>
     <message>
         <source>C♯ 4</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 4</translation>
     </message>
     <message>
         <source>Eâ™­ 4</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 4</translation>
     </message>
     <message>
         <source>F♯ 4</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 4</translation>
     </message>
     <message>
         <source>Aâ™­ 4</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 4</translation>
     </message>
     <message>
         <source>Bâ™­ 4</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 4</translation>
     </message>
     <message>
         <source>C♯ 3</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 3</translation>
     </message>
     <message>
         <source>Eâ™­ 3</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 3</translation>
     </message>
     <message>
         <source>F♯ 3</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 3</translation>
     </message>
     <message>
         <source>Aâ™­ 3</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 3</translation>
     </message>
     <message>
         <source>Bâ™­ 3</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 3</translation>
     </message>
     <message>
         <source>C♯ 2</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 2</translation>
     </message>
     <message>
         <source>Eâ™­ 2</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 2</translation>
     </message>
     <message>
         <source>F♯ 2</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 2</translation>
     </message>
     <message>
         <source>Aâ™­ 2</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 2</translation>
     </message>
     <message>
         <source>Bâ™­ 2</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 2</translation>
     </message>
     <message>
         <source>C♯ 1</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 1</translation>
     </message>
     <message>
         <source>Eâ™­ 1</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 1</translation>
     </message>
     <message>
         <source>F♯ 1</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 1</translation>
     </message>
     <message>
         <source>Aâ™­ 1</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 1</translation>
     </message>
     <message>
         <source>Bâ™­ 1</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 1</translation>
     </message>
     <message>
         <source>C♯ 0</source>
-        <translation type="unfinished"/>
+        <translation>C♯ 0</translation>
     </message>
     <message>
         <source>Eâ™­ 0</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ 0</translation>
     </message>
     <message>
         <source>F♯ 0</source>
-        <translation type="unfinished"/>
+        <translation>F♯ 0</translation>
     </message>
     <message>
         <source>Aâ™­ 0</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ 0</translation>
     </message>
     <message>
         <source>Bâ™­ 0</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ 0</translation>
     </message>
     <message>
         <source>C♯ -1</source>
-        <translation type="unfinished"/>
+        <translation>C♯ -1</translation>
     </message>
     <message>
         <source>Eâ™­ -1</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­ -1</translation>
     </message>
     <message>
         <source>F♯ -1</source>
-        <translation type="unfinished"/>
+        <translation>F♯ -1</translation>
     </message>
     <message>
         <source>Aâ™­ -1</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­ -1</translation>
     </message>
     <message>
         <source>Bâ™­ -1</source>
-        <translation type="unfinished"/>
+        <translation>Bâ™­ -1</translation>
     </message>
     <message>
         <source>»C</source>
-        <translation type="unfinished"/>
+        <translation>»C</translation>
     </message>
 </context>
 <context>
     <name>EditRaster</name>
     <message>
         <source>1 / </source>
-        <translation type="unfinished"/>
+        <translation>1 / </translation>
     </message>
     <message>
         <source>sp</source>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>MuseScore: Edit Grid</source>
@@ -1185,7 +1185,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Change Instrument...</source>
-        <translation>Pakeisti instrumentÄ…...</translation>
+        <translation>Keisti instrumentÄ…...</translation>
     </message>
     <message>
         <source>Instrument:</source>
@@ -1205,27 +1205,27 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>0 - Perfect Unison</source>
-        <translation>0 - Grynoji prima</translation>
+        <translation>0 - grynoji prima</translation>
     </message>
     <message>
         <source>1 - Augmented Unison</source>
-        <translation>1 - Padidinta prima</translation>
+        <translation>1 - padidinta prima</translation>
     </message>
     <message>
         <source>0 - Diminished Second</source>
-        <translation>0 - Sumažinta sekunda</translation>
+        <translation>0 - sumažinta sekunda</translation>
     </message>
     <message>
         <source>1 - Minor Second</source>
-        <translation>1 - MinorinÄ— sekunda</translation>
+        <translation>1 - mažoji sekunda</translation>
     </message>
     <message>
         <source>2 - Major Second</source>
-        <translation>2 - Mažorinė sekunda</translation>
+        <translation>2 - didžioji sekunda</translation>
     </message>
     <message>
         <source>3 - Augmented Second</source>
-        <translation>3 - Padidinta sekunda</translation>
+        <translation>3 - padidinta sekunda</translation>
     </message>
     <message>
         <source>2 - Diminished Third</source>
@@ -1325,7 +1325,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>sp</source>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Staff line color:</source>
@@ -1432,7 +1432,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>sp</source>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>STANDARD STAFF</source>
@@ -1468,7 +1468,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Numbers</source>
-        <translation>Numeravimas</translation>
+        <translation>Skaičiai</translation>
     </message>
     <message>
         <source>Letters</source>
@@ -1484,7 +1484,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Tęsti</translation>
+        <translation>IÅ¡tisinis</translation>
     </message>
     <message>
         <source>Broken</source>
@@ -1528,7 +1528,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Below</source>
-        <translation>žemiau</translation>
+        <translation>Po</translation>
     </message>
     <message>
         <source>Half notes:</source>
@@ -1544,7 +1544,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Preview</source>
-        <translation>Rodinys</translation>
+        <translation>Peržiūra</translation>
     </message>
     <message>
         <source>Line distance:</source>
@@ -1564,7 +1564,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Vertical offset:</source>
-        <translation type="unfinished"/>
+        <translation>Vertikalusis poslinkis:</translation>
     </message>
     <message>
         <source>On lines</source>
@@ -1572,7 +1572,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Above lines</source>
-        <translation>virs liniju</translation>
+        <translation>Virš linijų</translation>
     </message>
     <message>
         <source>Note symbols</source>
@@ -1580,7 +1580,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Upside down</source>
-        <translation>aukstyn kojom</translation>
+        <translation>Aukštyn kojom</translation>
     </message>
     <message>
         <source>Show rests</source>
@@ -1659,7 +1659,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Open</source>
-        <translation>Atverti...</translation>
+        <translation>Atvira(s)</translation>
     </message>
     <message>
         <source>Pitch</source>
@@ -1670,15 +1670,15 @@ p, li { white-space: pre-wrap; }
     <name>EditStyleBase</name>
     <message>
         <source>MuseScore: Edit Style</source>
-        <translation>MuseScore: Stiliaus redagavimas</translation>
+        <translation>MuseScore: Tvarkyti stilių</translation>
     </message>
     <message>
         <source>Score</source>
-        <translation>Natos</translation>
+        <translation>Partitūra</translation>
     </message>
     <message>
         <source>Page</source>
-        <translation>Lapas</translation>
+        <translation>Puslapis</translation>
     </message>
     <message>
         <source>Header, Footer, Numbers</source>
@@ -1691,7 +1691,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Measure</source>
-        <translation>Metras</translation>
+        <translation>Taktas</translation>
     </message>
     <message>
         <source>Barlines</source>
@@ -1758,15 +1758,15 @@ p, li { white-space: pre-wrap; }
         <extracomment>spatium unit
 ----------
 space unit</extracomment>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Minimum number of empty measures:</source>
-        <translation>Tuščių taktų minimalus skaičius:</translation>
+        <translation>Mažiausias tuščių taktų skaičius:</translation>
     </message>
     <message>
         <source>Hide empty staves</source>
-        <translation>SlÄ—pti nepanaudotas penklines</translation>
+        <translation>SlÄ—pti nenaudojamas penklines</translation>
     </message>
     <message>
         <source>Don't hide empty staves in first system</source>
@@ -1830,7 +1830,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Create courtesy key signatures</source>
-        <translation>Įterpti tonacijos pasikeitimo priminimus</translation>
+        <translation>Įterpti prieraktinių ženklų pasikeitimo priminimus</translation>
     </message>
     <message>
         <source>Lyrics line height:</source>
@@ -1866,11 +1866,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Even</source>
-        <translation>lyginis</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Odd</source>
-        <translation>nelyginis</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>All staves</source>
@@ -1882,7 +1882,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>System bracket distance:</source>
-        <translation>Atstumas tarp sistemos penklinių:</translation>
+        <translation>Atstumas iki sistemos akoladÄ—s:</translation>
     </message>
     <message>
         <source>Brace distance:</source>
@@ -1938,11 +1938,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Show repeat bar tips ("winged" repeats)</source>
-        <translation>Pakartojimus rodyti „gražiai“</translation>
+        <translation>Rodyti greitąjį kartojamų taktų užrašymą</translation>
     </message>
     <message>
         <source>Barline at start of single staff</source>
-        <translation>Takto brūkšnys atskiros penklinės pradžioje</translation>
+        <translation>Takto brūkšnys pavienės penklinės pradžioje</translation>
     </message>
     <message>
         <source>Barline at start of multiple staves</source>
@@ -1974,7 +1974,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Progression:</source>
-        <translation>progresas</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Shortest stem:</source>
@@ -2018,11 +2018,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Line thickness:</source>
-        <translation>linijos storis</translation>
+        <translation>Linijos storis:</translation>
     </message>
     <message>
         <source>Hook length:</source>
-        <translation>kabliuko ilgis</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Beam thickness:</source>
@@ -2114,7 +2114,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Jazz</source>
-        <translation>dziazas</translation>
+        <translation>Džiazas</translation>
     </message>
     <message>
         <source>Custom</source>
@@ -2126,7 +2126,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>German</source>
-        <translation>vokieciu</translation>
+        <translation>Vokiečių</translation>
     </message>
     <message>
         <source>Solfeggio</source>
@@ -2162,7 +2162,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Vertical position:</source>
-        <translation>vertikali pozicija</translation>
+        <translation>Vertikali pozicija:</translation>
     </message>
     <message>
         <source>from top of staff</source>
@@ -2178,11 +2178,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Top</source>
-        <translation>virsus</translation>
+        <translation>Viršus</translation>
     </message>
     <message>
         <source>Bottom</source>
-        <translation>apacia</translation>
+        <translation>Apačia</translation>
     </message>
     <message>
         <source>Style</source>
@@ -2199,7 +2199,7 @@ space unit</extracomment>
     <message>
         <source>sp</source>
         <comment>space unit</comment>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Articulation distance:</source>
@@ -2219,7 +2219,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Maximum slope:</source>
-        <translation>maksimalus nuolydis</translation>
+        <translation>Maksimalus nuolydis:</translation>
     </message>
     <message>
         <source>Vertical distance from stem:</source>
@@ -2251,11 +2251,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Chord Symbols</source>
-        <translation type="unfinished"/>
+        <translation>Akordų simboliai</translation>
     </message>
     <message>
         <source>Chord symbols style file:</source>
-        <translation type="unfinished"/>
+        <translation>Akordų simbolių stiliaus failas:</translation>
     </message>
     <message>
         <source>Capo</source>
@@ -2295,7 +2295,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Position:</source>
-        <translation>pozicija</translation>
+        <translation>Pozicija:</translation>
     </message>
     <message>
         <source>Minimum tie length:</source>
@@ -2303,7 +2303,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Interval:</source>
-        <translation>intervalas</translation>
+        <translation>Intervalas:</translation>
     </message>
     <message>
         <source>Hide instrument name if there is only 1 instrument</source>
@@ -2331,7 +2331,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Eighth Note</source>
-        <translation>astunta nata</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Sixteenth Note</source>
@@ -2379,7 +2379,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Use odd/even page header</source>
@@ -2403,7 +2403,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Tęsti</translation>
+        <translation>ištisinis</translation>
     </message>
     <message>
         <source>Dashed</source>
@@ -2423,15 +2423,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Numbers only</source>
-        <translation>tik skaiciai</translation>
+        <translation>Tik skaičiai</translation>
     </message>
     <message>
         <source>Header Text</source>
-        <translation type="unfinished"/>
+        <translation>Antraštės tekstas</translation>
     </message>
     <message>
         <source>Footer Text</source>
-        <translation type="unfinished"/>
+        <translation>Poraštės tekstas</translation>
     </message>
     <message>
         <source>Measure Numbers</source>
@@ -2593,7 +2593,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>Sound Fonts</source>
@@ -2684,7 +2684,7 @@ space unit</extracomment>
     <name>InsertMeasuresDialogBase</name>
     <message>
         <source>Mscore: Insert Measures</source>
-        <translation>MuseScore: Takto įterpimas</translation>
+        <translation>MuseScore: Įterpti taktų</translation>
     </message>
     <message>
         <source>OK</source>
@@ -2696,11 +2696,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Insert empty measures</source>
-        <translation type="unfinished"/>
+        <translation>Įterpti tuščių taktų</translation>
     </message>
     <message>
         <source>Number of measures to insert:</source>
-        <translation type="unfinished"/>
+        <translation>Įterpiamų taktų skaičius:</translation>
     </message>
 </context>
 <context>
@@ -2723,7 +2723,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
 </context>
 <context>
@@ -2734,7 +2734,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>sp</source>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Bottom note</source>
@@ -2754,7 +2754,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>C♯</source>
-        <translation type="unfinished"/>
+        <translation>C♯</translation>
     </message>
     <message>
         <source>C♯♯</source>
@@ -2786,7 +2786,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Eâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Eâ™­</translation>
     </message>
     <message>
         <source>E</source>
@@ -2814,7 +2814,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>F♯</source>
-        <translation type="unfinished"/>
+        <translation>F♯</translation>
     </message>
     <message>
         <source>F♯♯</source>
@@ -2846,7 +2846,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Aâ™­</source>
-        <translation type="unfinished"/>
+        <translation>Aâ™­</translation>
     </message>
     <message>
         <source>A</source>
@@ -2922,7 +2922,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Direction</source>
-        <translation>kryptis</translation>
+        <translation>Kryptis</translation>
     </message>
     <message>
         <source>Upright</source>
@@ -2930,11 +2930,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Leaning Left</source>
-        <translation>pasvire kairen</translation>
+        <translation>PasvirÄ™ kairÄ—n</translation>
     </message>
     <message>
         <source>Leaning Right</source>
-        <translation>pasvire desinen</translation>
+        <translation>Pasvirę dešinėn</translation>
     </message>
     <message>
         <source>Ambitus Inspector</source>
@@ -2990,11 +2990,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Do</source>
-        <translation>do</translation>
+        <translation>Do</translation>
     </message>
     <message>
         <source>Re</source>
-        <translation>re</translation>
+        <translation>Re</translation>
     </message>
     <message>
         <source>Mi</source>
@@ -3026,7 +3026,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Reset Line thickness value</source>
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpedžio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Groti</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3049,7 +3068,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Direction</source>
-        <translation>kryptis</translation>
+        <translation>Kryptis</translation>
     </message>
     <message>
         <source>Anchor</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3180,7 +3223,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
 </context>
 <context>
@@ -3203,19 +3246,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>Direction</source>
-        <translation>kryptis</translation>
+        <translation>Kryptis</translation>
     </message>
     <message>
         <source>sp</source>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Position</source>
-        <translation>pozicija</translation>
+        <translation>Pozicija</translation>
     </message>
     <message>
         <source>Horizontal</source>
-        <translation>horizontalus</translation>
+        <translation>Horizontalus</translation>
     </message>
     <message>
         <source>Beam Inspector</source>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3313,16 +3375,16 @@ space unit</extracomment>
     </message>
     <message>
         <source>Vertical offset</source>
-        <translation type="unfinished"/>
+        <translation>Vertikalusis poslinkis</translation>
     </message>
     <message>
         <source>sp</source>
         <extracomment>spatium unit</extracomment>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Horizontal offset</source>
-        <translation type="unfinished"/>
+        <translation>Horizontalusis poslinkis</translation>
     </message>
     <message>
         <source>Small</source>
@@ -3338,11 +3400,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Vertical offset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti vertikaliojo poslinkio reikšmę</translation>
     </message>
     <message>
         <source>Reset Horizontal offset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti horizontaliojo poslinkio reikšmę</translation>
     </message>
     <message>
         <source>Reset Stem direction value</source>
@@ -3350,7 +3412,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Horizontal Offset</source>
-        <translation type="unfinished"/>
+        <translation>Horizontalusis poslinkis</translation>
     </message>
     <message>
         <source>Reset Small Value</source>
@@ -3362,7 +3424,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
 </context>
 <context>
@@ -3385,14 +3447,14 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
 </context>
 <context>
     <name>InspectorDynamic</name>
     <message>
         <source>Dynamic</source>
-        <translation>Dinamikos ženklai</translation>
+        <translation>Dinamika</translation>
     </message>
     <message>
         <source>Dynamic Range</source>
@@ -3428,7 +3490,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Dynamic range</source>
@@ -3443,12 +3505,12 @@ space unit</extracomment>
     </message>
     <message>
         <source>Vertical offset</source>
-        <translation type="unfinished"/>
+        <translation>Vertikalusis poslinkis</translation>
     </message>
     <message>
         <source>sp</source>
         <extracomment>spatium unit</extracomment>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Color</source>
@@ -3456,7 +3518,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Horizontal offset</source>
-        <translation type="unfinished"/>
+        <translation>Horizontalusis poslinkis</translation>
     </message>
     <message>
         <source>Visible</source>
@@ -3468,11 +3530,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Horizontal offset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti horizontaliojo poslinkio reikšmę</translation>
     </message>
     <message>
         <source>Reset Vertical offset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti vertikaliojo poslinkio reikšmę</translation>
     </message>
     <message>
         <source>Reset Visible value</source>
@@ -3491,7 +3553,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Nothing selected</source>
-        <translation type="unfinished"/>
+        <translation>Nieko nepasirinkta</translation>
     </message>
 </context>
 <context>
@@ -3506,7 +3568,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Reset Type value</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Rodyti tekstÄ…</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -3591,17 +3689,16 @@ space unit</extracomment>
     <name>InspectorHBox</name>
     <message>
         <source>Horizontal Frame</source>
-        <translation>horizontalus remelis
-</translation>
+        <translation>Horizontalus rÄ—melis</translation>
     </message>
     <message>
         <source>sp</source>
         <extracomment>spatium unit</extracomment>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Width</source>
-        <translation>plotis</translation>
+        <translation>Plotis</translation>
     </message>
     <message>
         <source>Horizontal Frame Inspector</source>
@@ -3609,23 +3706,23 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Right gap</source>
-        <translation type="unfinished"/>
+        <translation>Dešinysis tarpas</translation>
     </message>
     <message>
         <source>Left gap</source>
-        <translation type="unfinished"/>
+        <translation>Kairysis tarpas</translation>
     </message>
     <message>
         <source>Reset Left gap value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti kairiojo tarpo reikšmę</translation>
     </message>
     <message>
         <source>Reset Right gap value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti dešiniojo tarpo reikšmę</translation>
     </message>
 </context>
 <context>
@@ -3636,7 +3733,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Aukštis</translation>
     </message>
     <message>
         <source>Type</source>
@@ -3668,7 +3765,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>sp</source>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Circled tip</source>
@@ -3700,7 +3797,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Crescendo</source>
-        <translation>crescendo</translation>
+        <translation>Crescendo</translation>
     </message>
     <message>
         <source>Decrescendo</source>
@@ -3708,7 +3805,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Reset Continue height value</source>
@@ -3723,7 +3820,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Size</source>
-        <translation>dydis</translation>
+        <translation>Dydis</translation>
     </message>
     <message>
         <source>Scale</source>
@@ -3739,11 +3836,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Aukštis</translation>
     </message>
     <message>
         <source>Width</source>
-        <translation>plotis</translation>
+        <translation>Plotis</translation>
     </message>
     <message>
         <source>Scale Width</source>
@@ -3763,7 +3860,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Lock aspect ratio</source>
-        <translation>laikyti tokį mastelį</translation>
+        <translation>IÅ¡laikyti proporcijas</translation>
     </message>
     <message>
         <source>Distance between two lines on a standard 5-line staff</source>
@@ -3833,18 +3930,18 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
 </context>
 <context>
     <name>InspectorLasso</name>
     <message>
         <source>Lasso</source>
-        <translation>Laso</translation>
+        <translation>Kilpa</translation>
     </message>
     <message>
         <source>Position</source>
-        <translation>pozicija</translation>
+        <translation>Pozicija</translation>
     </message>
     <message>
         <source>mm</source>
@@ -3852,7 +3949,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Size</source>
-        <translation>dydis</translation>
+        <translation>Dydis</translation>
     </message>
     <message>
         <source>Lasso Inspector</source>
@@ -3864,11 +3961,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Aukštis</translation>
     </message>
     <message>
         <source>Width</source>
-        <translation>plotis</translation>
+        <translation>Plotis</translation>
     </message>
     <message>
         <source>Horizontal Position</source>
@@ -3884,7 +3981,7 @@ space unit</extracomment>
     <message>
         <source>sp</source>
         <extracomment>Staff space unit</extracomment>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Line color</source>
@@ -3916,7 +4013,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Line thickness</source>
@@ -3924,7 +4021,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Continuous</source>
-        <translation>Tęsti</translation>
+        <translation>IÅ¡tisinis</translation>
     </message>
     <message>
         <source>Dashed</source>
@@ -3975,7 +4072,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Codetta</source>
-        <translation>Kodeta</translation>
+        <translation>KodetÄ—</translation>
     </message>
     <message>
         <source>Fine</source>
@@ -4046,11 +4143,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Top</source>
-        <translation>virsus</translation>
+        <translation>Viršus</translation>
     </message>
     <message>
         <source>Bottom</source>
-        <translation>apacia</translation>
+        <translation>Apačia</translation>
     </message>
     <message>
         <source>Whole</source>
@@ -4150,7 +4247,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Reset Dot position value</source>
@@ -4213,7 +4310,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Numbers only</source>
-        <translation>tik skaiciai</translation>
+        <translation>Tik skaičiai</translation>
     </message>
     <message>
         <source>Ottava Inspector</source>
@@ -4229,7 +4326,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Above</source>
@@ -4237,7 +4334,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Below</source>
-        <translation>zemiau</translation>
+        <translation>Žemiau</translation>
     </message>
     <message>
         <source>Reset Numbers only value</source>
@@ -4264,7 +4361,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
 </context>
 <context>
@@ -4276,15 +4373,15 @@ space unit</extracomment>
     <message>
         <source>sp</source>
         <extracomment>spatium unit</extracomment>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Trailing space</source>
-        <translation type="unfinished"/>
+        <translation>Galinis tarpas</translation>
     </message>
     <message>
         <source>Leading space</source>
-        <translation type="unfinished"/>
+        <translation>Priekinis tarpas</translation>
     </message>
     <message>
         <source>Segment Inspector</source>
@@ -4292,15 +4389,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Leading space value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti priekinio tarpo reikšmę</translation>
     </message>
     <message>
         <source>Reset Trailing space value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti galinio tarpo reikšmę</translation>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
 </context>
 <context>
@@ -4327,7 +4424,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Continuous</source>
@@ -4350,12 +4447,12 @@ space unit</extracomment>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Aukštis</translation>
     </message>
     <message>
         <source>sp</source>
         <extracomment>spatium unit</extracomment>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Spacer Inspector</source>
@@ -4367,10 +4464,82 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Teksto rÄ—melio tikrintuvas</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Teksto rÄ—melis</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Apatinis tarpas</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Viršutinė paraštė</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Atstatyti reikšmę</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Atstatyti viršutinio tarpo reikšmę</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Atstatyti apatinio tarpo reikšmę</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Kairioji paraštė</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Apatinė paraštė</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Atstatyti dešiniosios paraštės reikšmę</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Dešinioji paraštė</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Atstatyti apatinės paraštės reikšmę</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Atstatyti viršutinės paraštės reikšmę</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Atstatyti kairiosios paraštės reikšmę</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Viršutinis tarpas</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>tarp.</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
-        <translation>Tempas</translation>
+        <translation>Tempo užrašas</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -4394,7 +4563,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Reset Follow text value</source>
@@ -4421,7 +4590,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Reset Text to Style</source>
@@ -4459,7 +4628,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
 </context>
 <context>
@@ -4473,35 +4642,59 @@ space unit</extracomment>
         <translation>Tipas</translation>
     </message>
     <message>
-        <source>Trill Inspector</source>
+        <source>Trill Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Trill type</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Trill Line</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Up Prall</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Down Prall</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Prall Prall</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset Trill type</source>
-        <translation type="unfinished"/>
+        <source>Reset value</source>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
-        <source>Trill Line</source>
+        <source>Ornament Style</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Up Prall</source>
-        <translation type="unfinished"/>
+        <source>Direction</source>
+        <translation>Kryptis</translation>
     </message>
     <message>
-        <source>Down Prall</source>
-        <translation type="unfinished"/>
+        <source>Default</source>
+        <translation>numatyta</translation>
     </message>
     <message>
-        <source>Prall Prall</source>
+        <source>Baroque</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset Ornament Type value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Play</source>
+        <translation>Groti</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4533,7 +4726,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Direction</source>
-        <translation>kryptis</translation>
+        <translation>Kryptis</translation>
     </message>
     <message>
         <source>Auto</source>
@@ -4557,7 +4750,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Reset Number type value</source>
@@ -4580,7 +4773,7 @@ space unit</extracomment>
     <name>InspectorVBox</name>
     <message>
         <source>Vertical Frame</source>
-        <translation type="unfinished"/>
+        <translation>Vertikalusis rÄ—melis</translation>
     </message>
     <message>
         <source>mm</source>
@@ -4589,11 +4782,11 @@ space unit</extracomment>
     <message>
         <source>sp</source>
         <extracomment>spatium unit</extracomment>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Height</source>
-        <translation type="unfinished"/>
+        <translation>Aukštis</translation>
     </message>
     <message>
         <source>Vertical Frame Inspector</source>
@@ -4601,7 +4794,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
     <message>
         <source>Right margin</source>
@@ -4609,15 +4802,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Top gap value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti viršutinio tarpo reikšmę</translation>
     </message>
     <message>
         <source>Reset Bottom gap value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti apatinio tarpo reikšmę</translation>
     </message>
     <message>
         <source>Bottom margin</source>
-        <translation type="unfinished"/>
+        <translation>Apatinė paraštė</translation>
     </message>
     <message>
         <source>Left margin</source>
@@ -4625,31 +4818,31 @@ space unit</extracomment>
     </message>
     <message>
         <source>Top gap</source>
-        <translation type="unfinished"/>
+        <translation>Viršutinis tarpas</translation>
     </message>
     <message>
         <source>Bottom gap</source>
-        <translation type="unfinished"/>
+        <translation>Apatinis tarpas</translation>
     </message>
     <message>
         <source>Top margin</source>
-        <translation type="unfinished"/>
+        <translation>Viršutinė paraštė</translation>
     </message>
     <message>
         <source>Reset Left margin value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti kairiosios paraštės reikšmę</translation>
     </message>
     <message>
         <source>Reset Right margin value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti dešiniosios paraštės reikšmę</translation>
     </message>
     <message>
         <source>Reset Top margin value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti viršutinės paraštės reikšmę</translation>
     </message>
     <message>
         <source>Reset Bottom margin value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti apatinės paraštės reikšmę</translation>
     </message>
 </context>
 <context>
@@ -4680,7 +4873,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset value</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti reikšmę</translation>
     </message>
 </context>
 <context>
@@ -4754,11 +4947,11 @@ space unit</extracomment>
     <name>InstrumentsDialog</name>
     <message>
         <source>All instruments</source>
-        <translation type="unfinished"/>
+        <translation>Visi instrumentai</translation>
     </message>
     <message>
         <source>MuseScore: Instruments</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Instrumentai</translation>
     </message>
     <message>
         <source>Load</source>
@@ -4766,7 +4959,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Save</source>
-        <translation>IÅ¡saugoti</translation>
+        <translation>Įrašyti</translation>
     </message>
     <message>
         <source>OK</source>
@@ -4781,7 +4974,7 @@ space unit</extracomment>
     <name>InstrumentsWidget</name>
     <message>
         <source>MuseScore: Instruments</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Instrumentai</translation>
     </message>
     <message>
         <source>Instrument List</source>
@@ -4845,7 +5038,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Instrument list</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentų sąrašas</translation>
     </message>
     <message>
         <source>Clear Search box</source>
@@ -4864,7 +5057,7 @@ space unit</extracomment>
     <name>KeyEdit</name>
     <message>
         <source>Create Key Signature</source>
-        <translation>Tonacijos apibūdinimas</translation>
+        <translation>Prieraktiniai ženklai</translation>
     </message>
     <message>
         <source>Clear</source>
@@ -4880,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -4939,7 +5139,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>8</source>
-        <translation type="unfinished"/>
+        <translation>8</translation>
     </message>
     <message>
         <source>9</source>
@@ -4947,15 +5147,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>10</source>
-        <translation type="unfinished"/>
+        <translation>10</translation>
     </message>
     <message>
         <source>11</source>
-        <translation type="unfinished"/>
+        <translation>11</translation>
     </message>
     <message>
         <source>12</source>
-        <translation type="unfinished"/>
+        <translation>12</translation>
     </message>
     <message>
         <source>13</source>
@@ -4963,75 +5163,75 @@ space unit</extracomment>
     </message>
     <message>
         <source>14</source>
-        <translation type="unfinished"/>
+        <translation>14</translation>
     </message>
     <message>
         <source>15</source>
-        <translation type="unfinished"/>
+        <translation>15</translation>
     </message>
     <message>
         <source>16</source>
-        <translation type="unfinished"/>
+        <translation>16</translation>
     </message>
     <message>
         <source>17</source>
-        <translation type="unfinished"/>
+        <translation>17</translation>
     </message>
     <message>
         <source>18</source>
-        <translation type="unfinished"/>
+        <translation>18</translation>
     </message>
     <message>
         <source>19</source>
-        <translation type="unfinished"/>
+        <translation>19</translation>
     </message>
     <message>
         <source>20</source>
-        <translation type="unfinished"/>
+        <translation>20</translation>
     </message>
     <message>
         <source>21</source>
-        <translation type="unfinished"/>
+        <translation>21</translation>
     </message>
     <message>
         <source>22</source>
-        <translation type="unfinished"/>
+        <translation>22</translation>
     </message>
     <message>
         <source>23</source>
-        <translation type="unfinished"/>
+        <translation>23</translation>
     </message>
     <message>
         <source>24</source>
-        <translation type="unfinished"/>
+        <translation>24</translation>
     </message>
     <message>
         <source>25</source>
-        <translation type="unfinished"/>
+        <translation>25</translation>
     </message>
     <message>
         <source>26</source>
-        <translation type="unfinished"/>
+        <translation>26</translation>
     </message>
     <message>
         <source>27</source>
-        <translation type="unfinished"/>
+        <translation>27</translation>
     </message>
     <message>
         <source>28</source>
-        <translation type="unfinished"/>
+        <translation>28</translation>
     </message>
     <message>
         <source>29</source>
-        <translation type="unfinished"/>
+        <translation>29</translation>
     </message>
     <message>
         <source>30</source>
-        <translation type="unfinished"/>
+        <translation>30</translation>
     </message>
     <message>
         <source>31</source>
-        <translation type="unfinished"/>
+        <translation>31</translation>
     </message>
     <message>
         <source>Tag</source>
@@ -5039,7 +5239,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Description</source>
-        <translation type="unfinished"/>
+        <translation>Aprašas</translation>
     </message>
 </context>
 <context>
@@ -5058,7 +5258,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Below</source>
-        <translation>zemiau</translation>
+        <translation>Žemiau</translation>
     </message>
     <message>
         <source>Left</source>
@@ -5066,7 +5266,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>sp</source>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Up</source>
@@ -5074,11 +5274,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>90°</source>
-        <translation type="unfinished"/>
+        <translation>90°</translation>
     </message>
     <message>
         <source>45°</source>
-        <translation type="unfinished"/>
+        <translation>45°</translation>
     </message>
     <message>
         <source>Continue</source>
@@ -5105,15 +5305,15 @@ space unit</extracomment>
     <name>LoginDialog</name>
     <message>
         <source>Log in to MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>Prisijunkite prie MuseScore</translation>
     </message>
     <message>
         <source>Username or email</source>
-        <translation type="unfinished"/>
+        <translation>Naudotojo vardas ar el. paštas</translation>
     </message>
     <message>
         <source>Password</source>
-        <translation type="unfinished"/>
+        <translation>Slaptažodis</translation>
     </message>
 </context>
 <context>
@@ -5232,23 +5432,23 @@ space unit</extracomment>
     </message>
     <message>
         <source>12</source>
-        <translation type="unfinished"/>
+        <translation>12</translation>
     </message>
     <message>
         <source>15</source>
-        <translation type="unfinished"/>
+        <translation>15</translation>
     </message>
     <message>
         <source>21</source>
-        <translation type="unfinished"/>
+        <translation>21</translation>
     </message>
     <message>
         <source>8</source>
-        <translation type="unfinished"/>
+        <translation>8</translation>
     </message>
     <message>
         <source>16</source>
-        <translation type="unfinished"/>
+        <translation>16</translation>
     </message>
     <message>
         <source>32</source>
@@ -5321,7 +5521,8 @@ pickup measure</source>
     <message>
         <source>Show
 chord symbols</source>
-        <translation type="unfinished"/>
+        <translation>Rodyti
+akordų simbolius</translation>
     </message>
 </context>
 <context>
@@ -5339,7 +5540,7 @@ chord symbols</source>
     </message>
     <message>
         <source>Save as MP3</source>
-        <translation type="unfinished"/>
+        <translation>Įrašyti kaip MP3</translation>
     </message>
     <message>
         <source>MuseScore does not export MP3 files directly, but instead uses the freely available LAME library.  You must obtain %1 separately (for details check the handbook), and then locate the file for MuseScore.
@@ -5353,11 +5554,11 @@ Would you like to locate %2 now?</source>
     <name>MasterPalette</name>
     <message>
         <source>MuseScore: Master Palette</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: PagrindinÄ— PaletÄ—</translation>
     </message>
     <message>
         <source>Grace Notes</source>
-        <translation>Foršlagai</translation>
+        <translation>Puošmenos</translation>
     </message>
     <message>
         <source>Clefs</source>
@@ -5365,7 +5566,7 @@ Would you like to locate %2 now?</source>
     </message>
     <message>
         <source>Key Signatures</source>
-        <translation>Tonacijos</translation>
+        <translation>Prieraktiniai ženklai</translation>
     </message>
     <message>
         <source>Time Signatures</source>
@@ -5437,7 +5638,7 @@ Would you like to locate %2 now?</source>
     </message>
     <message>
         <source>Breaks & Spacers</source>
-        <translation type="unfinished"/>
+        <translation>Lūžiai ir tarpai</translation>
     </message>
     <message>
         <source>Bagpipe Embellishments</source>
@@ -5452,7 +5653,7 @@ Would you like to locate %2 now?</source>
     <name>MeasureProperties</name>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>cannot change measure length:
@@ -5476,7 +5677,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Staff</source>
-        <translation>Penklinių lapas</translation>
+        <translation>PenklinÄ—</translation>
     </message>
     <message>
         <source>Visible</source>
@@ -5520,11 +5721,11 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>8</source>
-        <translation type="unfinished"/>
+        <translation>8</translation>
     </message>
     <message>
         <source>16</source>
-        <translation type="unfinished"/>
+        <translation>16</translation>
     </message>
     <message>
         <source>32</source>
@@ -5548,7 +5749,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Layout stretch:</source>
-        <translation>išplėsčiau</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Measure number mode:</source>
@@ -5556,7 +5757,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Nominal:</source>
-        <translation>nominalas</translation>
+        <translation>nominalus</translation>
     </message>
     <message>
         <source>Actual:</source>
@@ -5599,7 +5800,7 @@ tuplet would cross measure</source>
     <name>MeasuresDialogBase</name>
     <message>
         <source>Mscore: Append Measures</source>
-        <translation>MuseScore: Taktų pridėjimas</translation>
+        <translation>MuseScore: Pridėti taktų</translation>
     </message>
     <message>
         <source>OK</source>
@@ -5611,7 +5812,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Append empty measures</source>
-        <translation type="unfinished"/>
+        <translation>Pridėti tuščių taktų</translation>
     </message>
     <message>
         <source>Number of measures to append:</source>
@@ -5660,7 +5861,7 @@ tuplet would cross measure</source>
     <name>MetaEditDialog</name>
     <message>
         <source>MuseScore Version:</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Versija:</translation>
     </message>
     <message>
         <source>Revision:</source>
@@ -5676,7 +5877,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>MuseScore: Score Information</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Partitūros Informacija</translation>
     </message>
 </context>
 <context>
@@ -5706,7 +5907,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Version: </source>
-        <translation>%1 laida </translation>
+        <translation>Versija: </translation>
     </message>
     <message>
         <source>Revision: %1</source>
@@ -5728,7 +5929,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Page</source>
-        <translation>Lapas</translation>
+        <translation>Puslapis</translation>
     </message>
     <message>
         <source>Rehearsal Mark</source>
@@ -5743,11 +5944,11 @@ tuplet would cross measure</source>
     <name>Ms::AlbumManager</name>
     <message>
         <source>MuseScore: Add Score</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: pridėti partitūrą</translation>
     </message>
     <message>
         <source>MuseScore: Load Album</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Įkelti albumą</translation>
     </message>
     <message>
         <source>MuseScore Files (*.mscz *.mscx)</source>
@@ -5755,7 +5956,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>MuseScore Album Files (*.album)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore albumo failai (*.album)</translation>
     </message>
     <message>
         <source>Error while creating score from album.</source>
@@ -5773,7 +5974,7 @@ tuplet would cross measure</source>
     <name>Ms::ArticulationProperties</name>
     <message>
         <source>normal</source>
-        <translation>normalus</translation>
+        <translation>paprastas</translation>
     </message>
 </context>
 <context>
@@ -5795,14 +5996,14 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Breath</source>
-        <translation>AtsikvÄ—pti</translation>
+        <translation>AtsikvÄ—pimas</translation>
     </message>
 </context>
 <context>
     <name>Ms::ChordRest</name>
     <message>
         <source>Duplet</source>
-        <translation>Dupletas</translation>
+        <translation>DuolÄ—</translation>
     </message>
     <message>
         <source>Triplet</source>
@@ -5814,27 +6015,27 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Sextuplet</source>
-        <translation>Sekstupletas</translation>
+        <translation>SekstolÄ—</translation>
     </message>
     <message>
         <source>Septuplet</source>
-        <translation>Septupletas</translation>
+        <translation>SeptolÄ—</translation>
     </message>
     <message>
         <source>Octuplet</source>
-        <translation>Oktupletas</translation>
+        <translation>OktolÄ—</translation>
     </message>
     <message>
         <source>Custom Tuplet</source>
-        <translation type="unfinished"/>
+        <translation>Pasirinktina ritminÄ— grupÄ—</translation>
     </message>
     <message>
         <source>Quintuplet</source>
-        <translation>Kvintupletas</translation>
+        <translation>KvintolÄ—</translation>
     </message>
     <message>
         <source>Nonuplet</source>
-        <translation>Nontupletas</translation>
+        <translation>NonolÄ—</translation>
     </message>
     <message>
         <source>%1 Start of %2</source>
@@ -5861,7 +6062,7 @@ tuplet would cross measure</source>
     <name>Ms::ChordStyleEditor</name>
     <message>
         <source>MuseScore: Chord Symbols Style Editor</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Akordų Simbolių Stiliaus Redaktorius</translation>
     </message>
 </context>
 <context>
@@ -5895,7 +6096,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>Velocity:</source>
-        <translation>Greitis:</translation>
+        <translation>Garso stiprumas:</translation>
     </message>
     <message>
         <source>offset</source>
@@ -5922,7 +6123,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>MuseScore: Open File</source>
-        <translation>MuseScore: Failo atvÄ—rimas</translation>
+        <translation>MuseScore: atverti failÄ…</translation>
     </message>
     <message>
         <source>Write File failed: </source>
@@ -5943,7 +6144,7 @@ failed: </source>
     <name>Ms::EditStaff</name>
     <message>
         <source>The instrument name is invalid.</source>
-        <translation type="unfinished"/>
+        <translation>Neteisingas instrumento pavadinimas.</translation>
     </message>
 </context>
 <context>
@@ -5951,7 +6152,7 @@ failed: </source>
     <message>
         <source>Open</source>
         <comment>string data</comment>
-        <translation>Atverti...</translation>
+        <translation>Atviras</translation>
     </message>
     <message>
         <source>Pitch</source>
@@ -6034,27 +6235,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -6111,7 +6312,7 @@ failed: </source>
     <name>Ms::Inspector</name>
     <message>
         <source>Inspector</source>
-        <translation>Objektų panelė</translation>
+        <translation>Objektų skydelis</translation>
     </message>
     <message>
         <source>Inspector Subwindow</source>
@@ -6122,7 +6323,7 @@ failed: </source>
     <name>Ms::InspectorBase</name>
     <message>
         <source>Inspector</source>
-        <translation>Objektų panelė</translation>
+        <translation>Objektų skydelis</translation>
     </message>
 </context>
 <context>
@@ -6202,7 +6403,7 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore: Load Instrument List</source>
-        <translation>MuseScore: Instrumentų sąrašo įkėlimas</translation>
+        <translation>MuseScore: Instrumentų komplekto įkėlimas</translation>
     </message>
     <message>
         <source>MuseScore: Open Instruments File</source>
@@ -6216,7 +6417,7 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore Instruments (*.xml)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Instrumentai (*.xml)</translation>
     </message>
 </context>
 <context>
@@ -6275,19 +6476,19 @@ failed: </source>
     <name>Ms::LoginDialog</name>
     <message>
         <source><a href="%1">Create an account</a></source>
-        <translation type="unfinished"/>
+        <translation><a href="%1">Sukurti paskyrÄ…</a></translation>
     </message>
     <message>
         <source><a href="%1">Forgot password?</a></source>
-        <translation type="unfinished"/>
+        <translation><a href="%1">Užmiršote slaptažodį?</a></translation>
     </message>
     <message>
         <source>Login error</source>
-        <translation type="unfinished"/>
+        <translation>Prisijungimo klaida</translation>
     </message>
     <message>
         <source>Please fill in your username and password</source>
-        <translation type="unfinished"/>
+        <translation>Prašome įvesti savo naudotojo vardą ir slaptažodį</translation>
     </message>
 </context>
 <context>
@@ -6298,11 +6499,11 @@ failed: </source>
     </message>
     <message>
         <source>Unsuccessful login. Please try again.</source>
-        <translation type="unfinished"/>
+        <translation>Prisjungimas nesėkmingas. Prašome bandyti dar kartą.</translation>
     </message>
     <message>
         <source>Sorry, wrong email address, username or password. Please check again. <a href="%1">Have you forgotten your password</a>?</source>
-        <translation type="unfinished"/>
+        <translation>Atleiskite, neteisingas el. pašto adresas, naudotojo vardas ar slaptažodis. Prašome patikrinti dar kartą. <a href="%1">Užmiršote savo slaptažodį</a>?</translation>
     </message>
     <message>
         <source>This account has been blocked.</source>
@@ -6334,7 +6535,7 @@ failed: </source>
     </message>
     <message>
         <source>Your MuseScore version is too old to use this feature.<br/> <a href="%1">Please upgrade first</a>.</source>
-        <translation type="unfinished"/>
+        <translation>Jūsų MuseScore versija yra pernelyg sena, kad galėtų naudoti šią ypatybę.<br/> <a href="%1">Iš pradžių, atsinaujinkite</a>.</translation>
     </message>
     <message>
         <source>Please check your Internet connection</source>
@@ -6423,17 +6624,17 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>Save changes to the score "%1"
 before closing?</source>
-        <translation>Ar išsaugoti partitūrą "%1"
-prieš užbaigiant darbą?</translation>
+        <translation>Ar įrašyti partitūrą "%1"
+prieš ją užveriant?</translation>
     </message>
     <message>
         <source>MuseScore Files (*.mscz *.mscx);;</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Failai (*.mscz *.mscx);;</translation>
     </message>
     <message>
         <source>MusicXML Files (*.xml *.mxl);;</source>
@@ -6441,11 +6642,11 @@ prieš užbaigiant darbą?</translation>
     </message>
     <message>
         <source>MIDI Files (*.mid *.midi *.kar);;</source>
-        <translation>MIDI Failai (*.mid *.midi *.kar);;</translation>
+        <translation>MIDI failai (*.mid *.midi *.kar);;</translation>
     </message>
     <message>
         <source>Muse Data Files (*.md);;</source>
-        <translation>Muse Duomeų failai (*.md);;</translation>
+        <translation>Muse duomenų failai (*.md);;</translation>
     </message>
     <message>
         <source>Capella Files (*.cap *.capx);;</source>
@@ -6509,19 +6710,19 @@ prieš užbaigiant darbą?</translation>
     </message>
     <message>
         <source>MuseScore: Save Image</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: įrašyti paveikslą</translation>
     </message>
     <message>
         <source>MuseScore: Load Palette</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Įkelti Paletę</translation>
     </message>
     <message>
         <source>MuseScore: Save Palette</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Įrašyti Paletę</translation>
     </message>
     <message>
         <source>MuseScore Palette (*.mpal)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore PaletÄ— (*.mpal)</translation>
     </message>
     <message>
         <source>MuseScore: Load Plugin</source>
@@ -6545,7 +6746,7 @@ prieš užbaigiant darbą?</translation>
     </message>
     <message>
         <source>MuseScore Drumset File (*.drm)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Mušamųjų komplekto failas (*.drm)</translation>
     </message>
     <message>
         <source>Standard MIDI File (*.mid)</source>
@@ -6577,11 +6778,11 @@ prieš užbaigiant darbą?</translation>
     </message>
     <message>
         <source>MuseScore: Export</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Eksportavimas</translation>
     </message>
     <message>
         <source>MuseScore: Save As</source>
-        <translation>MuseScore: Rašymas</translation>
+        <translation>MuseScore: Įrašymas</translation>
     </message>
     <message>
         <source>MuseScore: Export Parts</source>
@@ -6627,7 +6828,7 @@ Do you want to replace it?
     </message>
     <message>
         <source>Images (*.jpg *.jpeg *.png);;All (*)</source>
-        <translation type="unfinished"/>
+        <translation>Paveikslai (*.jpg *.jpeg *.png);;Visi (*)</translation>
     </message>
     <message>
         <source>Repeat measure sign</source>
@@ -6643,7 +6844,7 @@ Do you want to replace it?
     </message>
     <message>
         <source>Section break</source>
-        <translation type="unfinished"/>
+        <translation>Sekcijų skirtukas</translation>
     </message>
     <message>
         <source>Staff spacer down</source>
@@ -6679,7 +6880,7 @@ Do you want to replace it?
     </message>
     <message>
         <source>Breath</source>
-        <translation>AtsikvÄ—pti</translation>
+        <translation>AtsikvÄ—pimas</translation>
     </message>
     <message>
         <source>Caesura</source>
@@ -6715,19 +6916,19 @@ Do you want to replace it?
     </message>
     <message>
         <source>&Add</source>
-        <translation type="unfinished"/>
+        <translation>&PridÄ—ti</translation>
     </message>
     <message>
         <source>&Measures</source>
-        <translation type="unfinished"/>
+        <translation>T&aktai</translation>
     </message>
     <message>
         <source>&Frames</source>
-        <translation type="unfinished"/>
+        <translation>&RÄ—meliai</translation>
     </message>
     <message>
         <source>&Text</source>
-        <translation type="unfinished"/>
+        <translation>&Tekstas</translation>
     </message>
     <message>
         <source>&Lines</source>
@@ -6740,7 +6941,7 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>synthesizer</source>
-        <translation>Sintezatorius</translation>
+        <translation>sintezatorius</translation>
     </message>
     <message>
         <source>audio track</source>
@@ -6752,19 +6953,19 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>Transport Tools</source>
-        <translation>Transportavimo įrankiai</translation>
+        <translation>Transponavimo įrankiai</translation>
     </message>
     <message>
         <source>Page View</source>
-        <translation type="unfinished"/>
+        <translation>Puslapių rodinys</translation>
     </message>
     <message>
         <source>Continuous View</source>
-        <translation type="unfinished"/>
+        <translation>IÅ¡tisinis rodinys</translation>
     </message>
     <message>
         <source>Concert Pitch</source>
-        <translation>440 derinimas</translation>
+        <translation>Užrašoma taip, kaip skamba</translation>
     </message>
     <message>
         <source>&File</source>
@@ -6780,35 +6981,35 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>&Measure</source>
-        <translation type="unfinished"/>
+        <translation>T&aktas</translation>
     </message>
     <message>
         <source>&Voices</source>
-        <translation type="unfinished"/>
+        <translation>&Balsai</translation>
     </message>
     <message>
         <source>W&orkspaces</source>
-        <translation type="unfinished"/>
+        <translation>&Darbo sritys</translation>
     </message>
     <message>
         <source>&Preferences...</source>
-        <translation type="unfinished"/>
+        <translation>&Nuostatos...</translation>
     </message>
     <message>
         <source>&View</source>
-        <translation type="unfinished"/>
+        <translation>&Rodinys</translation>
     </message>
     <message>
         <source>Add N&ote</source>
-        <translation type="unfinished"/>
+        <translation>PridÄ—ti &NatÄ…</translation>
     </message>
     <message>
         <source>Add &Interval</source>
-        <translation type="unfinished"/>
+        <translation>PridÄ—ti &IntervalÄ…</translation>
     </message>
     <message>
         <source>T&uplets</source>
-        <translation type="unfinished"/>
+        <translation>RitminÄ—s gr&upÄ—s</translation>
     </message>
     <message>
         <source>&Layout</source>
@@ -6820,7 +7021,7 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>&Plugins</source>
-        <translation type="unfinished"/>
+        <translation>P&apildiniai</translation>
     </message>
     <message>
         <source>&Help</source>
@@ -6828,7 +7029,7 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>&Online Handbook</source>
-        <translation type="unfinished"/>
+        <translation>Ž&inynas internete</translation>
     </message>
     <message>
         <source>Check for &Update</source>
@@ -6846,7 +7047,7 @@ Restore session?</source>
     </message>
     <message>
         <source>MuseScore: Tuplet Error</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: ritminÄ—s grupÄ—s klaida</translation>
     </message>
     <message>
         <source>Cannot create tuplet with ratio %1 for duration %2</source>
@@ -6858,7 +7059,7 @@ Restore session?</source>
     </message>
     <message>
         <source>Undo Changes</source>
-        <translation type="unfinished"/>
+        <translation>Atšaukti pakeitimus</translation>
     </message>
     <message>
         <source>MuseScore: Read Workspace Name</source>
@@ -6883,23 +7084,23 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Chord Symbols Style File (*.xml)</source>
-        <translation type="unfinished"/>
+        <translation>Akordų simbolių stiliaus failas (*.xml)</translation>
     </message>
     <message>
         <source>MuseScore: Load Chord Symbols Style</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Įkelti Akordų Simbolių Stilių</translation>
     </message>
     <message>
         <source>MuseScore: Save Chord Symbols Style</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Įrašyti Akordų Simbolių Stilių</translation>
     </message>
     <message>
         <source>MuseScore: Insert Image</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Įterpti paveikslą</translation>
     </message>
     <message>
         <source>Report a Bug</source>
-        <translation type="unfinished"/>
+        <translation>Pranešti apie klaidą</translation>
     </message>
     <message>
         <source>System</source>
@@ -6941,15 +7142,15 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Clear Recent Files</source>
-        <translation type="unfinished"/>
+        <translation>IÅ¡valyti paskiausius failus</translation>
     </message>
     <message>
         <source>All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</source>
-        <translation type="unfinished"/>
+        <translation>Visi Palaikomi Failai (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</translation>
     </message>
     <message>
         <source>All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</source>
-        <translation type="unfinished"/>
+        <translation>Visi Palaikomi Failai (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</translation>
     </message>
     <message>
         <source>Zoom</source>
@@ -6981,7 +7182,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>MuseScore File (*.mscz)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Failas (*.mscz)</translation>
     </message>
     <message>
         <source>Uncompressed MuseScore File (*.mscx)</source>
@@ -6989,11 +7190,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>MusicXML File (*.xml)</source>
-        <translation type="unfinished"/>
+        <translation>MusicXML Failas (*.xml)</translation>
     </message>
     <message>
         <source>Compressed MusicXML File (*.mxl)</source>
-        <translation type="unfinished"/>
+        <translation>Glaudintas MusicXML File (*.mxl)</translation>
     </message>
     <message>
         <source>Show MIDI import panel</source>
@@ -7053,7 +7254,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Workspace name:</source>
-        <translation type="unfinished"/>
+        <translation>Darbo srities pavadinimas:</translation>
     </message>
     <message>
         <source>Score_and_Parts</source>
@@ -7093,11 +7294,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>No score</source>
-        <translation>nėra natų sąsiuvinio</translation>
+        <translation>Nėra partitūros</translation>
     </message>
     <message>
         <source>Edit mode</source>
-        <translation>redagavimas</translation>
+        <translation>Redagavimo veiksena</translation>
     </message>
     <message>
         <source>Text edit mode</source>
@@ -7125,15 +7326,15 @@ please choose a different name:</source>
     </message>
     <message>
         <source>&About...</source>
-        <translation type="unfinished"/>
+        <translation>&Apie...</translation>
     </message>
     <message>
         <source>About &Qt...</source>
-        <translation type="unfinished"/>
+        <translation>Apie &Qt...</translation>
     </message>
     <message>
         <source>About &MusicXML...</source>
-        <translation type="unfinished"/>
+        <translation>Apie &MusicXML...</translation>
     </message>
     <message>
         <source>Image Capture</source>
@@ -7165,7 +7366,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>MuseScore:</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore:</translation>
     </message>
     <message>
         <source>Cannot write into %1</source>
@@ -7175,6 +7376,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7188,36 +7393,36 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Retry</source>
-        <translation>Pakartoti</translation>
+        <translation>IÅ¡ naujo</translation>
     </message>
     <message>
         <source>Close this permanently</source>
-        <translation>Užverti nuolatinai</translation>
+        <translation>Užverti galutinai</translation>
     </message>
 </context>
 <context>
     <name>Ms::NewWizard</name>
     <message>
         <source>MuseScore: Create New Score</source>
-        <translation>MuseScore: Naujas kūrinys</translation>
+        <translation>MuseScore: nauja partitūra</translation>
     </message>
 </context>
 <context>
     <name>Ms::NewWizardPage1</name>
     <message>
         <source>Create New Score</source>
-        <translation>Partitūros sudarymas</translation>
+        <translation>Pradėti naują partitūrą</translation>
     </message>
     <message>
         <source>This wizard creates a new score</source>
-        <translation>Šis vedlys padės pradėti kūrinį</translation>
+        <translation>Šiuo vedliu pradėsite naują partitūrą</translation>
     </message>
 </context>
 <context>
     <name>Ms::NewWizardPage2</name>
     <message>
         <source>Create New Score</source>
-        <translation>Partitūros sudarymas</translation>
+        <translation>Pradėti naują partitūrą</translation>
     </message>
     <message>
         <source>Define a set of instruments. Each instrument is represented by one or more staves</source>
@@ -7228,18 +7433,18 @@ please choose a different name:</source>
     <name>Ms::NewWizardPage3</name>
     <message>
         <source>Create New Score</source>
-        <translation>Partitūros sudarymas</translation>
+        <translation>Pradėti naują partitūrą</translation>
     </message>
     <message>
         <source>Create Time Signature</source>
-        <translation>Kurti metrÄ…</translation>
+        <translation>Naujas metras</translation>
     </message>
 </context>
 <context>
     <name>Ms::NewWizardPage4</name>
     <message>
         <source>Create New Score</source>
-        <translation>Partitūros sudarymas</translation>
+        <translation>Pradėti naują partitūrą</translation>
     </message>
     <message>
         <source>Select Template File:</source>
@@ -7250,7 +7455,7 @@ please choose a different name:</source>
     <name>Ms::NewWizardPage5</name>
     <message>
         <source>Create New Score</source>
-        <translation>Partitūros sudarymas</translation>
+        <translation>Pradėti naują partitūrą</translation>
     </message>
     <message>
         <source>Select Key Signature and Tempo:</source>
@@ -7284,7 +7489,7 @@ please choose a different name:</source>
     <name>Ms::Note</name>
     <message>
         <source>Appoggiatura</source>
-        <translation>appoggiatura</translation>
+        <translation>Appoggiatura</translation>
     </message>
     <message>
         <source>Grace note after</source>
@@ -7304,7 +7509,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Voice: %1</source>
-        <translation type="unfinished"/>
+        <translation>Balsas: %1</translation>
     </message>
     <message>
         <source>Acciaccatura</source>
@@ -7335,7 +7540,7 @@ please choose a different name:</source>
     <name>Ms::OmrPanel</name>
     <message>
         <source>OMR Panel</source>
-        <translation type="unfinished"/>
+        <translation>OMR Skydelis</translation>
     </message>
 </context>
 <context>
@@ -7369,11 +7574,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Add new workspace</source>
-        <translation type="unfinished"/>
+        <translation>Pridėti naują darbo sritį</translation>
     </message>
     <message>
         <source>new Palette</source>
-        <translation type="unfinished"/>
+        <translation>nauja PaletÄ—</translation>
     </message>
     <message>
         <source>Single Palette</source>
@@ -7384,11 +7589,11 @@ please choose a different name:</source>
     <name>Ms::PaletteBoxButton</name>
     <message>
         <source>Palette Properties...</source>
-        <translation type="unfinished"/>
+        <translation>PaletÄ—s savybÄ—s...</translation>
     </message>
     <message>
         <source>Insert New Palette...</source>
-        <translation type="unfinished"/>
+        <translation>Įterpti naują paletę...</translation>
     </message>
     <message>
         <source>Move Palette Up</source>
@@ -7404,11 +7609,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Save Palette</source>
-        <translation type="unfinished"/>
+        <translation>Įrašyti paletę</translation>
     </message>
     <message>
         <source>Load Palette</source>
-        <translation type="unfinished"/>
+        <translation>Įkelti paletę</translation>
     </message>
     <message>
         <source>Delete Palette</source>
@@ -7426,7 +7631,7 @@ please choose a different name:</source>
     <name>Ms::PianoTools</name>
     <message>
         <source>Piano Keyboard</source>
-        <translation type="unfinished"/>
+        <translation>Pianino klaviatūra</translation>
     </message>
 </context>
 <context>
@@ -7441,7 +7646,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>untitled</source>
@@ -7473,7 +7678,7 @@ Save before closing?</source>
     <name>Ms::PreferenceDialog</name>
     <message>
         <source>The language will be changed once you restart MuseScore.</source>
-        <translation type="unfinished"/>
+        <translation>Kalba bus perjungta, kai iš naujo paleisite MuseScore.</translation>
     </message>
     <message>
         <source>Choose Notepaper</source>
@@ -7481,7 +7686,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>Choose Background Wallpaper</source>
-        <translation>Pasirinkti fono paveisklÄ…</translation>
+        <translation>Pasirinkti fono paveikslÄ…</translation>
     </message>
     <message>
         <source>Choose Default Style</source>
@@ -7493,7 +7698,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>Choose Instrument List</source>
-        <translation>Pasirinkti instrumentų komplektą</translation>
+        <translation>Pasirinkti instrumentų sąrašą</translation>
     </message>
     <message>
         <source>Instrument List (*.xml)</source>
@@ -7513,7 +7718,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>Choose Default Style for Imports</source>
-        <translation type="unfinished"/>
+        <translation>Pasirinkite Numatytąjį Stilių Importavimams</translation>
     </message>
     <message>
         <source>Choose Score Folder</source>
@@ -7545,7 +7750,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>MuseScore Files (*.mscz *.mscx);;All (*)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Failai (*.mscz *.mscx);;Visi (*)</translation>
     </message>
     <message>
         <source>SoundFont Folders</source>
@@ -7556,7 +7761,7 @@ Save before closing?</source>
     <name>Ms::ResourceManager</name>
     <message>
         <source>Languages</source>
-        <translation type="unfinished"/>
+        <translation>Kalbos</translation>
     </message>
     <message>
         <source>%1 KB</source>
@@ -7568,26 +7773,26 @@ Save before closing?</source>
     </message>
     <message>
         <source>No update</source>
-        <translation type="unfinished"/>
+        <translation>NÄ—ra atnaujinimo</translation>
     </message>
     <message>
         <source>Updating</source>
-        <translation type="unfinished"/>
+        <translation>Atnaujinama</translation>
     </message>
     <message>
         <source>Failed, try again</source>
-        <translation type="unfinished"/>
+        <translation>Nepavyko, bandykite dar</translation>
     </message>
     <message>
         <source>Updated</source>
-        <translation type="unfinished"/>
+        <translation>Atnaujinta</translation>
     </message>
 </context>
 <context>
     <name>Ms::Rest</name>
     <message>
         <source>Voice: %1</source>
-        <translation type="unfinished"/>
+        <translation>Balsas: %1</translation>
     </message>
     <message>
         <source>%1; Duration: %2; %3</source>
@@ -7598,14 +7803,14 @@ Save before closing?</source>
     <name>Ms::Score</name>
     <message>
         <source>The style file is not compatible with this version of MuseScore.</source>
-        <translation type="unfinished"/>
+        <translation>Stiliaus failas nÄ—ra suderinamas su Å¡ia MuseScore versija.</translation>
     </message>
     <message>
         <source>The following file is locked: 
 %1 
 
 Try saving to a different location.</source>
-        <translation>Failas %1 užsirakinęs. Pabandykite įrašyti kitoje vietoje.</translation>
+        <translation>Failas %1 užrakintas. Pabandykite įrašyti kitoje vietoje.</translation>
     </message>
     <message>
         <source>Open Temp File
@@ -7645,10 +7850,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7660,6 +7861,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7704,7 +7909,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Create New Score</source>
-        <translation>Partitūros sudarymas</translation>
+        <translation>Pradėti naują partitūrą</translation>
     </message>
     <message>
         <source>Custom Templates</source>
@@ -7712,7 +7917,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Getting Started</source>
-        <translation type="unfinished"/>
+        <translation>Darbo pradžia</translation>
     </message>
 </context>
 <context>
@@ -7739,7 +7944,7 @@ failed: %2</source>
     </message>
     <message>
         <source>MuseScore: Save As</source>
-        <translation>MuseScore: Rašymas</translation>
+        <translation>MuseScore: Įrašyti kaip</translation>
     </message>
     <message>
         <source>Layer</source>
@@ -7807,7 +8012,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Section Break Properties...</source>
-        <translation type="unfinished"/>
+        <translation>Sekcijų skirtuko savybės...</translation>
     </message>
     <message>
         <source>Change Instrument...</source>
@@ -7847,7 +8052,7 @@ failed: %2</source>
     </message>
     <message>
         <source>Split Staff...</source>
-        <translation>Laužti penklinę...</translation>
+        <translation>Skaidyti penklinÄ™...</translation>
     </message>
     <message>
         <source>Object Debugger</source>
@@ -7862,7 +8067,7 @@ first create some staves</source>
     <message>
         <source>No measure selected:
 Please select a measure and try again</source>
-        <translation>Nepasirinkote takto: Pasirinkite taktÄ… ir pakartokite bandymÄ….</translation>
+        <translation>Nepasirinkote takto: Pasirinkite taktÄ… ir bandykite dar kartÄ….</translation>
     </message>
     <message>
         <source>Fretboard Diagram Properties...</source>
@@ -7886,7 +8091,7 @@ Please select a measure and try again</source>
     </message>
     <message>
         <source>Resolution (%1 DPI)...</source>
-        <translation type="unfinished"/>
+        <translation>Raiška (%1 taškų colyje)...</translation>
     </message>
     <message>
         <source>Hide Courtesy Time Signature</source>
@@ -7941,11 +8146,11 @@ Please select a range of measures to join and try again</source>
     </message>
     <message>
         <source>Save As (Print Mode)...</source>
-        <translation type="unfinished"/>
+        <translation>Įrašyti kaip (Spausdinimo veiksena)...</translation>
     </message>
     <message>
         <source>Save As (Screenshot Mode)...</source>
-        <translation type="unfinished"/>
+        <translation>Įrašyti kaip (Ekrano kopijos veiksena)...</translation>
     </message>
     <message>
         <source>Cannot determine file type</source>
@@ -7957,7 +8162,7 @@ Please select a range of measures to join and try again</source>
     </message>
     <message>
         <source>Cannot paste into tuplet</source>
-        <translation type="unfinished"/>
+        <translation>Negalima įdėti į ritminę grupę</translation>
     </message>
     <message>
         <source>Tuplet cannot cross barlines</source>
@@ -7965,6 +8170,11 @@ Please select a range of measures to join and try again</source>
     </message>
     <message>
         <source>Transparent background</source>
+        <translation>Permatomas fonas</translation>
+    </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7998,7 +8208,7 @@ Please select a range of measures to join and try again</source>
     <name>Ms::SelectionListWidget</name>
     <message>
         <source>Selection filter</source>
-        <translation type="unfinished"/>
+        <translation>Žymėjimo filtras</translation>
     </message>
     <message>
         <source>Use Tab and Backtab to move through the check boxes</source>
@@ -8016,7 +8226,7 @@ Please select a range of measures to join and try again</source>
     <name>Ms::ShortcutCaptureDialog</name>
     <message>
         <source>Shortcut conflicts with </source>
-        <translation>Gretasis klavišas konfliktuoja su </translation>
+        <translation>Trumpinys konfliktuoja su </translation>
     </message>
     <message>
         <source>Shortcut conflicts with</source>
@@ -8031,7 +8241,7 @@ Please select a range of measures to join and try again</source>
     <name>Ms::StaffTextProperties</name>
     <message>
         <source>normal</source>
-        <translation>normalus</translation>
+        <translation>paprastas</translation>
     </message>
     <message>
         <source>MuseScore: System Text Properties</source>
@@ -8039,7 +8249,7 @@ Please select a range of measures to join and try again</source>
     </message>
     <message>
         <source>MuseScore: Staff Text Properties</source>
-        <translation>MuseScore: Penklinių tekstų savybės</translation>
+        <translation>MuseScore: PenklinÄ—s teksto savybÄ—s</translation>
     </message>
 </context>
 <context>
@@ -8091,7 +8301,7 @@ Please select a range of measures to join and try again</source>
     </message>
     <message>
         <source>Align left</source>
-        <translation>kairinÄ— lygiuotÄ—</translation>
+        <translation>KairinÄ— lygiuotÄ—</translation>
     </message>
     <message>
         <source>Align center</source>
@@ -8120,14 +8330,14 @@ Please select a range of measures to join and try again</source>
     <message>
         <source>sp</source>
         <comment>spatium unit</comment>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
 </context>
 <context>
     <name>Ms::TextProperties</name>
     <message>
         <source>MuseScore: Text Properties</source>
-        <translation>MuseScore: Teksto savybÄ—s</translation>
+        <translation>MuseScore: teksto savybÄ—s</translation>
     </message>
 </context>
 <context>
@@ -8185,7 +8395,7 @@ please choose a different name:</source>
     <name>Ms::TimeDialog</name>
     <message>
         <source>MuseScore: Time Signatures</source>
-        <translation>MuseScore: Metrai</translation>
+        <translation>MuseScore: metrai</translation>
     </message>
 </context>
 <context>
@@ -8207,15 +8417,15 @@ please choose a different name:</source>
     <name>Ms::UpdateChecker</name>
     <message>
         <source>An update for MuseScore is available: <a href="%1">MuseScore %2 r.%3</a></source>
-        <translation>Programos atnaujinimo nuoroda: <a href="%1">MuseScore %2 r.%3</a></translation>
+        <translation>Yra MuseScore naujinys: <a href="%1">MuseScore %2 r.%3</a></translation>
     </message>
     <message>
         <source>Update Available</source>
-        <translation>Yra atnaujinimų</translation>
+        <translation>Yra naujinys</translation>
     </message>
     <message>
         <source>No Update Available</source>
-        <translation>Atnaujinimų nėra</translation>
+        <translation>Nėra naujinių</translation>
     </message>
 </context>
 <context>
@@ -8297,11 +8507,11 @@ please choose a different name:</source>
     <name>Ms::Workspace</name>
     <message>
         <source>Advanced</source>
-        <translation type="unfinished"/>
+        <translation>IÅ¡plÄ—stinÄ—s</translation>
     </message>
     <message>
         <source>Basic</source>
-        <translation type="unfinished"/>
+        <translation>PagrindinÄ—s</translation>
     </message>
 </context>
 <context>
@@ -8390,7 +8600,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Subtitle:</source>
-        <translation>Subtitras:</translation>
+        <translation>Paantraštė:</translation>
     </message>
     <message>
         <source>Composer:</source>
@@ -8398,7 +8608,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Lyricist:</source>
-        <translation>Poetas:</translation>
+        <translation>Žodžių autorius:</translation>
     </message>
     <message>
         <source>Copyright:</source>
@@ -8414,7 +8624,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Subtitle</source>
-        <translation>Papildomas pavadinimas</translation>
+        <translation>Paantraštė</translation>
     </message>
     <message>
         <source>Insert subtitle here</source>
@@ -8430,7 +8640,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Lyricist</source>
-        <translation type="unfinished"/>
+        <translation>Žodžių autorius</translation>
     </message>
     <message>
         <source>Insert lyricist's name here</source>
@@ -8465,7 +8675,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Reset</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti</translation>
     </message>
 </context>
 <context>
@@ -8515,7 +8725,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Landscape</source>
-        <translation>Gulsčiai</translation>
+        <translation>Gulsčias</translation>
     </message>
     <message>
         <source>Height:</source>
@@ -8543,11 +8753,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Odd Page Margins</source>
-        <translation>Nelyginių lapų paraštės</translation>
+        <translation>Nelyginių puslapių paraštės</translation>
     </message>
     <message>
         <source>Even Page Margins</source>
-        <translation>Lyginių lapų paraštės</translation>
+        <translation>Lyginių puslapių paraštės</translation>
     </message>
     <message>
         <source>Preview</source>
@@ -8610,7 +8820,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Breaks && Spacers</source>
-        <translation type="unfinished"/>
+        <translation>Lūžiai ir tarpai</translation>
     </message>
     <message>
         <source>Fingering</source>
@@ -8642,7 +8852,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Lines</source>
-        <translation>Penklinės ženklai</translation>
+        <translation>Linijos</translation>
     </message>
     <message>
         <source>Diminuendo</source>
@@ -8694,7 +8904,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Text line</source>
-        <translation>Teksto linija</translation>
+        <translation>Teksto eilutÄ—</translation>
     </message>
     <message>
         <source>Line</source>
@@ -8796,15 +9006,15 @@ failed: </source>
     </message>
     <message>
         <source>Start repeat</source>
-        <translation>Pakartojimo pradžia</translation>
+        <translation>Kartojimo pradžia</translation>
     </message>
     <message>
         <source>End repeat</source>
-        <translation>Pakartojimo pabaiga</translation>
+        <translation>Kartojimo pabaiga</translation>
     </message>
     <message>
         <source>End-start repeat</source>
-        <translation>Pakartojimo pabaiga-pradžia</translation>
+        <translation>Kartojimo pabaiga-pradžia</translation>
     </message>
     <message>
         <source>Fretboard Diagrams</source>
@@ -8819,19 +9029,19 @@ failed: </source>
     </message>
     <message>
         <source>Palette Cell Properties</source>
-        <translation>PaletÄ—s laukelio savybÄ—s</translation>
+        <translation>PaletÄ—s langelio savybÄ—s</translation>
     </message>
     <message>
         <source>Name:</source>
-        <translation>Paavdinimas:</translation>
+        <translation>Pavadinimas:</translation>
     </message>
     <message>
         <source>sp</source>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Content offset</source>
-        <translation type="unfinished"/>
+        <translation>Turinio poslinkis</translation>
     </message>
     <message>
         <source>Y:</source>
@@ -8858,11 +9068,11 @@ failed: </source>
     </message>
     <message>
         <source>Name:</source>
-        <translation>Paavdinimas:</translation>
+        <translation>Pavadinimas:</translation>
     </message>
     <message>
         <source>sp</source>
-        <translation>vnt</translation>
+        <translation>tarp.</translation>
     </message>
     <message>
         <source>Scale:</source>
@@ -8925,7 +9135,7 @@ failed: </source>
     </message>
     <message>
         <source>Mute</source>
-        <translation>Tildyti</translation>
+        <translation>Nutildyti</translation>
     </message>
     <message>
         <source>Solo</source>
@@ -8933,7 +9143,7 @@ failed: </source>
     </message>
     <message>
         <source>Drumset</source>
-        <translation>Mušamieji</translation>
+        <translation>Mušamųjų rinkinys</translation>
     </message>
     <message>
         <source>Sound:</source>
@@ -9038,7 +9248,7 @@ failed: </source>
     <name>PlayPanelBase</name>
     <message>
         <source>MuseScore: Play Panel</source>
-        <translation>MuseScore: Grotuvo panelÄ—</translation>
+        <translation>MuseScore: Grotuvo skydelis</translation>
     </message>
     <message>
         <source>001.01</source>
@@ -9115,7 +9325,7 @@ failed: </source>
     </message>
     <message>
         <source>File</source>
-        <translation type="unfinished"/>
+        <translation>Failas</translation>
     </message>
     <message>
         <source>Help</source>
@@ -9135,7 +9345,7 @@ failed: </source>
     </message>
     <message>
         <source>Save</source>
-        <translation>IÅ¡saugoti</translation>
+        <translation>Įrašyti</translation>
     </message>
     <message>
         <source>Manual</source>
@@ -9166,7 +9376,7 @@ failed: </source>
     <name>PluginManager</name>
     <message>
         <source>Plugin Manager</source>
-        <translation type="unfinished"/>
+        <translation>Papildinių Tvarkytuvė</translation>
     </message>
     <message>
         <source>Define Shortcut</source>
@@ -9178,7 +9388,7 @@ failed: </source>
     </message>
     <message>
         <source>Version:</source>
-        <translation>%1 laida </translation>
+        <translation>Versija:</translation>
     </message>
     <message>
         <source>Name:</source>
@@ -9201,11 +9411,11 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore Preferences</source>
-        <translation>Nuostatos</translation>
+        <translation>MuseScore nuostatos</translation>
     </message>
     <message>
         <source>Reset All Preferences to Default</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti visas numatytÄ…sias nuostatas</translation>
     </message>
     <message>
         <source>General</source>
@@ -9229,7 +9439,7 @@ failed: </source>
     </message>
     <message>
         <source>OSC remote control</source>
-        <translation type="unfinished"/>
+        <translation>OSC nuotolinis valdymas</translation>
     </message>
     <message>
         <source>Style</source>
@@ -9237,11 +9447,11 @@ failed: </source>
     </message>
     <message>
         <source>Icon size:</source>
-        <translation type="unfinished"/>
+        <translation>Piktogramos dydis:</translation>
     </message>
     <message>
         <source>Animations</source>
-        <translation type="unfinished"/>
+        <translation>Animacijos</translation>
     </message>
     <message>
         <source>Canvas</source>
@@ -9261,11 +9471,11 @@ failed: </source>
     </message>
     <message>
         <source>Paper</source>
-        <translation type="unfinished"/>
+        <translation>Popierius</translation>
     </message>
     <message>
         <source>Miscellaneous</source>
-        <translation type="unfinished"/>
+        <translation>Įvairūs</translation>
     </message>
     <message>
         <source>Enable MIDI input</source>
@@ -9301,7 +9511,7 @@ failed: </source>
     </message>
     <message>
         <source>View</source>
-        <translation type="unfinished"/>
+        <translation>Rodinys</translation>
     </message>
     <message>
         <source>default scale for new score views</source>
@@ -9309,7 +9519,7 @@ failed: </source>
     </message>
     <message>
         <source>Default Files</source>
-        <translation type="unfinished"/>
+        <translation>Numatytieji Failai</translation>
     </message>
     <message>
         <source>Style:</source>
@@ -9321,7 +9531,7 @@ failed: </source>
     </message>
     <message>
         <source>Use JACK MIDI</source>
-        <translation type="unfinished"/>
+        <translation>Naudoti JACK MIDI</translation>
     </message>
     <message>
         <source>Remember last connection(s)</source>
@@ -9449,7 +9659,7 @@ failed: </source>
     </message>
     <message>
         <source>Import layout</source>
-        <translation type="unfinished"/>
+        <translation>Importuoti išdėstymą</translation>
     </message>
     <message>
         <source>Import system and page breaks</source>
@@ -9481,7 +9691,7 @@ failed: </source>
     </message>
     <message>
         <source>Export</source>
-        <translation>Eksportas</translation>
+        <translation>Eksportavimas</translation>
     </message>
     <message>
         <source>PNG/SVG</source>
@@ -9489,7 +9699,7 @@ failed: </source>
     </message>
     <message>
         <source>Transparent background</source>
-        <translation type="unfinished"/>
+        <translation>Permatomas fonas</translation>
     </message>
     <message>
         <source>Expand repeats</source>
@@ -9517,7 +9727,7 @@ failed: </source>
     </message>
     <message>
         <source>Shortcuts</source>
-        <translation>Greitieji klavišai</translation>
+        <translation>Trumpiniai</translation>
     </message>
     <message>
         <source>Action</source>
@@ -9525,11 +9735,11 @@ failed: </source>
     </message>
     <message>
         <source>Shortcut</source>
-        <translation>Greitasis klavišas</translation>
+        <translation>Trumpinys</translation>
     </message>
     <message>
         <source>Reset Shortcut to Default</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti numatytąjį trumpinį</translation>
     </message>
     <message>
         <source>Define...</source>
@@ -9541,7 +9751,7 @@ failed: </source>
     </message>
     <message>
         <source>Update</source>
-        <translation>Atnaujinimas</translation>
+        <translation>Naujinys</translation>
     </message>
     <message>
         <source>Automatic Update Check</source>
@@ -9569,7 +9779,7 @@ failed: </source>
     </message>
     <message>
         <source>Disable antialiased drawing</source>
-        <translation>Išlyginimų išjungimas</translation>
+        <translation>Glodinimo išjungimas</translation>
     </message>
     <message>
         <source>Uncheck this to speed up drawing</source>
@@ -9577,7 +9787,7 @@ failed: </source>
     </message>
     <message>
         <source>Draw antialiased</source>
-        <translation>Rašyti su išlyginimais</translation>
+        <translation>Braižyti glodinant</translation>
     </message>
     <message>
         <source>Default duration:</source>
@@ -9585,11 +9795,11 @@ failed: </source>
     </message>
     <message>
         <source>MIDI remote control</source>
-        <translation type="unfinished"/>
+        <translation>MIDI nuotolinis valdymas</translation>
     </message>
     <message>
         <source>Rewind</source>
-        <translation>Atsukti į pradžią</translation>
+        <translation>Atsukti pradžios link</translation>
     </message>
     <message>
         <source>Toggle play</source>
@@ -9617,7 +9827,7 @@ failed: </source>
     </message>
     <message>
         <source>Tie</source>
-        <translation>UodegÄ—lÄ—</translation>
+        <translation>Užlaikymas</translation>
     </message>
     <message>
         <source>Play</source>
@@ -9629,11 +9839,11 @@ failed: </source>
     </message>
     <message>
         <source>Instrument list 2:</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentų sąrašas 2:</translation>
     </message>
     <message>
         <source>Instrument list 1:</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentų sąrašas 1:</translation>
     </message>
     <message>
         <source>Style for part:</source>
@@ -9649,15 +9859,15 @@ failed: </source>
     </message>
     <message>
         <source>JACK audio server</source>
-        <translation type="unfinished"/>
+        <translation>JACK audio serveris</translation>
     </message>
     <message>
         <source>Character Set Used When Importing Binary Files</source>
-        <translation type="unfinished"/>
+        <translation>Ženklų rinkinys, naudojamas importuojant dvejetainius failus</translation>
     </message>
     <message>
         <source>Shortest note:</source>
-        <translation type="unfinished"/>
+        <translation>Trumpiausia nata:</translation>
     </message>
     <message>
         <source>Double augmentation dot</source>
@@ -9665,7 +9875,7 @@ failed: </source>
     </message>
     <message>
         <source>Save every:</source>
-        <translation>Saugoti kas</translation>
+        <translation>Įrašinėti kas</translation>
     </message>
     <message>
         <source>Proximity for selecting elements:</source>
@@ -9673,20 +9883,20 @@ failed: </source>
     </message>
     <message>
         <source>Default zoom:</source>
-        <translation type="unfinished"/>
+        <translation>Numatytasis mastelis:</translation>
     </message>
     <message>
         <source>Resolution DPI:</source>
-        <translation type="unfinished"/>
+        <translation>Raiška, taškų colyje:</translation>
     </message>
     <message>
         <source>Port number:</source>
         <extracomment>The UDP port number on which the MuseScore OSC server will listen on</extracomment>
-        <translation type="unfinished"/>
+        <translation>Prievado numeris:</translation>
     </message>
     <message>
         <source>Use JACK Audio</source>
-        <translation type="unfinished"/>
+        <translation>Naudoti JACK Audio</translation>
     </message>
     <message>
         <source>Use JACK Transport</source>
@@ -9718,7 +9928,7 @@ failed: </source>
     </message>
     <message>
         <source>The language will be changed once you restart MuseScore.</source>
-        <translation type="unfinished"/>
+        <translation>Kalba bus pakeista, kai tik iš naujo paleisite MuseScore.</translation>
     </message>
     <message>
         <source>Start with score</source>
@@ -9742,7 +9952,7 @@ failed: </source>
     </message>
     <message>
         <source>Port number</source>
-        <translation type="unfinished"/>
+        <translation>Prievado numeris</translation>
     </message>
     <message>
         <source>Select style</source>
@@ -9894,7 +10104,7 @@ failed: </source>
     </message>
     <message>
         <source>Paper Color</source>
-        <translation type="unfinished"/>
+        <translation>Popieriaus spalva</translation>
     </message>
     <message>
         <source>Enable MIDI Input</source>
@@ -10002,7 +10212,7 @@ failed: </source>
     </message>
     <message>
         <source>Default zoom</source>
-        <translation type="unfinished"/>
+        <translation>Numatytasis mastelis</translation>
     </message>
     <message>
         <source>Choose Instrument list 1</source>
@@ -10014,11 +10224,11 @@ failed: </source>
     </message>
     <message>
         <source>Instrument list 1</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentų sąrašas 1</translation>
     </message>
     <message>
         <source>Insert path to a instrument list file</source>
-        <translation type="unfinished"/>
+        <translation>Įveskite kelią iki instrumentų komplekto failo</translation>
     </message>
     <message>
         <source>Insert path to style file</source>
@@ -10050,7 +10260,7 @@ failed: </source>
     </message>
     <message>
         <source>Instrument list 2</source>
-        <translation type="unfinished"/>
+        <translation>Instrumentų sąrašas 2</translation>
     </message>
     <message>
         <source>Choose Instrument list 2</source>
@@ -10142,7 +10352,7 @@ failed: </source>
     </message>
     <message>
         <source>Shortest note</source>
-        <translation type="unfinished"/>
+        <translation>Trumpiausia nata</translation>
     </message>
     <message>
         <source>Choose the shortest note value</source>
@@ -10154,7 +10364,7 @@ failed: </source>
     </message>
     <message>
         <source>Resolution DPI</source>
-        <translation type="unfinished"/>
+        <translation>Raiška, taškų colyje</translation>
     </message>
     <message>
         <source>Choose resolution DPI</source>
@@ -10170,7 +10380,7 @@ failed: </source>
     </message>
     <message>
         <source>Reset Shortcut to default</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti numatytąjį klavišą</translation>
     </message>
     <message>
         <source>Define</source>
@@ -10234,23 +10444,23 @@ failed: </source>
     </message>
     <message>
         <source>Update translations</source>
-        <translation type="unfinished"/>
+        <translation>Atnaujinti vertimus</translation>
     </message>
     <message>
         <source>Dark</source>
-        <translation type="unfinished"/>
+        <translation>Tamsus</translation>
     </message>
     <message>
         <source>Light</source>
-        <translation type="unfinished"/>
+        <translation>Å viesus</translation>
     </message>
     <message>
         <source>Enable MIDI remote control</source>
-        <translation type="unfinished"/>
+        <translation>Įjungti MIDI nuotolinį valdymą</translation>
     </message>
     <message>
         <source>Is active</source>
-        <translation type="unfinished"/>
+        <translation>Yra aktyvus</translation>
     </message>
     <message>
         <source>Record</source>
@@ -10262,23 +10472,23 @@ failed: </source>
     </message>
     <message>
         <source>Show play panel</source>
-        <translation type="unfinished"/>
+        <translation>Rodyti grotuvo valdymo skydelį</translation>
     </message>
     <message>
         <source>Show navigator</source>
-        <translation type="unfinished"/>
+        <translation>Rodyti žvalgiklį</translation>
     </message>
     <message>
         <source>OSC Remote Control</source>
-        <translation type="unfinished"/>
+        <translation>OSC nuotolinis valdymas</translation>
     </message>
     <message>
         <source>MIDI Remote Control</source>
-        <translation type="unfinished"/>
+        <translation>MIDI Nuotolinis Valdymas</translation>
     </message>
     <message>
         <source>Show start center</source>
-        <translation type="unfinished"/>
+        <translation>Rodyti pradžios centrą</translation>
     </message>
     <message>
         <source>Undo is active</source>
@@ -10294,7 +10504,7 @@ failed: </source>
     </message>
     <message>
         <source>Play whole chord when adding note</source>
-        <translation type="unfinished"/>
+        <translation>Pridedant natÄ…, groti visÄ… akordÄ…</translation>
     </message>
     <message>
         <source>SoundFont folders</source>
@@ -10330,27 +10540,27 @@ failed: </source>
     </message>
     <message>
         <source>Folders</source>
-        <translation type="unfinished"/>
+        <translation>Aplankai</translation>
     </message>
     <message>
         <source>Images:</source>
-        <translation type="unfinished"/>
+        <translation>Paveikslai:</translation>
     </message>
     <message>
         <source>Scores:</source>
-        <translation type="unfinished"/>
+        <translation>Partitūros:</translation>
     </message>
     <message>
         <source>Styles:</source>
-        <translation type="unfinished"/>
+        <translation>Stiliai:</translation>
     </message>
     <message>
         <source>Templates:</source>
-        <translation type="unfinished"/>
+        <translation>Å ablonai</translation>
     </message>
     <message>
         <source>Plugins:</source>
-        <translation type="unfinished"/>
+        <translation>Papildiniai:</translation>
     </message>
     <message>
         <source>SoundFonts:</source>
@@ -10358,10 +10568,18 @@ failed: </source>
     </message>
     <message>
         <source>Check for new version of MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>Tikrinti ar yra naujesnÄ— MuseScore versija</translation>
     </message>
     <message>
         <source>Filter</source>
+        <translation>Filtras</translation>
+    </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -10387,7 +10605,7 @@ Please select a single note or lyrics and retry operation
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>No note or figured bass selected:
@@ -10502,7 +10720,7 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>File '%1' is not a valid MusicXML file</source>
-        <translation type="unfinished"/>
+        <translation>Failas '%1' nÄ—ra taisyklingas MusicXML failas</translation>
     </message>
     <message>
         <source>Error at line %1 column %2: %3
@@ -10512,12 +10730,14 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     <message>
         <source>Could not open MusicXML file
 %1</source>
-        <translation type="unfinished"/>
+        <translation>Nepavyko atverti MusicXML failo
+%1</translation>
     </message>
     <message>
         <source>Could not open compressed MusicXML file
 %1</source>
-        <translation type="unfinished"/>
+        <translation>Nepavyko atverti suglaudinto MusicXML failo
+%1</translation>
     </message>
     <message>
         <source>normal</source>
@@ -10610,7 +10830,8 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     <message>
         <source>Internal error: Could not open resource musicxml.xsd
 </source>
-        <translation type="unfinished"/>
+        <translation>Vidinė klaida: Nepavyko atverti ištekliaus musicxml.xsd
+</translation>
     </message>
     <message>
         <source>Tab. balalaika</source>
@@ -10689,7 +10910,7 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Save Album</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Įrašyti Albumą</translation>
     </message>
     <message>
         <source>Write Album failed: </source>
@@ -10721,7 +10942,7 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Load Style Failed</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Stiliaus įkėlimas nepavyko</translation>
     </message>
     <message>
         <source>MuseScore: Load Languages Failed:</source>
@@ -10747,11 +10968,11 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore File (*.mscz)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Failas (*.mscz)</translation>
     </message>
     <message>
         <source>MuseScore Files (*.album)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Failai (*.album)</translation>
     </message>
     <message>
         <source>Overwrite?</source>
@@ -10790,7 +11011,7 @@ Do you want to overwrite it?</source>
     <name>Resource</name>
     <message>
         <source>MuseScore Resources</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore IÅ¡tekliai</translation>
     </message>
     <message>
         <source>Tab 1</source>
@@ -10802,15 +11023,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Filename</source>
-        <translation type="unfinished"/>
+        <translation>Failo pavadinimas</translation>
     </message>
     <message>
         <source>File Size</source>
-        <translation type="unfinished"/>
+        <translation>Failo dydis</translation>
     </message>
     <message>
         <source>Install/Update</source>
-        <translation type="unfinished"/>
+        <translation>Įdiegti/Atnaujinti</translation>
     </message>
     <message>
         <source>Tab 2</source>
@@ -10837,14 +11058,14 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Nothing selected</source>
-        <translation type="unfinished"/>
+        <translation>Nieko nepasirinkta</translation>
     </message>
 </context>
 <context>
     <name>SectionBreakProperties</name>
     <message>
         <source>MuseScore: Section Break Properties</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Sekcijų Skirtuko Savybės</translation>
     </message>
     <message>
         <source>Pause:</source>
@@ -11069,7 +11290,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Description</source>
-        <translation type="unfinished"/>
+        <translation>Aprašas</translation>
     </message>
     <message>
         <source>Actions for selected channel:</source>
@@ -11176,11 +11397,11 @@ Do you want to overwrite it?</source>
     <name>Startcenter</name>
     <message>
         <source>Start Center</source>
-        <translation type="unfinished"/>
+        <translation>Pradžios Centras</translation>
     </message>
     <message>
         <source>Open a score...</source>
-        <translation type="unfinished"/>
+        <translation>Atverti partitūrą...</translation>
     </message>
     <message>
         <source>Close</source>
@@ -11197,6 +11418,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11391,7 +11620,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Text margin:</source>
-        <translation type="unfinished"/>
+        <translation>Teksto paraštė:</translation>
     </message>
     <message>
         <source>Border radius:</source>
@@ -11419,7 +11648,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Text color</source>
-        <translation type="unfinished"/>
+        <translation>Teksto spalva</translation>
     </message>
     <message>
         <source>Horizontal offset to reference point</source>
@@ -11459,7 +11688,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Enable text frame</source>
-        <translation type="unfinished"/>
+        <translation>Įjungti teksto rėmelį</translation>
     </message>
     <message>
         <source>Draw circled frame</source>
@@ -11479,7 +11708,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Frame inner margin</source>
-        <translation type="unfinished"/>
+        <translation>Vidinė rėmelio paraštė</translation>
     </message>
     <message>
         <source>Corner round</source>
@@ -11487,7 +11716,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Text background color</source>
-        <translation type="unfinished"/>
+        <translation>Teksto fono spalva</translation>
     </message>
     <message>
         <source>Frame color</source>
@@ -11531,7 +11760,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Lyricist</source>
-        <translation type="unfinished"/>
+        <translation>Žodžių autorius</translation>
     </message>
     <message>
         <source>Lyrics Odd Lines</source>
@@ -11595,7 +11824,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Chord Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Akordo Simbolis</translation>
     </message>
     <message>
         <source>Rehearsal Mark</source>
@@ -11716,11 +11945,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>8</source>
-        <translation type="unfinished"/>
+        <translation>8</translation>
     </message>
     <message>
         <source>16</source>
-        <translation type="unfinished"/>
+        <translation>16</translation>
     </message>
     <message>
         <source>32</source>
@@ -11806,11 +12035,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>8</source>
-        <translation type="unfinished"/>
+        <translation>8</translation>
     </message>
     <message>
         <source>16</source>
-        <translation type="unfinished"/>
+        <translation>16</translation>
     </message>
     <message>
         <source>32</source>
@@ -12053,7 +12282,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Transpose chord symbols</source>
-        <translation type="unfinished"/>
+        <translation>Transponuoti akordų simbolius</translation>
     </message>
     <message>
         <source>Câ™­ major / Aâ™­ minor</source>
@@ -12117,7 +12346,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>By Interval</source>
-        <translation type="unfinished"/>
+        <translation>Pagal intervalÄ…</translation>
     </message>
     <message>
         <source>Transpose Diatonically</source>
@@ -12256,11 +12485,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>You're logged in as</source>
-        <translation type="unfinished"/>
+        <translation>JÅ«s esate prisijungÄ™ kaip</translation>
     </message>
     <message>
         <source>USERNAME</source>
-        <translation type="unfinished"/>
+        <translation>NAUDOTOJO VARDAS</translation>
     </message>
     <message>
         <source>Sign out</source>
@@ -12276,7 +12505,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Description</source>
-        <translation type="unfinished"/>
+        <translation>Aprašas</translation>
     </message>
     <message>
         <source>License</source>
@@ -12363,11 +12592,11 @@ failed: </source>
     </message>
     <message>
         <source>Invalid XML version string.</source>
-        <translation type="unfinished"/>
+        <translation>Netaisyklinga XML versijos eilutÄ—.</translation>
     </message>
     <message>
         <source>Unsupported XML version.</source>
-        <translation type="unfinished"/>
+        <translation>Nepalaikoma XML versija.</translation>
     </message>
     <message>
         <source>The standalone pseudo attribute must appear after the encoding.</source>
@@ -12426,7 +12655,7 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>SoundFont %1 already loaded</source>
@@ -12572,7 +12801,7 @@ failed: </source>
     </message>
     <message>
         <source>Save</source>
-        <translation>IÅ¡saugoti</translation>
+        <translation>Įrašyti</translation>
     </message>
     <message>
         <source>Save score to file</source>
@@ -12600,11 +12829,11 @@ failed: </source>
     </message>
     <message>
         <source>Save a copy of the score in addition to the current file</source>
-        <translation>Šalia darbinio partitūros failo išsaugoti papildomą kopiją.</translation>
+        <translation>Šalia darbinio partitūros failo įrašyti papildomą kopiją.</translation>
     </message>
     <message>
         <source>Export...</source>
-        <translation type="unfinished"/>
+        <translation>Eksportuoti...</translation>
     </message>
     <message>
         <source>Export score</source>
@@ -13020,7 +13249,7 @@ failed: </source>
     </message>
     <message>
         <source>Reset Beam Mode</source>
-        <translation>Atkurti sijų veikseną</translation>
+        <translation>Atstatyti sijų veikseną</translation>
     </message>
     <message>
         <source>Reset beam mode</source>
@@ -13028,7 +13257,7 @@ failed: </source>
     </message>
     <message>
         <source>Reset beam mode of selected measures</source>
-        <translation>Atkurti sijų veikseną pažymėtame takte</translation>
+        <translation>Atstatyti sijų veikseną pažymėtame takte</translation>
     </message>
     <message>
         <source>Flip direction</source>
@@ -13264,7 +13493,7 @@ failed: </source>
     </message>
     <message>
         <source>Append One Measure</source>
-        <translation type="unfinished"/>
+        <translation>PridÄ—ti vienÄ… taktÄ…</translation>
     </message>
     <message>
         <source>Append Measures...</source>
@@ -13276,7 +13505,7 @@ failed: </source>
     </message>
     <message>
         <source>Insert One Measure</source>
-        <translation type="unfinished"/>
+        <translation>Įterpti vieną taktą</translation>
     </message>
     <message>
         <source>Insert Measures...</source>
@@ -13292,11 +13521,11 @@ failed: </source>
     </message>
     <message>
         <source>Insert Text Frame</source>
-        <translation type="unfinished"/>
+        <translation>Įterpti teksto rėmelį</translation>
     </message>
     <message>
         <source>Append Text Frame</source>
-        <translation type="unfinished"/>
+        <translation>Pridėti teksto rėmelį</translation>
     </message>
     <message>
         <source>Insert Vertical Frame</source>
@@ -13543,12 +13772,8 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>PaletÄ—s</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
-        <translation>Grotuvo panelÄ—</translation>
+        <translation>Grotuvo skydelis</translation>
     </message>
     <message>
         <source>Navigator</source>
@@ -13560,7 +13785,7 @@ failed: </source>
     </message>
     <message>
         <source>Mixer</source>
-        <translation>Mikseris</translation>
+        <translation>Maišytuvas</translation>
     </message>
     <message>
         <source>Status Bar</source>
@@ -13583,10 +13808,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13612,7 +13833,7 @@ failed: </source>
     </message>
     <message>
         <source>Add frame text</source>
-        <translation type="unfinished"/>
+        <translation>PridÄ—ti rÄ—melio tekstÄ…</translation>
     </message>
     <message>
         <source>Title</source>
@@ -13640,7 +13861,7 @@ failed: </source>
     </message>
     <message>
         <source>Lyricist</source>
-        <translation type="unfinished"/>
+        <translation>Žodžių autorius</translation>
     </message>
     <message>
         <source>Add lyricist text</source>
@@ -13676,7 +13897,7 @@ failed: </source>
     </message>
     <message>
         <source>Play Previous Chord</source>
-        <translation type="unfinished"/>
+        <translation>Groti ankstesnį akordą</translation>
     </message>
     <message>
         <source>Play Previous Measure</source>
@@ -13684,7 +13905,7 @@ failed: </source>
     </message>
     <message>
         <source>Play Next Chord</source>
-        <translation type="unfinished"/>
+        <translation>Groti kitÄ… akordÄ…</translation>
     </message>
     <message>
         <source>Play Next Measure</source>
@@ -13752,7 +13973,7 @@ failed: </source>
     </message>
     <message>
         <source>&Transpose...</source>
-        <translation type="unfinished"/>
+        <translation>&Transponuoti...</translation>
     </message>
     <message>
         <source>Transpose</source>
@@ -13828,7 +14049,7 @@ failed: </source>
     </message>
     <message>
         <source>Toggle Section Break</source>
-        <translation type="unfinished"/>
+        <translation>Perjungti sekcijų skirtuką</translation>
     </message>
     <message>
         <source>Edit Element</source>
@@ -13836,11 +14057,11 @@ failed: </source>
     </message>
     <message>
         <source>Reset</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti</translation>
     </message>
     <message>
         <source>Reset user settings</source>
-        <translation type="unfinished"/>
+        <translation>Atstatyti naudotojo nustatymus</translation>
     </message>
     <message>
         <source>Debugger</source>
@@ -13848,7 +14069,7 @@ failed: </source>
     </message>
     <message>
         <source>Reset Stretch</source>
-        <translation>Atkurti taktų išplėtimus</translation>
+        <translation>Atstatyti taktų išplėtimus</translation>
     </message>
     <message>
         <source>Reset measure stretch</source>
@@ -13856,11 +14077,11 @@ failed: </source>
     </message>
     <message>
         <source>Show Invisible</source>
-        <translation>PaslÄ—ptÄ… rodyti</translation>
+        <translation>Rodyti nematomus</translation>
     </message>
     <message>
         <source>Show Unprintable</source>
-        <translation type="unfinished"/>
+        <translation>Rodyti nespausdinamuosius</translation>
     </message>
     <message>
         <source>Show Frames</source>
@@ -13868,7 +14089,7 @@ failed: </source>
     </message>
     <message>
         <source>Show Page Margins</source>
-        <translation type="unfinished"/>
+        <translation>Rodyti puslapio paraštes</translation>
     </message>
     <message>
         <source>Insert Special Characters...</source>
@@ -13904,7 +14125,7 @@ failed: </source>
     </message>
     <message>
         <source>Text...</source>
-        <translation type="unfinished"/>
+        <translation>Tekstas...</translation>
     </message>
     <message>
         <source>Edit text style</source>
@@ -13943,10 +14164,6 @@ failed: </source>
         <translation>Kartoti pasirinktÄ…</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -13956,7 +14173,7 @@ failed: </source>
     </message>
     <message>
         <source>Documents Side by Side</source>
-        <translation>Partitūros šalia viena kitos</translation>
+        <translation>Partitūros viena šalia kitos</translation>
     </message>
     <message>
         <source>Display documents side by side</source>
@@ -13992,11 +14209,11 @@ failed: </source>
     </message>
     <message>
         <source>Show OMR image</source>
-        <translation type="unfinished"/>
+        <translation>Rodyti OMR paveikslÄ…</translation>
     </message>
     <message>
         <source>Full Screen</source>
-        <translation type="unfinished"/>
+        <translation>Visas ekranas</translation>
     </message>
     <message>
         <source>Re-Pitch Mode</source>
@@ -14008,7 +14225,7 @@ failed: </source>
     </message>
     <message>
         <source>Piano Keyboard</source>
-        <translation type="unfinished"/>
+        <translation>Pianino klavišai</translation>
     </message>
     <message>
         <source>Additional Media...</source>
@@ -14028,11 +14245,11 @@ failed: </source>
     </message>
     <message>
         <source>Album...</source>
-        <translation type="unfinished"/>
+        <translation>Albumas...</translation>
     </message>
     <message>
         <source>Album</source>
-        <translation type="unfinished"/>
+        <translation>Albumas</translation>
     </message>
     <message>
         <source>Layers...</source>
@@ -14052,7 +14269,7 @@ failed: </source>
     </message>
     <message>
         <source>Inspector</source>
-        <translation>Objektų panelė</translation>
+        <translation>Objektų skydelis</translation>
     </message>
     <message>
         <source>Show inspector</source>
@@ -14064,11 +14281,11 @@ failed: </source>
     </message>
     <message>
         <source>Toggle loop playback</source>
-        <translation type="unfinished"/>
+        <translation>Perjungti ciklinį grojimą</translation>
     </message>
     <message>
         <source>Loop playback</source>
-        <translation type="unfinished"/>
+        <translation>Ciklinis grojimas</translation>
     </message>
     <message>
         <source>Metronome</source>
@@ -14076,11 +14293,11 @@ failed: </source>
     </message>
     <message>
         <source>Toggle metronome playback</source>
-        <translation type="unfinished"/>
+        <translation>Perjungti metronomo grojimÄ…</translation>
     </message>
     <message>
         <source>Play metronome during playback</source>
-        <translation type="unfinished"/>
+        <translation>Grojimo metu groti metronomÄ…</translation>
     </message>
     <message>
         <source>Toggle count-in playback</source>
@@ -14100,11 +14317,11 @@ failed: </source>
     </message>
     <message>
         <source>Transpose Up</source>
-        <translation type="unfinished"/>
+        <translation>Transponuoti aukštyn</translation>
     </message>
     <message>
         <source>Transpose Down</source>
-        <translation type="unfinished"/>
+        <translation>Transponuoti žemyn</translation>
     </message>
     <message>
         <source>Master Palette...</source>
@@ -14276,7 +14493,7 @@ failed: </source>
     </message>
     <message>
         <source>Chord Symbols...</source>
-        <translation type="unfinished"/>
+        <translation>Akordų simboliai...</translation>
     </message>
     <message>
         <source>Edit chord symbols style</source>
@@ -14284,7 +14501,7 @@ failed: </source>
     </message>
     <message>
         <source>Chord Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Akordo Simbolis</translation>
     </message>
     <message>
         <source>Add chord symbol</source>
@@ -14316,7 +14533,7 @@ failed: </source>
     </message>
     <message>
         <source>OMR Panel</source>
-        <translation type="unfinished"/>
+        <translation>OMR Skydelis</translation>
     </message>
     <message>
         <source>Fret 10 (TAB)</source>
@@ -14452,7 +14669,7 @@ failed: </source>
     </message>
     <message>
         <source>Insert one measure</source>
-        <translation type="unfinished"/>
+        <translation>Įterpti vieną taktą</translation>
     </message>
     <message>
         <source>Insert horizontal frame</source>
@@ -14460,7 +14677,7 @@ failed: </source>
     </message>
     <message>
         <source>Insert text frame</source>
-        <translation type="unfinished"/>
+        <translation>Įterpti teksto rėmelį</translation>
     </message>
     <message>
         <source>Insert vertical frame</source>
@@ -14476,7 +14693,7 @@ failed: </source>
     </message>
     <message>
         <source>Save Online...</source>
-        <translation type="unfinished"/>
+        <translation>Įrašyti internete...</translation>
     </message>
     <message>
         <source>Save score on MuseScore.com</source>
@@ -14508,7 +14725,7 @@ failed: </source>
     </message>
     <message>
         <source>Start Center</source>
-        <translation type="unfinished"/>
+        <translation>Pradžios Centras</translation>
     </message>
     <message>
         <source>Toggle create multimeasure rest</source>
@@ -14548,11 +14765,11 @@ failed: </source>
     </message>
     <message>
         <source>Plugin Manager...</source>
-        <translation type="unfinished"/>
+        <translation>Papildinių Tvarkytuvė...</translation>
     </message>
     <message>
         <source>Resource Manager...</source>
-        <translation type="unfinished"/>
+        <translation>Išteklių tvarkytuvė</translation>
     </message>
     <message>
         <source>Add/Remove Line Breaks...</source>
@@ -14572,7 +14789,7 @@ failed: </source>
     </message>
     <message>
         <source>File: Save as</source>
-        <translation type="unfinished"/>
+        <translation>Failas: Įrašyti kaip</translation>
     </message>
     <message>
         <source>Save selection</source>
@@ -14748,11 +14965,11 @@ failed: </source>
     </message>
     <message>
         <source>Append one measure</source>
-        <translation type="unfinished"/>
+        <translation>PridÄ—ti vienÄ… taktÄ…</translation>
     </message>
     <message>
         <source>Append text frame</source>
-        <translation type="unfinished"/>
+        <translation>Pridėti teksto rėmelį</translation>
     </message>
     <message>
         <source>Insert fretboard diagram frame</source>
@@ -14804,7 +15021,7 @@ failed: </source>
     </message>
     <message>
         <source>Eighth Note</source>
-        <translation>astunta nata</translation>
+        <translation type="unfinished"/>
     </message>
     <message>
         <source>Note duration: Eighth</source>
@@ -14936,7 +15153,7 @@ failed: </source>
     </message>
     <message>
         <source>Selection filter</source>
-        <translation type="unfinished"/>
+        <translation>Žymėjimo filtras</translation>
     </message>
     <message>
         <source>MIDI import panel</source>
@@ -14952,7 +15169,7 @@ failed: </source>
     </message>
     <message>
         <source>Play previous chord</source>
-        <translation type="unfinished"/>
+        <translation>Groti ankstesnį akordą</translation>
     </message>
     <message>
         <source>Play previous measure</source>
@@ -14960,7 +15177,7 @@ failed: </source>
     </message>
     <message>
         <source>Play next chord</source>
-        <translation type="unfinished"/>
+        <translation>Groti kitÄ… akordÄ…</translation>
     </message>
     <message>
         <source>Play next measure</source>
@@ -14984,27 +15201,27 @@ failed: </source>
     </message>
     <message>
         <source>Exchange voice 1-2</source>
-        <translation type="unfinished"/>
+        <translation>Sukeisti balsus 1-2</translation>
     </message>
     <message>
         <source>Exchange voice 1-3</source>
-        <translation type="unfinished"/>
+        <translation>Sukeisti balsus 1-3</translation>
     </message>
     <message>
         <source>Exchange voice 1-4</source>
-        <translation type="unfinished"/>
+        <translation>Sukeisti balsus 1-4</translation>
     </message>
     <message>
         <source>Exchange voice 2-3</source>
-        <translation type="unfinished"/>
+        <translation>Sukeisti balsus 2-3</translation>
     </message>
     <message>
         <source>Exchange voice 2-4</source>
-        <translation type="unfinished"/>
+        <translation>Sukeisti balsus 2-4</translation>
     </message>
     <message>
         <source>Exchange voice 3-4</source>
-        <translation type="unfinished"/>
+        <translation>Sukeisti balsus 3-4</translation>
     </message>
     <message>
         <source>Repeat Last Command</source>
@@ -15020,7 +15237,7 @@ failed: </source>
     </message>
     <message>
         <source>Toggle section break</source>
-        <translation type="unfinished"/>
+        <translation>Perjungti sekcijų skirtuką</translation>
     </message>
     <message>
         <source>Edit element</source>
@@ -15032,15 +15249,15 @@ failed: </source>
     </message>
     <message>
         <source>Show unprintable</source>
-        <translation type="unfinished"/>
+        <translation>Rodyti nespausdinamuosius</translation>
     </message>
     <message>
         <source>Show frames</source>
-        <translation type="unfinished"/>
+        <translation>Rodyti rÄ—melius</translation>
     </message>
     <message>
         <source>Show page margins</source>
-        <translation type="unfinished"/>
+        <translation>Rodyti puslapio paraštes</translation>
     </message>
     <message>
         <source>Insert special characters</source>
@@ -15080,11 +15297,11 @@ failed: </source>
     </message>
     <message>
         <source>Zoom in</source>
-        <translation type="unfinished"/>
+        <translation>Didinti</translation>
     </message>
     <message>
         <source>Zoom out</source>
-        <translation type="unfinished"/>
+        <translation>Mažinti</translation>
     </message>
     <message>
         <source>Mirror Note Head</source>
@@ -15124,11 +15341,11 @@ failed: </source>
     </message>
     <message>
         <source>Show OMR Image</source>
-        <translation type="unfinished"/>
+        <translation>Rodyti OMR PaveikslÄ…</translation>
     </message>
     <message>
         <source>Full screen</source>
-        <translation type="unfinished"/>
+        <translation>Visas ekranas</translation>
     </message>
     <message>
         <source>Enable Snap to Horizontal Grid</source>
@@ -15144,7 +15361,7 @@ failed: </source>
     </message>
     <message>
         <source>Piano keyboard</source>
-        <translation type="unfinished"/>
+        <translation>Pianino klavišai</translation>
     </message>
     <message>
         <source>Split measure</source>
@@ -15160,11 +15377,11 @@ failed: </source>
     </message>
     <message>
         <source>Next score</source>
-        <translation type="unfinished"/>
+        <translation>Kita partitūra</translation>
     </message>
     <message>
         <source>Previous score</source>
-        <translation type="unfinished"/>
+        <translation>Ankstesnė partitūra</translation>
     </message>
     <message>
         <source>Plugin creator</source>
@@ -15172,15 +15389,15 @@ failed: </source>
     </message>
     <message>
         <source>Plugin manager</source>
-        <translation type="unfinished"/>
+        <translation>Papildinių tvarkytuvė</translation>
     </message>
     <message>
         <source>Resource manager</source>
-        <translation type="unfinished"/>
+        <translation>Išteklių tvarkytuvė</translation>
     </message>
     <message>
         <source>Show OMR panel</source>
-        <translation type="unfinished"/>
+        <translation>Rodyti OMR skydelį</translation>
     </message>
     <message>
         <source>Loop In</source>
@@ -15200,11 +15417,11 @@ failed: </source>
     </message>
     <message>
         <source>Transpose up</source>
-        <translation type="unfinished"/>
+        <translation>Transponuoti aukštyn</translation>
     </message>
     <message>
         <source>Transpose down</source>
-        <translation type="unfinished"/>
+        <translation>Transponuoti žemyn</translation>
     </message>
     <message>
         <source>Toggle view mode</source>
@@ -15388,7 +15605,7 @@ failed: </source>
     </message>
     <message>
         <source>Start center</source>
-        <translation type="unfinished"/>
+        <translation>Pradžios centras</translation>
     </message>
     <message>
         <source>Longa Advance (F.B./Chord Symbol)</source>
@@ -15496,7 +15713,7 @@ failed: </source>
     </message>
     <message>
         <source>Import PDF...</source>
-        <translation type="unfinished"/>
+        <translation>Importuoti PDF...</translation>
     </message>
     <message>
         <source>Import PDF</source>
@@ -15510,12 +15727,28 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>PaletÄ—s</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Tempo užrašas</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>Cannot rewrite measures:
@@ -15743,7 +15976,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>c#</source>
-        <translation type="unfinished"/>
+        <translation>c#</translation>
     </message>
     <message>
         <source>d</source>
@@ -15751,7 +15984,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>d#</source>
-        <translation type="unfinished"/>
+        <translation>d#</translation>
     </message>
     <message>
         <source>e</source>
@@ -15763,7 +15996,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>f#</source>
-        <translation type="unfinished"/>
+        <translation>f#</translation>
     </message>
     <message>
         <source>g</source>
@@ -15771,7 +16004,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>g#</source>
-        <translation type="unfinished"/>
+        <translation>g#</translation>
     </message>
     <message>
         <source>a</source>
@@ -15779,11 +16012,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>a#</source>
-        <translation type="unfinished"/>
+        <translation>a#</translation>
     </message>
     <message>
         <source>b</source>
-        <translation type="unfinished"/>
+        <translation>b</translation>
     </message>
     <message>
         <source>C</source>
@@ -15791,7 +16024,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>C#</translation>
     </message>
     <message>
         <source>D</source>
@@ -15799,7 +16032,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>D#</source>
-        <translation type="unfinished"/>
+        <translation>D#</translation>
     </message>
     <message>
         <source>E</source>
@@ -15811,7 +16044,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>F#</translation>
     </message>
     <message>
         <source>G</source>
@@ -15819,7 +16052,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>G#</source>
-        <translation type="unfinished"/>
+        <translation>G#</translation>
     </message>
     <message>
         <source>A</source>
@@ -15827,7 +16060,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>A#</source>
-        <translation type="unfinished"/>
+        <translation>A#</translation>
     </message>
     <message>
         <source>B</source>
@@ -16559,6 +16792,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -16580,7 +16817,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Slap</source>
-        <translation type="unfinished"/>
+        <translation>Pliaukštelėjimas</translation>
     </message>
     <message>
         <source>Scratch Push</source>
@@ -16612,7 +16849,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Hand Clap</source>
-        <translation type="unfinished"/>
+        <translation>Pliaukštelėjimas delnais</translation>
     </message>
     <message>
         <source>Electric Snare</source>
@@ -16664,7 +16901,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Cowbell</source>
-        <translation type="unfinished"/>
+        <translation>Kleketas</translation>
     </message>
     <message>
         <source>Vibraslap</source>
@@ -16704,11 +16941,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Cabasa</source>
-        <translation type="unfinished"/>
+        <translation>Kabasa</translation>
     </message>
     <message>
         <source>Maracas</source>
-        <translation type="unfinished"/>
+        <translation>Marakos</translation>
     </message>
     <message>
         <source>Short Whistle</source>
@@ -16728,7 +16965,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Claves</source>
-        <translation type="unfinished"/>
+        <translation>Strypeliai</translation>
     </message>
     <message>
         <source>Hi Wood Block</source>
@@ -16776,11 +17013,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Chinese Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Kiniška lėkštė</translation>
     </message>
     <message>
         <source>Splash Cymbal</source>
-        <translation type="unfinished"/>
+        <translation>Aukšta lėkštė</translation>
     </message>
     <message>
         <source>Crash Cymbal 2</source>
@@ -16792,7 +17029,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Castanets</source>
-        <translation type="unfinished"/>
+        <translation>KastanjetÄ—s</translation>
     </message>
     <message>
         <source>Square Click</source>
@@ -16815,7 +17052,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>C#</translation>
     </message>
     <message>
         <source>D</source>
@@ -16823,7 +17060,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Eb</source>
-        <translation type="unfinished"/>
+        <translation>Eb</translation>
     </message>
     <message>
         <source>E</source>
@@ -16835,7 +17072,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>F#</translation>
     </message>
     <message>
         <source>G</source>
@@ -16843,7 +17080,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ab</source>
-        <translation type="unfinished"/>
+        <translation>Ab</translation>
     </message>
     <message>
         <source>A</source>
@@ -16866,7 +17103,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>C#</translation>
     </message>
     <message>
         <source>D</source>
@@ -16874,7 +17111,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Eb</source>
-        <translation type="unfinished"/>
+        <translation>Eb</translation>
     </message>
     <message>
         <source>E</source>
@@ -16886,7 +17123,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>F#</translation>
     </message>
     <message>
         <source>G</source>
@@ -16894,7 +17131,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Ab</source>
-        <translation type="unfinished"/>
+        <translation>Ab</translation>
     </message>
     <message>
         <source>A</source>
@@ -17221,16 +17458,15 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Horizontal Frame</source>
-        <translation>horizontalus remelis
-</translation>
+        <translation>Horizontalus rÄ—melis</translation>
     </message>
     <message>
         <source>Vertical Frame</source>
-        <translation type="unfinished"/>
+        <translation>Vertikalusis rÄ—melis</translation>
     </message>
     <message>
         <source>Text Frame</source>
-        <translation type="unfinished"/>
+        <translation>Teksto rÄ—melis</translation>
     </message>
     <message>
         <source>Fretboard Diagram Frame</source>
@@ -17250,7 +17486,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Chord Symbol</source>
-        <translation type="unfinished"/>
+        <translation>Akordo Simbolis</translation>
     </message>
     <message>
         <source>Tremolo Bar</source>
@@ -17273,19 +17509,19 @@ Measure is not empty</source>
     <name>fotomode</name>
     <message>
         <source>Resize to A</source>
-        <translation type="unfinished"/>
+        <translation>Keisti dydį į A</translation>
     </message>
     <message>
         <source>Resize to B</source>
-        <translation type="unfinished"/>
+        <translation>Keisti dydį į B</translation>
     </message>
     <message>
         <source>Resize to C</source>
-        <translation type="unfinished"/>
+        <translation>Keisti dydį į C</translation>
     </message>
     <message>
         <source>Resize to D</source>
-        <translation type="unfinished"/>
+        <translation>Keisti dydį į D</translation>
     </message>
     <message>
         <source>Set size A</source>
@@ -17458,11 +17694,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Do</source>
-        <translation>do</translation>
+        <translation>Do</translation>
     </message>
     <message>
         <source>Re</source>
-        <translation>re</translation>
+        <translation>Re</translation>
     </message>
     <message>
         <source>Fa</source>
@@ -17546,7 +17782,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Chord Symbols</source>
-        <translation type="unfinished"/>
+        <translation>Akordų simboliai</translation>
     </message>
     <message>
         <source>Other Text</source>
@@ -17602,19 +17838,19 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Voice 1</source>
-        <translation type="unfinished"/>
+        <translation>Balsas 1</translation>
     </message>
     <message>
         <source>Voice 2</source>
-        <translation type="unfinished"/>
+        <translation>Balsas 2</translation>
     </message>
     <message>
         <source>Voice 3</source>
-        <translation type="unfinished"/>
+        <translation>Balsas 3</translation>
     </message>
     <message>
         <source>Voice 4</source>
-        <translation type="unfinished"/>
+        <translation>Balsas 4</translation>
     </message>
 </context>
 <context>
@@ -17643,7 +17879,7 @@ Measure is not empty</source>
     <name>styles_directory</name>
     <message>
         <source>Styles</source>
-        <translation>Stlius</translation>
+        <translation>Stiliai</translation>
     </message>
 </context>
 <context>
@@ -17671,10 +17907,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
@@ -17684,7 +17916,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>c#</source>
-        <translation type="unfinished"/>
+        <translation>c#</translation>
     </message>
     <message>
         <source>d</source>
@@ -17692,7 +17924,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>d#</source>
-        <translation type="unfinished"/>
+        <translation>d#</translation>
     </message>
     <message>
         <source>e</source>
@@ -17704,7 +17936,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>f#</source>
-        <translation type="unfinished"/>
+        <translation>f#</translation>
     </message>
     <message>
         <source>g</source>
@@ -17712,7 +17944,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>g#</source>
-        <translation type="unfinished"/>
+        <translation>g#</translation>
     </message>
     <message>
         <source>a</source>
@@ -17720,11 +17952,11 @@ Measure is not empty</source>
     </message>
     <message>
         <source>a#</source>
-        <translation type="unfinished"/>
+        <translation>a#</translation>
     </message>
     <message>
         <source>b</source>
-        <translation type="unfinished"/>
+        <translation>b</translation>
     </message>
     <message>
         <source>C</source>
@@ -17732,7 +17964,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>C#</source>
-        <translation type="unfinished"/>
+        <translation>C#</translation>
     </message>
     <message>
         <source>D</source>
@@ -17740,7 +17972,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>D#</source>
-        <translation type="unfinished"/>
+        <translation>D#</translation>
     </message>
     <message>
         <source>E</source>
@@ -17752,7 +17984,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>F#</source>
-        <translation type="unfinished"/>
+        <translation>F#</translation>
     </message>
     <message>
         <source>G</source>
@@ -17760,7 +17992,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>G#</source>
-        <translation type="unfinished"/>
+        <translation>G#</translation>
     </message>
     <message>
         <source>A</source>
@@ -17768,7 +18000,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>A#</source>
-        <translation type="unfinished"/>
+        <translation>A#</translation>
     </message>
     <message>
         <source>B</source>
diff --git a/share/locale/mscore_lv.ts b/share/locale/mscore_lv.ts
index 5e15cab..3a54f4b 100644
--- a/share/locale/mscore_lv.ts
+++ b/share/locale/mscore_lv.ts
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,11 +4666,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6033,27 +6234,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7173,6 +7374,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7643,10 +7848,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7658,6 +7859,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7965,6 +8170,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10362,6 +10572,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11194,6 +11412,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13540,10 +13766,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation type="unfinished"/>
     </message>
@@ -13580,10 +13802,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13940,10 +14158,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15507,6 +15721,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16556,6 +16786,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17667,10 +17901,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_mn_MN.ts b/share/locale/mscore_mn_MN.ts
index bdf5711..4467bb8 100644
--- a/share/locale/mscore_mn_MN.ts
+++ b/share/locale/mscore_mn_MN.ts
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Тоглуулах</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,12 +4651,36 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
+        <translation>Утга шинэчилэх</translation>
+    </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
-        <translation>Утга шинэчилэх</translation>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Тоглуулах</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,14 +6219,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Бүх хэсэгт хэрэглэх</translation>
     </message>
@@ -6041,6 +6234,14 @@ failed: </source>
         <source>page number, if there is more than one page</source>
         <translation>нэгээс олон хуудастай бол хуудас дугаарлах</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7158,6 +7359,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7628,10 +7833,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7643,6 +7844,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7950,6 +8155,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10347,6 +10557,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11175,6 +11393,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13521,10 +13747,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation type="unfinished"/>
     </message>
@@ -13561,10 +13783,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13921,10 +14139,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15488,6 +15702,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16537,6 +16767,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17648,10 +17882,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_nb.ts b/share/locale/mscore_nb.ts
index aa84897..7f5746f 100644
--- a/share/locale/mscore_nb.ts
+++ b/share/locale/mscore_nb.ts
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissandoovervåker</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spill av</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nullstill "Spill"</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Nullstill tidsforskyvning</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Standard</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barokk</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spill av</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nullstill "Spill"</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissandoovervåker</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Bøy</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spill av</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nullstill "Spill"</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Vis tekst</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Stil</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Nullstill stil</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Kromatisk</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Hvite tangenter</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Sorte tangenter</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonisk</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spill av</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nullstill "Spill"</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Tekstrammeovervåker</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Tekstramme</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Bunnmellomrom</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Toppmarg</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Nullstill verdi</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Nullstill toppmellomrom</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Nullstill bunnmellomrom</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Venstre marg</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Bunnmarg</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Nullstill høyremarg</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Høyre marg</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Nullstill bunnmarg</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Nullstill toppmarg</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Nullstill venstremarg</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Toppmellomrom</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>pkt</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Lang praltrille</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Bølgende linje</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Nullstill verdi</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Retning</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Standard</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barokk</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spill av</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Nullstill "Spill"</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -5175,7 +5376,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>2-plets</source>
-        <translation type="unfinished"/>
+        <translation>Duoler</translation>
     </message>
     <message>
         <source>3-plets</source>
@@ -6048,14 +6249,6 @@ feilet: </translation>
         <translation>Dollartegnet</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>Metadatamerkelapp</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Tilgjengelige merkelapper og deres innhold:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Bruk på alle enkeltstemmer</translation>
     </message>
@@ -6071,6 +6264,14 @@ feilet: </translation>
         <source>page number, if there is more than one page</source>
         <translation>sidetall, hvis det er flere enn en side</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Tilgjengelige metadatamerkelapper og deres innhold:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -6859,8 +7060,8 @@ vennligst velg en takt og prøv igjen</translation>
         <source>The previous session quit unexpectedly.
 
 Restore session?</source>
-        <translation>Forrige økt ble uventet avbrutt.
-
+        <translation>Forrige økt ble avbrutt uventet .
+
 Gjenopprett økt?</translation>
     </message>
     <message>
@@ -7198,7 +7399,11 @@ vennligst velg et annet navn:</translation>
     </message>
     <message>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
-        <translation type="unfinished"/>
+        <translation>Dette partituret kan ikke lagres på nettet. Vennligst reparer korrupte takter og prøv igjen.</translation>
+    </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Spør om hjelp</translation>
     </message>
 </context>
 <context>
@@ -7683,10 +7888,6 @@ feilet: %2</translation>
         <translation>Skriving av stil feilet: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>fila ble ikke funnet</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Intet utvalg</translation>
     </message>
@@ -7698,6 +7899,10 @@ feilet: %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Takt %1, notesystem %2, stemme %3 for lang. Forventet: %4; Funnet: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7727,7 +7932,7 @@ feilet: %2</translation>
     </message>
     <message>
         <source>End Measure: %1; End Beat: %2</source>
-        <translation>Slutttakt: %1; Sluttslag: %2</translation>
+        <translation>Sluttakt: %1; Sluttslag: %2</translation>
     </message>
     <message>
         <source>Staff %1</source>
@@ -8011,6 +8216,11 @@ Vennligst velg takter som skal slås sammen og prøv igjen</translation>
         <source>Transparent background</source>
         <translation>Gjennomsiktig bakgrunn</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10409,7 +10619,15 @@ feilet: </translation>
     </message>
     <message>
         <source>Filter</source>
-        <translation type="unfinished"/>
+        <translation>Filter</translation>
+    </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Eksporter RPN-er</translation>
     </message>
 </context>
 <context>
@@ -10729,15 +10947,15 @@ Besøk <a href="http://musescore.org">MuseScores nettside</a&
     </message>
     <message>
         <source>File corrupted %1</source>
-        <translation>Fil korrupt  %1</translation>
+        <translation>Filen er korrupt:  %1</translation>
     </message>
     <message>
         <source>MuseScore: Upload Error</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Noe gikk galt under opplasting</translation>
     </message>
     <message>
         <source>Do you want to try to load this file anyway?</source>
-        <translation type="unfinished"/>
+        <translation>Vil du uansett prøve å laste filen?</translation>
     </message>
 </context>
 <context>
@@ -11268,6 +11486,14 @@ Vil du overskrive den?</translation>
         <source>System flag</source>
         <translation>Systemflagg</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Søk...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Rens</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13616,10 +13842,6 @@ feilet: </translation>
         <translation>Fjærbjelke, raskere</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Palett</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Avspillingsvindu</translation>
     </message>
@@ -13656,10 +13878,6 @@ feilet: </translation>
         <translation>Legg til sangtekst</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Tempo...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Legg til tempmarkering</translation>
     </message>
@@ -14016,10 +14234,6 @@ feilet: </translation>
         <translation>Repeter utvalg</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Panorér pianorull</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Panorering av pianorull av/på</translation>
     </message>
@@ -15583,6 +15797,22 @@ feilet: </translation>
         <source>Set loop in position</source>
         <translation>Sett repeteringsstartpunkt</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Paletter</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Tempo</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Zoom til 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16634,6 +16864,10 @@ Takten er ikke tom</translation>
         <source>Tablature2</source>
         <translation>Tabulatur2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -16807,11 +17041,11 @@ Takten er ikke tom</translation>
     </message>
     <message>
         <source>Hi Wood Block</source>
-        <translation type="unfinished"/>
+        <translation>Høy wood block</translation>
     </message>
     <message>
         <source>Low Wood Block</source>
-        <translation type="unfinished"/>
+        <translation>Lav wood block</translation>
     </message>
     <message>
         <source>Mute Cuica</source>
@@ -16831,11 +17065,11 @@ Takten er ikke tom</translation>
     </message>
     <message>
         <source>Shaker</source>
-        <translation type="unfinished"/>
+        <translation>Shaker</translation>
     </message>
     <message>
         <source>Bell Tree</source>
-        <translation type="unfinished"/>
+        <translation>Bell tree</translation>
     </message>
     <message>
         <source>Mute Surdo</source>
@@ -17745,10 +17979,6 @@ Takten er ikke tom</translation>
         <source>Prallprall line</source>
         <translation>Lang praltrillelinje</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Bølgende linje</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_nl.ts b/share/locale/mscore_nl.ts
index 774f4b7..3e92754 100644
--- a/share/locale/mscore_nl.ts
+++ b/share/locale/mscore_nl.ts
@@ -378,7 +378,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Slash</source>
-        <translation>Slash</translation>
+        <translation>Schuine Streep</translation>
     </message>
     <message>
         <source>XCircle</source>
@@ -1743,7 +1743,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Tuplets</source>
-        <translation>Tuplets</translation>
+        <translation>Antimetrisch figuur</translation>
     </message>
     <message>
         <source>Display in concert pitch</source>
@@ -2918,7 +2918,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Update Range</source>
-        <translation>Update bereik</translation>
+        <translation>Bereik bijwerken</translation>
     </message>
     <message>
         <source>Direction</source>
@@ -2958,7 +2958,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Update range</source>
-        <translation>Update bereik</translation>
+        <translation>Bereik bijwerken</translation>
     </message>
     <message>
         <source>Reset Head type value</source>
@@ -2982,7 +2982,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Slash</source>
-        <translation>Slash</translation>
+        <translation>Schuine Streep</translation>
     </message>
     <message>
         <source>XCircle</source>
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissando-instellingen</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Afspelen</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reset afspeelwaarde</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3089,7 +3108,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Time stretch</source>
-        <translation>Time stretch</translation>
+        <translation>Tijd rekken</translation>
     </message>
     <message>
         <source>Articulation Inspector</source>
@@ -3107,6 +3126,31 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Herstel time-stretchwaarde</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Versieringsstijl</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Standaard
+</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barok</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Reset Versieringstype-waarde</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Afspelen</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reset afspeelwaarde</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3323,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissando-instellingen</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Buig</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Afspelen</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Afspeelwaarde herstellen</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3286,7 +3349,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Layout Break</source>
-        <translation>Lay-outonderbreking</translation>
+        <translation>Lay-out onderbreking</translation>
     </message>
 </context>
 <context>
@@ -3559,6 +3622,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Toon tekst</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Stijl</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Reset stijlwaarde</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Speel stijl af</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Chromatisch</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Witte toetsen</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Zwarte toetsen</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonisch</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Afspelen</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reset afspeelwaarde</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,10 +4465,82 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Tekstkader instellingen</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Tekstkader</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Onderruimte</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Bovenmarge</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Waarde herstellen</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Herstel waarde bovenmarge</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Herstel waarde ondermarge</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Linkermarge</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Ondermarge</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Herstel waarde rechtermarge</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Rechtermarge</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Herstel waarde ondermarge</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Herstel waarde bovenmarge</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Herstel waarde linkermarge</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Bovenruimte</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
-        <translation>Tempo</translation>
+        <translation>Tempo Markering</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -4496,19 +4667,43 @@ space unit</extracomment>
         <translation>Trillende triller</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Golvende lijn</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Waarde herstellen</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Versieringsstijl</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Richting</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Standaard</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barok</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Reset Versieringstype-waarde</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Afspelen</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Afspeelwaarde herstellen</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Antimetrisch figuur</translation>
     </message>
     <message>
         <source>Number</source>
@@ -4548,7 +4743,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Tuplet Inspector</source>
-        <translation>Tupletinstellingen</translation>
+        <translation>Antimetrisch figuur instellingen</translation>
     </message>
     <message>
         <source>Reset Direction value</source>
@@ -4596,7 +4791,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Vertical Frame Inspector</source>
-        <translation>Istellingen verticaal frame</translation>
+        <translation>Instellingen verticaal frame</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4879,6 +5074,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>Atonaal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -5127,19 +5329,19 @@ space unit</extracomment>
     </message>
     <message>
         <source>16th</source>
-        <translation>1/16</translation>
+        <translation>16e</translation>
     </message>
     <message>
         <source>32nd</source>
-        <translation>1/32</translation>
+        <translation>32ste</translation>
     </message>
     <message>
         <source>64th</source>
-        <translation>1/64</translation>
+        <translation>64ste</translation>
     </message>
     <message>
         <source>128th</source>
-        <translation>1/128</translation>
+        <translation>128ste</translation>
     </message>
     <message>
         <source>Detect swing</source>
@@ -5199,7 +5401,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Tuplets</source>
-        <translation>Tuplets</translation>
+        <translation>Antimetrisch figuur</translation>
     </message>
     <message>
         <source>2</source>
@@ -5623,7 +5825,7 @@ tuplet zou maat overschrijden</translation>
     </message>
     <message>
         <source>Append empty measures</source>
-        <translation>Hecht lege maten aan</translation>
+        <translation>Lege maten toevoegen</translation>
     </message>
     <message>
         <source>Number of measures to append:</source>
@@ -5838,7 +6040,7 @@ tuplet zou maat overschrijden</translation>
     </message>
     <message>
         <source>Custom Tuplet</source>
-        <translation>Eigen tuplet</translation>
+        <translation>Eigen figuur</translation>
     </message>
     <message>
         <source>Quintuplet</source>
@@ -6048,14 +6250,6 @@ mislukt:</translation>
         <translation>het $ symbool zelf</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>metadata-etiket</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Beschikbare etiketten en hun huidige waarden:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Toepassen op alle partijen</translation>
     </message>
@@ -6071,6 +6265,14 @@ mislukt:</translation>
         <source>page number, if there is more than one page</source>
         <translation>paginanummer, als er meer dan één pagina is</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>Metadatatag, zie hieronder</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Beschikbare metadatatags en de huidige waardes:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -6188,7 +6390,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Antimetrisch figuur</translation>
     </message>
 </context>
 <context>
@@ -6199,7 +6401,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Antimetrisch figuur</translation>
     </message>
 </context>
 <context>
@@ -6829,7 +7031,7 @@ selecteer eerst een maat en probeer het dan opnieuw</translation>
     </message>
     <message>
         <source>T&uplets</source>
-        <translation>Tuplets</translation>
+        <translation>Antimetrisch fig&uur</translation>
     </message>
     <message>
         <source>&Layout</source>
@@ -6853,7 +7055,7 @@ selecteer eerst een maat en probeer het dan opnieuw</translation>
     </message>
     <message>
         <source>Check for &Update</source>
-        <translation>Controleer op &updates</translation>
+        <translation>Controleer op nieuwe versie</translation>
     </message>
     <message>
         <source>The previous session quit unexpectedly.
@@ -6869,11 +7071,11 @@ Sessie herstellen?</translation>
     </message>
     <message>
         <source>MuseScore: Tuplet Error</source>
-        <translation>MuseScore: Tuplet-fout</translation>
+        <translation>MuseScore: Antimetrisch figuur-fout</translation>
     </message>
     <message>
         <source>Cannot create tuplet with ratio %1 for duration %2</source>
-        <translation>Kan geen tuplet creëren met ratio %1 voor duur %2</translation>
+        <translation>Kan geen antimetrisch figuur creëren met ratio %1 voor duur %2</translation>
     </message>
     <message>
         <source>Delete</source>
@@ -7002,7 +7204,7 @@ kies een andere naam:</translation>
     </message>
     <message>
         <source>Cannot create tuplet: Note value is too short</source>
-        <translation>Kan geen tuplet creëren: nootwaarde is te kort</translation>
+        <translation>Kan geen antimetrisch figuur creëren: nootwaarde is te kort</translation>
     </message>
     <message>
         <source>MuseScore File (*.mscz)</source>
@@ -7200,6 +7402,10 @@ kies een andere naam:</translation>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation>Deze partituur kan niet online opgeslagen worden. Corrigeer de corrupte maten en probeer opnieuw.</translation>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Vraag om hulp</translation>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7451,7 +7657,7 @@ kies een andere naam:</translation>
     <name>Ms::PianoTools</name>
     <message>
         <source>Piano Keyboard</source>
-        <translation>Pianotoestenbord</translation>
+        <translation>Pianotoetsenbord</translation>
     </message>
 </context>
 <context>
@@ -7590,11 +7796,11 @@ Opslaan voor sluiten?</translation>
     </message>
     <message>
         <source>Update</source>
-        <translation>Updaten</translation>
+        <translation>Bijwerken</translation>
     </message>
     <message>
         <source>No update</source>
-        <translation>Geen update</translation>
+        <translation>Geen nieuwe versie</translation>
     </message>
     <message>
         <source>Updating</source>
@@ -7683,10 +7889,6 @@ mislukt: %2</translation>
         <translation>Schrijven van stijl mislukt: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>bestand niet gevonden</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Geen selectie</translation>
     </message>
@@ -7698,6 +7900,10 @@ mislukt: %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Maat %1, staf %2, stem %3 te lang. Verwacht: %4; Gevonden: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>XML leesfout op lijn %1 kolom %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7793,7 +7999,7 @@ mislukt: %2</translation>
     </message>
     <message>
         <source>Bend Properties...</source>
-        <translation>Bendeigenschappen...</translation>
+        <translation>Boogeigenschappen...</translation>
     </message>
     <message>
         <source>Add</source>
@@ -7955,7 +8161,7 @@ selecteer een akkoord/rust en probeer opnieuw</translation>
         <source>Cannot split measure here:
 Cannot split tuplet</source>
         <translation>Kan hier geen maat splitsen:
-Kan een tuplet niet splitsen</translation>
+Kan een antimetrisch figuur niet splitsen</translation>
     </message>
     <message>
         <source>No measures selected:
@@ -7977,7 +8183,7 @@ selecteer een bereik van maten om samen te voegen en probeer opnieuw</translatio
     </message>
     <message>
         <source>Please select the complete tuplet/tremolo and retry the command</source>
-        <translation>Selecteer de volledige tuplet/tremolo en probeer het opnieuw</translation>
+        <translation>Selecteer de volledige antimetrisch figuur/tremolo en probeer het opnieuw</translation>
     </message>
     <message>
         <source>Image Capture</source>
@@ -8001,16 +8207,22 @@ selecteer een bereik van maten om samen te voegen en probeer opnieuw</translatio
     </message>
     <message>
         <source>Cannot paste into tuplet</source>
-        <translation>Kan niet plakken in een tuplet</translation>
+        <translation>Kan niet plakken in een antimetrisch figuur</translation>
     </message>
     <message>
         <source>Tuplet cannot cross barlines</source>
-        <translation>Tuplet kan geen maatstrepen overschrijden</translation>
+        <translation>Antimetrisch figuur kan geen maatstrepen overschrijden</translation>
     </message>
     <message>
         <source>Transparent background</source>
         <translation>Transparante achtergrond</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>
+</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -8139,7 +8351,7 @@ selecteer een bereik van maten om samen te voegen en probeer opnieuw</translatio
     </message>
     <message>
         <source>Align center</source>
-        <translation>Centraal uitlijnen</translation>
+        <translation>Midden uitlijnen</translation>
     </message>
     <message>
         <source>Align right</source>
@@ -8252,15 +8464,15 @@ kies een andere naam:</translation>
     <name>Ms::UpdateChecker</name>
     <message>
         <source>An update for MuseScore is available: <a href="%1">MuseScore %2 r.%3</a></source>
-        <translation>Er is een update voor MuseScore beschikbaar: <a href="%1">MuseScore %2 r.%3</a></translation>
+        <translation>Er is een nieuwe versie voor MuseScore beschikbaar: <a href="%1">MuseScore %2 r.%3</a></translation>
     </message>
     <message>
         <source>Update Available</source>
-        <translation>Update beschikbaar</translation>
+        <translation>Nieuwe versie beschikbaar</translation>
     </message>
     <message>
         <source>No Update Available</source>
-        <translation>Geen update beschikbaar</translation>
+        <translation>Geen nieuwe versie</translation>
     </message>
 </context>
 <context>
@@ -8443,7 +8655,7 @@ kies een andere naam:</translation>
     </message>
     <message>
         <source>Lyricist:</source>
-        <translation>Dichter:</translation>
+        <translation>Tesktschrijver:</translation>
     </message>
     <message>
         <source>Copyright:</source>
@@ -9336,7 +9548,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>32nd note</source>
-        <translation>32e noot</translation>
+        <translation>32ste noot</translation>
     </message>
     <message>
         <source>Clear</source>
@@ -9516,15 +9728,15 @@ mislukt:</translation>
     </message>
     <message>
         <source>16th</source>
-        <translation>1/16</translation>
+        <translation>16e</translation>
     </message>
     <message>
         <source>32nd</source>
-        <translation>1/32</translation>
+        <translation>32ste</translation>
     </message>
     <message>
         <source>64th</source>
-        <translation>1/64</translation>
+        <translation>64ste</translation>
     </message>
     <message>
         <source>Export</source>
@@ -9588,11 +9800,11 @@ mislukt:</translation>
     </message>
     <message>
         <source>Update</source>
-        <translation>Update</translation>
+        <translation>Bijwerken</translation>
     </message>
     <message>
         <source>Automatic Update Check</source>
-        <translation>Automatische Updatecheck</translation>
+        <translation>Automatische Bijwerken</translation>
     </message>
     <message>
         <source>Start empty</source>
@@ -10037,11 +10249,11 @@ mislukt:</translation>
     </message>
     <message>
         <source>32nd note is active</source>
-        <translation>32e noot is actief</translation>
+        <translation>32ste noot is actief</translation>
     </message>
     <message>
         <source>32nd note record</source>
-        <translation>32e noot opnemen</translation>
+        <translation>32ste noot opnemen</translation>
     </message>
     <message>
         <source>Score Tab</source>
@@ -10225,7 +10437,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>Update Tab</source>
-        <translation>Update tab</translation>
+        <translation>Bijwerken tab</translation>
     </message>
     <message>
         <source>Eighth note</source>
@@ -10249,15 +10461,15 @@ mislukt:</translation>
     </message>
     <message>
         <source>64th note</source>
-        <translation>64e noot</translation>
+        <translation>64ste noot</translation>
     </message>
     <message>
         <source>64th note is active</source>
-        <translation>64e noot is actief</translation>
+        <translation>64ste noot is actief</translation>
     </message>
     <message>
         <source>64th note record</source>
-        <translation>64e noot opnemen</translation>
+        <translation>64ste noot opnemen</translation>
     </message>
     <message>
         <source>Here you can configure shortcuts for actions</source>
@@ -10281,7 +10493,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>Update translations</source>
-        <translation>Update vertalingen</translation>
+        <translation>Bijwerken vertalingen</translation>
     </message>
     <message>
         <source>Dark</source>
@@ -10411,6 +10623,14 @@ mislukt:</translation>
         <source>Filter</source>
         <translation>Filter</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Exporteer RPNs</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10618,31 +10838,31 @@ Bezoek <a href="http://musescore.org">de website van MuseScore&l
     </message>
     <message>
         <source>16th</source>
-        <translation>1/16</translation>
+        <translation>16e</translation>
     </message>
     <message>
         <source>32nd</source>
-        <translation>1/32</translation>
+        <translation>32ste</translation>
     </message>
     <message>
         <source>64th</source>
-        <translation>1/64</translation>
+        <translation>64ste</translation>
     </message>
     <message>
         <source>128th</source>
-        <translation>1/128</translation>
+        <translation>128ste</translation>
     </message>
     <message>
         <source>256th</source>
-        <translation>1/256</translation>
+        <translation>256ste</translation>
     </message>
     <message>
         <source>512th</source>
-        <translation>1/512</translation>
+        <translation>512ste</translation>
     </message>
     <message>
         <source>1024th</source>
-        <translation>1/1024</translation>
+        <translation>1024ste</translation>
     </message>
     <message>
         <source>Zero</source>
@@ -10879,7 +11099,7 @@ Wil je dit overschrijven?</translation>
     </message>
     <message>
         <source>Install/Update</source>
-        <translation>Installeren/updaten</translation>
+        <translation>Installeren/bijwerken</translation>
     </message>
     <message>
         <source>Tab 2</source>
@@ -11268,6 +11488,14 @@ Wil je dit overschrijven?</translation>
         <source>System flag</source>
         <translation>Systeemvlag</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Zoeken...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Maak leeg</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11654,7 +11882,7 @@ Wil je dit overschrijven?</translation>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Antimetrisch figuur</translation>
     </message>
     <message>
         <source>System</source>
@@ -12184,7 +12412,7 @@ Wil je dit overschrijven?</translation>
     </message>
     <message>
         <source>By Key</source>
-        <translation>Op sleutel</translation>
+        <translation>Op toonsoort</translation>
     </message>
     <message>
         <source>By Interval</source>
@@ -12207,11 +12435,11 @@ Wil je dit overschrijven?</translation>
     </message>
     <message>
         <source>32nd through stem</source>
-        <translation>32e door stok</translation>
+        <translation>32ste door stok</translation>
     </message>
     <message>
         <source>64th through stem</source>
-        <translation>64e door stok</translation>
+        <translation>64ste door stok</translation>
     </message>
     <message>
         <source>Eighth between notes</source>
@@ -12223,18 +12451,18 @@ Wil je dit overschrijven?</translation>
     </message>
     <message>
         <source>32nd between notes</source>
-        <translation>32e tussen noten</translation>
+        <translation>32ste tussen noten</translation>
     </message>
     <message>
         <source>64th between notes</source>
-        <translation>64e tussen noten</translation>
+        <translation>64ste tussen noten</translation>
     </message>
 </context>
 <context>
     <name>TremoloBarDialog</name>
     <message>
         <source>Bend type:</source>
-        <translation>Buigingstype:</translation>
+        <translation>Boogtype:</translation>
     </message>
     <message>
         <source>Click to add or remove some points</source>
@@ -12254,7 +12482,7 @@ Wil je dit overschrijven?</translation>
     </message>
     <message>
         <source>Return</source>
-        <translation>Return</translation>
+        <translation>Terug</translation>
     </message>
     <message>
         <source>MuseScore: Tremolo Bar Properties</source>
@@ -12273,14 +12501,14 @@ Wil je dit overschrijven?</translation>
     <name>TupletBase</name>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Antimetrisch figuur</translation>
     </message>
 </context>
 <context>
     <name>TupletDialog</name>
     <message>
         <source>MuseScore: Create Tuplet</source>
-        <translation>MuseScore: Creëer tuplet</translation>
+        <translation>MuseScore: Maak antimetrisch figuur</translation>
     </message>
     <message>
         <source>Type</source>
@@ -12359,7 +12587,7 @@ Wil je dit overschrijven?</translation>
     </message>
     <message>
         <source>Update the existing score </source>
-        <translation>Update de bestaande partituur</translation>
+        <translation>Bestaande partituur bijwerken</translation>
     </message>
     <message>
         <source>Make this score private</source>
@@ -13421,7 +13649,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>Other tuplets</source>
-        <translation>Andere tuplets</translation>
+        <translation>Andere figuren</translation>
     </message>
     <message>
         <source>Longa</source>
@@ -13453,27 +13681,27 @@ mislukt:</translation>
     </message>
     <message>
         <source>32nd note</source>
-        <translation>32e noot</translation>
+        <translation>32ste noot</translation>
     </message>
     <message>
         <source>Note duration: 32nd</source>
-        <translation>Duur noot: 32e</translation>
+        <translation>Duur noot: 32ste</translation>
     </message>
     <message>
         <source>64th note</source>
-        <translation>64e noot</translation>
+        <translation>64ste noot</translation>
     </message>
     <message>
         <source>Note duration: 64th</source>
-        <translation>Duur noot: 64e</translation>
+        <translation>Duur noot: 64ste</translation>
     </message>
     <message>
         <source>128th note</source>
-        <translation>128e noot</translation>
+        <translation>128ste noot</translation>
     </message>
     <message>
         <source>Note duration: 128th</source>
-        <translation>Duur noot: 128e</translation>
+        <translation>Duur noot: 128ste</translation>
     </message>
     <message>
         <source>Increase active duration</source>
@@ -13537,19 +13765,19 @@ mislukt:</translation>
     </message>
     <message>
         <source>Grace: 16th</source>
-        <translation>Voorslag: 1/16</translation>
+        <translation>Voorslag: 16e</translation>
     </message>
     <message>
         <source>Add 16th grace note</source>
-        <translation>Voeg 1/16 voorslag toe</translation>
+        <translation>Voeg 16e voorslag toe</translation>
     </message>
     <message>
         <source>Grace: 32nd</source>
-        <translation>Voorslag: 1/32</translation>
+        <translation>Voorslag: 32ste</translation>
     </message>
     <message>
         <source>Add 32nd grace note</source>
-        <translation>Voeg 1/32 voorslag toe</translation>
+        <translation>Voeg 32ste voorslag toe</translation>
     </message>
     <message>
         <source>1</source>
@@ -13601,7 +13829,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>Beam 32nd sub</source>
-        <translation>32e noot waardestreep onder</translation>
+        <translation>32ste noot waardestreep onder</translation>
     </message>
     <message>
         <source>Auto beam</source>
@@ -13616,10 +13844,6 @@ mislukt:</translation>
         <translation>Vertragende waardestrepen</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Palet</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Afspeelpaneel</translation>
     </message>
@@ -13656,10 +13880,6 @@ mislukt:</translation>
         <translation>Teksten toevoegen</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Tempomarkering...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Voeg tempomarkering toe</translation>
     </message>
@@ -14016,10 +14236,6 @@ mislukt:</translation>
         <translation>Selectie herhalen</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Meelopen met piano rol</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Schakel meelopen piano rol in/uit</translation>
     </message>
@@ -14081,7 +14297,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>Piano Keyboard</source>
-        <translation>Piano-toestenbord</translation>
+        <translation>Pianotoetsenbord</translation>
     </message>
     <message>
         <source>Additional Media...</source>
@@ -14225,15 +14441,15 @@ mislukt:</translation>
     </message>
     <message>
         <source>Note duration: 32nd (TAB)</source>
-        <translation>Nootduur: 32e (TAB)</translation>
+        <translation>Nootduur: 32ste (TAB)</translation>
     </message>
     <message>
         <source>Note duration: 64th (TAB)</source>
-        <translation>Nootduur: 64e (TAB)</translation>
+        <translation>Nootduur: 64ste (TAB)</translation>
     </message>
     <message>
         <source>Note duration: 128th (TAB)</source>
-        <translation>Noot duur: 128e (TAB)</translation>
+        <translation>Noot duur: 128ste (TAB)</translation>
     </message>
     <message>
         <source>Increase active duration (TAB)</source>
@@ -14433,19 +14649,19 @@ mislukt:</translation>
     </message>
     <message>
         <source>Grace: 16th after</source>
-        <translation>Voorslag: 1/16 erna </translation>
+        <translation>Voorslag: 16e erna </translation>
     </message>
     <message>
         <source>Add 16th grace note after</source>
-        <translation>Voeg 1/16 voorslag erna toe</translation>
+        <translation>Voeg 16e voorslag erna toe</translation>
     </message>
     <message>
         <source>Grace: 32nd after</source>
-        <translation>Voorslag: 1/32 erna</translation>
+        <translation>Voorslag: 32ste erna</translation>
     </message>
     <message>
         <source>Add 32nd grace note after</source>
-        <translation>Voeg 1/32 voorslag erna toe</translation>
+        <translation>Voeg 32ste voorslag erna toe</translation>
     </message>
     <message>
         <source>All Similar Elements in Range Selection</source>
@@ -14469,7 +14685,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>Add Eighth grace note after</source>
-        <translation>Voeg 1/8 voorslag erna toe</translation>
+        <translation>Voeg achtste voorslag erna toe</translation>
     </message>
     <message>
         <source>Beam 16th sub</source>
@@ -14509,7 +14725,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>Grace: eighth after</source>
-        <translation>Voorslag: 1/8 erna</translation>
+        <translation>Voorslag: achtste erna</translation>
     </message>
     <message>
         <source>Enable snap to horizontal grid</source>
@@ -14573,7 +14789,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>Fill With Slashes</source>
-        <translation>Vul met slashes</translation>
+        <translation>Vul met schuine strepen</translation>
     </message>
     <message>
         <source>Toggle Rhythmic Slash Notation</source>
@@ -14889,15 +15105,15 @@ mislukt:</translation>
     </message>
     <message>
         <source>32nd Note</source>
-        <translation>32e noot</translation>
+        <translation>32ste noot</translation>
     </message>
     <message>
         <source>64th Note</source>
-        <translation>64e noot</translation>
+        <translation>64ste noot</translation>
     </message>
     <message>
         <source>128th Note</source>
-        <translation>128e noot</translation>
+        <translation>128ste noot</translation>
     </message>
     <message>
         <source>Increase Active Duration</source>
@@ -14965,7 +15181,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>Grace: Eighth after</source>
-        <translation>Voorslag: 1/8 erna</translation>
+        <translation>Voorslag: achtste erna</translation>
     </message>
     <message>
         <source>MIDI Input</source>
@@ -14985,11 +15201,11 @@ mislukt:</translation>
     </message>
     <message>
         <source>Beam 16th Sub</source>
-        <translation>Waardestreep 16th Sub</translation>
+        <translation>Waardestreep 16e Sub</translation>
     </message>
     <message>
         <source>Beam 32nd Sub</source>
-        <translation>Waardestreep 32nd Sub</translation>
+        <translation>Waardestreep 32ste Sub</translation>
     </message>
     <message>
         <source>Auto Beam</source>
@@ -15217,7 +15433,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>Piano keyboard</source>
-        <translation>Pianotoestenbord</translation>
+        <translation>Pianotoetsenbord</translation>
     </message>
     <message>
         <source>Split measure</source>
@@ -15365,15 +15581,15 @@ mislukt:</translation>
     </message>
     <message>
         <source>32nd Note (TAB)</source>
-        <translation>32e noot (TAB)</translation>
+        <translation>32ste noot (TAB)</translation>
     </message>
     <message>
         <source>64th Note (TAB)</source>
-        <translation>64e noot (TAB)</translation>
+        <translation>64ste noot (TAB)</translation>
     </message>
     <message>
         <source>128th Note (TAB)</source>
-        <translation>128e noot (TAB)</translation>
+        <translation>128ste noot (TAB)</translation>
     </message>
     <message>
         <source>Increase Active Duration (TAB)</source>
@@ -15445,7 +15661,7 @@ mislukt:</translation>
     </message>
     <message>
         <source>Fill with slashes</source>
-        <translation>Vul met slashes</translation>
+        <translation>Vul met schuine strepen</translation>
     </message>
     <message>
         <source>Toggle rhythmic slash notation</source>
@@ -15583,6 +15799,22 @@ mislukt:</translation>
         <source>Set loop in position</source>
         <translation>Zet lus in positie</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Paletten</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Tempomarkering</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Zoom naar 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Meelopen met piano rol</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -15594,7 +15826,7 @@ mislukt:</translation>
         <source>Cannot rewrite measures:
 Tuplet would cross measure</source>
         <translation>Kan geen maten herschrijven:
-tuplet zou maat kruisen</translation>
+antimetrisch figuur zou maat kruisen</translation>
     </message>
     <message>
         <source>Cannot change local time signature:
@@ -16634,6 +16866,10 @@ De maat is niet leeg</translation>
         <source>Tablature2</source>
         <translation>Tablatuur2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>G-sleutel optionele 8vb</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -16695,7 +16931,7 @@ De maat is niet leeg</translation>
     </message>
     <message>
         <source>Low Floor Tom</source>
-        <translation>Low Floor Tom</translation>
+        <translation>Lage Floor Tom</translation>
     </message>
     <message>
         <source>Closed Hi-Hat</source>
@@ -16703,7 +16939,7 @@ De maat is niet leeg</translation>
     </message>
     <message>
         <source>High Floor Tom</source>
-        <translation>High Floor Tom</translation>
+        <translation>Hoge Floor Tom</translation>
     </message>
     <message>
         <source>Pedal Hi-Hat</source>
@@ -16719,11 +16955,11 @@ De maat is niet leeg</translation>
     </message>
     <message>
         <source>Low-Mid Tom</source>
-        <translation>Low-Mid Tom</translation>
+        <translation>Lage-Mid Tom</translation>
     </message>
     <message>
         <source>Hi-Mid Tom</source>
-        <translation>Hi-Mid Tom</translation>
+        <translation>Hoge-Mid Tom</translation>
     </message>
     <message>
         <source>Crash Cymbal 1</source>
@@ -16739,7 +16975,7 @@ De maat is niet leeg</translation>
     </message>
     <message>
         <source>Cowbell</source>
-        <translation>Koeienbel</translation>
+        <translation>Koe bel</translation>
     </message>
     <message>
         <source>Vibraslap</source>
@@ -16763,19 +16999,19 @@ De maat is niet leeg</translation>
     </message>
     <message>
         <source>High Timbale</source>
-        <translation>High Timbale</translation>
+        <translation>Hoge Timbale</translation>
     </message>
     <message>
         <source>Low Timbale</source>
-        <translation>Low Timbale</translation>
+        <translation>Lage Timbale</translation>
     </message>
     <message>
         <source>High Agogo</source>
-        <translation>High Agogo</translation>
+        <translation>Hoge Agogo</translation>
     </message>
     <message>
         <source>Low Agogo</source>
-        <translation>Low Agogo</translation>
+        <translation>Lage Agogo</translation>
     </message>
     <message>
         <source>Cabasa</source>
@@ -16807,11 +17043,11 @@ De maat is niet leeg</translation>
     </message>
     <message>
         <source>Hi Wood Block</source>
-        <translation>Hi Wood Block</translation>
+        <translation>Hoog Wood Blok</translation>
     </message>
     <message>
         <source>Low Wood Block</source>
-        <translation>Low Wood Block</translation>
+        <translation>Laag Wood Blok</translation>
     </message>
     <message>
         <source>Mute Cuica</source>
@@ -16827,7 +17063,7 @@ De maat is niet leeg</translation>
     </message>
     <message>
         <source>Open Triangle</source>
-        <translation>Open Triangle</translation>
+        <translation>Open Triangel</translation>
     </message>
     <message>
         <source>Shaker</source>
@@ -17080,7 +17316,7 @@ De maat is niet leeg</translation>
     </message>
     <message>
         <source>Tuplet</source>
-        <translation>Tuplet</translation>
+        <translation>Antimetrisch figuur</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -17508,7 +17744,7 @@ De maat is niet leeg</translation>
     </message>
     <message>
         <source>Cross</source>
-        <translation>Overgaan</translation>
+        <translation>Kruis</translation>
     </message>
     <message>
         <source>Diamond</source>
@@ -17524,7 +17760,7 @@ De maat is niet leeg</translation>
     </message>
     <message>
         <source>Slash</source>
-        <translation>Slash</translation>
+        <translation>Schuine Streep</translation>
     </message>
     <message>
         <source>XCircle</source>
@@ -17745,10 +17981,6 @@ De maat is niet leeg</translation>
         <source>Prallprall line</source>
         <translation>Trillende trillerlijn</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Golvende lijn</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_nn.ts b/share/locale/mscore_nn.ts
index a265564..bd5ce77 100644
--- a/share/locale/mscore_nn.ts
+++ b/share/locale/mscore_nn.ts
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7158,6 +7359,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7628,10 +7833,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7643,6 +7844,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7950,6 +8155,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10347,6 +10557,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11175,6 +11393,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13521,10 +13747,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation type="unfinished"/>
     </message>
@@ -13561,10 +13783,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13921,10 +14139,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15488,6 +15702,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16537,6 +16767,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17648,10 +17882,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_pl.ts b/share/locale/mscore_pl.ts
index 378c5fd..9e13fbc 100644
--- a/share/locale/mscore_pl.ts
+++ b/share/locale/mscore_pl.ts
@@ -1417,7 +1417,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Hide system barline</source>
-        <translation>Ukryj systemowÄ… kreskÄ™ taktowÄ…</translation>
+        <translation>Ukrywaj systemowÄ… kreskÄ™ taktowÄ…</translation>
     </message>
 </context>
 <context>
@@ -1616,19 +1616,19 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Never</source>
-        <translation>nigdy</translation>
+        <translation>Nigdy</translation>
     </message>
     <message>
         <source>At new system</source>
-        <translation>od nowego systemu</translation>
+        <translation>Od nowego systemu</translation>
     </message>
     <message>
         <source>At new meas.</source>
-        <translation>od nowego taktu</translation>
+        <translation>Od nowego taktu</translation>
     </message>
     <message>
         <source>Always</source>
-        <translation>zawsze</translation>
+        <translation>Zawsze</translation>
     </message>
 </context>
 <context>
@@ -2251,11 +2251,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Chord Symbols</source>
-        <translation>Symbole akordu</translation>
+        <translation>Symbole akordów</translation>
     </message>
     <message>
         <source>Chord symbols style file:</source>
-        <translation>Plik stylu symboli akordu:</translation>
+        <translation>Plik stylu symboli akordów:</translation>
     </message>
     <message>
         <source>Capo</source>
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Kontroler glissanda</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Odtwarzaj</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Resetuj wartość Odtwarzaj</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Resetuj wartość Rozciągnięcie czasu</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Styl ozdobnika:</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>domyślny</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>barokowy</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Resetuj wartość Typ ozdobnika</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Odtwarzaj</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Resetuj wartość Odtwarzaj</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Kontroler glissanda</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Podciągnięcie</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Odtwarzaj</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Resetuj wartość Odtwarzaj</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Pokaż tekst</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Styl:</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Resetuj wartość Styl</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Odtwarzaj styl</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>chromatyczny</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>białe klucze</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>czarne klucze</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>diatoniczny</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Odtwarzaj</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Resetuj wartość Odtwarzaj</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4006,11 +4104,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Segno variation</source>
-        <translation>Segno</translation>
+        <translation>Wężowate segno</translation>
     </message>
     <message>
         <source>Varied coda</source>
-        <translation>Coda</translation>
+        <translation>Kwadratowa coda</translation>
     </message>
     <message>
         <source>Custom</source>
@@ -4366,10 +4464,82 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Kontroler ramki tekstowej</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Ramka tekstowa</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Dolna przerwa:</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Górny margines:</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Resetuj wartość</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Resetuj wartość Górnej przerwy</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Resetuj wartość Dolnej przerwy</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Lewy margines:</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Dolny margines:</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Resetuj wartość Prawego marginesu</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Prawy margines:</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Resetuj wartość Dolnego marginesu</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Resetuj wartość Górnego marginesu</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Resetuj wartość Lewego marginesu</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Górna przerwa:</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
-        <translation>Znak tempa</translation>
+        <translation>Oznaczenie tempa</translation>
     </message>
     <message>
         <source>Tempo</source>
@@ -4385,7 +4555,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Tempo Marking Inspector</source>
-        <translation>Kontroler znaku tempa</translation>
+        <translation>Kontroler oznaczenia tempa</translation>
     </message>
     <message>
         <source>Reset Tempo value</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>linia mordentu</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>linia falista</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Resetuj wartość</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Styl ozdobnika:</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Kierunek:</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>domyślny</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>barokowy</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Resetuj wartość Typ ozdobnika</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Odtwarzaj</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Resetuj wartość Odtwarzaj</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4875,7 +5069,14 @@ space unit</extracomment>
     </message>
     <message>
         <source>Add time signature to palette</source>
-        <translation>Dodaj oznaczenie metryczne do palety</translation>
+        <translation>Dodaj oznaczenie tonacji do palety</translation>
+    </message>
+</context>
+<context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonalna</translation>
     </message>
 </context>
 <context>
@@ -5329,7 +5530,7 @@ przedtakt</translation>
         <source>Show
 chord symbols</source>
         <translation>Pokaż
-symbole akordu</translation>
+symbole akordów</translation>
     </message>
 </context>
 <context>
@@ -5858,22 +6059,22 @@ Grupa niemiarowa przekracza takt.</translation>
     </message>
     <message>
         <source>Dotted %1</source>
-        <translation>Z kropkÄ… %1</translation>
+        <translation>%1 z kropkÄ…</translation>
     </message>
     <message>
         <source>Double dotted %1</source>
-        <translation>Z podwójną kropką %1</translation>
+        <translation>%1 z podwójną kropką</translation>
     </message>
     <message>
         <source>Triple dotted %1</source>
-        <translation>Z potrójną kropką %1</translation>
+        <translation>%1 z potrójną kropką</translation>
     </message>
 </context>
 <context>
     <name>Ms::ChordStyleEditor</name>
     <message>
         <source>MuseScore: Chord Symbols Style Editor</source>
-        <translation>Edytuj styl symboli akordu</translation>
+        <translation>Edytuj styl symboli akordów</translation>
     </message>
 </context>
 <context>
@@ -6048,14 +6249,6 @@ zakończone niepowodzeniem: </translation>
         <translation>sam znak $</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>metadane tagu</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Dostępne tagi i ich bieżące wartości:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Zastosuj do wszystkich wyciągów</translation>
     </message>
@@ -6071,6 +6264,14 @@ zakończone niepowodzeniem: </translation>
         <source>page number, if there is more than one page</source>
         <translation>numer strony, jeśli jest więcej niż jedna strona</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>tag meta data, patrz poniżej</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Dostępne tagi meta data i ich bieżące wartości:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -6905,15 +7106,15 @@ Wybierz innÄ… nazwÄ™:</translation>
     </message>
     <message>
         <source>Chord Symbols Style File (*.xml)</source>
-        <translation>Plik stylu symboli akordu MuseScore (*.xml)</translation>
+        <translation>Plik stylu symboli akordów MuseScore (*.xml)</translation>
     </message>
     <message>
         <source>MuseScore: Load Chord Symbols Style</source>
-        <translation>Wczytaj styl symboli akordu</translation>
+        <translation>Wczytaj styl symboli akordów</translation>
     </message>
     <message>
         <source>MuseScore: Save Chord Symbols Style</source>
-        <translation>Zapisz styl symboli akordu</translation>
+        <translation>Zapisz styl symboli akordów</translation>
     </message>
     <message>
         <source>MuseScore: Insert Image</source>
@@ -7198,6 +7399,10 @@ Wybierz innÄ… nazwÄ™:</translation>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation>Ta partytura nie może być zapisana online. Usuń uszkodzone takty i spróbuj ponownie.</translation>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Zapytaj o pomoc</translation>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7680,10 +7885,6 @@ zakończone niepowodzeniem: %2</translation>
         <translation>Zapis stylu zakończony niepowodzeniem: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>nie znaleziono pliku</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Brak zaznaczenia</translation>
     </message>
@@ -7695,6 +7896,10 @@ zakończone niepowodzeniem: %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Takt %1, pięciolinia %2, głos %3 zbyt długi. Spodziewany: %4; Znaleziony: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>BÅ‚Ä…d odczytu XML w wierszu %1 kolumna %2: %3.</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8008,6 +8213,12 @@ Wybierz takty do połączenia i spróbuj ponownie.</translation>
         <source>Transparent background</source>
         <translation>Przezroczyste tło</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Nie można podzielić taktu w tym miejscu.
+Jest to pierwsza miara taktu.</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -8017,7 +8228,7 @@ Wybierz takty do połączenia i spróbuj ponownie.</translation>
     </message>
     <message>
         <source>Type to search. Press Enter to return to score.</source>
-        <translation>Wpisz, aby wyszukać. Naciśnij klawisz "Enter", aby powrócić do partytury.</translation>
+        <translation>Wpisz, aby wyszukać. Wciśnij klawisz "Enter", aby powrócić do partytury.</translation>
     </message>
 </context>
 <context>
@@ -8105,15 +8316,15 @@ Wybierz takty do połączenia i spróbuj ponownie.</translation>
     </message>
     <message>
         <source>Dotted %1</source>
-        <translation>Z kropkÄ… %1</translation>
+        <translation>%1 z kropkÄ…</translation>
     </message>
     <message>
         <source>Double dotted %1</source>
-        <translation>Z podwójną kropką %1</translation>
+        <translation>%1 z podwójną kropką</translation>
     </message>
     <message>
         <source>Triple dotted %1</source>
-        <translation>Z potrójną kropką %1</translation>
+        <translation>%1 z potrójną kropką</translation>
     </message>
 </context>
 <context>
@@ -10409,6 +10620,14 @@ zakończony niepowodzeniem: </translation>
         <source>Filter</source>
         <translation>Filtr</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Eksportuj RPN-y</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10593,67 +10812,67 @@ Odwiedź <a href="http://musescore.org">stronę internetową Mus
     </message>
     <message>
         <source>Long</source>
-        <translation>longa</translation>
+        <translation>Longa</translation>
     </message>
     <message>
         <source>Breve</source>
-        <translation>podwójna cała nuta (breve)</translation>
+        <translation>Podwójna cała nuta (breve)</translation>
     </message>
     <message>
         <source>Whole</source>
-        <translation>cała nuta</translation>
+        <translation>Cała nuta</translation>
     </message>
     <message>
         <source>Half</source>
-        <translation>półnuta</translation>
+        <translation>Półnuta</translation>
     </message>
     <message>
         <source>Quarter</source>
-        <translation>ćwierćnuta</translation>
+        <translation>Ćwierćnuta</translation>
     </message>
     <message>
         <source>Eighth</source>
-        <translation>ósemka</translation>
+        <translation>Ósemka</translation>
     </message>
     <message>
         <source>16th</source>
-        <translation>szesnastka</translation>
+        <translation>Szesnastka</translation>
     </message>
     <message>
         <source>32nd</source>
-        <translation>trzydziestodwójka</translation>
+        <translation>Trzydziestodwójka</translation>
     </message>
     <message>
         <source>64th</source>
-        <translation>sześćdziesięcioczwórka</translation>
+        <translation>Sześćdziesięcioczwórka</translation>
     </message>
     <message>
         <source>128th</source>
-        <translation>stodwudziestoósemka</translation>
+        <translation>Stodwudziestoósemka</translation>
     </message>
     <message>
         <source>256th</source>
-        <translation>dwieściepiędziesięcioszóstka</translation>
+        <translation>Dwieściepiędziesięcioszóstka</translation>
     </message>
     <message>
         <source>512th</source>
-        <translation>pięćsetdwunastka</translation>
+        <translation>Pięćsetdwunastka</translation>
     </message>
     <message>
         <source>1024th</source>
-        <translation>tysiącdwudziestoczwórka</translation>
+        <translation>Tysiącdwudziestoczwórka</translation>
     </message>
     <message>
         <source>Zero</source>
-        <translation>zero</translation>
+        <translation>Zero</translation>
     </message>
     <message>
         <source>Measure</source>
-        <translation>takt</translation>
+        <translation>Takt</translation>
     </message>
     <message>
         <source>Invalid</source>
-        <translation>nieprawidłowy</translation>
+        <translation>Nieprawidłowy</translation>
     </message>
     <message>
         <source>double flat</source>
@@ -11061,7 +11280,7 @@ Chcesz go zastąpić?</translation>
     </message>
     <message>
         <source>Press up to four keys to enter shortcut sequence</source>
-        <translation>Naciśnij do czterech klawiszy, aby wprowadzić sekwencję</translation>
+        <translation>Wciśnij do czterech klawiszy, aby wprowadzić sekwencję</translation>
     </message>
     <message>
         <source>Old shortcuts</source>
@@ -11268,6 +11487,14 @@ Chcesz go zastąpić?</translation>
         <source>System flag</source>
         <translation>Flaga systemowa</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Szukaj</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Wyczyść</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -12546,11 +12773,11 @@ zakończony niepowodzeniem: </translation>
     </message>
     <message>
         <source>Mirrored-flat2</source>
-        <translation>Odwrócony bemol</translation>
+        <translation>Bemol o trzy czwarte tonu</translation>
     </message>
     <message>
         <source>Mirrored-flat</source>
-        <translation>Odwrócony bemol</translation>
+        <translation>Bemol o ćwierćton</translation>
     </message>
     <message>
         <source>Mirrored-flat-slash</source>
@@ -12558,11 +12785,11 @@ zakończony niepowodzeniem: </translation>
     </message>
     <message>
         <source>Flat-flat-slash</source>
-        <translation>Podwójny i przekreślony bemol</translation>
+        <translation>Bemol o trzy czwarte tonu</translation>
     </message>
     <message>
         <source>Sharp-slash</source>
-        <translation>Przekreślony krzyżyk</translation>
+        <translation>Krzyżyk o ćwierćton</translation>
     </message>
     <message>
         <source>Sharp-slash2</source>
@@ -12574,15 +12801,15 @@ zakończony niepowodzeniem: </translation>
     </message>
     <message>
         <source>Sharp-slash4</source>
-        <translation>Przekreślony krzyżyk</translation>
+        <translation>Krzyżyk o trzy czwarte tonu</translation>
     </message>
     <message>
         <source>Sharp arrow up</source>
-        <translation>Krzyżyk ze strzałką w górę</translation>
+        <translation>Krzyżyk ze strzałką w górę (o trzy czwarte tonu)</translation>
     </message>
     <message>
         <source>Sharp arrow down</source>
-        <translation>Krzyżyk ze strzałką w dół</translation>
+        <translation>Krzyżyk ze strzałką w dół (o ćwierćton)</translation>
     </message>
     <message>
         <source>Sharp arrow both</source>
@@ -12590,11 +12817,11 @@ zakończony niepowodzeniem: </translation>
     </message>
     <message>
         <source>Flat arrow up</source>
-        <translation>Bemol ze strzałką w górę</translation>
+        <translation>Bemol ze strzałką w górę (o ćwierćton)</translation>
     </message>
     <message>
         <source>Flat arrow down</source>
-        <translation>Bemol ze strzałką w dół</translation>
+        <translation>Bemol ze strzałką w dół (o trzy czwarte tonu)</translation>
     </message>
     <message>
         <source>Flat arrow both</source>
@@ -12602,11 +12829,11 @@ zakończony niepowodzeniem: </translation>
     </message>
     <message>
         <source>Natural arrow up</source>
-        <translation>Kasownik ze strzałką w górę</translation>
+        <translation>Kasownik ze strzałką w górę (o ćwierćton)</translation>
     </message>
     <message>
         <source>Natural arrow down</source>
-        <translation>Kasownik ze strzałką w dół</translation>
+        <translation>Kasownik ze strzałką w dół (o ćwierćton)</translation>
     </message>
     <message>
         <source>Natural arrow both</source>
@@ -13609,15 +13836,11 @@ zakończony niepowodzeniem: </translation>
     </message>
     <message>
         <source>Feathered beam, slower</source>
-        <translation>Belka - wolniej</translation>
+        <translation>Belka - ritardando</translation>
     </message>
     <message>
         <source>Feathered beam, faster</source>
-        <translation>Belka - szybciej</translation>
-    </message>
-    <message>
-        <source>Palette</source>
-        <translation>Paleta</translation>
+        <translation>Belka - accelerando</translation>
     </message>
     <message>
         <source>Play Panel</source>
@@ -13656,12 +13879,8 @@ zakończony niepowodzeniem: </translation>
         <translation>Dodaj słowa</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Znakowanie tempa...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
-        <translation>Dodaj znak tempa</translation>
+        <translation>Dodaj oznaczenie tempa</translation>
     </message>
     <message>
         <source>System Text</source>
@@ -14016,10 +14235,6 @@ zakończony niepowodzeniem: </translation>
         <translation>Powtórz zaznaczenie</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Rolka</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>WÅ‚Ä…cz rolkÄ™ podczas odtwarzania</translation>
     </message>
@@ -14349,11 +14564,11 @@ zakończony niepowodzeniem: </translation>
     </message>
     <message>
         <source>Chord Symbols...</source>
-        <translation>Symboli akordu...</translation>
+        <translation>Symbole akordów...</translation>
     </message>
     <message>
         <source>Edit chord symbols style</source>
-        <translation>Edytuj styl symboli akordu</translation>
+        <translation>Edytuj styl symboli akordów</translation>
     </message>
     <message>
         <source>Chord Symbol</source>
@@ -14997,11 +15212,11 @@ zakończony niepowodzeniem: </translation>
     </message>
     <message>
         <source>Feathered Beam, Slower</source>
-        <translation>Belka - wolniej</translation>
+        <translation>Belka - ritardando</translation>
     </message>
     <message>
         <source>Feathered Beam, Faster</source>
-        <translation>Belka - szybciej</translation>
+        <translation>Belka - accelerando</translation>
     </message>
     <message>
         <source>Play panel</source>
@@ -15583,6 +15798,22 @@ zakończony niepowodzeniem: </translation>
         <source>Set loop in position</source>
         <translation>Ustaw pętlę w pozycji wejściowej</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Paleta</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Oznaczenie tempa</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Powiększenie do 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Rolka</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -15599,7 +15830,7 @@ Grupa niemiarowa przekracza takt.</translation>
     <message>
         <source>Cannot change local time signature:
 Measure is not empty</source>
-        <translation>Nie można zmienić lokalnego oznaczenia metrycznego:
+        <translation>Nie można zmienić lokalnego oznaczenia metrycznego.
 Takt nie jest pusty.</translation>
     </message>
 </context>
@@ -16634,6 +16865,10 @@ Takt nie jest pusty.</translation>
         <source>Tablature2</source>
         <translation>Alternatywna tabulatura</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Klucz wiolinowy (8vb)</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17477,7 +17712,7 @@ Takt nie jest pusty.</translation>
     </message>
     <message>
         <source>Varied coda</source>
-        <translation>Coda</translation>
+        <translation>Kwadratowa coda</translation>
     </message>
     <message>
         <source>Codetta</source>
@@ -17497,7 +17732,7 @@ Takt nie jest pusty.</translation>
     </message>
     <message>
         <source>Segno variation</source>
-        <translation>Segno</translation>
+        <translation>Wężowate segno</translation>
     </message>
 </context>
 <context>
@@ -17620,7 +17855,7 @@ Takt nie jest pusty.</translation>
     </message>
     <message>
         <source>Chord Symbols</source>
-        <translation>Symbole akordu</translation>
+        <translation>Symbole akordów</translation>
     </message>
     <message>
         <source>Other Text</source>
@@ -17745,10 +17980,6 @@ Takt nie jest pusty.</translation>
         <source>Prallprall line</source>
         <translation>Linia mordentu</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Linia falista</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_pt.ts b/share/locale/mscore_pt.ts
index 391db85..5975c60 100644
--- a/share/locale/mscore_pt.ts
+++ b/share/locale/mscore_pt.ts
@@ -3035,6 +3035,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpejo</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproduzir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3100,6 +3119,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3272,6 +3315,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3552,6 +3614,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Mostrar Texto</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4359,6 +4457,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4489,12 +4659,36 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
+        <translation>Repor valor</translation>
+    </message>
+    <message>
+        <source>Ornament Style</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
-        <translation>Repor valor</translation>
+        <source>Direction</source>
+        <translation>Direção</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>padrão</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Reproduzir</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -4872,6 +5066,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6029,27 +6230,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7173,6 +7374,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7643,10 +7848,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7658,6 +7859,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7966,6 +8171,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation>Fundo transparente</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10363,6 +10573,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11197,6 +11415,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13543,10 +13769,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paleta</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Painel de reprodução</translation>
     </message>
@@ -13583,10 +13805,6 @@ failed: </source>
         <translation>Adicionar letra</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13943,10 +14161,6 @@ failed: </source>
         <translation>Repetir seleccionado</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15510,6 +15724,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16559,6 +16789,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17670,10 +17904,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_pt_BR.ts b/share/locale/mscore_pt_BR.ts
index e2b4e9c..0032f69 100644
--- a/share/locale/mscore_pt_BR.ts
+++ b/share/locale/mscore_pt_BR.ts
@@ -225,7 +225,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Chord Automatic</source>
-        <translation>Acorde Automático</translation>
+        <translation>Ajuste Automático</translation>
     </message>
     <message>
         <source>Above Chord</source>
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Inspetor de Glissando</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpejo</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Tocar</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar o valor de tocar</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Reiniciar o valor de dilatação de tempo</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Estilo de ornamento</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Padrão</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barroco</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Restaurar o valor do tipo de ornamento</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Tocar</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar o valor de tocar</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Inspetor de Glissando</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Bend</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Tocar</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Reajustar valor de Tocar</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Mostrar texto</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Estilo</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Restaurar o valor do Estilo</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Estilo de tocar</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Cromático</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Teclas brancas</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Teclas pretas</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diationico</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Tocar</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar o valor de tocar</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Inspetor de Moldura de Texto</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Moldura de Texto</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Lacuna inferior</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Margem superior</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Reajustar valor</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Reajustar valor da lacuna superior</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Reajustar valor da lacuna inferior</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Margem esquerda</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Margem inferior</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Reajustar valor da margem direita</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Margem direita</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Reajustar valor da margem inferior</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Reajustar valor da margem superior</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Reajustar valor da margem esquerda</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Lacuna superior</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Mordente duplo superior</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Linha Ondulada</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Restaurar o valor</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Estilo de ornamento</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Direção</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Padrão</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barroco</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Restaurar o valor do tipo de ornamento</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Tocar</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restaurar o valor de tocar</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6048,14 +6249,6 @@ falhou: </translation>
         <translation>o próprio símbolo $</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>rótulo de metadados</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Rótulos disponíveis e seus valores atuais:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Aplicar a todas as Partes</translation>
     </message>
@@ -6071,6 +6264,14 @@ falhou: </translation>
         <source>page number, if there is more than one page</source>
         <translation>número de página, se existir mais de uma página</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>Etiqueta de meta-dados, veja abaixo</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Rótulos de meta-dados disponíveis e seus respectivos valores</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7201,6 +7402,10 @@ por favor, escolha um nome diferente:</translation>
         <translation>Esta partitura não pode ser salva online. 
 Por favor, corrija os compassos corrompidos e tente novamente.</translation>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Peça Ajuda</translation>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7684,10 +7889,6 @@ falhou: %2</translation>
         <translation>Erro ao gravar estilo: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>arquivo não encontrado</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Nenhuma seleção</translation>
     </message>
@@ -7699,6 +7900,10 @@ falhou: %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>O compasso %1 da pauta %2 e voz %3 está muito longo. Espectativa: %4; Encontrado: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>Erro de leitura XML na linha %1 coluna %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8012,6 +8217,12 @@ Por favor, selecione uma faixa de compassos a unir e tente novamente</translatio
         <source>Transparent background</source>
         <translation>Plano de fundo transparente</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Não é possível dividir o compasso:
+Primeiro tempo do compasso</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10412,6 +10623,14 @@ falhou: </translation>
         <source>Filter</source>
         <translation>Filtro</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Exportar RPNs</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10738,7 +10957,7 @@ Visite a <a href="http://musescore.org">página na internet Muse
     </message>
     <message>
         <source>Do you want to try to load this file anyway?</source>
-        <translation type="unfinished"/>
+        <translation>Você quer tentar carregar este arquivo mesmo assim?</translation>
     </message>
 </context>
 <context>
@@ -11271,6 +11490,14 @@ Deseja sobrescrevê-lo?
         <source>System flag</source>
         <translation>Indicador de Sistema</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Pesquisar...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Limpar</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13619,10 +13846,6 @@ falhou: </translation>
         <translation>Barra de ligação emplumada, rápida</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paleta</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Painel de reprodução</translation>
     </message>
@@ -13659,10 +13882,6 @@ falhou: </translation>
         <translation>Adicionar letra</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Andamento...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Adicionar andamento</translation>
     </message>
@@ -14019,10 +14238,6 @@ falhou: </translation>
         <translation>Repetir seleção</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Deslocar piano roll</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Piano roll</translation>
     </message>
@@ -15586,6 +15801,22 @@ falhou: </translation>
         <source>Set loop in position</source>
         <translation>Configura posição de início de repetição</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Paletas</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Marcação de Andamento</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Aumentar 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Pan Piano Roll</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16638,6 +16869,10 @@ O compasso não está vazio</translation>
         <source>Tablature2</source>
         <translation>Tablatura2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Clave de sol 8vb opcional</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17749,10 +17984,6 @@ O compasso não está vazio</translation>
         <source>Prallprall line</source>
         <translation>Apogiatura e mordente superior duplo</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Linha ondulada</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_ro.ts b/share/locale/mscore_ro.ts
index 2e4e583..c331519 100644
--- a/share/locale/mscore_ro.ts
+++ b/share/locale/mscore_ro.ts
@@ -2435,7 +2435,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Measure Numbers</source>
-        <translation>Numerotaţie măsuri</translation>
+        <translation>Numerotare Măsuri</translation>
     </message>
     <message>
         <source>Default TAB Clef</source>
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Inspector de glissando</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpegiatto</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Redare</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restabilește valoare "Redare"</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Restabilește Întindere Timpului</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Stil Ornament</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Implicit</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Baroc</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Restabilește Tipul Ornamentului</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Redare</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restabilește valoare "Redare"</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Inspector de Glissando</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Bend</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Redare</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restabilește valoare "Redare"</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Arată text</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Stil</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Restabilește Stilul</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Stil Redare</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Cromatic</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Clape Albe</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Clape Negre</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonic</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Redare</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restabilește valoare "Redare"</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Inspector de Cadru de Text</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Cadru Text</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Golul de jos</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Magine sus</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Restabilește valoarea</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Restabilește Golul de sus</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Restabilește Golul de jos</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Margine stânga</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Margine jos</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Restabilește Marginea din dreapta</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Margine dreapta</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Restabilește Marginea de jos</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Restabilește Marginea de sus</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Restabilește Marginea din stânga</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Golul de sus</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Prall Prall</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Linie ondulată</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Restabilește valoarea</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Stil Ornament</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Direcție</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Implicit</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Baroc</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Restabilește Tipul Ornamentului</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Redare</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Restabilește valoare "Redare"</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6048,14 +6249,6 @@ a eșuat:</translation>
         <translation>semnul de $ însuși</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>etichetă meta data</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Etichete disponibile și valorile lor curente:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Aplică tuturor știmelor</translation>
     </message>
@@ -6071,6 +6264,14 @@ a eșuat:</translation>
         <source>page number, if there is more than one page</source>
         <translation>numărul paginii, dacă este mai mult de o pagină</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>etichetă meta data, vedeți dedesupt</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Etichete meta data disponibile și valorile lor curente:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7198,7 +7399,11 @@ alegeți un nume diferit:</translation>
     </message>
     <message>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
-        <translation type="unfinished"/>
+        <translation>Această partitură nu poate fi salvata online. Reparați măsurile corupte și încercați din nou.</translation>
+    </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Cereți Ajutor</translation>
     </message>
 </context>
 <context>
@@ -7402,7 +7607,7 @@ alegeți un nume diferit:</translation>
     </message>
     <message>
         <source>Single Palette</source>
-        <translation type="unfinished"/>
+        <translation>Paletă Singură</translation>
     </message>
 </context>
 <context>
@@ -7683,10 +7888,6 @@ a eșuat: %2</translation>
         <translation>Scrierea Stilul a eșuat: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>fișier negăsit</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Nicio selecție</translation>
     </message>
@@ -7698,6 +7899,10 @@ a eșuat: %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Măsura %1, portativul %2, vocea %3 este prea lungă. Așteptat: %4; Găsit: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>Eroare de citire XML la linia %1 coloana %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8011,6 +8216,12 @@ Selectați mai multe măsuri consecutive pt. a le uni și încercați din nou</t
         <source>Transparent background</source>
         <translation>Fundal transparent</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Nu se poate sparge măsura aici:
+Prima bătaie a măsurii</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10409,7 +10620,15 @@ a eșuat:</translation>
     </message>
     <message>
         <source>Filter</source>
-        <translation type="unfinished"/>
+        <translation>Filtru</translation>
+    </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Export RPN-uri</translation>
     </message>
 </context>
 <context>
@@ -10733,11 +10952,11 @@ Vizitați <a href="http://musescore.org">website-ul MuseScore &l
     </message>
     <message>
         <source>MuseScore: Upload Error</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Eroare de upload</translation>
     </message>
     <message>
         <source>Do you want to try to load this file anyway?</source>
-        <translation type="unfinished"/>
+        <translation>Doriți să se încerce totuși încărcarea fișierului?</translation>
     </message>
 </context>
 <context>
@@ -11269,6 +11488,14 @@ Doriți să-l suprascrieți?</translation>
         <source>System flag</source>
         <translation>Flag de sistem</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Caută...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Åžterge</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13617,10 +13844,6 @@ a eșuat:</translation>
         <translation>Ligatură împănată, mai rapidă</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paletă</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Panou Redare</translation>
     </message>
@@ -13657,10 +13880,6 @@ a eșuat:</translation>
         <translation>Adaugă versuri</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Marcaj Tempo...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Adaugă marcaj tempo</translation>
     </message>
@@ -14017,10 +14236,6 @@ a eșuat:</translation>
         <translation>Repetare Selecţie</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Pan-ează Pianina</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Comută pan-are Pianină</translation>
     </message>
@@ -15584,6 +15799,22 @@ a eșuat:</translation>
         <source>Set loop in position</source>
         <translation>Stabilește poziție loop in</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Palete</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Marcaj Tempo</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Mărire la 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Pan-ează Pianina</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16635,6 +16866,10 @@ Măsura nu este vidă.</translation>
         <source>Tablature2</source>
         <translation>Tabulatură 2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Cheia Sol 8vb optional</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17746,10 +17981,6 @@ Măsura nu este vidă.</translation>
         <source>Prallprall line</source>
         <translation>PrallPrall linie</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Linie ondulată</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_ru.ts b/share/locale/mscore_ru.ts
index 969be4a..b2f180c 100644
--- a/share/locale/mscore_ru.ts
+++ b/share/locale/mscore_ru.ts
@@ -189,7 +189,7 @@ p, li { white-space: pre-wrap; }
     <name>ArticulationProperties</name>
     <message>
         <source>MuseScore: Articulations Properties</source>
-        <translation>MuseScore: Параметры штрихов</translation>
+        <translation>MuseScore: Свойства артикуляции</translation>
     </message>
     <message>
         <source>Appearance</source>
@@ -325,7 +325,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Break lines every X measures</source>
-        <translation>Перенос строки каждые Х тактов</translation>
+        <translation>Разрыв строки каждые Х тактов</translation>
     </message>
 </context>
 <context>
@@ -3051,6 +3051,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Инспектор глиссандо</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Арпеджио</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Играть</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Сбросить значение</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3116,6 +3135,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Сбросить значение растяжения времени</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Стиль орнаментики</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>По умолчанию</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Барочный</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Сбросить значение</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Играть</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Сбросить значение</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3288,6 +3331,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Инспектор глиссандо</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Бенд</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Играть</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Сбросить значение</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3568,6 +3630,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Показать текст</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Стиль</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Сбросить значение</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Играть стиль</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Хроматический</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Белые клавиши</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Черные клавиши</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Диатонический</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Играть</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Сбросить значение</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4038,7 +4136,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Tuning</source>
-        <translation>Настройка</translation>
+        <translation>Строй</translation>
     </message>
     <message>
         <source>Velocity</source>
@@ -4375,6 +4473,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Инспектор текстовой рамки</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Текстовая рамка</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Отступ снизу</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Верхнее поле</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Сбросить значение</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Сбросить значение верхнего отступа</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Сбросить значение нижнего отступа</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Левое поле</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>мм</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Нижнее поле</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Сбросить значение правого поля</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Правое поле</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Сбросить значение нижнего поля</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Сбросить значение верхнего поля</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Сбросить значение левого поля</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Отступ сверху</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>инт</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4505,11 +4675,35 @@ space unit</extracomment>
         <translation>Двойной мордент</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Волнистая линия</translation>
+        <source>Reset value</source>
+        <translation>Сбросить значение</translation>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation>Стиль орнаментики</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Направление</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>По умолчанию</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Барочный</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Сбросить значение</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Играть</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation>Сбросить значение</translation>
     </message>
 </context>
@@ -4888,6 +5082,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>атональный</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6059,14 +6260,6 @@ failed: </source>
         <translation>  $ сам знак</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>метка метаданных</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Доступные метки и их текущие значения:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Применить ко всем партиям</translation>
     </message>
@@ -6082,6 +6275,14 @@ failed: </source>
         <source>page number, if there is more than one page</source>
         <translation>номер страницы, если страниц больше одной</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>тег метадаты, смотри ниже</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Доступные метки метаданных и их текущие значения:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7124,7 +7325,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>&Tools</source>
-        <translation>&Инструменты</translation>
+        <translation>&Действия</translation>
     </message>
     <message>
         <source>No score</source>
@@ -7208,7 +7409,11 @@ please choose a different name:</source>
     </message>
     <message>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
-        <translation type="unfinished"/>
+        <translation>Эта партитура не может быть загружена на сервер. Пожалуйста, исправьте такты с ошибками и попробуйте еще раз.</translation>
+    </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Вызов Справки</translation>
     </message>
 </context>
 <context>
@@ -7412,7 +7617,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Single Palette</source>
-        <translation type="unfinished"/>
+        <translation>Одна палитра</translation>
     </message>
 </context>
 <context>
@@ -7693,10 +7898,6 @@ failed: %2</source>
         <translation>Запись стиля не удалась: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>файл не найден:</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Нет выделения</translation>
     </message>
@@ -7708,6 +7909,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Такт %1, нотоносец %2, голос %3 слишком длинный. Ожидается: %4; Сейчас: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>Ошибка чтения XML в строке %1, колонке %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8021,6 +8226,12 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation>Прозрачный фон</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Невозможно разделить такт в этом месте:
+Первая доля такта</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10420,6 +10631,14 @@ failed: </source>
         <source>Filter</source>
         <translation>Фильтр</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Экспорт RPN</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10742,11 +10961,11 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Upload Error</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: ошибка загрузки на сервер</translation>
     </message>
     <message>
         <source>Do you want to try to load this file anyway?</source>
-        <translation type="unfinished"/>
+        <translation>Хотите попробовать загрузить файл несмотря на это?</translation>
     </message>
 </context>
 <context>
@@ -11277,6 +11496,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation>Системный флаг</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Найти...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Очистить</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11310,7 +11537,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Tuning</source>
-        <translation>Настройка</translation>
+        <translation>Строй</translation>
     </message>
     <message>
         <source>Hz</source>
@@ -11367,7 +11594,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Master tuning</source>
-        <translation>Общая настройка</translation>
+        <translation>Общий строй</translation>
     </message>
 </context>
 <context>
@@ -13624,10 +13851,6 @@ failed: </source>
         <translation>Расширение вязок, ускорение</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Палитра</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Панель воспроизведения</translation>
     </message>
@@ -13664,10 +13887,6 @@ failed: </source>
         <translation>Добавить вокальный текст</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Темп...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Добавить темп</translation>
     </message>
@@ -14024,10 +14243,6 @@ failed: </source>
         <translation>Повторить выделение</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Панорама матричного редактора</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Включить/выключить движение по нотам в матричном редакторе</translation>
     </message>
@@ -15591,6 +15806,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation>Установить начало цикла</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Палитры</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Обозначение темпа</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Масштаб 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16641,6 +16872,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation>Табулатура2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Скрипичный ключ, 8vb по желанию</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17752,10 +17987,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation>Двойной мордент</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Волнистая линия</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_sk.ts b/share/locale/mscore_sk.ts
index 45eb132..1ea8cc9 100644
--- a/share/locale/mscore_sk.ts
+++ b/share/locale/mscore_sk.ts
@@ -3006,7 +3006,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Sol</source>
-        <translation type="unfinished"/>
+        <translation>Sol</translation>
     </message>
     <message>
         <source>La</source>
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Prehrať</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3369,7 +3431,7 @@ space unit</extracomment>
     <name>InspectorClef</name>
     <message>
         <source>Clef</source>
-        <translation type="unfinished"/>
+        <translation>Kľúč</translation>
     </message>
     <message>
         <source>Show courtesy</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Zobraziť text</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,11 +4666,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Smer</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>predvolené</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Prehrať</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4828,7 +5022,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Clef</source>
-        <translation type="unfinished"/>
+        <translation>Kľúč</translation>
     </message>
     <message>
         <source>Linked</source>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6036,14 +6237,6 @@ zlyhalo.</translation>
         <translation>samotný znak $ dolár</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Apklikovať pre všetky party</translation>
     </message>
@@ -6059,6 +6252,14 @@ zlyhalo.</translation>
         <source>page number, if there is more than one page</source>
         <translation>číslo strany, ak je viac ako jedna strana</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -6236,7 +6437,7 @@ zlyhalo.
     </message>
     <message>
         <source>Clef</source>
-        <translation type="unfinished"/>
+        <translation>Kľúč</translation>
     </message>
     <message>
         <source>Staff type</source>
@@ -7179,6 +7380,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7651,10 +7856,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>súbor sa nenašiel</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7666,6 +7867,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7973,6 +8178,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation>Priehľadné pozadie</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10370,6 +10580,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11198,6 +11416,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13544,10 +13770,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paleta</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Prehrávací panel</translation>
     </message>
@@ -13584,10 +13806,6 @@ failed: </source>
         <translation>Pridať text piesne</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13944,10 +14162,6 @@ failed: </source>
         <translation>Výber opakovania</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -14429,7 +14643,7 @@ failed: </source>
     </message>
     <message>
         <source>Symbols...</source>
-        <translation type="unfinished"/>
+        <translation>Symboly...</translation>
     </message>
     <message>
         <source>Show symbol palette</source>
@@ -14561,11 +14775,11 @@ failed: </source>
     </message>
     <message>
         <source>File: Open</source>
-        <translation type="unfinished"/>
+        <translation>Súbor: otvoriť</translation>
     </message>
     <message>
         <source>File: Save</source>
-        <translation type="unfinished"/>
+        <translation>Súbor: uložiť</translation>
     </message>
     <message>
         <source>File: Save online</source>
@@ -14573,11 +14787,11 @@ failed: </source>
     </message>
     <message>
         <source>File: Save as</source>
-        <translation type="unfinished"/>
+        <translation>Súbor: uložiť ako</translation>
     </message>
     <message>
         <source>Save selection</source>
-        <translation type="unfinished"/>
+        <translation>Uložiť výber</translation>
     </message>
     <message>
         <source>File: Save a copy</source>
@@ -14589,11 +14803,11 @@ failed: </source>
     </message>
     <message>
         <source>File: Close</source>
-        <translation type="unfinished"/>
+        <translation>Súbor: zatvoriť</translation>
     </message>
     <message>
         <source>File: New</source>
-        <translation type="unfinished"/>
+        <translation>Súbor: nový</translation>
     </message>
     <message>
         <source>Note input</source>
@@ -14613,7 +14827,7 @@ failed: </source>
     </message>
     <message>
         <source>Move Up</source>
-        <translation type="unfinished"/>
+        <translation>Posunúť nahor</translation>
     </message>
     <message>
         <source>Diatonic Down</source>
@@ -14625,7 +14839,7 @@ failed: </source>
     </message>
     <message>
         <source>Next Element</source>
-        <translation type="unfinished"/>
+        <translation>Nasledujúci prvok</translation>
     </message>
     <message>
         <source>Accessibility: Next element</source>
@@ -14641,19 +14855,19 @@ failed: </source>
     </message>
     <message>
         <source>First Element</source>
-        <translation type="unfinished"/>
+        <translation>Prvý prvok</translation>
     </message>
     <message>
         <source>Last Element</source>
-        <translation type="unfinished"/>
+        <translation>Posledný prvok</translation>
     </message>
     <message>
         <source>Move Down</source>
-        <translation type="unfinished"/>
+        <translation>Posunúť nadol</translation>
     </message>
     <message>
         <source>Previous Chord</source>
-        <translation type="unfinished"/>
+        <translation>Predchádzajúci akord</translation>
     </message>
     <message>
         <source>Previous Measure</source>
@@ -14665,7 +14879,7 @@ failed: </source>
     </message>
     <message>
         <source>Next Chord</source>
-        <translation type="unfinished"/>
+        <translation>Ďalší akord</translation>
     </message>
     <message>
         <source>Next Measure</source>
@@ -14725,19 +14939,19 @@ failed: </source>
     </message>
     <message>
         <source>Page: Previous</source>
-        <translation type="unfinished"/>
+        <translation>Strana: predchádzajúca</translation>
     </message>
     <message>
         <source>Page: Next</source>
-        <translation type="unfinished"/>
+        <translation>Strana: nasledujúca</translation>
     </message>
     <message>
         <source>Page: Top</source>
-        <translation type="unfinished"/>
+        <translation>Strana: začiatok</translation>
     </message>
     <message>
         <source>Page: End</source>
-        <translation type="unfinished"/>
+        <translation>Strana: koniec</translation>
     </message>
     <message>
         <source>Full measure rest</source>
@@ -14781,7 +14995,7 @@ failed: </source>
     </message>
     <message>
         <source>Whole Note</source>
-        <translation type="unfinished"/>
+        <translation>Celá nota</translation>
     </message>
     <message>
         <source>Note duration: Whole</source>
@@ -14789,7 +15003,7 @@ failed: </source>
     </message>
     <message>
         <source>Half Note</source>
-        <translation type="unfinished"/>
+        <translation>Pólová nota</translation>
     </message>
     <message>
         <source>Note duration: Half</source>
@@ -14797,7 +15011,7 @@ failed: </source>
     </message>
     <message>
         <source>Quarter Note</source>
-        <translation type="unfinished"/>
+        <translation>Štvrtinová nota</translation>
     </message>
     <message>
         <source>Note duration: Quarter</source>
@@ -14813,7 +15027,7 @@ failed: </source>
     </message>
     <message>
         <source>16th Note</source>
-        <translation type="unfinished"/>
+        <translation>16-inová nota</translation>
     </message>
     <message>
         <source>32nd Note</source>
@@ -14981,7 +15195,7 @@ failed: </source>
     </message>
     <message>
         <source>Select all</source>
-        <translation type="unfinished"/>
+        <translation>Vybrať všetko</translation>
     </message>
     <message>
         <source>Exchange voice 1-2</source>
@@ -15025,11 +15239,11 @@ failed: </source>
     </message>
     <message>
         <source>Edit element</source>
-        <translation type="unfinished"/>
+        <translation>Upraviť prvok</translation>
     </message>
     <message>
         <source>Show invisible</source>
-        <translation type="unfinished"/>
+        <translation>Zobraziť nevideteľné</translation>
     </message>
     <message>
         <source>Show unprintable</source>
@@ -15037,7 +15251,7 @@ failed: </source>
     </message>
     <message>
         <source>Show frames</source>
-        <translation type="unfinished"/>
+        <translation>Zobraziť rámy</translation>
     </message>
     <message>
         <source>Show page margins</source>
@@ -15049,7 +15263,7 @@ failed: </source>
     </message>
     <message>
         <source>Whole Rest</source>
-        <translation type="unfinished"/>
+        <translation>Celá pauza</translation>
     </message>
     <message>
         <source>Note input: Whole rest</source>
@@ -15057,7 +15271,7 @@ failed: </source>
     </message>
     <message>
         <source>Half Rest</source>
-        <translation type="unfinished"/>
+        <translation>Pólová pauza</translation>
     </message>
     <message>
         <source>Note input: Half rest</source>
@@ -15065,7 +15279,7 @@ failed: </source>
     </message>
     <message>
         <source>Quarter Rest</source>
-        <translation type="unfinished"/>
+        <translation>Štvrtinová pauza</translation>
     </message>
     <message>
         <source>Note input: Quarter rest</source>
@@ -15073,7 +15287,7 @@ failed: </source>
     </message>
     <message>
         <source>Eighth Rest</source>
-        <translation type="unfinished"/>
+        <translation>Osminová pauza</translation>
     </message>
     <message>
         <source>Note input: Eighth rest</source>
@@ -15511,6 +15725,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16561,6 +16791,10 @@ Takt nie je prázdny</translation>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -16951,7 +17185,7 @@ Takt nie je prázdny</translation>
     </message>
     <message>
         <source>Clef</source>
-        <translation type="unfinished"/>
+        <translation>Kľúč</translation>
     </message>
     <message>
         <source>Rest</source>
@@ -17103,7 +17337,7 @@ Takt nie je prázdny</translation>
     </message>
     <message>
         <source>Bar Line</source>
-        <translation type="unfinished"/>
+        <translation>Taktová čiara</translation>
     </message>
     <message>
         <source>Stem Slash</source>
@@ -17119,7 +17353,7 @@ Takt nie je prázdny</translation>
     </message>
     <message>
         <source>Repeat Measure</source>
-        <translation type="unfinished"/>
+        <translation>Opakovať takt</translation>
     </message>
     <message>
         <source>Chord Line</source>
@@ -17336,7 +17570,7 @@ Takt nie je prázdny</translation>
     </message>
     <message>
         <source>[Custom]</source>
-        <translation type="unfinished"/>
+        <translation>[Vlastný]</translation>
     </message>
 </context>
 <context>
@@ -17479,7 +17713,7 @@ Takt nie je prázdny</translation>
     </message>
     <message>
         <source>Sol</source>
-        <translation type="unfinished"/>
+        <translation>Sol</translation>
     </message>
     <message>
         <source>Alt. Brevis</source>
@@ -17603,19 +17837,19 @@ Takt nie je prázdny</translation>
     </message>
     <message>
         <source>Voice 1</source>
-        <translation type="unfinished"/>
+        <translation>Hlas 1</translation>
     </message>
     <message>
         <source>Voice 2</source>
-        <translation type="unfinished"/>
+        <translation>Hlas 2</translation>
     </message>
     <message>
         <source>Voice 3</source>
-        <translation type="unfinished"/>
+        <translation>Hlas 3</translation>
     </message>
     <message>
         <source>Voice 4</source>
-        <translation type="unfinished"/>
+        <translation>Hlas 4</translation>
     </message>
 </context>
 <context>
@@ -17672,10 +17906,6 @@ Takt nie je prázdny</translation>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_sl.ts b/share/locale/mscore_sl.ts
index aff6a23..6d58dde 100644
--- a/share/locale/mscore_sl.ts
+++ b/share/locale/mscore_sl.ts
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Zaigraj</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Prikaži besedilo</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>privzeto</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Zaigraj</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6019,14 +6220,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Uporabi za vse parte</translation>
     </message>
@@ -6042,6 +6235,14 @@ failed: </source>
         <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7159,6 +7360,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7629,10 +7834,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7644,6 +7845,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7952,6 +8157,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation>Prosojno ozadje</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10349,6 +10559,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11178,6 +11396,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13526,10 +13752,6 @@ ni bilo uspešno:</translation>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paleta</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Predvajalna plošča</translation>
     </message>
@@ -13566,10 +13788,6 @@ ni bilo uspešno:</translation>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13926,10 +14144,6 @@ ni bilo uspešno:</translation>
         <translation>Ponavljaj izbor</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15493,6 +15707,22 @@ ni bilo uspešno:</translation>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16543,6 +16773,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17654,10 +17888,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_sr.ts b/share/locale/mscore_sr.ts
index 77f8ba5..ae74ca1 100644
--- a/share/locale/mscore_sr.ts
+++ b/share/locale/mscore_sr.ts
@@ -3034,6 +3034,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpredja</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Pusti</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3099,6 +3118,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3271,6 +3314,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3551,6 +3613,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Prikaži tekst</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4358,6 +4456,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4488,11 +4658,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Pravac </translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>podrazumevano</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Pusti</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4871,6 +5065,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6025,27 +6226,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7167,6 +7368,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7639,10 +7844,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7654,6 +7855,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7961,6 +8166,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10358,6 +10568,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11191,6 +11409,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13537,10 +13763,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Palette</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Panel reprodukcije</translation>
     </message>
@@ -13577,10 +13799,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13937,10 +14155,6 @@ failed: </source>
         <translation>Ponovi izbor</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15504,6 +15718,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16553,6 +16783,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17664,10 +17898,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_sv.ts b/share/locale/mscore_sv.ts
index 0247675..16a47cb 100644
--- a/share/locale/mscore_sv.ts
+++ b/share/locale/mscore_sv.ts
@@ -1161,7 +1161,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>sp</source>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>MuseScore: Edit Grid</source>
@@ -1332,7 +1332,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>sp</source>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Staff line color:</source>
@@ -1439,7 +1439,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>sp</source>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>STANDARD STAFF</source>
@@ -1765,7 +1765,7 @@ p, li { white-space: pre-wrap; }
         <extracomment>spatium unit
 ----------
 space unit</extracomment>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Minimum number of empty measures:</source>
@@ -1897,7 +1897,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Spacing (1=tight):</source>
-        <translation>Spridning (1=tätt):</translation>
+        <translation>Utrymme (1=tätt):</translation>
     </message>
     <message>
         <source>Minimum measure width:</source>
@@ -2206,7 +2206,7 @@ space unit</extracomment>
     <message>
         <source>sp</source>
         <comment>space unit</comment>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Articulation distance:</source>
@@ -2741,7 +2741,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>sp</source>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Bottom note</source>
@@ -3049,6 +3049,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissandoinspektor</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpeggio</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spela upp</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Återställ uppspelningsvärde</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3114,6 +3133,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Återställ tidssträckningsvärde</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Ornamentstil</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Standard</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barock</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Återställ värde för Ornamenttyp</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spela</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Återställ värde för Spela</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3214,7 +3257,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>sp</source>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Position</source>
@@ -3286,6 +3329,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Glissandoinspektor</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Bänd</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spela</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Återställ värde för Spela</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3325,7 +3387,7 @@ space unit</extracomment>
     <message>
         <source>sp</source>
         <extracomment>spatium unit</extracomment>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Horizontal offset</source>
@@ -3455,7 +3517,7 @@ space unit</extracomment>
     <message>
         <source>sp</source>
         <extracomment>spatium unit</extracomment>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Color</source>
@@ -3566,6 +3628,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Visa text</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Stil</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Återställ värde för Stil</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Spelstil</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Kromatisk</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Vita tangenter</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Svarta tangenter</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonisk</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spela</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Återställ värde för Spela</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -3603,7 +3701,7 @@ space unit</extracomment>
     <message>
         <source>sp</source>
         <extracomment>spatium unit</extracomment>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Width</source>
@@ -3674,7 +3772,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>sp</source>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Circled tip</source>
@@ -3777,11 +3875,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Size in staff space units</source>
-        <translation>Storlek mätt i mellanrum</translation>
+        <translation>Storlek i ackoladrymdenheter</translation>
     </message>
     <message>
         <source>Reset Size in staff space units value</source>
-        <translation>Återställ Storleksvärde i mellanrum</translation>
+        <translation>Återställ Storleksvärde i ackoladrymdenheter</translation>
     </message>
 </context>
 <context>
@@ -3890,7 +3988,7 @@ space unit</extracomment>
     <message>
         <source>sp</source>
         <extracomment>Staff space unit</extracomment>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Line color</source>
@@ -4282,7 +4380,7 @@ space unit</extracomment>
     <message>
         <source>sp</source>
         <extracomment>spatium unit</extracomment>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Trailing space</source>
@@ -4361,7 +4459,7 @@ space unit</extracomment>
     <message>
         <source>sp</source>
         <extracomment>spatium unit</extracomment>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Spacer Inspector</source>
@@ -4373,6 +4471,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Textraminspektor</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Textram</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Nedre lucka</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Övre marginal</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Återställ värde</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Återställ värde för Övre lucka</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Återställ värde för Nedre lucka</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Vänster marginal</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Nedre marginal</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Återställ värde för högermarginal</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Högermarginal</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Återställ värde för nedre marginal</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Återställ värde för övre marginal</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Återställ värde för vänstermarginal</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Övre lucka</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>re</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4503,13 +4673,37 @@ space unit</extracomment>
         <translation>Prallprall</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>VÃ¥gig linje</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Återställ värde</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Ornamentstil</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Riktning</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Standard</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Barock</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Återställ värde för Ornamenttyp</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Spela</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Återställ värde för Spela</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4595,7 +4789,7 @@ space unit</extracomment>
     <message>
         <source>sp</source>
         <extracomment>spatium unit</extracomment>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Height</source>
@@ -4886,6 +5080,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -5072,7 +5273,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>sp</source>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Up</source>
@@ -6054,14 +6255,6 @@ failed: </source>
         <translation>$-tecknet</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>metadataetikett</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Tillgängliga etiketter och deras aktuella värden:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Använd i alla stämmor</translation>
     </message>
@@ -6077,6 +6270,14 @@ failed: </source>
         <source>page number, if there is more than one page</source>
         <translation>sidnummer, om det finns fler än en sida</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>metadataetikett, se nedanför</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Tillgängliga metadataetiketter och deras aktuella värden:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -6673,11 +6874,11 @@ Vill du ersätta den?
     </message>
     <message>
         <source>Staff spacer down</source>
-        <translation>Systemavstånd nedåt</translation>
+        <translation>Ackoladavstånd nedåt</translation>
     </message>
     <message>
         <source>Staff spacer up</source>
-        <translation>Systemavstånd uppåt</translation>
+        <translation>Ackoladavstånd uppåt</translation>
     </message>
     <message>
         <source>Fingering %1</source>
@@ -7204,7 +7405,11 @@ välj ett annat namn:</translation>
     </message>
     <message>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
-        <translation type="unfinished"/>
+        <translation>Detta partitur kan inte sparas online. Åtgärda de trasiga takterna och försök igen.</translation>
+    </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Be om hjälp</translation>
     </message>
 </context>
 <context>
@@ -7355,11 +7560,11 @@ välj ett annat namn:</translation>
     </message>
     <message>
         <source>Beat Slash</source>
-        <translation type="unfinished"/>
+        <translation>Slagstreck</translation>
     </message>
     <message>
         <source>Rhythm Slash</source>
-        <translation type="unfinished"/>
+        <translation>Rytmstreck</translation>
     </message>
 </context>
 <context>
@@ -7688,10 +7893,6 @@ stilfil %1:
         <translation>Kunde inte skriva stil: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>filen finns inte</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Ingen markering</translation>
     </message>
@@ -7703,6 +7904,10 @@ stilfil %1:
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Takt %1, system %2, stämma %3 för lång. Förväntades: %4; Hittades: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>XML-läsfel på rad %1 kolumn %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8016,6 +8221,12 @@ Markera ett taktintervall att foga samman och försök igen</translation>
         <source>Transparent background</source>
         <translation>Genomskinlig bakgrund</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Kan inte dela takt här:
+Första slag i takten</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -8169,7 +8380,7 @@ Markera ett taktintervall att foga samman och försök igen</translation>
     <message>
         <source>sp</source>
         <comment>spatium unit</comment>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
 </context>
 <context>
@@ -8347,11 +8558,11 @@ välj ett annat namn:</translation>
     <name>Ms::Workspace</name>
     <message>
         <source>Advanced</source>
-        <translation>Avancerat</translation>
+        <translation>Avancerad</translation>
     </message>
     <message>
         <source>Basic</source>
-        <translation>Grundläggande</translation>
+        <translation>Enkel</translation>
     </message>
 </context>
 <context>
@@ -8550,7 +8761,7 @@ välj ett annat namn:</translation>
     </message>
     <message>
         <source>Staff space:</source>
-        <translation>Mellanrum:</translation>
+        <translation>Ackoladavstånd:</translation>
     </message>
 </context>
 <context>
@@ -8633,7 +8844,7 @@ välj ett annat namn:</translation>
     </message>
     <message>
         <source>Staff space:</source>
-        <translation>Mellanrum:</translation>
+        <translation>Ackoladavstånd:</translation>
     </message>
 </context>
 <context>
@@ -8879,7 +9090,7 @@ palettfil
     </message>
     <message>
         <source>sp</source>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Content offset</source>
@@ -8914,7 +9125,7 @@ palettfil
     </message>
     <message>
         <source>sp</source>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Scale:</source>
@@ -10416,6 +10627,14 @@ palettfil
         <source>Filter</source>
         <translation>Filter</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Exportera RPN:er</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10738,11 +10957,11 @@ GÃ¥ till <a href="http://musescore.org">MuseScores webbsida</
     </message>
     <message>
         <source>MuseScore: Upload Error</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: uppladdningsfel</translation>
     </message>
     <message>
         <source>Do you want to try to load this file anyway?</source>
-        <translation type="unfinished"/>
+        <translation>Vill du försöka läsa in filen ändå?</translation>
     </message>
 </context>
 <context>
@@ -11274,6 +11493,14 @@ Vill du skriva över den?</translation>
         <source>System flag</source>
         <translation>Ackoladflagga</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Sök...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Rensa</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11448,7 +11675,7 @@ Vill du skriva över den?</translation>
     </message>
     <message>
         <source>sp</source>
-        <translation>mellanrum</translation>
+        <translation>re</translation>
     </message>
     <message>
         <source>Foreground color:</source>
@@ -11576,16 +11803,16 @@ Vill du skriva över den?</translation>
     </message>
     <message>
         <source>Offset in staff space units</source>
-        <translation>Förskjutning mätt i mellanrum</translation>
+        <translation>Förskjutning mätt i ackoladrymdenheter</translation>
     </message>
     <message>
         <source>Staff space</source>
         <extracomment>spatium unit</extracomment>
-        <translation>Mellanrum</translation>
+        <translation>Ackoladavstånd</translation>
     </message>
     <message>
         <source>Size follows 'Staff space' setting</source>
-        <translation>Storlek följer inställning för 'Mellanrum'</translation>
+        <translation>Storlek följer inställning för 'Ackoladavstånd'</translation>
     </message>
     <message>
         <source>Align baseline of text to reference point</source>
@@ -13622,10 +13849,6 @@ arbetsytefil
         <translation>Fjäderbalk, snabbare</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>&Palett</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>&Spelkontrollfönster</translation>
     </message>
@@ -13662,10 +13885,6 @@ arbetsytefil
         <translation>Lägg till sångtext</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Tempoangivelse...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Lägg till tempoangivelse</translation>
     </message>
@@ -14022,10 +14241,6 @@ arbetsytefil
         <translation>Repetera markering</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Följ i pianorulle</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Följ i pianorulle på/av</translation>
     </message>
@@ -14587,7 +14802,7 @@ arbetsytefil
     </message>
     <message>
         <source>Start Center</source>
-        <translation>Starcentral</translation>
+        <translation>Startcentral</translation>
     </message>
     <message>
         <source>Toggle create multimeasure rest</source>
@@ -15091,7 +15306,7 @@ arbetsytefil
     </message>
     <message>
         <source>Toggle system break</source>
-        <translation>Notsystembrytning på/av</translation>
+        <translation>Ackoladbrytning på/av</translation>
     </message>
     <message>
         <source>Toggle page break</source>
@@ -15589,6 +15804,22 @@ arbetsytefil
         <source>Set loop in position</source>
         <translation>Ange slinga i position</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Paletter</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Tempoangivelse</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Zooma till 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Följ i pianorulle</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16640,6 +16871,10 @@ Takt inte tom</translation>
         <source>Tablature2</source>
         <translation>Tablatur2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Diskantklav valfri 8vb</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -16649,7 +16884,7 @@ Takt inte tom</translation>
     </message>
     <message>
         <source>Side Stick</source>
-        <translation type="unfinished"/>
+        <translation>Sidostock</translation>
     </message>
     <message>
         <source>Tambourine</source>
@@ -17751,10 +17986,6 @@ Takt inte tom</translation>
         <source>Prallprall line</source>
         <translation>Prallprall linje</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>VÃ¥gig linje</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_th.ts b/share/locale/mscore_th.ts
index fb30119..868ecd1 100644
--- a/share/locale/mscore_th.ts
+++ b/share/locale/mscore_th.ts
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>อาร์เปจโจ</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>เล่น</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>แสดงข้อความ</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>ค่าเริ่มต้น</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>เล่น</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7161,6 +7362,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7631,10 +7836,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7646,6 +7847,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7953,6 +8158,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10350,6 +10560,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11187,6 +11405,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13533,10 +13759,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>จานผสม</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation type="unfinished"/>
     </message>
@@ -13573,10 +13795,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13933,10 +14151,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15500,6 +15714,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16549,6 +16779,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17660,10 +17894,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_tr.ts b/share/locale/mscore_tr.ts
index 28c3c18..c6c2abb 100644
--- a/share/locale/mscore_tr.ts
+++ b/share/locale/mscore_tr.ts
@@ -7,7 +7,7 @@
     </message>
     <message>
         <source>Copy revision number</source>
-        <translation type="unfinished"/>
+        <translation>Sürüm numarasını kopyala</translation>
     </message>
     <message>
         <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
@@ -48,7 +48,7 @@ p, li { white-space: pre-wrap; }
     <name>AeolusGui</name>
     <message>
         <source>Azimuth</source>
-        <translation type="unfinished"/>
+        <translation>Azimut</translation>
     </message>
     <message>
         <source>Width</source>
@@ -99,7 +99,7 @@ p, li { white-space: pre-wrap; }
     <name>AlbumManager</name>
     <message>
         <source>MuseScore: Album Manager</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Albüm Düzenleyici</translation>
     </message>
     <message>
         <source>Add Score</source>
@@ -123,11 +123,11 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Load</source>
-        <translation>Yükle</translation>
+        <translation>Aç</translation>
     </message>
     <message>
         <source>Print Album</source>
-        <translation type="unfinished"/>
+        <translation>Albümü Yazdır</translation>
     </message>
     <message>
         <source>Join Scores</source>
@@ -135,7 +135,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Album name:</source>
-        <translation type="unfinished"/>
+        <translation>Albüm adı:</translation>
     </message>
     <message>
         <source>Move current score down in list</source>
@@ -147,7 +147,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Album name</source>
-        <translation type="unfinished"/>
+        <translation>Albüm adı</translation>
     </message>
     <message>
         <source>Remove current score</source>
@@ -155,18 +155,18 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Create new album</source>
-        <translation type="unfinished"/>
+        <translation>Yeni albüm oluştur</translation>
     </message>
     <message>
         <source>Load an existing album</source>
-        <translation type="unfinished"/>
+        <translation>Mevcut bir albümü aç</translation>
     </message>
 </context>
 <context>
     <name>ArticulationProperties</name>
     <message>
         <source>MuseScore: Articulations Properties</source>
-        <translation>MuseScore: Nota İşaretleri Özellikleri</translation>
+        <translation>MuseScore: Artikülasyon Özellikleri</translation>
     </message>
     <message>
         <source>Appearance</source>
@@ -371,23 +371,23 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Do</source>
-        <translation type="unfinished"/>
+        <translation>Do</translation>
     </message>
     <message>
         <source>Re</source>
-        <translation type="unfinished"/>
+        <translation>Re</translation>
     </message>
     <message>
         <source>Fa</source>
-        <translation type="unfinished"/>
+        <translation>Fa</translation>
     </message>
     <message>
         <source>La</source>
-        <translation type="unfinished"/>
+        <translation>La</translation>
     </message>
     <message>
         <source>Ti</source>
-        <translation type="unfinished"/>
+        <translation>Si</translation>
     </message>
 </context>
 <context>
@@ -442,15 +442,15 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>2</source>
-        <translation type="unfinished"/>
+        <translation>2</translation>
     </message>
     <message>
         <source>3</source>
-        <translation type="unfinished"/>
+        <translation>3</translation>
     </message>
     <message>
         <source>4</source>
-        <translation type="unfinished"/>
+        <translation>4</translation>
     </message>
     <message>
         <source>Shortcut:</source>
@@ -541,7 +541,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Short name:</source>
-        <translation type="unfinished"/>
+        <translation>Kısa isim:</translation>
     </message>
     <message>
         <source>MIDI program:</source>
@@ -556,7 +556,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Select Note:</source>
-        <translation type="unfinished"/>
+        <translation>Nota Seç</translation>
     </message>
     <message>
         <source>Octave 8</source>
@@ -1162,23 +1162,23 @@ p, li { white-space: pre-wrap; }
     <name>EditStaffBase</name>
     <message>
         <source>MuseScore: Edit Staff/Part Properties</source>
-        <translation>MuseScore: Porte/Parça Özelliklerini Düzenle</translation>
+        <translation>MuseScore: Porte/Bölüm Özelliklerini Düzenle</translation>
     </message>
     <message>
         <source>Part Properties</source>
-        <translation>Parça Özellikleri</translation>
+        <translation>Bölüm Özellikleri</translation>
     </message>
     <message>
         <source>Change Instrument...</source>
-        <translation>Çalgı değiştir</translation>
+        <translation>Çalgı değiştir...</translation>
     </message>
     <message>
         <source>Instrument:</source>
-        <translation>Enstrüman:</translation>
+        <translation>Çalgı:</translation>
     </message>
     <message>
         <source>Amateur:</source>
-        <translation>Amatör</translation>
+        <translation>Amatör:</translation>
     </message>
     <message>
         <source>-</source>
@@ -1186,7 +1186,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Professional:</source>
-        <translation>Mesleki</translation>
+        <translation>Profesyonel:</translation>
     </message>
     <message>
         <source>0 - Perfect Unison</source>
@@ -1318,7 +1318,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Part name:</source>
-        <translation type="unfinished"/>
+        <translation>Bölüm adı:</translation>
     </message>
     <message>
         <source>Long instrument name:</source>
@@ -1700,7 +1700,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Slurs/Ties</source>
-        <translation type="unfinished"/>
+        <translation>Cümle Bağları/Uzatma Bağları</translation>
     </message>
     <message>
         <source>Sizes</source>
@@ -1720,7 +1720,7 @@ p, li { white-space: pre-wrap; }
     </message>
     <message>
         <source>Articulations, Ornaments</source>
-        <translation>Nota İşaretleri, Süslemeler</translation>
+        <translation>Artikülasyonlar, Süslemeler</translation>
     </message>
     <message>
         <source>Accidentals</source>
@@ -1863,7 +1863,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Every system</source>
-        <translation>her sistem</translation>
+        <translation>Her sistem</translation>
     </message>
     <message>
         <source>System bracket distance:</source>
@@ -1935,7 +1935,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Barline thickness:</source>
-        <translation type="unfinished"/>
+        <translation>Ölçü çizgisi kalınlığı</translation>
     </message>
     <message>
         <source>End barline thickness:</source>
@@ -2083,7 +2083,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Pedal Line</source>
-        <translation type="unfinished"/>
+        <translation>Pedal Çizgisi</translation>
     </message>
     <message>
         <source>Trill Line</source>
@@ -2099,7 +2099,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Jazz</source>
-        <translation type="unfinished"/>
+        <translation>Caz</translation>
     </message>
     <message>
         <source>Custom</source>
@@ -2115,7 +2115,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Solfeggio</source>
-        <translation type="unfinished"/>
+        <translation>Solfej</translation>
     </message>
     <message>
         <source>Lower case minor chords</source>
@@ -2188,7 +2188,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Articulation distance:</source>
-        <translation type="unfinished"/>
+        <translation>Artikülasyon uzaklığı:</translation>
     </message>
     <message>
         <source>Note head distance:</source>
@@ -2196,7 +2196,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Articulation size:</source>
-        <translation type="unfinished"/>
+        <translation>Artikülasyon boyutu:</translation>
     </message>
     <message>
         <source>Accidental</source>
@@ -2244,7 +2244,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Capo</source>
-        <translation type="unfinished"/>
+        <translation>Kapo</translation>
     </message>
     <message>
         <source>Vertical distance from note head:</source>
@@ -2288,7 +2288,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Interval:</source>
-        <translation type="unfinished"/>
+        <translation>Aralık</translation>
     </message>
     <message>
         <source>Hide instrument name if there is only 1 instrument</source>
@@ -2527,7 +2527,7 @@ space unit</extracomment>
     <name>ExcerptsDialog</name>
     <message>
         <source>MuseScore: Parts</source>
-        <translation>MuseScore: Parçalar</translation>
+        <translation>MuseScore: Bölümler</translation>
     </message>
     <message>
         <source>Instrument:</source>
@@ -2547,15 +2547,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>Part title:</source>
-        <translation type="unfinished"/>
+        <translation>Bölüm başlığı:</translation>
     </message>
     <message>
         <source>Edit Part</source>
-        <translation type="unfinished"/>
+        <translation>Bölümü düzenle</translation>
     </message>
     <message>
         <source>Select Part</source>
-        <translation type="unfinished"/>
+        <translation>Bölüm Seç</translation>
     </message>
 </context>
 <context>
@@ -2578,7 +2578,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>Sound Fonts</source>
@@ -2975,11 +2975,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>Do</source>
-        <translation type="unfinished"/>
+        <translation>D</translation>
     </message>
     <message>
         <source>Re</source>
-        <translation type="unfinished"/>
+        <translation>Re</translation>
     </message>
     <message>
         <source>Mi</source>
@@ -2987,7 +2987,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Fa</source>
-        <translation type="unfinished"/>
+        <translation>Fa</translation>
     </message>
     <message>
         <source>Sol</source>
@@ -2995,11 +2995,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>La</source>
-        <translation type="unfinished"/>
+        <translation>La</translation>
     </message>
     <message>
         <source>Ti</source>
-        <translation type="unfinished"/>
+        <translation>Si</translation>
     </message>
     <message>
         <source>Alt. Brevis</source>
@@ -3027,10 +3027,29 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Arpej</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Oynat</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
-        <translation type="unfinished"/>
+        <translation>Artikülasyon</translation>
     </message>
     <message>
         <source>Direction</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3393,7 +3455,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Part</source>
-        <translation type="unfinished"/>
+        <translation>Bölüm</translation>
     </message>
     <message>
         <source>System</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Metni Göster</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -3636,7 +3734,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Part</source>
-        <translation type="unfinished"/>
+        <translation>Bölüm</translation>
     </message>
     <message>
         <source>System</source>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>varsayılan</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Oynat</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4711,11 +4905,11 @@ space unit</extracomment>
     </message>
     <message>
         <source>3</source>
-        <translation type="unfinished"/>
+        <translation>3</translation>
     </message>
     <message>
         <source>4</source>
-        <translation type="unfinished"/>
+        <translation>4</translation>
     </message>
     <message>
         <source>Instrument wizard</source>
@@ -4742,7 +4936,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>MuseScore: Instruments</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Çalgılar</translation>
     </message>
     <message>
         <source>Load</source>
@@ -4765,7 +4959,7 @@ space unit</extracomment>
     <name>InstrumentsWidget</name>
     <message>
         <source>MuseScore: Instruments</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Çalgılar</translation>
     </message>
     <message>
         <source>Instrument List</source>
@@ -4837,7 +5031,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Partitur List</source>
-        <translation type="unfinished"/>
+        <translation>Partisyon Listesi</translation>
     </message>
     <message>
         <source>Staff linked to previous</source>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -4899,15 +5100,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>2</source>
-        <translation type="unfinished"/>
+        <translation>2</translation>
     </message>
     <message>
         <source>3</source>
-        <translation type="unfinished"/>
+        <translation>3</translation>
     </message>
     <message>
         <source>4</source>
-        <translation type="unfinished"/>
+        <translation>4</translation>
     </message>
     <message>
         <source>5</source>
@@ -5089,7 +5290,7 @@ space unit</extracomment>
     <name>LoginDialog</name>
     <message>
         <source>Log in to MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore'da oturum aç</translation>
     </message>
     <message>
         <source>Username or email</source>
@@ -5188,15 +5389,15 @@ space unit</extracomment>
     </message>
     <message>
         <source>2</source>
-        <translation type="unfinished"/>
+        <translation>2</translation>
     </message>
     <message>
         <source>3</source>
-        <translation type="unfinished"/>
+        <translation>3</translation>
     </message>
     <message>
         <source>4</source>
-        <translation type="unfinished"/>
+        <translation>4</translation>
     </message>
     <message>
         <source>5</source>
@@ -5373,7 +5574,7 @@ Would you like to locate %2 now?</source>
     </message>
     <message>
         <source>Articulations & Ornaments</source>
-        <translation type="unfinished"/>
+        <translation>Artikülasyonlar & Süslemeler</translation>
     </message>
     <message>
         <source>Accidentals</source>
@@ -5436,7 +5637,7 @@ Would you like to locate %2 now?</source>
     <name>MeasureProperties</name>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>cannot change measure length:
@@ -5496,11 +5697,11 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>2</source>
-        <translation type="unfinished"/>
+        <translation>2</translation>
     </message>
     <message>
         <source>4</source>
-        <translation type="unfinished"/>
+        <translation>4</translation>
     </message>
     <message>
         <source>8</source>
@@ -5644,7 +5845,7 @@ tuplet would cross measure</source>
     <name>MetaEditDialog</name>
     <message>
         <source>MuseScore Version:</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore sürümü:</translation>
     </message>
     <message>
         <source>Revision:</source>
@@ -5735,7 +5936,7 @@ tuplet would cross measure</source>
     </message>
     <message>
         <source>MuseScore Files (*.mscz *.mscx)</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore dosyaları (*.mscz *.mscx)</translation>
     </message>
     <message>
         <source>MuseScore Album Files (*.album)</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation type="unfinished"/>
+        <source>Apply to all Parts</source>
+        <translation>Tüm Bölümlere Uygula</translation>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -6362,7 +6563,7 @@ failed: </source>
     <name>Ms::MediaDialog</name>
     <message>
         <source>MuseScore: Additional Media</source>
-        <translation>MuseScore: </translation>
+        <translation>MuseScore: Ek Medya</translation>
     </message>
 </context>
 <context>
@@ -6407,7 +6608,7 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>Save changes to the score "%1"
@@ -6457,7 +6658,7 @@ kaydetmek ister misiniz?</translation>
     </message>
     <message>
         <source>MuseScore: Save File</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Dosyayı Kaydet</translation>
     </message>
     <message>
         <source>Untitled</source>
@@ -6569,7 +6770,7 @@ kaydetmek ister misiniz?</translation>
     </message>
     <message>
         <source>MuseScore: Export Parts</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Bölümleri Kaydet</translation>
     </message>
     <message>
         <source>"%1" already exists.
@@ -6595,7 +6796,7 @@ Do you want to replace it?
     </message>
     <message>
         <source>Parts were successfully exported</source>
-        <translation type="unfinished"/>
+        <translation>Bölümler başarıyla kaydedildi</translation>
     </message>
     <message>
         <source>MuseScore: Save a Copy</source>
@@ -7042,7 +7243,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Score_and_Parts</source>
-        <translation type="unfinished"/>
+        <translation>Partisyon_ve_Bölümler</translation>
     </message>
     <message>
         <source>Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5 *.GPX)</source>
@@ -7078,7 +7279,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>No score</source>
-        <translation>nota yok</translation>
+        <translation>Nota yok</translation>
     </message>
     <message>
         <source>Edit mode</source>
@@ -7160,6 +7361,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7426,7 +7631,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>untitled</source>
@@ -7474,7 +7679,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>Choose Default Style for Parts</source>
-        <translation type="unfinished"/>
+        <translation>Bölümler İçin Varsayılan Stili Seçin</translation>
     </message>
     <message>
         <source>Choose Instrument List</source>
@@ -7490,7 +7695,7 @@ Save before closing?</source>
     </message>
     <message>
         <source>MuseScore Shortcuts</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore Kısayolları</translation>
     </message>
     <message>
         <source>Print Shortcuts</source>
@@ -7630,10 +7835,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7645,6 +7846,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7953,6 +8158,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -8129,7 +8339,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Apply to all Parts</source>
-        <translation type="unfinished"/>
+        <translation>Tüm Bölümlere Uygula</translation>
     </message>
     <message>
         <source>Text style name:</source>
@@ -8561,7 +8771,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Apply to all Parts</source>
-        <translation type="unfinished"/>
+        <translation>Tüm Bölümlere Uygula</translation>
     </message>
     <message>
         <source>Distance between two lines on a standard 5-line staff</source>
@@ -8927,11 +9137,11 @@ failed: </source>
     </message>
     <message>
         <source>MIDI sound for part</source>
-        <translation>bu parça için midi ses</translation>
+        <translation>Bu bölüm için MIDI ses</translation>
     </message>
     <message>
         <source>Part name</source>
-        <translation type="unfinished"/>
+        <translation>Bölüm adı</translation>
     </message>
     <message>
         <source>Panorama position</source>
@@ -8943,7 +9153,7 @@ failed: </source>
     </message>
     <message>
         <source>Part Name</source>
-        <translation>Parça Adı</translation>
+        <translation>Bölüm Adı</translation>
     </message>
     <message>
         <source>Use arrows to modify</source>
@@ -9623,7 +9833,7 @@ failed: </source>
     </message>
     <message>
         <source>Style for part:</source>
-        <translation type="unfinished"/>
+        <translation>Bölüm stili:</translation>
     </message>
     <message>
         <source>ALSA audio</source>
@@ -10020,19 +10230,19 @@ failed: </source>
     </message>
     <message>
         <source>Style for part</source>
-        <translation type="unfinished"/>
+        <translation>Bölüm stili</translation>
     </message>
     <message>
         <source>Insert path to style file for part</source>
-        <translation type="unfinished"/>
+        <translation>Bölüm stili için dosya konumunu girin</translation>
     </message>
     <message>
         <source>Choose style for part</source>
-        <translation type="unfinished"/>
+        <translation>Bölüm stili seç</translation>
     </message>
     <message>
         <source>Opens a file dialog for selecting a style file for part</source>
-        <translation type="unfinished"/>
+        <translation>Bölüm için stil dosyası seçmeniz için bir pencere açar</translation>
     </message>
     <message>
         <source>Instrument list 2</source>
@@ -10344,12 +10554,20 @@ failed: </source>
     </message>
     <message>
         <source>Check for new version of MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore'un yeni sürümünü kontrol edin</translation>
     </message>
     <message>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10373,7 +10591,7 @@ Please select a single note or lyrics and retry operation
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>No note or figured bass selected:
@@ -10668,7 +10886,7 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Save File</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Dosyayı Kaydet</translation>
     </message>
     <message>
         <source>Quit</source>
@@ -10704,7 +10922,7 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Load MIDI</source>
-        <translation>MuseScore: midi yükle</translation>
+        <translation>MuseScore: MIDI Aç</translation>
     </message>
     <message>
         <source>MuseScore: Load Style Failed</source>
@@ -11036,15 +11254,15 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>2</source>
-        <translation type="unfinished"/>
+        <translation>2</translation>
     </message>
     <message>
         <source>3</source>
-        <translation type="unfinished"/>
+        <translation>3</translation>
     </message>
     <message>
         <source>4</source>
-        <translation type="unfinished"/>
+        <translation>4</translation>
     </message>
     <message>
         <source>Channel:</source>
@@ -11184,6 +11402,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11542,7 +11768,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Instrument Name (Part)</source>
-        <translation type="unfinished"/>
+        <translation>Çalgı İsmi (Bölüm)</translation>
     </message>
     <message>
         <source>Dynamics</source>
@@ -11695,11 +11921,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>2</source>
-        <translation type="unfinished"/>
+        <translation>2</translation>
     </message>
     <message>
         <source>4</source>
-        <translation type="unfinished"/>
+        <translation>4</translation>
     </message>
     <message>
         <source>8</source>
@@ -11785,11 +12011,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>2</source>
-        <translation type="unfinished"/>
+        <translation>2</translation>
     </message>
     <message>
         <source>4</source>
-        <translation type="unfinished"/>
+        <translation>4</translation>
     </message>
     <message>
         <source>8</source>
@@ -12413,7 +12639,7 @@ failed: </source>
     </message>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>SoundFont %1 already loaded</source>
@@ -12603,11 +12829,11 @@ failed: </source>
     </message>
     <message>
         <source>Export Parts...</source>
-        <translation type="unfinished"/>
+        <translation>Bölümleri Kaydet...</translation>
     </message>
     <message>
         <source>Save a copy of the score's parts in various formats</source>
-        <translation type="unfinished"/>
+        <translation>Partisyon bölümlerinin bir kopyasını çeşitli formatlarda kaydedin</translation>
     </message>
     <message>
         <source>Close</source>
@@ -13187,7 +13413,7 @@ failed: </source>
     </message>
     <message>
         <source>Add slur</source>
-        <translation type="unfinished"/>
+        <translation>BaÄŸ ekle</translation>
     </message>
     <message>
         <source>Crescendo</source>
@@ -13231,7 +13457,7 @@ failed: </source>
     </message>
     <message>
         <source>Delete contents of the selected measures</source>
-        <translation type="unfinished"/>
+        <translation>Seçili ölçülerin içeriklerini sil</translation>
     </message>
     <message>
         <source>Timewise delete</source>
@@ -13475,7 +13701,7 @@ failed: </source>
     </message>
     <message>
         <source>2</source>
-        <translation type="unfinished"/>
+        <translation>2</translation>
     </message>
     <message>
         <source>Voice 2</source>
@@ -13483,7 +13709,7 @@ failed: </source>
     </message>
     <message>
         <source>3</source>
-        <translation type="unfinished"/>
+        <translation>3</translation>
     </message>
     <message>
         <source>Voice 3</source>
@@ -13491,7 +13717,7 @@ failed: </source>
     </message>
     <message>
         <source>4</source>
-        <translation type="unfinished"/>
+        <translation>4</translation>
     </message>
     <message>
         <source>Voice 4</source>
@@ -13530,10 +13756,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Paletler</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation type="unfinished"/>
     </message>
@@ -13570,10 +13792,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13930,10 +14148,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -13959,11 +14173,11 @@ failed: </source>
     </message>
     <message>
         <source>Parts...</source>
-        <translation type="unfinished"/>
+        <translation>Bölümler...</translation>
     </message>
     <message>
         <source>Manage parts</source>
-        <translation type="unfinished"/>
+        <translation>Bölümleri düzenle</translation>
     </message>
     <message>
         <source>Enharmonic up</source>
@@ -14455,11 +14669,11 @@ failed: </source>
     </message>
     <message>
         <source>Part Name</source>
-        <translation>Parça Adı</translation>
+        <translation>Bölüm Adı</translation>
     </message>
     <message>
         <source>Add part name</source>
-        <translation type="unfinished"/>
+        <translation>Bölüm adı ekle</translation>
     </message>
     <message>
         <source>Save Online...</source>
@@ -14571,7 +14785,7 @@ failed: </source>
     </message>
     <message>
         <source>Export parts</source>
-        <translation type="unfinished"/>
+        <translation>Bölümleri kaydet</translation>
     </message>
     <message>
         <source>File: Close</source>
@@ -15497,12 +15711,28 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
     <message>
         <source>MuseScore</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore</translation>
     </message>
     <message>
         <source>Cannot rewrite measures:
@@ -16546,6 +16776,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -16599,7 +16833,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Hand Clap</source>
-        <translation type="unfinished"/>
+        <translation>Alkış</translation>
     </message>
     <message>
         <source>Electric Snare</source>
@@ -16960,7 +17194,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Articulation</source>
-        <translation type="unfinished"/>
+        <translation>Artikülasyon</translation>
     </message>
     <message>
         <source>Dynamic</source>
@@ -17444,23 +17678,23 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Do</source>
-        <translation type="unfinished"/>
+        <translation>D</translation>
     </message>
     <message>
         <source>Re</source>
-        <translation type="unfinished"/>
+        <translation>Re</translation>
     </message>
     <message>
         <source>Fa</source>
-        <translation type="unfinished"/>
+        <translation>Fa</translation>
     </message>
     <message>
         <source>La</source>
-        <translation type="unfinished"/>
+        <translation>La</translation>
     </message>
     <message>
         <source>Ti</source>
-        <translation type="unfinished"/>
+        <translation>Si</translation>
     </message>
     <message>
         <source>Sol</source>
@@ -17540,7 +17774,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Articulations</source>
-        <translation type="unfinished"/>
+        <translation>Artikülasyonlar</translation>
     </message>
     <message>
         <source>Slurs</source>
@@ -17657,10 +17891,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_uk.ts b/share/locale/mscore_uk.ts
index 82adc19..65e7adb 100644
--- a/share/locale/mscore_uk.ts
+++ b/share/locale/mscore_uk.ts
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Інспектор: Ґлісандо</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Арпеджіо</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Грати</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Скинути значення «Грати»</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation>Скинути значення «Розтягнення часу»</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Стиль орнаменту</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>За промовчанням</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Бароко</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Скинути значення типу орнамента</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Грати</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Скинути значення «Грати»</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3279,6 +3322,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>Показати текст</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Стиль</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Скинути значення стилю</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Стиль гри</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Хроматично</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Білі клавіші</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Чорні клавіші</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Діатонічно</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Грати</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Скинути значення «Грати»</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,13 +4666,37 @@ space unit</extracomment>
         <translation>Подвійний мордент</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Хвиляста лінія</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Скинути значення</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Стиль орнаменту</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>Напрям</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>За промовчанням</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Бароко</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Скинути значення типу орнамента</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Грати</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Скинути значення «Грати»</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>атонічно</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6048,14 +6249,6 @@ failed: </source>
         <translation>знак $</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>теґ метаданих</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Доступні теґи та їхні поточні значення:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Застосувати до всіх партій</translation>
     </message>
@@ -6071,6 +6264,14 @@ failed: </source>
         <source>page number, if there is more than one page</source>
         <translation>номер сторінки, якщо їх більше одної</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>теґ метаданих, дивись нижче</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Доступні мета-теги та їх поточні значення:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -7198,6 +7399,10 @@ please choose a different name:</source>
     </message>
     <message>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
+        <translation>Цю партитуру не можна зберегти онлайн. Будь ласка виправте такт з помилкою та збережіть знову.</translation>
+    </message>
+    <message>
+        <source>Ask for Help</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7683,10 +7888,6 @@ failed: %2</source>
         <translation>Не вдалося записати стиль: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>файл не знайдено</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Не вибрано</translation>
     </message>
@@ -7698,6 +7899,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Такт %1, нотоносець %2, голос %3 занадто довгий. Очікувалося: %4; Знайдено: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>Помилка читання XML у рядку %1 колонка %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -8011,6 +8216,12 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation>Прозорий фон</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Неможливо розділити такт тут:
+Перша доля такта</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10411,6 +10622,14 @@ failed: </source>
         <source>Filter</source>
         <translation>Фільтр</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Експортувати RPN</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -10733,11 +10952,11 @@ Visit the <a href="http://musescore.org">MuseScore website</a
     </message>
     <message>
         <source>MuseScore: Upload Error</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore: Помилка відвантаження</translation>
     </message>
     <message>
         <source>Do you want to try to load this file anyway?</source>
-        <translation type="unfinished"/>
+        <translation>Всерівно бажаєте спробувати завантажити цей файл?</translation>
     </message>
 </context>
 <context>
@@ -11269,6 +11488,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation>Системний прапорець</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Пошук...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Очистити</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13617,10 +13844,6 @@ failed: </source>
         <translation>Розширення в’язок, прискорення</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Палітра</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Пульт програвання</translation>
     </message>
@@ -13657,10 +13880,6 @@ failed: </source>
         <translation>Додати слова</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Маркування темпу…</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Додати маркування темпу</translation>
     </message>
@@ -14017,10 +14236,6 @@ failed: </source>
         <translation>Повторити вибране</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Панорама матричного редактора</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Включити/виключити рух по нотах в матричному редакторі</translation>
     </message>
@@ -15584,6 +15799,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation>Вказати початкову позицію зациклення</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16635,6 +16866,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation>Табулатура2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Скрипковий ключ, октавою вище 8vb за вибором</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17746,10 +17981,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation>Подвійний мордент</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Хвиляста лінія</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_uz at Latn.ts b/share/locale/mscore_uz at Latn.ts
index ad6b891..b29f4c5 100644
--- a/share/locale/mscore_uz at Latn.ts
+++ b/share/locale/mscore_uz at Latn.ts
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7158,6 +7359,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7628,10 +7833,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7643,6 +7844,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7950,6 +8155,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10347,6 +10557,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11175,6 +11393,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13521,10 +13747,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation type="unfinished"/>
     </message>
@@ -13561,10 +13783,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13921,10 +14139,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15488,6 +15702,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16537,6 +16767,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17648,10 +17882,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_vi.ts b/share/locale/mscore_vi.ts
index fe729ee..b031274 100644
--- a/share/locale/mscore_vi.ts
+++ b/share/locale/mscore_vi.ts
@@ -1774,7 +1774,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Display note values across measure bar (EXPERIMENTAL, early music only!)</source>
-        <translation>Cho thấy giá trị các nốt ngân qua vạch nhịp (THỬ NGHIỆM, dành cho âm nhạc gần đây!)</translation>
+        <translation>Cho thấy giá trị các nốt ngân qua vạch nhịp (THỬ NGHIỆM, dành cho âm nhạc cổ-thuở đầu!)</translation>
     </message>
     <message>
         <source>Music top margin:</source>
@@ -2291,7 +2291,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Fret offset number font size:</source>
-        <translation>Độ lớn chỉ số của phím chặn:</translation>
+        <translation>Độ lớn chỉ số của phím:</translation>
     </message>
     <message>
         <source>Position:</source>
@@ -2531,7 +2531,7 @@ Nằm trước nếu chuyển qua lại giữa hóa biểu thăng và hóa biể
     </message>
     <message>
         <source>Barré line thickness:</source>
-        <translation>Độ dày vạch kẻ:</translation>
+        <translation>Độ dày vạch chặn dây:</translation>
     </message>
     <message>
         <source>Scale barlines to staff size</source>
@@ -3046,6 +3046,25 @@ Nằm trước nếu chuyển qua lại giữa hóa biểu thăng và hóa biể
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Bảng kiểm soát dấu Vuốt</translation>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>Dấu rải hợp âm</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Phát</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Trả "Cho chơi" về m/định</translation>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3111,6 +3130,30 @@ Nằm trước nếu chuyển qua lại giữa hóa biểu thăng và hóa biể
         <source>Reset Time stretch value</source>
         <translation>Trả "Kéo dài thời gian" về m/định</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Định kiểu Nét hoa mỹ</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Mặc định</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Ba-rốc</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Trả "Kiểu hoa mỹ" về mặc định</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Phát</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Trả "Cho chơi" về m/định</translation>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3283,6 +3326,25 @@ Nằm trước nếu chuyển qua lại giữa hóa biểu thăng và hóa biể
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation>Bảng kiểm soát dấu Vuốt</translation>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>Đẩy dây</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Phát</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Trả "Cho chơi" về m/định</translation>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3563,6 +3625,42 @@ Nằm trước nếu chuyển qua lại giữa hóa biểu thăng và hóa biể
         <source>Show text</source>
         <translation>Hiển thị chữ viết</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>Kiểu</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation>Trả về kiểu mặc định</translation>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation>Kiểu chơi</translation>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation>Chromatic</translation>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation>Các phím trắng</translation>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation>Các phím đen</translation>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation>Diatonic</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Phát</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Trả "Cho chơi" về m/định</translation>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -3774,11 +3872,11 @@ Nằm trước nếu chuyển qua lại giữa hóa biểu thăng và hóa biể
     </message>
     <message>
         <source>Size in staff space units</source>
-        <translation>Kích cỡ tính theo cỡ-khe-nhạc</translation>
+        <translation>Kích cỡ tính theo đơn vị khe-nhạc</translation>
     </message>
     <message>
         <source>Reset Size in staff space units value</source>
-        <translation>Trả "Kích cỡ tính theo cỡ-khe-nhạc" về m/định</translation>
+        <translation>Trả "Kích cỡ tính theo đơn vị khe-nhạc" về m/định</translation>
     </message>
 </context>
 <context>
@@ -4370,6 +4468,78 @@ Nằm trước nếu chuyển qua lại giữa hóa biểu thăng và hóa biể
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation>Bảng kiểu soát khung chữ</translation>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>Khung chữ</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation>Khoảng trống dưới</translation>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>Lề trên</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>Trả lại mặc định</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation>Trả "Khoảng trống trên" về m/định</translation>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation>Trả "Khoảng trống dưới" về m/định</translation>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>Lề trái</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>mm</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation>Lề dưới</translation>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation>Trả "Lề phải" về m/định</translation>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>Lề phải</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation>Trả "Lề dưới" về m/định</translation>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation>Trả "Lề trên" về m/định</translation>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation>Trả "Lề trái" về m/định</translation>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation>Khoảng trống trên</translation>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4500,13 +4670,37 @@ Nằm trước nếu chuyển qua lại giữa hóa biểu thăng và hóa biể
         <translation>Prall Prall</translation>
     </message>
     <message>
-        <source>Wavy Line</source>
-        <translation>Nét gợn sóng</translation>
-    </message>
-    <message>
         <source>Reset value</source>
         <translation>Trả lại mặc định</translation>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation>Định kiểu Nét hoa mỹ</translation>
+    </message>
+    <message>
+        <source>Direction</source>
+        <translation>HÆ°á»›ng</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>Mặc định</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation>Ba-rốc</translation>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation>Trả "Kiểu hoa mỹ" về mặc định</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>Phát</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation>Trả "Cho chơi" về m/định</translation>
+    </message>
 </context>
 <context>
     <name>InspectorTuplet</name>
@@ -4883,6 +5077,13 @@ Nằm trước nếu chuyển qua lại giữa hóa biểu thăng và hóa biể
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation>atonal</translation>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6052,14 +6253,6 @@ bị lỗi:</translation>
         <translation>hiển thị dấu $</translation>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>thẻ siêu dữ liệu. Ví dụ: $:arranger:</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation>Các <b>tag</b> hiện có và dữ liệu của chúng là:</translation>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>Áp dụng cho mọi Bè</translation>
     </message>
@@ -6075,6 +6268,14 @@ bị lỗi:</translation>
         <source>page number, if there is more than one page</source>
         <translation>số đếm trang, nếu có hơn 1 trang</translation>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation>thẻ siêu dữ liệu, xem bên dưới</translation>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation>Các thẻ siêu dữ liệu hiện có và giá trị hiện tại của chúng là:</translation>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -6245,7 +6446,7 @@ bị lỗi:</translation>
     <name>Ms::InstrumentsWidget</name>
     <message>
         <source>Staff %1</source>
-        <translation>Khuông nhạc %1</translation>
+        <translation>Khuông %1</translation>
     </message>
     <message>
         <source>Staves</source>
@@ -6785,7 +6986,7 @@ Vui lòng chọn một ô nhịp và thử lại lần nữa</translation>
     </message>
     <message>
         <source>Continuous View</source>
-        <translation>Xem theo dòng</translation>
+        <translation>Xem liền dòng</translation>
     </message>
     <message>
         <source>Concert Pitch</source>
@@ -7204,6 +7405,10 @@ vui lòng chọn một tên khác:</translation>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation>Bản nhạc này không thể lưu trực tuyến. Vui lòng sửa các ô nhịp bị sai và thử lại.</translation>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation>Yêu cầu giúp đỡ</translation>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7686,10 +7891,6 @@ lá»—i: %2</translation>
         <translation>Lỗi soạn thảo Định kiểu: %1</translation>
     </message>
     <message>
-        <source>file not found</source>
-        <translation>không tìm thấy tập tin</translation>
-    </message>
-    <message>
         <source>No selection</source>
         <translation>Chưa chọn gì</translation>
     </message>
@@ -7701,6 +7902,10 @@ lá»—i: %2</translation>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation>Ô nhịp %1, khuông %2, giọng %3 quá dài. Chỉ số nhịp cần là: %4; Nhưng hiện tại là: %5</translation>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation>XML đọc lỗi tại dòng %1 cột %2: %3</translation>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7734,7 +7939,7 @@ lá»—i: %2</translation>
     </message>
     <message>
         <source>Staff %1</source>
-        <translation>Khuông nhạc %1</translation>
+        <translation>Khuông %1</translation>
     </message>
 </context>
 <context>
@@ -8014,6 +8219,12 @@ Vui lòng chọn dãy ô nhịp muốn ghép nối và thử lại lần nữa</
         <source>Transparent background</source>
         <translation>Nền trong suốt</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation>Không thể tách ô nhịp tại đây:
+Phách đầu tiên của ô nhịp</translation>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -8434,7 +8645,7 @@ vui lòng chọn một tên khác:</translation>
     <name>NewWizard</name>
     <message>
         <source>Title:</source>
-        <translation>Tên:</translation>
+        <translation>Tựa đề:</translation>
     </message>
     <message>
         <source>Subtitle:</source>
@@ -8548,7 +8759,7 @@ vui lòng chọn một tên khác:</translation>
     </message>
     <message>
         <source>Staff space:</source>
-        <translation>Cỡ-khe-nhạc:</translation>
+        <translation>Cỡ khe-nhạc:</translation>
     </message>
 </context>
 <context>
@@ -8631,7 +8842,7 @@ vui lòng chọn một tên khác:</translation>
     </message>
     <message>
         <source>Staff space:</source>
-        <translation>Cỡ-khe-nhạc:</translation>
+        <translation>Cỡ khe-nhạc:</translation>
     </message>
 </context>
 <context>
@@ -8710,7 +8921,7 @@ vui lòng chọn một tên khác:</translation>
     </message>
     <message>
         <source>Seconda volta 2</source>
-        <translation>Volta 2 thứ 2</translation>
+        <translation>Volta 2 dạng 2</translation>
     </message>
     <message>
         <source>8va</source>
@@ -8940,7 +9151,7 @@ báo lỗi:</translation>
     </message>
     <message>
         <source>Show grid</source>
-        <translation>Hiển thị dạng lưới</translation>
+        <translation>Hiển thị lưới</translation>
     </message>
     <message>
         <source>Show 'More Elements...'</source>
@@ -10421,6 +10632,14 @@ một kỹ thuật trong xử lý đồ họa</translation>
         <source>Filter</source>
         <translation>Bộ lọc</translation>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation>PDF</translation>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation>Xuất RPNs</translation>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11279,6 +11498,14 @@ Bạn muốn ghi đè không?</translation>
         <source>System flag</source>
         <translation>System flag</translation>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation>Tra tìm...</translation>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>Xóa</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11581,16 +11808,16 @@ Bạn muốn ghi đè không?</translation>
     </message>
     <message>
         <source>Offset in staff space units</source>
-        <translation>Độ lệch tính theo cỡ-khe-nhạc</translation>
+        <translation>Độ lệch tính theo đơn vị khe-nhạc</translation>
     </message>
     <message>
         <source>Staff space</source>
         <extracomment>spatium unit</extracomment>
-        <translation>Cỡ-khe-nhạc</translation>
+        <translation>Khe-nhạc</translation>
     </message>
     <message>
         <source>Size follows 'Staff space' setting</source>
-        <translation>Độ lớn tính theo cỡ-khe-nhạc</translation>
+        <translation>Độ lớn tính theo đơn vị 'Khe-nhạc'</translation>
     </message>
     <message>
         <source>Align baseline of text to reference point</source>
@@ -12127,7 +12354,7 @@ Bạn muốn ghi đè không?</translation>
     </message>
     <message>
         <source>Keep degree alterations</source>
-        <translation>Keep degree alterations</translation>
+        <translation>Duy trì sự dịch đổi của bậc</translation>
     </message>
     <message>
         <source>Options</source>
@@ -12135,7 +12362,7 @@ Bạn muốn ghi đè không?</translation>
     </message>
     <message>
         <source>Transpose chord symbols</source>
-        <translation>Chuyển ký hiệu gam theo tông</translation>
+        <translation>Ký hiệu gam cũng được chuyển theo</translation>
     </message>
     <message>
         <source>Câ™­ major / Aâ™­ minor</source>
@@ -12700,7 +12927,7 @@ bị lỗi:</translation>
     </message>
     <message>
         <source>Export Parts...</source>
-        <translation>Xuất Các bè ra...</translation>
+        <translation>Xuất các bè nhạc...</translation>
     </message>
     <message>
         <source>Save a copy of the score's parts in various formats</source>
@@ -12724,7 +12951,7 @@ bị lỗi:</translation>
     </message>
     <message>
         <source>Print...</source>
-        <translation>In ra...</translation>
+        <translation>In ấn...</translation>
     </message>
     <message>
         <source>Print</source>
@@ -13120,7 +13347,7 @@ trong chuỗi thao tác đã làm
     </message>
     <message>
         <source>Flip direction</source>
-        <translation>Đổi chiều</translation>
+        <translation>Đảo chiều</translation>
     </message>
     <message>
         <source>Up</source>
@@ -13140,7 +13367,7 @@ trong chuỗi thao tác đã làm
     </message>
     <message>
         <source>Pitch up octave</source>
-        <translation>Tăng âm độ lên quãng tám (octave)</translation>
+        <translation>Tăng cao độ lên quãng tám</translation>
     </message>
     <message>
         <source>Pitch up by an octave or move text or articulation up</source>
@@ -13536,7 +13763,7 @@ trong chuỗi thao tác đã làm
     </message>
     <message>
         <source>Add acciaccatura</source>
-        <translation>Thêm acciaccatura</translation>
+        <translation>Thêm nốt dựa acciaccatura</translation>
     </message>
     <message>
         <source>Appoggiatura</source>
@@ -13631,10 +13858,6 @@ trong chuỗi thao tác đã làm
         <translation>Dấu nối cờ dạng xòe phải</translation>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>Bảng công cụ</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>Bảng điều khiển Chơi nhạc</translation>
     </message>
@@ -13671,10 +13894,6 @@ trong chuỗi thao tác đã làm
         <translation>Thêm lời cho bản nhạc</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation>Dấu Nhịp độ...</translation>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation>Thêm dấu nhịp độ</translation>
     </message>
@@ -13981,7 +14200,7 @@ trong chuỗi thao tác đã làm
     </message>
     <message>
         <source>Mirror note head</source>
-        <translation>Đảo chiều đầu nốt</translation>
+        <translation>Đảo hướng đầu nốt</translation>
     </message>
     <message>
         <source>General...</source>
@@ -14032,10 +14251,6 @@ trong chuỗi thao tác đã làm
         <translation>Lặp lại vùng được chọn</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation>Bảng cuộn Piano: Cuộn tự động</translation>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation>Bật/Tắt: Cuộn tự động</translation>
     </message>
@@ -14089,11 +14304,11 @@ trong chuỗi thao tác đã làm
     </message>
     <message>
         <source>Re-Pitch Mode</source>
-        <translation>Chế độ hiệu chỉnh cao độ</translation>
+        <translation>Chế độ nhập lại cao độ</translation>
     </message>
     <message>
         <source>Replace pitches without changing rhythms</source>
-        <translation>Thay thế các cao độ mà không đổi tiết tấu
+        <translation>Chỉnh lại cao độ mà không đổi tiết nhịp
 </translation>
     </message>
     <message>
@@ -14694,7 +14909,7 @@ trong chuỗi thao tác đã làm
     </message>
     <message>
         <source>Flip Direction</source>
-        <translation>Đổi chiều</translation>
+        <translation>Đảo chiều</translation>
     </message>
     <message>
         <source>Diatonic Up</source>
@@ -15178,7 +15393,7 @@ trong chuỗi thao tác đã làm
     </message>
     <message>
         <source>Mirror Note Head</source>
-        <translation>Đảo chiều Đầu nốt</translation>
+        <translation>Đảo hướng Đầu nốt</translation>
     </message>
     <message>
         <source>Double Duration</source>
@@ -15600,6 +15815,22 @@ trong chuỗi thao tác đã làm
         <source>Set loop in position</source>
         <translation>Lặp liên tục: Chọn điểm đầu</translation>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>Các bảng công cụ</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>Nhãn Nhịp độ</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation>Phóng tới 100%</translation>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation>Bảng cuộn Piano</translation>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16651,6 +16882,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation>Dạng TAB 2</translation>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation>Khóa Treble tùy chọn 8vb</translation>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17762,10 +17997,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation>Nét Prallprall</translation>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>Nét gợn sóng</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_zh_CN.ts b/share/locale/mscore_zh_CN.ts
index c87ddf0..cfaaa8f 100644
--- a/share/locale/mscore_zh_CN.ts
+++ b/share/locale/mscore_zh_CN.ts
@@ -1770,7 +1770,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Don't hide empty staves in first system</source>
-        <translation>第一谱表组中不隐藏空谱表</translation>
+        <translation>第一行谱表组中不隐藏空谱表</translation>
     </message>
     <message>
         <source>Display note values across measure bar (EXPERIMENTAL, early music only!)</source>
@@ -2207,7 +2207,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Note head distance:</source>
-        <translation type="unfinished"/>
+        <translation>符头距离:</translation>
     </message>
     <message>
         <source>Articulation size:</source>
@@ -2954,7 +2954,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>重置方向值</translation>
     </message>
     <message>
         <source>Update range</source>
@@ -3042,6 +3042,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>琶音</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>播放</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3097,7 +3116,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>重置方向值</translation>
     </message>
     <message>
         <source>Reset Anchor value</source>
@@ -3107,6 +3126,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3227,7 +3270,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>重置方向值</translation>
     </message>
     <message>
         <source>Vertical position offset right</source>
@@ -3235,7 +3278,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset User position value</source>
-        <translation type="unfinished"/>
+        <translation>重置用户位置值</translation>
     </message>
     <message>
         <source>Reset Local Relayout value</source>
@@ -3275,6 +3318,25 @@ space unit</extracomment>
     </message>
     <message>
         <source>User position</source>
+        <translation>用户位置</translation>
+    </message>
+</context>
+<context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation>滑音</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -3559,6 +3621,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>显示文字</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4366,6 +4464,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation>文本框</translation>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation>上边距</translation>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation>重置值</translation>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4496,12 +4666,36 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
+        <translation>重置</translation>
+    </message>
+    <message>
+        <source>Ornament Style</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
-        <translation>重置</translation>
+        <source>Direction</source>
+        <translation>方向</translation>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>默认</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>播放</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
     </message>
 </context>
 <context>
@@ -4552,7 +4746,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Reset Direction value</source>
-        <translation type="unfinished"/>
+        <translation>重置方向值</translation>
     </message>
     <message>
         <source>Reset value</source>
@@ -4848,7 +5042,7 @@ space unit</extracomment>
     </message>
     <message>
         <source>Clear Search box</source>
-        <translation type="unfinished"/>
+        <translation>清除搜索框</translation>
     </message>
     <message>
         <source>Partitur List</source>
@@ -4879,6 +5073,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -5289,7 +5490,8 @@ staccato</source>
     <message>
         <source>Dotted
 notes</source>
-        <translation type="unfinished"/>
+        <translation>附点
+音符</translation>
     </message>
     <message>
         <source>Show
@@ -6035,14 +6237,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
-        <translation>元数据标签</translation>
-    </message>
-    <message>
-        <source>Available tags and their current values:</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Apply to all Parts</source>
         <translation>应用到全部分谱</translation>
     </message>
@@ -6058,6 +6252,14 @@ failed: </source>
         <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>meta data tag, see below</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Available meta data tags and their current values:</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::FiguredBass</name>
@@ -6950,7 +7152,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Clear Recent Files</source>
-        <translation type="unfinished"/>
+        <translation>清除最近的文件</translation>
     </message>
     <message>
         <source>All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.capx *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5 *.GPX);;</source>
@@ -7014,7 +7216,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Staff text</source>
-        <translation type="unfinished"/>
+        <translation>谱表文字</translation>
     </message>
     <message>
         <source>System text</source>
@@ -7174,7 +7376,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>MuseScore:</source>
-        <translation type="unfinished"/>
+        <translation>MuseScore:</translation>
     </message>
     <message>
         <source>Cannot write into %1</source>
@@ -7184,6 +7386,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7252,7 +7458,7 @@ please choose a different name:</source>
     </message>
     <message>
         <source>Select Template File:</source>
-        <translation>选择模板文件</translation>
+        <translation>选择模板文件:</translation>
     </message>
 </context>
 <context>
@@ -7659,10 +7865,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7674,6 +7876,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7982,6 +8188,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation>透明背景</translation>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -8075,7 +8286,7 @@ Please select a range of measures to join and try again</source>
     <name>Ms::TempoText</name>
     <message>
         <source>note = %1</source>
-        <translation type="unfinished"/>
+        <translation>音符 = %1</translation>
     </message>
     <message>
         <source>Dotted %1</source>
@@ -9206,7 +9417,7 @@ failed: </source>
     </message>
     <message>
         <source>Clear Shortcut</source>
-        <translation type="unfinished"/>
+        <translation>清除快捷键</translation>
     </message>
 </context>
 <context>
@@ -9301,11 +9512,11 @@ failed: </source>
     </message>
     <message>
         <source>16th note</source>
-        <translation type="unfinished"/>
+        <translation>十六分音符</translation>
     </message>
     <message>
         <source>32nd note</source>
-        <translation type="unfinished"/>
+        <translation>三十二分音符</translation>
     </message>
     <message>
         <source>Clear</source>
@@ -9545,7 +9756,7 @@ failed: </source>
     </message>
     <message>
         <source>Reset Shortcut to Default</source>
-        <translation type="unfinished"/>
+        <translation>将快捷键重置为默认值</translation>
     </message>
     <message>
         <source>Define...</source>
@@ -9617,11 +9828,11 @@ failed: </source>
     </message>
     <message>
         <source>Half note</source>
-        <translation type="unfinished"/>
+        <translation>二分音符</translation>
     </message>
     <message>
         <source>Quarter note</source>
-        <translation type="unfinished"/>
+        <translation>四分音符</translation>
     </message>
     <message>
         <source>Rest</source>
@@ -10186,7 +10397,7 @@ failed: </source>
     </message>
     <message>
         <source>Reset Shortcut to default</source>
-        <translation type="unfinished"/>
+        <translation>将快捷键重置为默认值</translation>
     </message>
     <message>
         <source>Define</source>
@@ -10218,7 +10429,7 @@ failed: </source>
     </message>
     <message>
         <source>64th note</source>
-        <translation type="unfinished"/>
+        <translation>六十四分音符</translation>
     </message>
     <message>
         <source>64th note is active</source>
@@ -10234,7 +10445,7 @@ failed: </source>
     </message>
     <message>
         <source>Resets the shortcuts to their default assignment</source>
-        <translation type="unfinished"/>
+        <translation>将快捷键重置为默认指派</translation>
     </message>
     <message>
         <source>Clears the shortcut assignment for the selected action</source>
@@ -10334,7 +10545,7 @@ failed: </source>
     </message>
     <message>
         <source>Note input</source>
-        <translation type="unfinished"/>
+        <translation>音符输入</translation>
     </message>
     <message>
         <source>Note input is active</source>
@@ -10380,6 +10591,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11154,7 +11373,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Sixteenth note</source>
-        <translation type="unfinished"/>
+        <translation>十六分音符</translation>
     </message>
 </context>
 <context>
@@ -11216,6 +11435,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -11225,11 +11452,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Save to Score</source>
-        <translation type="unfinished"/>
+        <translation>保存到乐谱</translation>
     </message>
     <message>
         <source>Load from Score</source>
-        <translation type="unfinished"/>
+        <translation>从乐谱装入</translation>
     </message>
     <message>
         <source>Vol</source>
@@ -11266,7 +11493,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Set as Default</source>
-        <translation type="unfinished"/>
+        <translation>设定为默认值</translation>
     </message>
     <message>
         <source>Load Default</source>
@@ -11278,11 +11505,11 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Save to score</source>
-        <translation type="unfinished"/>
+        <translation>保存到乐谱</translation>
     </message>
     <message>
         <source>Load from score</source>
-        <translation type="unfinished"/>
+        <translation>从乐谱装入</translation>
     </message>
     <message>
         <source>Use up and down arrows to modify</source>
@@ -11845,7 +12072,7 @@ Do you want to overwrite it?</source>
     </message>
     <message>
         <source>Duration:</source>
-        <translation type="unfinished"/>
+        <translation>时长:</translation>
     </message>
     <message>
         <source>Enter Number of Measures:</source>
@@ -13375,7 +13602,7 @@ failed: </source>
     </message>
     <message>
         <source>Double whole note</source>
-        <translation type="unfinished"/>
+        <translation>二全音符</translation>
     </message>
     <message>
         <source>Whole note</source>
@@ -13383,43 +13610,43 @@ failed: </source>
     </message>
     <message>
         <source>Half note</source>
-        <translation type="unfinished"/>
+        <translation>二分音符</translation>
     </message>
     <message>
         <source>Quarter note</source>
-        <translation type="unfinished"/>
+        <translation>四分音符</translation>
     </message>
     <message>
         <source>16th note</source>
-        <translation type="unfinished"/>
+        <translation>十六分音符</translation>
     </message>
     <message>
         <source>Note duration: 16th</source>
-        <translation type="unfinished"/>
+        <translation>音符时长:十六分</translation>
     </message>
     <message>
         <source>32nd note</source>
-        <translation type="unfinished"/>
+        <translation>三十二分音符</translation>
     </message>
     <message>
         <source>Note duration: 32nd</source>
-        <translation type="unfinished"/>
+        <translation>音符时长:三十二分</translation>
     </message>
     <message>
         <source>64th note</source>
-        <translation type="unfinished"/>
+        <translation>六十四分音符</translation>
     </message>
     <message>
         <source>Note duration: 64th</source>
-        <translation type="unfinished"/>
+        <translation>音符时长:六十四分</translation>
     </message>
     <message>
         <source>128th note</source>
-        <translation type="unfinished"/>
+        <translation>一百二十八分音符</translation>
     </message>
     <message>
         <source>Note duration: 128th</source>
-        <translation type="unfinished"/>
+        <translation>音符时长:一百二十八分</translation>
     </message>
     <message>
         <source>Increase active duration</source>
@@ -13562,10 +13789,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>符号面板</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>播放面板</translation>
     </message>
@@ -13591,7 +13814,7 @@ failed: </source>
     </message>
     <message>
         <source>Zoom canvas</source>
-        <translation type="unfinished"/>
+        <translation>缩放画布</translation>
     </message>
     <message>
         <source>Lyrics</source>
@@ -13602,10 +13825,6 @@ failed: </source>
         <translation>添加歌词</translation>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13787,7 +14006,7 @@ failed: </source>
     </message>
     <message>
         <source>Bass Clef</source>
-        <translation type="unfinished"/>
+        <translation>低音谱号</translation>
     </message>
     <message>
         <source>Add bass clef</source>
@@ -13962,10 +14181,6 @@ failed: </source>
         <translation>反复选中区域</translation>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -14099,7 +14314,7 @@ failed: </source>
     </message>
     <message>
         <source>Play metronome during playback</source>
-        <translation type="unfinished"/>
+        <translation>回放时播放节拍器声音</translation>
     </message>
     <message>
         <source>Toggle count-in playback</source>
@@ -14395,11 +14610,11 @@ failed: </source>
     </message>
     <message>
         <source>All Similar Elements in Range Selection</source>
-        <translation type="unfinished"/>
+        <translation>范围选区中的所有相似元素</translation>
     </message>
     <message>
         <source>Select all similar elements in the range selection</source>
-        <translation type="unfinished"/>
+        <translation>选择范围选区中的所有相似元素</translation>
     </message>
     <message>
         <source>Add brackets to element</source>
@@ -14579,11 +14794,11 @@ failed: </source>
     </message>
     <message>
         <source>File: Open</source>
-        <translation type="unfinished"/>
+        <translation>文件:打开</translation>
     </message>
     <message>
         <source>File: Save</source>
-        <translation type="unfinished"/>
+        <translation>文件:保存</translation>
     </message>
     <message>
         <source>File: Save online</source>
@@ -14591,7 +14806,7 @@ failed: </source>
     </message>
     <message>
         <source>File: Save as</source>
-        <translation type="unfinished"/>
+        <translation>文件:另存为</translation>
     </message>
     <message>
         <source>Save selection</source>
@@ -14599,7 +14814,7 @@ failed: </source>
     </message>
     <message>
         <source>File: Save a copy</source>
-        <translation type="unfinished"/>
+        <translation>文件:保存副本</translation>
     </message>
     <message>
         <source>Export parts</source>
@@ -14611,11 +14826,11 @@ failed: </source>
     </message>
     <message>
         <source>File: New</source>
-        <translation type="unfinished"/>
+        <translation>文件:新建</translation>
     </message>
     <message>
         <source>Note input</source>
-        <translation type="unfinished"/>
+        <translation>音符输入</translation>
     </message>
     <message>
         <source>Respell pitches</source>
@@ -14791,35 +15006,35 @@ failed: </source>
     </message>
     <message>
         <source>Double Whole Note</source>
-        <translation type="unfinished"/>
+        <translation>二全音符</translation>
     </message>
     <message>
         <source>Note duration: Double whole</source>
-        <translation type="unfinished"/>
+        <translation>音符时长:二全</translation>
     </message>
     <message>
         <source>Whole Note</source>
-        <translation type="unfinished"/>
+        <translation>全音符</translation>
     </message>
     <message>
         <source>Note duration: Whole</source>
-        <translation type="unfinished"/>
+        <translation>音符时长:全</translation>
     </message>
     <message>
         <source>Half Note</source>
-        <translation type="unfinished"/>
+        <translation>二分音符</translation>
     </message>
     <message>
         <source>Note duration: Half</source>
-        <translation type="unfinished"/>
+        <translation>音符时长:二分</translation>
     </message>
     <message>
         <source>Quarter Note</source>
-        <translation type="unfinished"/>
+        <translation>四分音符</translation>
     </message>
     <message>
         <source>Note duration: Quarter</source>
-        <translation type="unfinished"/>
+        <translation>音符时长:四分</translation>
     </message>
     <message>
         <source>Eighth Note</source>
@@ -14827,23 +15042,23 @@ failed: </source>
     </message>
     <message>
         <source>Note duration: Eighth</source>
-        <translation type="unfinished"/>
+        <translation>音符时长:八分</translation>
     </message>
     <message>
         <source>16th Note</source>
-        <translation type="unfinished"/>
+        <translation>十六分音符</translation>
     </message>
     <message>
         <source>32nd Note</source>
-        <translation type="unfinished"/>
+        <translation>三十二分音符</translation>
     </message>
     <message>
         <source>64th Note</source>
-        <translation type="unfinished"/>
+        <translation>六十四分音符</translation>
     </message>
     <message>
         <source>128th Note</source>
-        <translation type="unfinished"/>
+        <translation>一百二十八分音符</translation>
     </message>
     <message>
         <source>Increase Active Duration</source>
@@ -14875,7 +15090,7 @@ failed: </source>
     </message>
     <message>
         <source>Note input: Rest</source>
-        <translation type="unfinished"/>
+        <translation>音符输入:休止</translation>
     </message>
     <message>
         <source>Double Sharp</source>
@@ -14883,19 +15098,19 @@ failed: </source>
     </message>
     <message>
         <source>Note input: Double sharp</source>
-        <translation type="unfinished"/>
+        <translation>音符输入:重升号</translation>
     </message>
     <message>
         <source>Note input: Sharp</source>
-        <translation type="unfinished"/>
+        <translation>音符输入:升号</translation>
     </message>
     <message>
         <source>Note input: Natural</source>
-        <translation type="unfinished"/>
+        <translation>音符输入:还原记号</translation>
     </message>
     <message>
         <source>Note input: Flat</source>
-        <translation type="unfinished"/>
+        <translation>音符输入:降号</translation>
     </message>
     <message>
         <source>Double Flat</source>
@@ -14903,7 +15118,7 @@ failed: </source>
     </message>
     <message>
         <source>Note input: Double flat</source>
-        <translation type="unfinished"/>
+        <translation>音符输入:重降号</translation>
     </message>
     <message>
         <source>Grace: Quarter</source>
@@ -15071,7 +15286,7 @@ failed: </source>
     </message>
     <message>
         <source>Note input: Whole rest</source>
-        <translation type="unfinished"/>
+        <translation>音符输入:全休止符</translation>
     </message>
     <message>
         <source>Half Rest</source>
@@ -15079,7 +15294,7 @@ failed: </source>
     </message>
     <message>
         <source>Note input: Half rest</source>
-        <translation type="unfinished"/>
+        <translation>音符输入:二分休止符</translation>
     </message>
     <message>
         <source>Quarter Rest</source>
@@ -15087,7 +15302,7 @@ failed: </source>
     </message>
     <message>
         <source>Note input: Quarter rest</source>
-        <translation type="unfinished"/>
+        <translation>音符输入:四分休止符</translation>
     </message>
     <message>
         <source>Eighth Rest</source>
@@ -15095,15 +15310,15 @@ failed: </source>
     </message>
     <message>
         <source>Note input: Eighth rest</source>
-        <translation type="unfinished"/>
+        <translation>音符输入:八分休止符</translation>
     </message>
     <message>
         <source>Zoom in</source>
-        <translation type="unfinished"/>
+        <translation>放大</translation>
     </message>
     <message>
         <source>Zoom out</source>
-        <translation type="unfinished"/>
+        <translation>缩小</translation>
     </message>
     <message>
         <source>Mirror Note Head</source>
@@ -15529,6 +15744,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16578,6 +16809,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17196,7 +17431,7 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Note Head</source>
-        <translation type="unfinished"/>
+        <translation>符头</translation>
     </message>
     <message>
         <source>Note Dot</source>
@@ -17620,19 +17855,19 @@ Measure is not empty</source>
     </message>
     <message>
         <source>Voice 1</source>
-        <translation type="unfinished"/>
+        <translation>声部 1</translation>
     </message>
     <message>
         <source>Voice 2</source>
-        <translation type="unfinished"/>
+        <translation>声部 2</translation>
     </message>
     <message>
         <source>Voice 3</source>
-        <translation type="unfinished"/>
+        <translation>声部 3</translation>
     </message>
     <message>
         <source>Voice 4</source>
-        <translation type="unfinished"/>
+        <translation>声部 4</translation>
     </message>
 </context>
 <context>
@@ -17689,10 +17924,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation type="unfinished"/>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/locale/mscore_zh_TW.ts b/share/locale/mscore_zh_TW.ts
index 2787a7a..c67740c 100644
--- a/share/locale/mscore_zh_TW.ts
+++ b/share/locale/mscore_zh_TW.ts
@@ -3027,6 +3027,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorArpeggio</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Arpeggio</source>
+        <translation>琶音</translation>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>播放</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorArticulation</name>
     <message>
         <source>Articulation</source>
@@ -3092,6 +3111,30 @@ space unit</extracomment>
         <source>Reset Time stretch value</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ornament Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>預設</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>播放</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorBarLine</name>
@@ -3264,6 +3307,25 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorBend</name>
+    <message>
+        <source>Glissando Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bend</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>播放</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>InspectorBreak</name>
     <message>
         <source>Element Inspector</source>
@@ -3544,6 +3606,42 @@ space unit</extracomment>
         <source>Show text</source>
         <translation>顯示文字</translation>
     </message>
+    <message>
+        <source>Style</source>
+        <translation>風格</translation>
+    </message>
+    <message>
+        <source>Reset Style value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play Style</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Chromatic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>White keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Black keys</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Diatonic</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>播放</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>InspectorGroupElement</name>
@@ -4351,6 +4449,78 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>InspectorTBox</name>
+    <message>
+        <source>Text Frame Inspector</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Text Frame</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Bottom gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Bottom gap value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Left margin</source>
+        <translation>左方邊緣</translation>
+    </message>
+    <message>
+        <source>mm</source>
+        <translation>公厘</translation>
+    </message>
+    <message>
+        <source>Bottom margin</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Right margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Right margin</source>
+        <translation>右方邊緣</translation>
+    </message>
+    <message>
+        <source>Reset Bottom margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Top margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Left margin value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Top gap</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>sp</source>
+        <extracomment>spatium unit</extracomment>
+        <translation>sp</translation>
+    </message>
+</context>
+<context>
     <name>InspectorTempoText</name>
     <message>
         <source>Tempo Marking</source>
@@ -4481,11 +4651,35 @@ space unit</extracomment>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Wavy Line</source>
+        <source>Reset value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Ornament Style</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Reset value</source>
+        <source>Direction</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Default</source>
+        <translation>預設</translation>
+    </message>
+    <message>
+        <source>Baroque</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Reset Ornament Type value</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Play</source>
+        <translation>播放</translation>
+    </message>
+    <message>
+        <source>Reset Play value</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -4864,6 +5058,13 @@ space unit</extracomment>
     </message>
 </context>
 <context>
+    <name>KeySig</name>
+    <message>
+        <source>atonal</source>
+        <translation type="unfinished"/>
+    </message>
+</context>
+<context>
     <name>LayerManager</name>
     <message>
         <source>MuseScore: Layers</source>
@@ -6018,27 +6219,27 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>meta data tag</source>
+        <source>Apply to all Parts</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Available tags and their current values:</source>
+        <source>last modification time</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Apply to all Parts</source>
+        <source>last modification date</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification time</source>
+        <source>page number, if there is more than one page</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>last modification date</source>
+        <source>meta data tag, see below</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>page number, if there is more than one page</source>
+        <source>Available meta data tags and their current values:</source>
         <translation type="unfinished"/>
     </message>
 </context>
@@ -7161,6 +7362,10 @@ please choose a different name:</source>
         <source>This score cannot be saved online. Please fix the corrupted measures and try again.</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Ask for Help</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::MyWebView</name>
@@ -7634,10 +7839,6 @@ failed: %2</source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>file not found</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>No selection</source>
         <translation type="unfinished"/>
     </message>
@@ -7649,6 +7850,10 @@ failed: %2</source>
         <source>Measure %1, staff %2, voice %3 too long. Expected: %4; Found: %5</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>XML read error at line %1 column %2: %3</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::ScoreAccessibility</name>
@@ -7957,6 +8162,11 @@ Please select a range of measures to join and try again</source>
         <source>Transparent background</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Cannot split measure here:
+First beat of measure</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>Ms::SearchComboBox</name>
@@ -10354,6 +10564,14 @@ failed: </source>
         <source>Filter</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>PDF</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Export RPNs</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>QMessageBox</name>
@@ -11188,6 +11406,14 @@ Do you want to overwrite it?</source>
         <source>System flag</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Search...</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Clear</source>
+        <translation>清除</translation>
+    </message>
 </context>
 <context>
     <name>SynthControl</name>
@@ -13534,10 +13760,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Palette</source>
-        <translation>面板</translation>
-    </message>
-    <message>
         <source>Play Panel</source>
         <translation>播放面板</translation>
     </message>
@@ -13574,10 +13796,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Tempo Marking...</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Add tempo marking</source>
         <translation type="unfinished"/>
     </message>
@@ -13934,10 +14152,6 @@ failed: </source>
         <translation type="unfinished"/>
     </message>
     <message>
-        <source>Pan piano roll</source>
-        <translation type="unfinished"/>
-    </message>
-    <message>
         <source>Toggle pan piano roll</source>
         <translation type="unfinished"/>
     </message>
@@ -15501,6 +15715,22 @@ failed: </source>
         <source>Set loop in position</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Palettes</source>
+        <translation>記號面板</translation>
+    </message>
+    <message>
+        <source>Tempo Marking</source>
+        <translation>速度</translation>
+    </message>
+    <message>
+        <source>Zoom to 100%</source>
+        <translation type="unfinished"/>
+    </message>
+    <message>
+        <source>Pan Piano Roll</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>addRemoveTimeSig</name>
@@ -16550,6 +16780,10 @@ Measure is not empty</source>
         <source>Tablature2</source>
         <translation type="unfinished"/>
     </message>
+    <message>
+        <source>Treble clef optional 8vb</source>
+        <translation type="unfinished"/>
+    </message>
 </context>
 <context>
     <name>drumset</name>
@@ -17661,10 +17895,6 @@ Measure is not empty</source>
         <source>Prallprall line</source>
         <translation type="unfinished"/>
     </message>
-    <message>
-        <source>Wavy line</source>
-        <translation>波浪線</translation>
-    </message>
 </context>
 <context>
     <name>utils</name>
diff --git a/share/manual/reference-en.pdf b/share/manual/reference-en.pdf
new file mode 100644
index 0000000..5b0683f
Binary files /dev/null and b/share/manual/reference-en.pdf differ
diff --git a/share/templates/04-Solo/04-Piano.mscz b/share/templates/01-General/03-Grand_Staff.mscz
similarity index 100%
copy from share/templates/04-Solo/04-Piano.mscz
copy to share/templates/01-General/03-Grand_Staff.mscz
diff --git a/share/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscz b/share/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscz
index 4340cd5..6bfd352 100644
Binary files a/share/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscz and b/share/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscz differ
diff --git a/share/templates/02-Choral/07-Voice_Piano.mscz b/share/templates/02-Choral/07-Voice_+_Piano.mscz
similarity index 100%
rename from share/templates/02-Choral/07-Voice_Piano.mscz
rename to share/templates/02-Choral/07-Voice_+_Piano.mscz
diff --git a/share/templates/02-Choral/08-Barbershop_Quartet.mscz b/share/templates/02-Choral/08-Barbershop_Quartet.mscz
new file mode 100644
index 0000000..920c186
Binary files /dev/null and b/share/templates/02-Choral/08-Barbershop_Quartet.mscz differ
diff --git a/share/templates/02-Choral/08-Liturgical_Unmetrical.mscz b/share/templates/02-Choral/09-Liturgical_Unmetrical.mscz
similarity index 100%
rename from share/templates/02-Choral/08-Liturgical_Unmetrical.mscz
rename to share/templates/02-Choral/09-Liturgical_Unmetrical.mscz
diff --git a/share/templates/02-Choral/09-Liturgical_Unmetrical_+_Organ.mscz b/share/templates/02-Choral/10-Liturgical_Unmetrical_+_Organ.mscz
similarity index 100%
rename from share/templates/02-Choral/09-Liturgical_Unmetrical_+_Organ.mscz
rename to share/templates/02-Choral/10-Liturgical_Unmetrical_+_Organ.mscz
diff --git a/share/templates/03-Chamber_Music/01-String_Quartet.mscz b/share/templates/03-Chamber_Music/01-String_Quartet.mscz
index f4aa422..5909e29 100644
Binary files a/share/templates/03-Chamber_Music/01-String_Quartet.mscz and b/share/templates/03-Chamber_Music/01-String_Quartet.mscz differ
diff --git a/share/templates/03-Chamber_Music/03-Wind_Quartet.mscz b/share/templates/03-Chamber_Music/02-Wind_Quartet.mscz
similarity index 100%
rename from share/templates/03-Chamber_Music/03-Wind_Quartet.mscz
rename to share/templates/03-Chamber_Music/02-Wind_Quartet.mscz
diff --git a/share/templates/03-Chamber_Music/02-Wind_Quintet.mscz b/share/templates/03-Chamber_Music/03-Wind_Quintet.mscz
similarity index 100%
rename from share/templates/03-Chamber_Music/02-Wind_Quintet.mscz
rename to share/templates/03-Chamber_Music/03-Wind_Quintet.mscz
diff --git a/share/templates/03-Chamber_Music/05-Brass_Quartet.mscz b/share/templates/03-Chamber_Music/05-Brass_Quartet.mscz
new file mode 100644
index 0000000..39f46ce
Binary files /dev/null and b/share/templates/03-Chamber_Music/05-Brass_Quartet.mscz differ
diff --git a/share/templates/03-Chamber_Music/05-Brass_Quintet.mscz b/share/templates/03-Chamber_Music/05-Brass_Quintet.mscz
deleted file mode 100644
index 0f4c03d..0000000
Binary files a/share/templates/03-Chamber_Music/05-Brass_Quintet.mscz and /dev/null differ
diff --git a/share/templates/03-Chamber_Music/06-Brass_Quartet.mscz b/share/templates/03-Chamber_Music/06-Brass_Quartet.mscz
deleted file mode 100644
index aa385dd..0000000
Binary files a/share/templates/03-Chamber_Music/06-Brass_Quartet.mscz and /dev/null differ
diff --git a/share/templates/03-Chamber_Music/06-Brass_Quintet.mscz b/share/templates/03-Chamber_Music/06-Brass_Quintet.mscz
new file mode 100644
index 0000000..aec35ff
Binary files /dev/null and b/share/templates/03-Chamber_Music/06-Brass_Quintet.mscz differ
diff --git a/share/templates/05-Jazz/02-Big_Band.mscz b/share/templates/05-Jazz/02-Big_Band.mscz
index ae13e4a..7b6531a 100644
Binary files a/share/templates/05-Jazz/02-Big_Band.mscz and b/share/templates/05-Jazz/02-Big_Band.mscz differ
diff --git a/share/templates/05-Jazz/03-Jazz_Combo.mscz b/share/templates/05-Jazz/03-Jazz_Combo.mscz
index 7a9a180..90d0a9f 100644
Binary files a/share/templates/05-Jazz/03-Jazz_Combo.mscz and b/share/templates/05-Jazz/03-Jazz_Combo.mscz differ
diff --git a/share/templates/06-Orchestral/01-Classical_Orchestra.mscz b/share/templates/06-Orchestral/01-Classical_Orchestra.mscz
deleted file mode 100644
index 5c98742..0000000
Binary files a/share/templates/06-Orchestral/01-Classical_Orchestra.mscz and /dev/null differ
diff --git a/share/templates/06-Popular/01-Rock_Band.mscz b/share/templates/06-Popular/01-Rock_Band.mscz
new file mode 100644
index 0000000..0790f5a
Binary files /dev/null and b/share/templates/06-Popular/01-Rock_Band.mscz differ
diff --git a/share/templates/07-Band/01-Concert_Band.mscz b/share/templates/07-Band/01-Concert_Band.mscz
new file mode 100644
index 0000000..2ac0582
Binary files /dev/null and b/share/templates/07-Band/01-Concert_Band.mscz differ
diff --git a/share/templates/07-Band/01-Rock_Band.mscz b/share/templates/07-Band/01-Rock_Band.mscz
deleted file mode 100644
index bea794f..0000000
Binary files a/share/templates/07-Band/01-Rock_Band.mscz and /dev/null differ
diff --git a/share/templates/08-Orchestral/01-Classical_Orchestra.mscz b/share/templates/08-Orchestral/01-Classical_Orchestra.mscz
new file mode 100644
index 0000000..27e79c0
Binary files /dev/null and b/share/templates/08-Orchestral/01-Classical_Orchestra.mscz differ
diff --git a/share/templates/08-Orchestral/02-Concert_Orchestra.mscz b/share/templates/08-Orchestral/02-Concert_Orchestra.mscz
new file mode 100644
index 0000000..a3bdf01
Binary files /dev/null and b/share/templates/08-Orchestral/02-Concert_Orchestra.mscz differ
diff --git a/share/templates/06-Orchestral/03-String_Orchestra.mscz b/share/templates/08-Orchestral/03-String_Orchestra.mscz
similarity index 100%
rename from share/templates/06-Orchestral/03-String_Orchestra.mscz
rename to share/templates/08-Orchestral/03-String_Orchestra.mscz
diff --git a/share/templates/CMakeLists.txt b/share/templates/CMakeLists.txt
index 928e4d6..db790ab 100644
--- a/share/templates/CMakeLists.txt
+++ b/share/templates/CMakeLists.txt
@@ -27,6 +27,7 @@ install(FILES
       01-General/00-Blank.mscz
       01-General/01-Treble_Clef.mscz
       01-General/02-Bass_Clef.mscz
+      01-General/03-Grand_Staff.mscz
       DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}templates/01-General
       )
 
@@ -37,19 +38,20 @@ install(FILES
       02-Choral/04-SATB_Closed_Score.mscz
       02-Choral/05-SATB_Closed_Score_+_Organ.mscz
       02-Choral/06-SATB_Closed_Score_+_Piano.mscz
-      02-Choral/07-Voice_Piano.mscz
-      02-Choral/08-Liturgical_Unmetrical.mscz
-      02-Choral/09-Liturgical_Unmetrical_+_Organ.mscz
+      02-Choral/07-Voice_+_Piano.mscz
+      02-Choral/08-Barbershop_Quartet.mscz
+      02-Choral/09-Liturgical_Unmetrical.mscz
+      02-Choral/10-Liturgical_Unmetrical_+_Organ.mscz
       DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}templates/02-Choral
       )
 
 install(FILES
       03-Chamber_Music/01-String_Quartet.mscz
-      03-Chamber_Music/02-Wind_Quintet.mscz
-      03-Chamber_Music/03-Wind_Quartet.mscz
+      03-Chamber_Music/02-Wind_Quartet.mscz
+      03-Chamber_Music/03-Wind_Quintet.mscz
       03-Chamber_Music/04-Saxophone_Quartet.mscz
-      03-Chamber_Music/05-Brass_Quintet.mscz
-      03-Chamber_Music/06-Brass_Quartet.mscz
+      03-Chamber_Music/05-Brass_Quartet.mscz
+      03-Chamber_Music/06-Brass_Quintet.mscz
       DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}templates/03-Chamber_Music
       )
 
@@ -58,24 +60,30 @@ install(FILES
       04-Solo/02-Guitar_+_Tablature.mscz
       04-Solo/03-Guitar_Tablature.mscz
       04-Solo/04-Piano.mscz
-      DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}templates/03-Solo
+      DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}templates/04-Solo
       )
 
 install(FILES
       05-Jazz/01-Jazz_Lead_Sheet.mscz
       05-Jazz/02-Big_Band.mscz
       05-Jazz/03-Jazz_Combo.mscz
-      DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}templates/04-Jazz
+      DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}templates/05-Jazz
       )
 
 install(FILES
-      06-Orchestral/01-Classical_Orchestra.mscz
-      06-Orchestral/03-String_Orchestra.mscz
-      DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}templates/05-Orchestral
+      06-Popular/01-Rock_Band.mscz
+      DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}templates/06-Popular
       )
 
 install(FILES
-      07-Band/01-Rock_Band.mscz
-      DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}templates/06-Band
+      07-Band/01-Concert_Band.mscz
+      DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}templates/07-Band
+      )
+
+install(FILES
+      08-Orchestral/01-Classical_Orchestra.mscz
+      08-Orchestral/02-Concert_Orchestra.mscz
+      08-Orchestral/03-String_Orchestra.mscz
+      DESTINATION ${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}templates/08-Orchestral
       )
 
diff --git a/share/templates/Getting_Started.mscz b/share/templates/Getting_Started.mscz
index 272d714..462e4ac 100644
Binary files a/share/templates/Getting_Started.mscz and b/share/templates/Getting_Started.mscz differ
diff --git a/synthesizer/event.h b/synthesizer/event.h
index 7f731fc..95b6ebb 100644
--- a/synthesizer/event.h
+++ b/synthesizer/event.h
@@ -124,7 +124,7 @@ enum {
       // controller
       //
       CTRL_PROGRAM   = 0x81,
-      CTRL_PITCH     = 0x82,
+      /*             = 0x82,*/
       CTRL_PRESS     = 0x83,
       CTRL_POLYAFTER = 0x84
       };
diff --git a/test/musicxml/testAccidentals1.pdf b/test/musicxml/testAccidentals1.pdf
new file mode 100644
index 0000000..2b897c3
Binary files /dev/null and b/test/musicxml/testAccidentals1.pdf differ
diff --git a/test/musicxml/testDCalCoda.pdf b/test/musicxml/testDCalCoda.pdf
new file mode 100644
index 0000000..ac13dcd
Binary files /dev/null and b/test/musicxml/testDCalCoda.pdf differ
diff --git a/test/musicxml/testDCalFine.pdf b/test/musicxml/testDCalFine.pdf
new file mode 100644
index 0000000..7af8aec
Binary files /dev/null and b/test/musicxml/testDCalFine.pdf differ
diff --git a/test/musicxml/testDalSegno.pdf b/test/musicxml/testDalSegno.pdf
new file mode 100644
index 0000000..0b55d06
Binary files /dev/null and b/test/musicxml/testDalSegno.pdf differ
diff --git a/test/musicxml/testDirections1.pdf b/test/musicxml/testDirections1.pdf
new file mode 100644
index 0000000..57e75a8
Binary files /dev/null and b/test/musicxml/testDirections1.pdf differ
diff --git a/test/musicxml/testDynamics1.pdf b/test/musicxml/testDynamics1.pdf
new file mode 100644
index 0000000..1d47039
Binary files /dev/null and b/test/musicxml/testDynamics1.pdf differ
diff --git a/test/musicxml/testDynamics2.pdf b/test/musicxml/testDynamics2.pdf
new file mode 100644
index 0000000..e9ab881
Binary files /dev/null and b/test/musicxml/testDynamics2.pdf differ
diff --git a/test/musicxml/testHello.pdf b/test/musicxml/testHello.pdf
new file mode 100644
index 0000000..7b33dd7
Binary files /dev/null and b/test/musicxml/testHello.pdf differ
diff --git a/test/musicxml/testImplicitMeasure1.pdf b/test/musicxml/testImplicitMeasure1.pdf
new file mode 100644
index 0000000..a4914c6
Binary files /dev/null and b/test/musicxml/testImplicitMeasure1.pdf differ
diff --git a/test/musicxml/testKeysig1.pdf b/test/musicxml/testKeysig1.pdf
new file mode 100644
index 0000000..67f9bb8
Binary files /dev/null and b/test/musicxml/testKeysig1.pdf differ
diff --git a/test/musicxml/testLines1.pdf b/test/musicxml/testLines1.pdf
new file mode 100644
index 0000000..ba6d8d2
Binary files /dev/null and b/test/musicxml/testLines1.pdf differ
diff --git a/test/musicxml/testLines2.pdf b/test/musicxml/testLines2.pdf
new file mode 100644
index 0000000..2684397
Binary files /dev/null and b/test/musicxml/testLines2.pdf differ
diff --git a/test/musicxml/testMultiMeasureRest1.pdf b/test/musicxml/testMultiMeasureRest1.pdf
new file mode 100644
index 0000000..66668d2
Binary files /dev/null and b/test/musicxml/testMultiMeasureRest1.pdf differ
diff --git a/test/musicxml/testNotesRests1.pdf b/test/musicxml/testNotesRests1.pdf
new file mode 100644
index 0000000..20b3760
Binary files /dev/null and b/test/musicxml/testNotesRests1.pdf differ
diff --git a/test/musicxml/testTimesig1.pdf b/test/musicxml/testTimesig1.pdf
new file mode 100644
index 0000000..68776db
Binary files /dev/null and b/test/musicxml/testTimesig1.pdf differ
diff --git a/test/musicxml/testTimesig3.pdf b/test/musicxml/testTimesig3.pdf
new file mode 100644
index 0000000..ea18db1
Binary files /dev/null and b/test/musicxml/testTimesig3.pdf differ
diff --git a/test/musicxml/testWords1.pdf b/test/musicxml/testWords1.pdf
new file mode 100644
index 0000000..dab4722
Binary files /dev/null and b/test/musicxml/testWords1.pdf differ
diff --git a/test/ntest/print.pdf b/test/ntest/print.pdf
new file mode 100644
index 0000000..9e0fc2b
Binary files /dev/null and b/test/ntest/print.pdf differ
diff --git a/test/tremolo.pdf b/test/tremolo.pdf
new file mode 100644
index 0000000..9ffc87f
Binary files /dev/null and b/test/tremolo.pdf differ
diff --git a/thirdparty/beatroot/Agent.h b/thirdparty/beatroot/Agent.h
index ae5a61b..dc6358f 100644
--- a/thirdparty/beatroot/Agent.h
+++ b/thirdparty/beatroot/Agent.h
@@ -20,7 +20,7 @@
 
 
 class AgentList;
-class Event;
+struct Event;
 
 class AgentParameters
       {
diff --git a/thirdparty/portmidi/pm_mac/pmmacosxcm.c b/thirdparty/portmidi/pm_mac/pmmacosxcm.c
index 03a086a..33ef331 100755
--- a/thirdparty/portmidi/pm_mac/pmmacosxcm.c
+++ b/thirdparty/portmidi/pm_mac/pmmacosxcm.c
@@ -900,7 +900,7 @@ PmError pm_macosxcm_init(void)
         
         /* Register this device with PortMidi */
         pm_add_device("CoreMIDI", cm_get_full_endpoint_name(endpoint),
-                      TRUE, (void*)endpoint, &pm_macosx_in_dictionary);
+                      TRUE, (void*)(long)endpoint, &pm_macosx_in_dictionary);
     }
 
     /* Iterate over the MIDI output devices */
@@ -916,7 +916,7 @@ PmError pm_macosxcm_init(void)
 
         /* Register this device with PortMidi */
         pm_add_device("CoreMIDI", cm_get_full_endpoint_name(endpoint),
-                      FALSE, (void*)endpoint, &pm_macosx_out_dictionary);
+                      FALSE, (void*)(long) endpoint, &pm_macosx_out_dictionary);
     }
     return pmNoError;
     
diff --git a/thirdparty/rtf2html/README.ru b/thirdparty/rtf2html/README.ru
index df80676..444f929 100644
--- a/thirdparty/rtf2html/README.ru
+++ b/thirdparty/rtf2html/README.ru
@@ -1,97 +1,95 @@
-1.  ïÂÚÏÒ
+1.  Обзор
 
-    üÔÏ - ËÏÎ×ÅÒÔÅÒ ÆÁÊÌÏ× ÉÚ ÆÏÒÍÁÔÁ RTF × ÆÏÒÍÁÔ HTML, ×ÅÒÓÉÑ 0.1.0.
-    Copyright (C) 2003 ÷ÁÌÅÎÔÉÎ ìÁ×ÒÉÎÅÎËÏ, vlavrinenko at users.sourceforge.net
+    Это - конвертер файлов из формата RTF в формат HTML, версия 0.1.0.
+    Copyright (C) 2003 Валентин Лавриненко, vlavrinenko at users.sourceforge.net
     
-    ïÓÎÏ×ÎÏÅ ÐÒÅÄÎÁÚÎÁÞÅÎÉÅ ÐÒÏÇÒÁÍÍÙ - ÐÒÅÄÏÓÔÁ×ÉÔØ ÒÁÚÒÁÂÏÔÞÉËÁÍ
-    ×ÏÚÍÏÖÎÏÓÔØ ÔÁËÕÀ ÆÕÎËÃÉÏÎÁÌØÎÏÓÔØ × ÉÈ ÐÒÏÄÕËÔÁÈ. ïÄÎÁËÏ, ËÏÎÅÞÎÙÅ
-    ÐÏÌØÚÏ×ÁÔÅÌÉ ÔÁËÖÅ ÍÏÇÕÔ ÎÁÊÔÉ ÜÔÕ ÐÒÏÇÒÁÍÍÕ ÐÏÌÅÚÎÏÊ ÄÌÑ ÓÅÂÑ.
+    Основное предназначение программы - предоставить разработчикам
+    возможность такую функциональность в их продуктах. Однако, конечные
+    пользователи также могут найти эту программу полезной для себя.
 
-    ðÒÉ ÎÁÐÉÓÁÎÉÉ ÏÓÎÏ×ÎÏÊ ÕÐÏÒ ÄÅÌÁÌÓÑ ÎÁ ËÏÒÒÅËÔÎÕÀ ÏÂÒÁÂÏÔËÕ ÔÁÂÌÉÃ,
-    É, ÐÏÈÏÖÅ, ÜÔÏ ÐÏÌÕÞÉÌÏÓØ - ÏÓÔÁÌØÎÙÅ ÐÒÏÇÒÁÍÍÙ, ËÏÔÏÒÙÅ Ñ ×ÉÄÅÌ,
-    ÔÁÂÌÉÃÙ ÏÂÒÁÂÁÔÙ×ÁÀÔ ÚÎÁÞÉÔÅÌØÎÏ ÈÕÖÅ. ëÒÏÍÅ ÔÏÇÏ, ÎÁ ÄÁÎÎÙÊ ÍÏÍÅÎÔ
-    Ñ ÎÅ ÓÍÏÇ ÎÁÊÔÉ ÎÉ ÏÄÎÏÇÏ rtf ÆÁÊÌÁ, ËÏÔÏÒÙÊ ÂÙ ÏÔÏÂÒÁÖÁÌÓÑ × MS Word,
-    ÎÏ "ÏÂ×ÁÌÉ×ÁÌ" ÂÙ ÜÔÕ ÐÒÏÇÒÁÍÍÕ.
+    При написании основной упор делался на корректную обработку таблиц,
+    и, похоже, это получилось - остальные программы, которые я видел,
+    таблицы обрабатывают значительно хуже. Кроме того, на данный момент
+    я не смог найти ни одного rtf файла, который бы отображался в MS Word,
+    но "обваливал" бы эту программу.
 
-    äÌÑ ÐÏÌÕÞÅÎÉÑ ÂÏÌÅÅ ÐÏÄÒÏÂÎÏÊ ÉÎÆÏÒÍÁÃÉÉ, ÐÏÓÅÔÉÔÅ
+    Для получения более подробной информации, посетите
     http://www.sourceforge.net/projects/rtf2html
   
 
-2.  ëÏÐÉÒÏ×ÁÎÉÅ
+2.  Копирование
 
-    ðÒÏÇÒÁÍÍÁ ÒÁÓÐÒÏÓÔÒÁÎÑÅÔÓÑ ÐÏÄ ÌÉÃÅÎÚÉÅÊ LGPL - ÓÍ. ÆÁÊÌ COPYING.LESSER
-    (ÎÁ ÁÎÇÌÉÊÓËÏÍ), ÏÎ ÄÏÌÖÅÎ ÂÙÔØ × ÔÏÍ ÖÅ ÁÒÈÉ×Å, ÉÚ ËÏÔÏÒÏÇÏ ×Ù ×ÚÑÌÉ
-    ÜÔÏÔ ÆÁÊÌ.
+    Программа распространяется под лицензией LGPL - см. файл COPYING.LESSER
+    (на английском), он должен быть в том же архиве, из которого вы взяли
+    этот файл.
 
 
-3.  ëÏÍÐÉÌÑÃÉÑ
+3.  Компиляция
 
-    - ðÏÄ UNIX:
-      ðÒÏÓÔÏ ÚÁÐÕÓÔÉÔÅ ./configure && make && make install. ðÒÏÇÒÁÍÍÁ
-      ÒÁÂÏÔÁÅÔ ÚÎÁÞÉÔÅÌØÎÏ (ÐÒÉÍÅÒÎÏ × 2 ÒÁÚÁ) ÂÙÓÔÒÅÅ, ÅÓÌÉ ÓÏÂÉÒÁÔØ ÅÅ
-      Ó STLport, Á ÎÅ Ó GNU'ÛÎÏÊ ÒÅÁÌÉÚÁÃÉÅÊ STL. ôÁË ÞÔÏ, ÅÓÌÉ STLport
-      Õ ×ÁÓ ÕÓÔÁÎÏ×ÌÅÎ, ËÏÎÆÉÇÕÒÉÒÕÊÔÅ ÐÒÏÇÒÁÍÍÕ Ó ÏÐÃÉÅÊ --with-stlport.
+    - Под UNIX:
+      Просто запустите ./configure && make && make install. Программа
+      работает значительно (примерно в 2 раза) быстрее, если собирать ее
+      с STLport, а не с GNU'шной реализацией STL. Так что, если STLport
+      у вас установлен, конфигурируйте программу с опцией --with-stlport.
+    - Под MS Windows:
+      MSYS/MinGW - дальше так же, как в UNIX.
+      Для других компиляторов под Win makefile'ов пока нет, так что пишите
+      их сами если хотите - это не так уж сложно.
+      BCC больше не поддерживается!
 
-    - ðÏÄ MS Windows:
-      MSYS/MinGW - ÄÁÌØÛÅ ÔÁË ÖÅ, ËÁË × UNIX.
-      äÌÑ ÄÒÕÇÉÈ ËÏÍÐÉÌÑÔÏÒÏ× ÐÏÄ Win makefile'Ï× ÐÏËÁ ÎÅÔ, ÔÁË ÞÔÏ ÐÉÛÉÔÅ
-      ÉÈ ÓÁÍÉ ÅÓÌÉ ÈÏÔÉÔÅ - ÜÔÏ ÎÅ ÔÁË ÕÖ ÓÌÏÖÎÏ.
-      BCC ÂÏÌØÛÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ!
+4.  Установка
 
-4.  õÓÔÁÎÏ×ËÁ
-
-    äÌÑ Unix/Linux ÉÓÐÏÌÎÑÅÍÙÅ ÆÁÊÌÙ ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÀÔÓÑ - ÓÏÂÉÒÁÊÔÅ ÉÚ
-    ÉÓÈÏÄÎÉËÏ× ÓÁÍÉ (ÓÍ. ×ÙÛÅ). ïÄÎÁËÏ, ÄÌÑ MS Windows ×Ù ÍÏÖÅÔÅ
-    ÓËÁÞÁÔØ ÉÓÐÏÌÎÑÅÍÙÊ ÆÁÊÌ ÓÏ ÓÔÒÁÎÉÃÙ ÐÒÏÅËÔÁ, 
+    Для Unix/Linux исполняемые файлы не предоставляются - собирайте из
+    исходников сами (см. выше). Однако, для MS Windows вы можете
+    скачать исполняемый файл со страницы проекта, 
     http://www.sf.net/projects/rtf2html.
 
-5.  éÓÐÏÌØÚÏ×ÁÎÉÅ
+5.  Использование
 
-    5.1 ëÏÍÁÎÄÎÁÑ ÓÔÒÏËÁ 
+    5.1 Командная строка 
 
         rtf2html -v|--version
 
-	×Ù×ÏÄÉÔ ÔÅËÕÝÕÀ ×ÅÒÓÉÀ ÐÒÏÇÒÁÍÍÙ.
+  выводит текущую версию программы.
 
-	rtf2html -h|--help
+  rtf2html -h|--help
 
-	×Ù×ÏÄÉÔ ËÒÁÔËÕÀ ÐÏÍÏÝØ.
+  выводит краткую помощь.
     
         rtf2html [<rtf file> [<html file>]].
 
-        ëÏÎ×ÅÒÔÉÒÕÅÔ ÆÁÊÌ. åÓÌÉ ËÁËÏÊ-ÌÉÂÏ ÉÚ ÆÁÊÌÏ× ÎÅ ÕËÁÚÁÎ, 
-	ÉÓÐÏÌØÚÕÅÔÓÑ ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÊ ÓÔÁÎÄÁÒÔÎÙÊ ÄÅÓËÒÉÐÔÏÒ 
-	(stdin ÉÌÉ stdout, ÓÏÏÔ×ÅÔÓÔ×ÅÎÎÏ).
-
-    5.2  ðÏÄÄÅÒÖÉ×ÁÅÍÙÅ ×ÏÚÍÏÖÎÏÓÔÉ
-
-         üÔÁ ×ÅÒÓÉÑ ÐÏÄÄÅÒÖÉ×ÁÅÔ ÓÌÅÄÕÀÝÉÅ ×ÏÚÍÏÖÎÏÓÔÉ RTF:
-         - æÏÒÍÁÔÉÒÏ×ÁÎÉÅ ÓÉÍ×ÏÌÏ×: ÖÉÒÎÙÊ, ËÕÒÓÉ×, ÐÏÄÞÅÒËÉ×ÁÎÉÅ, ×ÅÒÈÎÉÅ É 
-           ÎÉÖÎÉÅ ÉÎÄÅËÓÙ.
-          ðÒÉÍ.: ÐÏÄÞÅÒËÉ×ÁÎÉÅ ÏÔÏÂÒÁÖÁÅÔÓÑ ÔÏÌØËÏ ÓÐÌÏÛÎÙÍ.
-         - æÏÒÍÁÔÉÒÏ×ÁÎÉÅ ÁÂÚÁÃÅ×: ÇÏÒÉÚÏÎÔÁÌØÎÏÅ ×ÙÒÁ×ÎÉ×ÁÎÉÅ, ÏÔÓÔÕÐÙ, ÐÏÌÑ.
-         - æÏÒÍÁÔÉÒÏ×ÁÎÉÅ ÔÁÂÌÉÃ: ÐÒÏÉÚ×ÏÌØÎÙÅ ÏÂßÅÄÉÎÅÎÉÑ ÑÞÅÅË, 
-           ÉÚÍÅÎÅÎÉÅ ÒÁÚÍÅÒÏ× ÑÞÅÅË, ÒÁÍËÉ.
-          ðÒÉÍ.: ÒÁÍËÉ ËÏÒÒÅËÔÎÏ ÏÔÏÂÒÁÖÁÀÔÓÑ ÔÏÌØËÏ ÐÏÄ IE 5+ É ÔÏÌØËÏ 
-                 ÓÐÌÏÛÎÙÍÉ.
-         - æÏÒÍÁÔÉÒÏ×ÁÎÉÅ ÓÔÒÁÎÉÃ: ÛÉÒÉÎÁ ÓÔÒÁÎÉÃÙ, ÌÅ×ÏÅ ÐÏÌÅ.
-         - ûÅÓÔÎÁÄÃÁÔÅÒÉÞÎÙÅ ËÏÄÙ ÓÉÍ×ÏÌÏ× (ÂÕË×Ù ËÉÒÉÌÌÉÃÙ ÂÕÄÕÔ ÏÔÏÂÒÁÖÁÔØÓÑ
-           × ËÏÄÉÒÏ×ËÅ win1251).
-         - çÁÒÎÉÔÕÒÙ É ÒÁÚÍÅÒÙ ÛÒÉÆÔÏ×.
-         - ã×ÅÔÁ ÓÉÍ×ÏÌÏ× É ÆÏÎÁ, ×ÙÄÅÌÅÎÉÅ (highlighting).
-
-    5.3  îÅÐÏÄÄÅÒÖÉ×ÁÅÍÙÅ ×ÏÚÍÏÖÎÏÓÔÉ
-
-         üÔÁ ×ÅÒÓÉÑ îå ÐÏÄÄÅÒÖÉ×ÁÅÔ:
-	 - îÁÂÏÒÙ ÓÉÍ×ÏÌÏ× (character sets).
-	 - çÉÐÅÒÓÓÙÌËÉ.
-         - éÚÏÂÒÁÖÅÎÉÑ.
-         - ÷ÓÑËÕÀ ÆÉÇÎÀ ×ÒÏÄÅ ÍÁËÒÏÓÏ×, OLE ÏÂßÅËÔÏ× É Ô.Ä.
-
-
-6.  úÁÍÅÞÁÎÉÑ Ï ËÏÍÐÉÌÑÃÉÉ
-
-    éÓÈÏÄÎÉËÉ ÂÙÌÉ ÓËÏÍÐÉÌÉÒÏ×ÁÎÙ × ÓÌÅÄÕÀÝÉÈ ÏËÒÕÖÅÎÉÑÈ:
-    - gcc 3.3 ÐÏÄ ALT Linux Master 2.4 ÎÁ i386
-    - gcc 3.4.2 (MinGW) ÐÏÄ Win2k
- 
+        Конвертирует файл. Если какой-либо из файлов не указан, 
+  используется соответствующий стандартный дескриптор 
+  (stdin или stdout, соответственно).
+
+    5.2  Поддерживаемые возможности
+
+         Эта версия поддерживает следующие возможности RTF:
+         - Форматирование символов: жирный, курсив, подчеркивание, верхние и 
+           нижние индексы.
+          Прим.: подчеркивание отображается только сплошным.
+         - Форматирование абзацев: горизонтальное выравнивание, отступы, поля.
+         - Форматирование таблиц: произвольные объединения ячеек, 
+           изменение размеров ячеек, рамки.
+          Прим.: рамки корректно отображаются только под IE 5+ и только 
+                 сплошными.
+         - Форматирование страниц: ширина страницы, левое поле.
+         - Шестнадцатеричные коды символов (буквы кириллицы будут отображаться
+           в кодировке win1251).
+         - Гарнитуры и размеры шрифтов.
+         - Цвета символов и фона, выделение (highlighting).
+
+    5.3  Неподдерживаемые возможности
+
+         Эта версия НЕ поддерживает:
+   - Наборы символов (character sets).
+   - Гиперссылки.
+         - Изображения.
+         - Всякую фигню вроде макросов, OLE объектов и т.д.
+
+
+6.  Замечания о компиляции
+
+    Исходники были скомпилированы в следующих окружениях:
+    - gcc 3.3 под ALT Linux Master 2.4 на i386
+    - gcc 3.4.2 (MinGW) под Win2k
\ No newline at end of file
diff --git a/thirdparty/rtf2html/rtf2html b/thirdparty/rtf2html/rtf2html
new file mode 100755
index 0000000..caa2615
Binary files /dev/null and b/thirdparty/rtf2html/rtf2html differ
diff --git a/vtest/accidental-10-ref.png b/vtest/accidental-10-ref.png
new file mode 100644
index 0000000..7d6b1cc
Binary files /dev/null and b/vtest/accidental-10-ref.png differ
diff --git a/vtest/accidental-10.mscz b/vtest/accidental-10.mscz
new file mode 100644
index 0000000..c0fe1f9
Binary files /dev/null and b/vtest/accidental-10.mscz differ
diff --git a/vtest/bravura-text-1-ref.png b/vtest/bravura-text-1-ref.png
index 2410ded..8e4ce6a 100644
Binary files a/vtest/bravura-text-1-ref.png and b/vtest/bravura-text-1-ref.png differ
diff --git a/vtest/bravura-text-1.mscz b/vtest/bravura-text-1.mscz
index cf287a1..c6c7b30 100644
Binary files a/vtest/bravura-text-1.mscz and b/vtest/bravura-text-1.mscz differ
diff --git a/vtest/emmentaler-text-1-ref.png b/vtest/emmentaler-text-1-ref.png
index bba3db1..f3ea620 100644
Binary files a/vtest/emmentaler-text-1-ref.png and b/vtest/emmentaler-text-1-ref.png differ
diff --git a/vtest/emmentaler-text-1.mscz b/vtest/emmentaler-text-1.mscz
index 0d11662..030d1cc 100644
Binary files a/vtest/emmentaler-text-1.mscz and b/vtest/emmentaler-text-1.mscz differ
diff --git a/vtest/gen b/vtest/gen
index 2aba18a..50d72ee 100755
--- a/vtest/gen
+++ b/vtest/gen
@@ -5,7 +5,7 @@ if [ "`uname`" = 'Darwin' ]; then
       BROWSER=open
 else
       MSCORE=../build.debug/mscore/mscore
-      BROWSER=konqueror
+      BROWSER=rekonq
 fi
 
 if [ -n "$VTEST_MSCORE" ]; then
@@ -43,14 +43,15 @@ else
        chord-layout-6 chord-layout-7 chord-layout-8 chord-layout-9 chord-layout-10\
        chord-layout-11 chord-layout-12 chord-layout-13 chord-layout-14 chord-layout-15 chord-layout-16 cross-1\
        accidental-1 accidental-2 accidental-3 accidental-4 accidental-5\
-       accidental-6 accidental-7 accidental-8 accidental-9\
+       accidental-6 accidental-7 accidental-8 accidental-9 accidental-10\
        tie-1 tie-2 tie-3 grace-1 grace-2 grace-3 grace-4 tuplets-1 tuplets-2 breath-1\
-       harmony-1 harmony-2 harmony-3 harmony-4 harmony-5 harmony-6 harmony-7 harmony-8 harmony-9 harmony-10 harmony-11\
+       harmony-1 harmony-2 harmony-3 harmony-4 harmony-5 harmony-6 harmony-7
+       harmony-8 harmony-9 harmony-10 harmony-11 harmony-12\
        beams-1 beams-2 beams-3 beams-4 beams-5 beams-6 beams-7 beams-8 beams-9 beams-10\
        beams-11 beams-12 beams-13 beams-14 beams-15 beams-16 beams-17\
        user-offset-1 user-offset-2 chord-space-1 chord-space-2 tablature-1 image-1\
        lyrics-1 lyrics-2 lyrics-3 lyrics-4 lyrics-5 lyrics-6 voice-1 voice-2 slash-1 slash-2\
-       system-1 system-2 system-3 system-4"
+       system-1 system-2 system-3 system-4 system-5 small-1 tremolo-1"
 fi
 
 DPI=130
diff --git a/vtest/gen.bat b/vtest/gen.bat
index 2ae7ce6..b62d06b 100644
--- a/vtest/gen.bat
+++ b/vtest/gen.bat
@@ -18,14 +18,15 @@ set SRC=mmrest-1,bravura-mmrest,gonville-mmrest,mmrest-2,mmrest-4,mmrest-5,mmres
  chord-layout-6,chord-layout-7,chord-layout-8,chord-layout-9,chord-layout-10, ^
  chord-layout-11,chord-layout-12,chord-layout-13,chord-layout-14,chord-layout-15,chord-layout-16,cross-1, ^
  accidental-1,accidental-2,accidental-3,accidental-4,accidental-5, ^
- accidental-6,accidental-7,accidental-8,accidental-9, ^
+ accidental-6,accidental-7,accidental-8,accidental-9,accidental-10, ^
  tie-1,tie-2,tie-3,grace-1,grace-2,grace-3,grace-4,tuplets-1,tuplets-2,breath-1, ^
- harmony-1,harmony-2,harmony-3,harmony-4,harmony-5,harmony-6,harmony-7,harmony-8,harmony-9,harmony-10,harmony-11, ^
+ harmony-1,harmony-2,harmony-3,harmony-4,harmony-5,harmony-6,harmony-7, ^
+ harmony-8,harmony-9,harmony-10,harmony-11,harmony-12, ^
  beams-1,beams-2,beams-3,beams-4,beams-5,beams-6,beams-7,beams-8,beams-9,beams-10, ^
  beams-11,beams-12,beams-13,beams-14,beams-15,beams-16,beams-17, ^
  user-offset-1,user-offset-2,chord-space-1,chord-space-2,tablature-1,image-1, ^
  lyrics-1,lyrics-2,lyrics-3,lyrics-4,lyrics-5,lyrics-6,voice-1,voice-2,slash-1,slash-2, ^
- system-1,system-2,system-3,system-4
+ system-1,system-2,system-3,system-4,small-1,system-5,tremolo-1
 
 set MSCORE=..\win32install\bin\musescore.exe
 set DPI=130
diff --git a/vtest/gonville-text-1-ref.png b/vtest/gonville-text-1-ref.png
index 469a7c8..ca5f760 100644
Binary files a/vtest/gonville-text-1-ref.png and b/vtest/gonville-text-1-ref.png differ
diff --git a/vtest/gonville-text-1.mscz b/vtest/gonville-text-1.mscz
index 50c484e..16804c0 100644
Binary files a/vtest/gonville-text-1.mscz and b/vtest/gonville-text-1.mscz differ
diff --git a/vtest/hairpins-1-ref.png b/vtest/hairpins-1-ref.png
index 9b074b6..f2a28cd 100644
Binary files a/vtest/hairpins-1-ref.png and b/vtest/hairpins-1-ref.png differ
diff --git a/vtest/hairpins-1.mscz b/vtest/hairpins-1.mscz
index 5f24a8a..24af166 100644
Binary files a/vtest/hairpins-1.mscz and b/vtest/hairpins-1.mscz differ
diff --git a/vtest/harmony-12-ref.png b/vtest/harmony-12-ref.png
new file mode 100644
index 0000000..1756792
Binary files /dev/null and b/vtest/harmony-12-ref.png differ
diff --git a/vtest/harmony-12.mscz b/vtest/harmony-12.mscz
new file mode 100644
index 0000000..ba37f5d
Binary files /dev/null and b/vtest/harmony-12.mscz differ
diff --git a/vtest/lyrics-3-ref.png b/vtest/lyrics-3-ref.png
index 43ff6b7..37627a1 100644
Binary files a/vtest/lyrics-3-ref.png and b/vtest/lyrics-3-ref.png differ
diff --git a/vtest/lyrics-3.mscz b/vtest/lyrics-3.mscz
index c9ef7b4..ab23962 100644
Binary files a/vtest/lyrics-3.mscz and b/vtest/lyrics-3.mscz differ
diff --git a/vtest/musejazz-text-1-ref.png b/vtest/musejazz-text-1-ref.png
index 18541c5..57dec37 100644
Binary files a/vtest/musejazz-text-1-ref.png and b/vtest/musejazz-text-1-ref.png differ
diff --git a/vtest/musejazz-text-1.mscz b/vtest/musejazz-text-1.mscz
index 6562caa..f4981eb 100644
Binary files a/vtest/musejazz-text-1.mscz and b/vtest/musejazz-text-1.mscz differ
diff --git a/vtest/small-1-ref.png b/vtest/small-1-ref.png
new file mode 100644
index 0000000..64e7d82
Binary files /dev/null and b/vtest/small-1-ref.png differ
diff --git a/vtest/small-1.mscz b/vtest/small-1.mscz
new file mode 100644
index 0000000..53c4b33
Binary files /dev/null and b/vtest/small-1.mscz differ
diff --git a/vtest/system-4-ref.png b/vtest/system-4-ref.png
index 22d8c06..75437dc 100644
Binary files a/vtest/system-4-ref.png and b/vtest/system-4-ref.png differ
diff --git a/vtest/system-4.mscz b/vtest/system-4.mscz
index 5264e83..642ab72 100644
Binary files a/vtest/system-4.mscz and b/vtest/system-4.mscz differ
diff --git a/vtest/system-5-ref.png b/vtest/system-5-ref.png
new file mode 100644
index 0000000..7aca73f
Binary files /dev/null and b/vtest/system-5-ref.png differ
diff --git a/vtest/system-5.mscz b/vtest/system-5.mscz
new file mode 100644
index 0000000..a4d9fc6
Binary files /dev/null and b/vtest/system-5.mscz differ
diff --git a/vtest/tremolo-1-ref.png b/vtest/tremolo-1-ref.png
new file mode 100644
index 0000000..a7eae23
Binary files /dev/null and b/vtest/tremolo-1-ref.png differ
diff --git a/vtest/tremolo-1.mscz b/vtest/tremolo-1.mscz
new file mode 100644
index 0000000..f584b40
Binary files /dev/null and b/vtest/tremolo-1.mscz differ

-- 
musescore packaging



More information about the pkg-multimedia-commits mailing list